Module Name: src
Committed By: matt
Date: Tue Jun 14 05:49:14 UTC 2011
Modified Files:
src/sys/arch/powerpc/powerpc: vm_machdep.c
Log Message:
Include <uvm/uvm.h> instead of <uvm/uvm_extern.h> since we are using more
uvm functions.
To generate a diff of this commit:
cvs rdiff -u -r1.86 -r1.87 src/sys/arch/powerpc/powerpc/vm_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/powerpc/vm_machdep.c
diff -u src/sys/arch/powerpc/powerpc/vm_machdep.c:1.86 src/sys/arch/powerpc/powerpc/vm_machdep.c:1.87
--- src/sys/arch/powerpc/powerpc/vm_machdep.c:1.86 Mon Jun 13 21:19:02 2011
+++ src/sys/arch/powerpc/powerpc/vm_machdep.c Tue Jun 14 05:49:14 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: vm_machdep.c,v 1.86 2011/06/13 21:19:02 matt Exp $ */
+/* $NetBSD: vm_machdep.c,v 1.87 2011/06/14 05:49:14 matt Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -32,7 +32,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.86 2011/06/13 21:19:02 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.87 2011/06/14 05:49:14 matt Exp $");
#include "opt_altivec.h"
#include "opt_multiprocessor.h"
@@ -46,7 +46,7 @@
#include <sys/vnode.h>
#include <sys/buf.h>
-#include <uvm/uvm_extern.h>
+#include <uvm/uvm.h>
#if defined(ALTIVEC) || defined(PPC_HAVE_SPE)
#include <powerpc/altivec.h>