diff options
author | Attilio Rao <attilio@FreeBSD.org> | 2011-10-22 22:00:35 +0000 |
---|---|---|
committer | Attilio Rao <attilio@FreeBSD.org> | 2011-10-22 22:00:35 +0000 |
commit | 2d5106600e2660ff24e534a62858b61bb392541f (patch) | |
tree | 193d828ad9475b3ba6ccc894ee816cad2cfba5df /sys/vm | |
parent | c5499409f83f5d6068d6f4d088f91eb6918cba8d (diff) | |
download | src-2d5106600e2660ff24e534a62858b61bb392541f.tar.gz src-2d5106600e2660ff24e534a62858b61bb392541f.zip |
VN_NRESERVLEVEL is used in this file but opt_vm is not included
thus the stub switch won't be correctly handled.
Include opt_vm.h.
Submitted by: jeff
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=226642
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_phys.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/vm/vm_phys.c b/sys/vm/vm_phys.c index 93fee70b2212..b47455d71b61 100644 --- a/sys/vm/vm_phys.c +++ b/sys/vm/vm_phys.c @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ddb.h" +#include "opt_vm.h" #include <sys/param.h> #include <sys/systm.h> |