mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 15:29:16 +00:00
riscv/mm/fault: Simplify mm_fault_error()
Simplify the mm_fault_error() handling function by eliminating the unnecessary gotos. Signed-off-by: Pekka Enberg <penberg@kernel.org> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
This commit is contained in:
parent
6c11ffbfd8
commit
7a75f3d47a
@ -39,32 +39,27 @@ static inline void no_context(struct pt_regs *regs, unsigned long addr)
|
|||||||
|
|
||||||
static inline void mm_fault_error(struct pt_regs *regs, unsigned long addr, vm_fault_t fault)
|
static inline void mm_fault_error(struct pt_regs *regs, unsigned long addr, vm_fault_t fault)
|
||||||
{
|
{
|
||||||
if (fault & VM_FAULT_OOM)
|
if (fault & VM_FAULT_OOM) {
|
||||||
goto out_of_memory;
|
/*
|
||||||
else if (fault & VM_FAULT_SIGBUS)
|
* We ran out of memory, call the OOM killer, and return the userspace
|
||||||
goto do_sigbus;
|
* (which will retry the fault, or kill us if we got oom-killed).
|
||||||
|
*/
|
||||||
|
if (!user_mode(regs)) {
|
||||||
|
no_context(regs, addr);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
pagefault_out_of_memory();
|
||||||
|
return;
|
||||||
|
} else if (fault & VM_FAULT_SIGBUS) {
|
||||||
|
/* Kernel mode? Handle exceptions or die */
|
||||||
|
if (!user_mode(regs)) {
|
||||||
|
no_context(regs, addr);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
do_trap(regs, SIGBUS, BUS_ADRERR, addr);
|
||||||
|
return;
|
||||||
|
}
|
||||||
BUG();
|
BUG();
|
||||||
|
|
||||||
/*
|
|
||||||
* We ran out of memory, call the OOM killer, and return the userspace
|
|
||||||
* (which will retry the fault, or kill us if we got oom-killed).
|
|
||||||
*/
|
|
||||||
out_of_memory:
|
|
||||||
if (!user_mode(regs)) {
|
|
||||||
no_context(regs, addr);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
pagefault_out_of_memory();
|
|
||||||
return;
|
|
||||||
|
|
||||||
do_sigbus:
|
|
||||||
/* Kernel mode? Handle exceptions or die */
|
|
||||||
if (!user_mode(regs)) {
|
|
||||||
no_context(regs, addr);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
do_trap(regs, SIGBUS, BUS_ADRERR, addr);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void bad_area(struct pt_regs *regs, struct mm_struct *mm, int code, unsigned long addr)
|
static inline void bad_area(struct pt_regs *regs, struct mm_struct *mm, int code, unsigned long addr)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user