Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv13160/arch/vax/kernel
Modified Files:
cpu_ka43.c interrupt.c setup.c
Log Message:
TLB, i-cache and d-cache flushing macros and functions now have their
own header files, and are no longer automatically pulled in via
<asm/pgalloc.h>
Index: cpu_ka43.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/cpu_ka43.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- cpu_ka43.c 29 Oct 2002 00:52:50 -0000 1.8
+++ cpu_ka43.c 12 Dec 2002 01:19:20 -0000 1.9
@@ -23,7 +23,7 @@
#include <asm/mv.h>
#include <asm/vaxcpu.h>
#include <asm/vsa.h>
-#include <asm/mm/tlb.h>
+#include <asm/tlbflush.h>
#include <asm/ka43.h>
#include <asm/clock.h> /* for clock_init routines */
Index: interrupt.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/interrupt.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- interrupt.c 29 Oct 2002 00:52:50 -0000 1.7
+++ interrupt.c 12 Dec 2002 01:19:20 -0000 1.8
@@ -25,6 +25,8 @@
#include <asm/scb.h>
#include <asm/hardirq.h>
#include <asm/softirq.h>
+#include <asm/cacheflush.h>
+#include <asm/tlbflush.h>
#include "interrupt.h" /* Local, private definitions */
Index: setup.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/setup.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- setup.c 31 May 2002 01:58:38 -0000 1.5
+++ setup.c 12 Dec 2002 01:19:20 -0000 1.6
@@ -20,7 +20,7 @@
#include <asm/rpb.h>
#include <asm/page.h>
#include <asm/mv.h>
-#include <asm/mm/tlb.h>
+#include <asm/tlbflush.h>
#define COMMAND_LINE_SIZE 256
|