aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-i386/pgalloc.h
diff options
context:
space:
mode:
authorkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-01-06 17:57:55 +0000
committerkaf24@scramble.cl.cam.ac.uk <kaf24@scramble.cl.cam.ac.uk>2004-01-06 17:57:55 +0000
commitabc73fe73e5760d1f6836ea098813f4d65d2c097 (patch)
tree41f4034f91858983ab51e173ce5b2e2099a8b389 /xen/include/asm-i386/pgalloc.h
parent422cb23eb58179b9c57514ac91efc745a8df187a (diff)
downloadxen-abc73fe73e5760d1f6836ea098813f4d65d2c097.tar.gz
xen-abc73fe73e5760d1f6836ea098813f4d65d2c097.tar.bz2
xen-abc73fe73e5760d1f6836ea098813f4d65d2c097.zip
bitkeeper revision 1.670 (3ffaf723Sn5FVTMBSOvb9binR3cthQ)
network.c, dev.c, pgalloc.h, flushtlb.h, domain.c, smp.c: Fixed heinous TLB-flush and network bugs.
Diffstat (limited to 'xen/include/asm-i386/pgalloc.h')
-rw-r--r--xen/include/asm-i386/pgalloc.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/xen/include/asm-i386/pgalloc.h b/xen/include/asm-i386/pgalloc.h
index 88e9064641..6f01b44441 100644
--- a/xen/include/asm-i386/pgalloc.h
+++ b/xen/include/asm-i386/pgalloc.h
@@ -47,17 +47,19 @@
#ifndef CONFIG_SMP
-#define flush_tlb() __flush_tlb()
-#define flush_tlb_all() __flush_tlb()
-#define flush_tlb_all_pge() __flush_tlb_pge()
-#define local_flush_tlb() __flush_tlb()
-#define flush_tlb_cpu(_cpu) __flush_tlb()
-#define flush_tlb_mask(_mask) __flush_tlb()
+#define flush_tlb() __flush_tlb()
+#define flush_tlb_all() __flush_tlb()
+#define flush_tlb_all_pge() __flush_tlb_pge()
+#define local_flush_tlb() __flush_tlb()
+#define flush_tlb_cpu(_cpu) __flush_tlb()
+#define flush_tlb_mask(_mask) __flush_tlb()
+#define try_flush_tlb_mask(_mask) __flush_tlb()
#else
#include <xeno/smp.h>
+extern int try_flush_tlb_mask(unsigned long mask);
extern void flush_tlb_mask(unsigned long mask);
extern void flush_tlb_all_pge(void);