CC: [email protected]
CC: [email protected]
TO: Peter Zijlstra <[email protected]>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/peterz/queue.git 
sched/wip.umcg
head:   82bbf7cff6212eb462eea2bcde016c6f8589eae1
commit: a2bab7e6403961abdecfd504569f8917d4d1d27a [5/12] sched: User Mode 
Concurency Groups
:::::: branch date: 8 hours ago
:::::: commit date: 8 hours ago
config: s390-randconfig-m031-20220217 
(https://download.01.org/0day-ci/archive/20220218/[email protected]/config)
compiler: s390-linux-gcc (GCC) 11.2.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <[email protected]>
Reported-by: Dan Carpenter <[email protected]>

smatch warnings:
kernel/entry/common.c:175 exit_to_user_mode_loop() warn: bitwise AND condition 
is false here

vim +175 kernel/entry/common.c

a9f3a74a29af095 Thomas Gleixner     2020-07-22  154  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  155  static unsigned long 
exit_to_user_mode_loop(struct pt_regs *regs,
a9f3a74a29af095 Thomas Gleixner     2020-07-22  156                             
            unsigned long ti_work)
a9f3a74a29af095 Thomas Gleixner     2020-07-22  157  {
a9f3a74a29af095 Thomas Gleixner     2020-07-22  158     /*
a9f3a74a29af095 Thomas Gleixner     2020-07-22  159      * Before returning to 
user space ensure that all pending work
a9f3a74a29af095 Thomas Gleixner     2020-07-22  160      * items have been 
completed.
a9f3a74a29af095 Thomas Gleixner     2020-07-22  161      */
a2bab7e6403961a Peter Zijlstra      2021-12-14  162     do {
a9f3a74a29af095 Thomas Gleixner     2020-07-22  163             
local_irq_enable_exit_to_user(ti_work);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  164  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  165             if (ti_work & 
_TIF_NEED_RESCHED)
a9f3a74a29af095 Thomas Gleixner     2020-07-22  166                     
schedule();
a9f3a74a29af095 Thomas Gleixner     2020-07-22  167  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  168             if (ti_work & 
_TIF_UPROBE)
a9f3a74a29af095 Thomas Gleixner     2020-07-22  169                     
uprobe_notify_resume(regs);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  170  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  171             if (ti_work & 
_TIF_PATCH_PENDING)
a9f3a74a29af095 Thomas Gleixner     2020-07-22  172                     
klp_update_patch_state(current);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  173  
a2bab7e6403961a Peter Zijlstra      2021-12-14  174             /* must be 
before handle_signal_work(); terminates on sigpending */
a2bab7e6403961a Peter Zijlstra      2021-12-14 @175             if (ti_work & 
_TIF_UMCG)
a2bab7e6403961a Peter Zijlstra      2021-12-14  176                     
umcg_notify_resume(regs);
a2bab7e6403961a Peter Zijlstra      2021-12-14  177  
12db8b690010ccf Jens Axboe          2020-10-26  178             if (ti_work & 
(_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL))
12db8b690010ccf Jens Axboe          2020-10-26  179                     
handle_signal_work(regs, ti_work);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  180  
a68de80f61f6af3 Sean Christopherson 2021-09-01  181             if (ti_work & 
_TIF_NOTIFY_RESUME)
a9f3a74a29af095 Thomas Gleixner     2020-07-22  182                     
tracehook_notify_resume(regs);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  183  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  184             /* Architecture 
specific TIF work */
a9f3a74a29af095 Thomas Gleixner     2020-07-22  185             
arch_exit_to_user_mode_work(regs, ti_work);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  186  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  187             /*
a9f3a74a29af095 Thomas Gleixner     2020-07-22  188              * Disable 
interrupts and reevaluate the work flags as they
a9f3a74a29af095 Thomas Gleixner     2020-07-22  189              * might have 
changed while interrupts and preemption was
a9f3a74a29af095 Thomas Gleixner     2020-07-22  190              * enabled 
above.
a9f3a74a29af095 Thomas Gleixner     2020-07-22  191              */
a9f3a74a29af095 Thomas Gleixner     2020-07-22  192             
local_irq_disable_exit_to_user();
47b8ff194c1fd73 Frederic Weisbecker 2021-02-01  193  
47b8ff194c1fd73 Frederic Weisbecker 2021-02-01  194             /* Check if any 
of the above work has queued a deferred wakeup */
f268c3737ecaefc Frederic Weisbecker 2021-05-27  195             
tick_nohz_user_enter_prepare();
47b8ff194c1fd73 Frederic Weisbecker 2021-02-01  196  
6ce895128b3bff7 Mark Rutland        2021-11-29  197             ti_work = 
read_thread_flags();
a2bab7e6403961a Peter Zijlstra      2021-12-14  198     } while (ti_work & 
EXIT_TO_USER_MODE_WORK);
a9f3a74a29af095 Thomas Gleixner     2020-07-22  199  
a9f3a74a29af095 Thomas Gleixner     2020-07-22  200     /* Return the latest 
work state for arch_exit_to_user_mode() */
a9f3a74a29af095 Thomas Gleixner     2020-07-22  201     return ti_work;
a9f3a74a29af095 Thomas Gleixner     2020-07-22  202  }
a9f3a74a29af095 Thomas Gleixner     2020-07-22  203  

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/[email protected]
_______________________________________________
kbuild mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to