Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm
In directory sc8-pr-cvs1:/tmp/cvs-serv17117
Modified Files:
tlb.h
Log Message:
Argument types for flush_tlb_range changed in 2.5.5
Index: tlb.h
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/mm/tlb.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- tlb.h 20 May 2002 00:33:39 -0000 1.3
+++ tlb.h 2 Dec 2002 00:13:17 -0000 1.4
@@ -43,10 +43,10 @@
__flush_tlb_one(addr);
}
-static inline void flush_tlb_range(struct mm_struct *mm,
+static inline void flush_tlb_range(struct vm_area_struct *vma,
unsigned long start, unsigned long end)
{
- if (mm == current->mm)
+ if (vma->vm_mm == current->mm)
__flush_tlb();
}
|