diff options
author | Jan Beulich <jbeulich@novell.com> | 2007-12-19 21:30:30 +0100 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-12-19 21:30:30 +0100 |
commit | 285fbd66330cd5899f4e607e3e65ab5921ddabf0 (patch) | |
tree | dc40317084c5319c8b66ef88a472b316828326ec /include/asm-ia64/tlbflush.h | |
parent | [IA64] Guard elfcorehdr_addr with #if CONFIG_PROC_FS (diff) | |
download | linux-285fbd66330cd5899f4e607e3e65ab5921ddabf0.tar.xz linux-285fbd66330cd5899f4e607e3e65ab5921ddabf0.zip |
[IA64] make flush_tlb_kernel_range() an inline function
This fixes an unused variable warning in mm/vmalloc.c.
Tony: also fix resulting fallout in uncached.c with a
typo in args to flush_tlb_kernel_range().
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to '')
-rw-r--r-- | include/asm-ia64/tlbflush.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-ia64/tlbflush.h b/include/asm-ia64/tlbflush.h index 80bcb0a38e8a..7774a1cac0cc 100644 --- a/include/asm-ia64/tlbflush.h +++ b/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 */ |