kernel/arch/h8300/mm/fault.c
.. .. @@ -18,7 +18,6 @@ 18 18 #include <linux/kernel.h> 19 19 #include <linux/ptrace.h> 20 20 21 -#include <asm/pgtable.h>22 21 23 22 void die(const char *str, struct pt_regs *fp, unsigned long err); 24 23 .. .. @@ -52,7 +51,7 @@ 52 51 printk(" at virtual address %08lx\n", address); 53 52 if (!user_mode(regs)) 54 53 die("Oops", regs, error_code); 55 - do_exit(SIGKILL);54 + make_task_dead(SIGKILL);56 55 57 56 return 1; 58 57 }