svn commit: r194933 - head/sys/powerpc/powerpc

Jeff Roberson jeff at FreeBSD.org
Thu Jun 25 00:14:28 UTC 2009


Author: jeff
Date: Thu Jun 25 00:14:27 2009
New Revision: 194933
URL: http://svn.freebsd.org/changeset/base/194933

Log:
   - Add the right includes to use kmem_alloc().  This was broken by my
     DPCPU commit.
  Reported by:	bz

Modified:
  head/sys/powerpc/powerpc/mp_machdep.c

Modified: head/sys/powerpc/powerpc/mp_machdep.c
==============================================================================
--- head/sys/powerpc/powerpc/mp_machdep.c	Wed Jun 24 23:17:16 2009	(r194932)
+++ head/sys/powerpc/powerpc/mp_machdep.c	Thu Jun 25 00:14:27 2009	(r194933)
@@ -37,6 +37,13 @@ __FBSDID("$FreeBSD$");
 #include <sys/sched.h>
 #include <sys/smp.h>
 
+#include <vm/vm.h>
+#include <vm/vm_param.h>
+#include <vm/pmap.h>
+#include <vm/vm_map.h>
+#include <vm/vm_extern.h>
+#include <vm/vm_kern.h>
+
 #include <machine/bus.h>
 #include <machine/cpu.h>
 #include <machine/intr_machdep.h>


More information about the svn-src-head mailing list