Fix up arm26, cris, frv, m68k, parisc and sh64 too..
@@ -176,12 +176,12 @@ survive:
* Handle the "normal" cases first - successful and sigbus
*/
switch (fault) {
- case 2:
+ case VM_FAULT_MAJOR:
tsk->maj_flt++;
return fault;
- case 1:
+ case VM_FAULT_MINOR:
tsk->min_flt++;
- case 0:
+ case VM_FAULT_SIGBUS:
}
@@ -226,14 +226,11 @@ int do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
/*
* Handle the "normal" case first
- if (fault > 0)
+ switch (fault) {
return 0;
-
- /*
- * We had some memory, but were unable to
- * successfully fix up this page fault.
- */
- if (fault == 0){
goto do_sigbus;
@@ -284,13 +284,13 @@ do_page_fault(unsigned long address, struct pt_regs *regs,
switch (handle_mm_fault(mm, vma, address, writeaccess & 1)) {
break;
default:
goto out_of_memory;
@@ -163,13 +163,13 @@ asmlinkage void do_page_fault(int datammu, unsigned long esr0, unsigned long ear
* the fault.
switch (handle_mm_fault(mm, vma, ear0, write)) {
current->min_flt++;
current->maj_flt++;
@@ -160,13 +160,13 @@ good_area:
printk("handle_mm_fault returns %d\n",fault);
#endif
goto bus_err;
@@ -178,17 +178,17 @@ good_area:
switch (handle_mm_fault(mm, vma, address, (acc_type & VM_WRITE) != 0)) {
++current->min_flt;
++current->maj_flt;
- * We ran out of memory, or some other thing happened
- * to us that made us unable to handle the page fault
- * gracefully.
+ * We hit a hared mapping outside of the file, or some
+ * other thing happened to us that made us unable to
+ * handle the page fault gracefully.
goto bad_area;
@@ -223,13 +223,13 @@ good_area:
survive:
switch (handle_mm_fault(mm, vma, address, writeaccess)) {