From: <ke...@us...> - 2003-08-28 22:48:56
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/mm In directory sc8-pr-cvs1:/tmp/cvs-serv11409/arch/vax/mm Modified Files: init.c Log Message: mmu_gathers array becomes a per-cpu variable in 2.5.70 Index: init.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/mm/init.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- init.c 23 Aug 2003 00:14:44 -0000 1.13 +++ init.c 28 Aug 2003 22:48:53 -0000 1.14 @@ -29,7 +29,7 @@ /* We don't use the TLB shootdown stuff yet, but we need this to keep the generic TLB shootdown code happy */ -struct mmu_gather mmu_gathers[NR_CPUS]; +DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); /* 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 |