OSDN Git Service

block: pass no-op callback to INIT_WORK().
authorTetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Wed, 30 Jan 2019 13:21:45 +0000 (22:21 +0900)
committerJens Axboe <axboe@kernel.dk>
Wed, 30 Jan 2019 15:53:20 +0000 (08:53 -0700)
commit2e3c18d0ada16f145087b2687afcad1748c0827c
treeffcd11616cf5e9fd0d353b659b9d2d1a12340c69
parent3ca17a24e7fb3937417acf7d74773e3dbcf99dc7
block: pass no-op callback to INIT_WORK().

syzbot is hitting flush_work() warning caused by commit 4d43d395fed12463
("workqueue: Try to catch flush_work() without INIT_WORK().") [1].
Although that commit did not expect INIT_WORK(NULL) case, calling
flush_work() without setting a valid callback should be avoided anyway.
Fix this problem by setting a no-op callback instead of NULL.

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

Signed-off-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Reported-and-tested-by: syzbot <syzbot+ba2a929dcf8e704c180e@syzkaller.appspotmail.com>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-core.c