Date: Thu, 25 Jun 2009 00:14:27 +0000 (UTC) From: Jeff Roberson <jeff@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r194933 - head/sys/powerpc/powerpc Message-ID: <200906250014.n5P0ERE7034793@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200906250014.n5P0ERE7034793>