Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 75092
b: refs/heads/master
c: 285fbd6
h: refs/heads/master
v: v3
  • Loading branch information
Jan Beulich authored and Tony Luck committed Dec 19, 2007
1 parent 8eb0050 commit eea4cbd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 17fbe0043e9d623e46a57b153aa0b80ee9de7790
refs/heads/master: 285fbd66330cd5899f4e607e3e65ab5921ddabf0
2 changes: 1 addition & 1 deletion trunk/arch/ia64/kernel/uncached.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
6 changes: 5 additions & 1 deletion trunk/include/asm-ia64/tlbflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit eea4cbd

Please sign in to comment.