summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorJens Axboe <axboe@fb.com>2017-04-10 09:54:55 -0600
committerJens Axboe <axboe@fb.com>2017-04-28 08:10:15 -0600
commit818cd1cbaa7b00bbc35452a76bebc681a65f1912 (patch)
tree746f7672e1ca7052f17263e6bc0d6b97b2bb4655 /block
parent9f993737906b30d7b2454a38637d1f70ffd60f2f (diff)
downloadop-kernel-dev-818cd1cbaa7b00bbc35452a76bebc681a65f1912.zip
op-kernel-dev-818cd1cbaa7b00bbc35452a76bebc681a65f1912.tar.gz
block: add kblock_mod_delayed_work_on()
This modifies (or adds, if not currently pending) an existing delayed work item. Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Bart Van Assche <Bart.VanAssche@sandisk.com> Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 3793967..64b6e58 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -3076,6 +3076,13 @@ int kblockd_schedule_work_on(int cpu, struct work_struct *work)
}
EXPORT_SYMBOL(kblockd_schedule_work_on);
+int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork,
+ unsigned long delay)
+{
+ return mod_delayed_work_on(cpu, kblockd_workqueue, dwork, delay);
+}
+EXPORT_SYMBOL(kblockd_mod_delayed_work_on);
+
int kblockd_schedule_delayed_work(struct delayed_work *dwork,
unsigned long delay)
{
OpenPOWER on IntegriCloud