diff options
author | Jan Beulich <jbeulich@novell.com> | 2007-12-19 12:30:30 -0800 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2007-12-19 12:30:30 -0800 |
commit | 285fbd66330cd5899f4e607e3e65ab5921ddabf0 (patch) | |
tree | dc40317084c5319c8b66ef88a472b316828326ec /arch/ia64 | |
parent | 17fbe0043e9d623e46a57b153aa0b80ee9de7790 (diff) | |
download | op-kernel-dev-285fbd66330cd5899f4e607e3e65ab5921ddabf0.zip op-kernel-dev-285fbd66330cd5899f4e607e3e65ab5921ddabf0.tar.gz |
[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 'arch/ia64')
-rw-r--r-- | arch/ia64/kernel/uncached.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/uncached.c b/arch/ia64/kernel/uncached.c index a7be4f2..2a90c32 100644 --- a/arch/ia64/kernel/uncached.c +++ b/arch/ia64/kernel/uncached.c @@ -118,7 +118,7 @@ static int uncached_add_chunk(struct uncached_pool *uc_pool, int nid) for (i = 0; i < (IA64_GRANULE_SIZE / PAGE_SIZE); i++) SetPageUncached(&page[i]); - flush_tlb_kernel_range(uc_addr, uc_adddr + IA64_GRANULE_SIZE); + flush_tlb_kernel_range(uc_addr, uc_addr + IA64_GRANULE_SIZE); status = ia64_pal_prefetch_visibility(PAL_VISIBILITY_PHYSICAL); if (status == PAL_VISIBILITY_OK_REMOTE_NEEDED) { |