diff options
Diffstat (limited to 'arch/arc/mm/fault.c')
| -rw-r--r-- | arch/arc/mm/fault.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arc/mm/fault.c b/arch/arc/mm/fault.c index 6a2e006cbcce..d948e4e9d89c 100644 --- a/arch/arc/mm/fault.c +++ b/arch/arc/mm/fault.c @@ -86,7 +86,7 @@ void do_page_fault(unsigned long address, struct pt_regs *regs)  	 * If we're in an interrupt or have no user  	 * context, we must not take the fault..  	 */ -	if (in_atomic() || !mm) +	if (faulthandler_disabled() || !mm)  		goto no_context;  	if (user_mode(regs))  |