svn commit: r226642 - head/sys/vm

Attilio Rao attilio at FreeBSD.org
Sat Oct 22 22:00:35 UTC 2011


Author: attilio
Date: Sat Oct 22 22:00:35 2011
New Revision: 226642
URL: http://svn.freebsd.org/changeset/base/226642

Log:
  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

Modified:
  head/sys/vm/vm_phys.c

Modified: head/sys/vm/vm_phys.c
==============================================================================
--- head/sys/vm/vm_phys.c	Sat Oct 22 18:23:32 2011	(r226641)
+++ head/sys/vm/vm_phys.c	Sat Oct 22 22:00:35 2011	(r226642)
@@ -33,6 +33,7 @@
 __FBSDID("$FreeBSD$");
 
 #include "opt_ddb.h"
+#include "opt_vm.h"
 
 #include <sys/param.h>
 #include <sys/systm.h>


More information about the svn-src-head mailing list