http://www.inplanesight.org/bootissue.png
I can't figure out where this message is stored on the system, hence the above screen capture. It appears that this was a bug in FreeBSD 9 but patched in 10.
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=168544
It looks like swap doesn't have to be specified in rc.conf in 10.1.
Code:
# swapinfo -k
Device 1K-blocks Used Avail Capacity
/dev/gpt/swapfs 1048576 473340 575236 45%
/dev/md99 2097152 122348 1974804 6%
Total 3145728 595688 2550040 19%
Code:
# cat fstab
# Custom /etc/fstab for FreeBSD VM images
/dev/gpt/rootfs / ufs rw 2 2
/dev/gpt/swapfs none swap sw 0 0
fdesc /dev/fd fdescfs rw 0 0
fdesc /dev/fd fdescfs rw 0 0
md99 none swap sw,file=/swapfile,late 0 0
Code:
# vmstat -h
procs memory page disks faults cpu
r b w avm fre flt re pi po fr sr vt0 md99 in sy cs us sy id
1 0 1 3184M 175M 30 0 0 0 43 150 0 0 2 103 79 0 0 99
Also does pi=po=0 indicate no swapping was done?