]> git.baikalelectronics.ru Git - kernel.git/commit
workqueue: trigger WARN if queue_delayed_work() is called with NULL @wq
authorTejun Heo <tj@kernel.org>
Mon, 6 Mar 2017 20:33:42 +0000 (15:33 -0500)
committerTejun Heo <tj@kernel.org>
Mon, 6 Mar 2017 20:33:42 +0000 (15:33 -0500)
commit6ece998dc82bae415a55905bd41b7c892a25b30b
tree3b785d958b7c02d45d3ce9e4076af530d0a34885
parent8a17c7afe9fb246fbdf434a8c4a84cdc5bada8cb
workqueue: trigger WARN if queue_delayed_work() is called with NULL @wq

If queue_delayed_work() gets called with NULL @wq, the kernel will
oops asynchronuosly on timer expiration which isn't too helpful in
tracking down the offender.  This actually happened with smc.

__queue_delayed_work() already does several input sanity checks
synchronously.  Add NULL @wq check.

Reported-by: Dave Jones <davej@codemonkey.org.uk>
Link: http://lkml.kernel.org/r/20170227171439.jshx3qplflyrgcv7@codemonkey.org.uk
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c