diff options
author | Daniel Wagner <dwagner@suse.de> | 2020-03-02 14:24:08 +0100 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-03-02 15:17:31 +0100 |
commit | e959e5405f34aa92d71d0dd162b969c21742061d (patch) | |
tree | 56960011155ba1574f6786b467d1d1e0730ac624 /block/blk-core.c | |
parent | Merge branch 'nvme-5.6-rc4' of git://git.infradead.org/nvme into block-5.6 (diff) | |
download | linux-e959e5405f34aa92d71d0dd162b969c21742061d.tar.xz linux-e959e5405f34aa92d71d0dd162b969c21742061d.zip |
block: Remove used kblockd_schedule_work_on()
Commit ee63cfa7fc19 ("block: add kblockd_schedule_work_on()")
introduced the helper in 2016. Remove it because since then no caller
was added.
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Daniel Wagner <dwagner@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r-- | block/blk-core.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/block/blk-core.c b/block/blk-core.c index 089e890ab208..60dc9552ef8d 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -1663,12 +1663,6 @@ int kblockd_schedule_work(struct work_struct *work) } EXPORT_SYMBOL(kblockd_schedule_work); -int kblockd_schedule_work_on(int cpu, struct work_struct *work) -{ - return queue_work_on(cpu, kblockd_workqueue, work); -} -EXPORT_SYMBOL(kblockd_schedule_work_on); - int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay) { |