svn commit: r183771 - head/sys/mips/mips

Warner Losh imp at FreeBSD.org
Sun Oct 12 02:31:09 UTC 2008


Author: imp
Date: Sun Oct 12 02:31:09 2008
New Revision: 183771
URL: http://svn.freebsd.org/changeset/base/183771

Log:
  opt_msgbuf.h is needed for MSGBUF_SIZE overrides, if any.
  
  Submitted by:	alc@

Modified:
  head/sys/mips/mips/machdep.c
  head/sys/mips/mips/pmap.c

Modified: head/sys/mips/mips/machdep.c
==============================================================================
--- head/sys/mips/mips/machdep.c	Sun Oct 12 00:44:27 2008	(r183770)
+++ head/sys/mips/mips/machdep.c	Sun Oct 12 02:31:09 2008	(r183771)
@@ -42,8 +42,9 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
-#include "opt_md.h"
 #include "opt_ddb.h"
+#include "opt_md.h"
+#include "opt_msgbuf.h"
 
 #include <sys/param.h>
 #include <sys/proc.h>

Modified: head/sys/mips/mips/pmap.c
==============================================================================
--- head/sys/mips/mips/pmap.c	Sun Oct 12 00:44:27 2008	(r183770)
+++ head/sys/mips/mips/pmap.c	Sun Oct 12 02:31:09 2008	(r183771)
@@ -69,6 +69,7 @@
 __FBSDID("$FreeBSD$");
 
 #include "opt_ddb.h"
+#include "opt_msgbuf.h"
 #include <sys/param.h>
 #include <sys/systm.h>
 #include <sys/proc.h>


More information about the svn-src-head mailing list