Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54330
b: refs/heads/master
c: 1e7371c
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed May 7, 2007
1 parent 3096f15 commit d2420e0
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 16dd07bc6404c8da0bdfeb7a5cde4e4a63991c00
refs/heads/master: 1e7371c1a11f041d641cc0ff113bf1daa1bd98b9
9 changes: 7 additions & 2 deletions trunk/arch/um/kernel/skas/tlb.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,13 @@ void flush_tlb_mm_skas(struct mm_struct *mm)

void force_flush_all_skas(void)
{
unsigned long end = proc_mm ? task_size : CONFIG_STUB_START;
fix_range(current->mm, 0, end, 1);
struct mm_struct *mm = current->mm;
struct vm_area_struct *vma = mm->mmap;

while(vma != NULL) {
fix_range(mm, vma->vm_start, vma->vm_end, 1);
vma = vma->vm_next;
}
}

void flush_tlb_page_skas(struct vm_area_struct *vma, unsigned long address)
Expand Down

0 comments on commit d2420e0

Please sign in to comment.