Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / h8300 / mm / fault.c
blob29e9af9f0e6a71942178bb9daff5f997e733060a
1 /*
2 * linux/arch/h8300/mm/fault.c
4 * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
5 * Copyright (C) 2000 Lineo, Inc. (www.lineo.com)
7 * Based on:
9 * linux/arch/m68knommu/mm/fault.c
10 * linux/arch/m68k/mm/fault.c
12 * Copyright (C) 1995 Hamish Macdonald
15 #include <linux/mman.h>
16 #include <linux/mm.h>
17 #include <linux/kernel.h>
18 #include <linux/ptrace.h>
20 #include <asm/system.h>
21 #include <asm/pgtable.h>
23 extern void die_if_kernel(char *, struct pt_regs *, long);
26 * This routine handles page faults. It determines the problem, and
27 * then passes it off to one of the appropriate routines.
29 * error_code:
30 * bit 0 == 0 means no page found, 1 means protection fault
31 * bit 1 == 0 means read, 1 means write
33 * If this routine detects a bad access, it returns 1, otherwise it
34 * returns 0.
36 asmlinkage int do_page_fault(struct pt_regs *regs, unsigned long address,
37 unsigned long error_code)
39 #ifdef DEBUG
40 printk ("regs->sr=%#x, regs->pc=%#lx, address=%#lx, %ld\n",
41 regs->sr, regs->pc, address, error_code);
42 #endif
45 * Oops. The kernel tried to access some bad page. We'll have to
46 * terminate things with extreme prejudice.
48 if ((unsigned long) address < PAGE_SIZE) {
49 printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
50 } else
51 printk(KERN_ALERT "Unable to handle kernel access");
52 printk(" at virtual address %08lx\n",address);
53 die_if_kernel("Oops", regs, error_code);
54 do_exit(SIGKILL);
56 return 1;