Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/mm
In directory sc8-pr-cvs1:/tmp/cvs-serv7677/mm
Modified Files:
init.c
Log Message:
Define mmu_gathers array for generic TLB shootdown code
Index: init.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/init.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- init.c 28 Dec 2002 02:06:52 -0000 1.9
+++ init.c 31 Dec 2002 22:34:26 -0000 1.10
@@ -13,6 +13,7 @@
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/rpb.h>
+#include <asm/tlb.h>
#include <asm/tlbflush.h>
#define VAX_INIT_DEBUG
@@ -27,7 +28,10 @@
struct pgd_cache pgd_free_list;
+/* We don't use the TLB shootdown stuff yet, but we need this to keep
+ the generic TLB shootdown code happy */
+mmu_gather_t mmu_gathers[NR_CPUS];
/* This is task 0's PGD structure. Entries 4 and 5 will be filled with
the system page table base and size by head.S. The remaining
|