fault-nommu.c 1.5 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3
 * arch/sh/mm/fault-nommu.c
 *
4
 * Copyright (C) 2002 - 2007 Paul Mundt
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12
 *
 * Based on linux/arch/sh/mm/fault.c:
 *  Copyright (C) 1999  Niibe Yutaka
 *
 * Released under the terms of the GNU GPL v2.0.
 */
#include <linux/kernel.h>
#include <linux/mm.h>
13 14
#include <linux/hardirq.h>
#include <linux/kprobes.h>
L
Linus Torvalds 已提交
15
#include <asm/system.h>
16
#include <asm/ptrace.h>
L
Linus Torvalds 已提交
17 18 19 20 21 22 23
#include <asm/kgdb.h>

/*
 * This routine handles page faults.  It determines the address,
 * and the problem, and then passes it off to one of the appropriate
 * routines.
 */
24 25 26
asmlinkage void __kprobes do_page_fault(struct pt_regs *regs,
					unsigned long writeaccess,
					unsigned long address)
L
Linus Torvalds 已提交
27
{
28 29 30
	trace_hardirqs_on();
	local_irq_enable();

L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#if defined(CONFIG_SH_KGDB)
	if (kgdb_nofault && kgdb_bus_err_hook)
		kgdb_bus_err_hook();
#endif

	/*
	 * Oops. The kernel tried to access some bad page. We'll have to
	 * terminate things with extreme prejudice.
	 *
	 */
	if (address < PAGE_SIZE) {
		printk(KERN_ALERT "Unable to handle kernel NULL pointer dereference");
	} else {
		printk(KERN_ALERT "Unable to handle kernel paging request");
	}

	printk(" at virtual address %08lx\n", address);
	printk(KERN_ALERT "pc = %08lx\n", regs->pc);

	die("Oops", regs, writeaccess);
	do_exit(SIGKILL);
}

54 55 56
asmlinkage int __kprobes __do_page_fault(struct pt_regs *regs,
					 unsigned long writeaccess,
					 unsigned long address)
L
Linus Torvalds 已提交
57 58 59 60 61 62
{
#if defined(CONFIG_SH_KGDB)
	if (kgdb_nofault && kgdb_bus_err_hook)
		kgdb_bus_err_hook();
#endif

63
	return (address >= TASK_SIZE);
L
Linus Torvalds 已提交
64
}