diff options
author | Jens Axboe <axboe@fb.com> | 2016-08-25 00:52:48 +0300 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-08-29 17:13:21 +0300 |
commit | ee63cfa7fc197b63669623721b8009cce5b0659b (patch) | |
tree | 59285713289d5b1d108622d4d31ffcd646a2dad5 /include/linux/blkdev.h | |
parent | f72b8792d180948b4b3898374998f5ac8c02e539 (diff) | |
download | linux-ee63cfa7fc197b63669623721b8009cce5b0659b.tar.xz |
block: add kblockd_schedule_work_on()
Add a helper to schedule a regular struct work on a particular CPU.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index e79055c8b577..69aae720f4ef 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1440,8 +1440,8 @@ static inline bool req_gap_front_merge(struct request *req, struct bio *bio) return bio_will_gap(req->q, bio, req->bio); } -struct work_struct; int kblockd_schedule_work(struct work_struct *work); +int kblockd_schedule_work_on(int cpu, struct work_struct *work); int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay); int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay); |