|
From: Kenn H. <ke...@us...> - 2003-01-23 23:21:40
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm
In directory sc8-pr-cvs1:/tmp/cvs-serv28406/include/asm-vax/mm
Modified Files:
pgalloc.h
Log Message:
Simplify includes
Index: pgalloc.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/pgalloc.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- pgalloc.h 31 Dec 2002 22:36:03 -0000 1.6
+++ pgalloc.h 23 Jan 2003 23:21:37 -0000 1.7
@@ -27,11 +27,11 @@
* So, there are 0x800 pages of 'ptes' per pgd. Keeping track of which page
* is mapped where, requires a pmd with 0x800 entries.
*/
-#include <asm/processor.h>
-#include <linux/threads.h>
-#include <asm/mm/virtmap.h>
-#include <linux/vmalloc.h>
-#include <asm/mm/task.h>
+
+#include <linux/gfp.h>
+
+/* Forward declaration to avoid having to pull in all of linux/mm.h */
+struct mm_struct;
#ifndef CONFIG_SMP
extern struct pgd_cache {
|