From: James S. <jsi...@us...> - 2002-01-28 18:38:37
|
Update of /cvsroot/linux-mips/linux/arch/mips/mm In directory usw-pr-cvs1:/tmp/cvs-serv27385 Modified Files: tlb-r4k.c Log Message: More CONFIG_64BIT_PHYS_ADDR fixes for TLB exception handlers. Index: tlb-r4k.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/mm/tlb-r4k.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- tlb-r4k.c 2002/01/15 00:34:07 1.8 +++ tlb-r4k.c 2002/01/28 18:38:34 1.9 @@ -140,7 +140,7 @@ void local_flush_tlb_page(struct vm_area_struct *vma, unsigned long page) { - if (vma->vm_mm->context != 0) { + if (!vma || vma->vm_mm->context != 0) { unsigned long flags; int oldpid, newpid, idx; |