Update of /cvsroot/linuxconsole/ruby/linux/arch/x86_64/mm
In directory usw-pr-cvs1:/tmp/cvs-serv13236/linux/arch/x86_64/mm
Modified Files:
fault.c
Log Message:
Synced to 2.5.22
Index: fault.c
===================================================================
RCS file: /cvsroot/linuxconsole/ruby/linux/arch/x86_64/mm/fault.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- fault.c 26 Apr 2002 17:23:40 -0000 1.4
+++ fault.c 18 Jun 2002 18:51:55 -0000 1.5
@@ -82,7 +82,7 @@
}
int page_fault_trace;
-int exception_trace;
+int exception_trace = 1;
/*
* This routine handles page faults. It determines the address,
@@ -308,11 +308,7 @@
if (!pte_present(*pte))
goto bad_area_nosemaphore;
- /* Strictly a flush_tlb_all because vmalloc is global,
- but this only applies to new global pages so it should
- not be needed. vmalloc will likely touch multiple ptes,
- so do a full flush instead of a partial one. */
- __flush_tlb();
+ __flush_tlb_all();
return;
}
}
|