]> Git Repo - linux.git/commit
workqueue: Try to catch flush_work() without INIT_WORK().
authorTetsuo Handa <[email protected]>
Wed, 23 Jan 2019 00:44:12 +0000 (09:44 +0900)
committerTejun Heo <[email protected]>
Fri, 25 Jan 2019 15:28:29 +0000 (07:28 -0800)
commit4d43d395fed124631ca02356c711facb90185175
tree6c8e59bb96496aa1a19d3e8b96779b7731a258a2
parentd73aba1115cf40630cc8b4b7aed049ed8117b458
workqueue: Try to catch flush_work() without INIT_WORK().

syzbot found a flush_work() caller who forgot to call INIT_WORK()
because that work_struct was allocated by kzalloc() [1]. But the message

  INFO: trying to register non-static key.
  the code is fine but needs lockdep annotation.
  turning off the locking correctness validator.

by lock_map_acquire() is failing to tell that INIT_WORK() is missing.

Since flush_work() without INIT_WORK() is a bug, and INIT_WORK() should
set ->func field to non-zero, let's warn if ->func field is zero.

[1] https://syzkaller.appspot.com/bug?id=a5954455fcfa51c29ca2ab55b203076337e1c770

Signed-off-by: Tetsuo Handa <[email protected]>
Signed-off-by: Tejun Heo <[email protected]>
kernel/workqueue.c
This page took 0.060958 seconds and 4 git commands to generate.