The patch titled
ia64: make flush_tlb_kernel_range() an inline function
has been added to the -mm tree. Its filename is
ia64-make-flush_tlb_kernel_range-an-inline-function.patch
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: ia64: make flush_tlb_kernel_range() an inline function
From: "Jan Beulich" <[EMAIL PROTECTED]>
This fixes an unused variable warning in mm/vmalloc.c.
Signed-off-by: Jan Beulich <[EMAIL PROTECTED]>
Cc: "Luck, Tony" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
include/asm-ia64/tlbflush.h | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff -puN
include/asm-ia64/tlbflush.h~ia64-make-flush_tlb_kernel_range-an-inline-function
include/asm-ia64/tlbflush.h
---
a/include/asm-ia64/tlbflush.h~ia64-make-flush_tlb_kernel_range-an-inline-function
+++ a/include/asm-ia64/tlbflush.h
@@ -92,6 +92,10 @@ void smp_local_flush_tlb(void);
#define smp_local_flush_tlb()
#endif
-#define flush_tlb_kernel_range(start, end) flush_tlb_all() /* XXX fix me */
+static inline void flush_tlb_kernel_range(unsigned long start,
+ unsigned long end)
+{
+ flush_tlb_all(); /* XXX fix me */
+}
#endif /* _ASM_IA64_TLBFLUSH_H */
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
git-acpi.patch
ia64-remove-dead-code.patch
ia64-make-flush_tlb_kernel_range-an-inline-function.patch
ia64-honor-notify_die-returning-notify_stop.patch
pci-remove-default-pci-expansion-rom-memory-allocation.patch
git-x86.patch
xen-fiddle_vdso-must-be-__init.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html