Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 73572
b: refs/heads/master
c: 725fb29
h: refs/heads/master
v: v3
  • Loading branch information
Kumar Gala committed Nov 9, 2007
1 parent b2170ed commit bd547ce
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 4c011b1fb853776459c7d3d7de7b14fa41f28c46
refs/heads/master: 725fb29fd4bcda958b32f4479ad9934117c22019
4 changes: 2 additions & 2 deletions trunk/include/asm-powerpc/tlbflush.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ static inline void flush_tlb_mm(struct mm_struct *mm)
static inline void flush_tlb_page(struct vm_area_struct *vma,
unsigned long vmaddr)
{
_tlbie(vmaddr, vma->vm_mm->context.id);
_tlbie(vmaddr, vma ? vma->vm_mm->context.id : 0);
}

static inline void flush_tlb_page_nohash(struct vm_area_struct *vma,
unsigned long vmaddr)
{
_tlbie(vmaddr, vma->vm_mm->context.id);
_tlbie(vmaddr, vma ? vma->vm_mm->context.id : 0);
}

static inline void flush_tlb_range(struct vm_area_struct *vma,
Expand Down

0 comments on commit bd547ce

Please sign in to comment.