patch-2.1.51 linux/arch/i386/mm/fault.c
Next file: linux/arch/m68k/kernel/Makefile
Previous file: linux/arch/i386/kernel/i386_ksyms.c
Back to the patch index
Back to the overall index
- Lines: 21
- Date:
Sat Aug 16 22:14:24 1997
- Orig file:
v2.1.50/linux/arch/i386/mm/fault.c
- Orig date:
Thu Jul 17 10:06:03 1997
diff -u --recursive --new-file v2.1.50/linux/arch/i386/mm/fault.c linux/arch/i386/mm/fault.c
@@ -186,16 +186,15 @@
*
* First we check if it was the bootup rw-test, though..
*/
- if (wp_works_ok < 0 && address == 0xc0000000 && (error_code & 1)) {
+ if (wp_works_ok < 0 && address == TASK_SIZE && (error_code & 1)) {
wp_works_ok = 1;
- pg0[0] = pte_val(mk_pte(0, PAGE_SHARED));
+ pg0[0] = pte_val(mk_pte(TASK_SIZE, PAGE_SHARED));
flush_tlb();
goto out;
}
- if (address < PAGE_SIZE) {
+ if (address < PAGE_SIZE)
printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
- pg0[0] = pte_val(mk_pte(0, PAGE_SHARED));
- } else
+ else
printk(KERN_ALERT "Unable to handle kernel paging request");
printk(" at virtual address %08lx\n",address);
__asm__("movl %%cr3,%0" : "=r" (page));
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov