hc
2024-02-20 102a0743326a03cd1a1202ceda21e175b7d3575c
kernel/arch/h8300/mm/fault.c
....@@ -18,7 +18,6 @@
1818 #include <linux/kernel.h>
1919 #include <linux/ptrace.h>
2020
21
-#include <asm/pgtable.h>
2221
2322 void die(const char *str, struct pt_regs *fp, unsigned long err);
2423
....@@ -52,7 +51,7 @@
5251 printk(" at virtual address %08lx\n", address);
5352 if (!user_mode(regs))
5453 die("Oops", regs, error_code);
55
- do_exit(SIGKILL);
54
+ make_task_dead(SIGKILL);
5655
5756 return 1;
5857 }