diff options
Diffstat (limited to 'arch/x86/mm/fault.c')
| -rw-r--r-- | arch/x86/mm/fault.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/arch/x86/mm/fault.c b/arch/x86/mm/fault.c index 4bfed53e210e..d0074c6ed31a 100644 --- a/arch/x86/mm/fault.c +++ b/arch/x86/mm/fault.c @@ -1413,8 +1413,7 @@ good_area:  	 * and if there is a fatal signal pending there is no guarantee  	 * that we made any progress. Handle this case first.  	 */ -	if (unlikely((fault & VM_FAULT_RETRY) && -		     (flags & FAULT_FLAG_ALLOW_RETRY))) { +	if (unlikely(fault & VM_FAULT_RETRY)) {  		flags |= FAULT_FLAG_TRIED;  		goto retry;  	} |