diff options
author | Jens Axboe <axboe@fb.com> | 2014-04-08 09:15:35 -0600 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-04-09 10:17:00 -0600 |
commit | 59c3d45e487315e6e05a3f2310b61109f8e503e7 (patch) | |
tree | b275e73e6ab7dd599d2ec7edd5b9aa6efe361b31 /include/linux/blkdev.h | |
parent | e69f18f06b97ed29645d020500222bfcec2b42b2 (diff) | |
download | blackbird-op-linux-59c3d45e487315e6e05a3f2310b61109f8e503e7.tar.gz blackbird-op-linux-59c3d45e487315e6e05a3f2310b61109f8e503e7.zip |
block: remove 'q' parameter from kblockd_schedule_*_work()
The queue parameter is never used, just get rid of it.
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'include/linux/blkdev.h')
-rw-r--r-- | include/linux/blkdev.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 1e1fa3f93d5f..2425945d36ab 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1359,8 +1359,8 @@ static inline void put_dev_sector(Sector p) } struct work_struct; -int kblockd_schedule_work(struct request_queue *q, struct work_struct *work); -int kblockd_schedule_delayed_work(struct request_queue *q, struct delayed_work *dwork, unsigned long delay); +int kblockd_schedule_work(struct work_struct *work); +int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay); #ifdef CONFIG_BLK_CGROUP /* |