]> git.hungrycats.org Git - linux/commitdiff
[PATCH] M68k TLB fixes
authorGeert Uytterhoeven <geert@linux-m68k.org>
Tue, 13 Apr 2004 00:31:58 +0000 (17:31 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Tue, 13 Apr 2004 00:31:58 +0000 (17:31 -0700)
M68k TLB fixes from Roman Zippel:
  - Check current->active_mm for currently active mm
  - Set correct context to flush the right ATC entry
This is especially important for kswapd to correctly flush unmapped entries (it
caused random segfaults during large compiles)

include/asm-m68k/tlbflush.h

index 03a85d3bd7f4be531762ec8fd21819585b1d0219..498f090dcb4b1cceff9e784daf207aa7797f9bbf 100644 (file)
@@ -65,20 +65,24 @@ static inline void flush_tlb_all(void)
 
 static inline void flush_tlb_mm(struct mm_struct *mm)
 {
-       if (mm == current->mm)
+       if (mm == current->active_mm)
                __flush_tlb();
 }
 
 static inline void flush_tlb_page(struct vm_area_struct *vma, unsigned long addr)
 {
-       if (vma->vm_mm == current->mm)
+       if (vma->vm_mm == current->active_mm) {
+               mm_segment_t old_fs = get_fs();
+               set_fs(USER_DS);
                __flush_tlb_one(addr);
+               set_fs(old_fs);
+       }
 }
 
 static inline void flush_tlb_range(struct vm_area_struct *vma,
                                   unsigned long start, unsigned long end)
 {
-       if (vma->vm_mm == current->mm)
+       if (vma->vm_mm == current->active_mm)
                __flush_tlb();
 }