diff options
Diffstat (limited to 'arch/riscv/mm/fault.c')
| -rw-r--r-- | arch/riscv/mm/fault.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/riscv/mm/fault.c b/arch/riscv/mm/fault.c index aa08dd2f8fae..4e9efbe46d5f 100644 --- a/arch/riscv/mm/fault.c +++ b/arch/riscv/mm/fault.c @@ -31,7 +31,7 @@ static void die_kernel_fault(const char *msg, unsigned long addr,  	bust_spinlocks(0);  	die(regs, "Oops"); -	do_exit(SIGKILL); +	make_task_dead(SIGKILL);  }  static inline void no_context(struct pt_regs *regs, unsigned long addr) @@ -235,7 +235,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs)  	 * only copy the information from the master page table,  	 * nothing more.  	 */ -	if (unlikely((addr >= VMALLOC_START) && (addr <= VMALLOC_END))) { +	if (unlikely((addr >= VMALLOC_START) && (addr < VMALLOC_END))) {  		vmalloc_fault(regs, code, addr);  		return;  	} @@ -330,7 +330,7 @@ good_area:  	if (fault_signal_pending(fault, regs))  		return; -	if (unlikely((fault & VM_FAULT_RETRY) && (flags & FAULT_FLAG_ALLOW_RETRY))) { +	if (unlikely(fault & VM_FAULT_RETRY)) {  		flags |= FAULT_FLAG_TRIED;  		/*  | 
