diff options
Diffstat (limited to 'kernel/entry/common.c')
| -rw-r--r-- | kernel/entry/common.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/entry/common.c b/kernel/entry/common.c index d5a61d565ad5..bad713684c2e 100644 --- a/kernel/entry/common.c +++ b/kernel/entry/common.c @@ -187,7 +187,7 @@ static unsigned long exit_to_user_mode_loop(struct pt_regs *regs,  		/* Check if any of the above work has queued a deferred wakeup */  		tick_nohz_user_enter_prepare(); -		ti_work = READ_ONCE(current_thread_info()->flags); +		ti_work = read_thread_flags();  	}  	/* Return the latest work state for arch_exit_to_user_mode() */ @@ -196,7 +196,7 @@ static unsigned long exit_to_user_mode_loop(struct pt_regs *regs,  static void exit_to_user_mode_prepare(struct pt_regs *regs)  { -	unsigned long ti_work = READ_ONCE(current_thread_info()->flags); +	unsigned long ti_work = read_thread_flags();  	lockdep_assert_irqs_disabled();  |