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 /block/cfq-iosched.c | |
parent | e69f18f06b97ed29645d020500222bfcec2b42b2 (diff) | |
download | linux-59c3d45e487315e6e05a3f2310b61109f8e503e7.tar.gz |
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 'block/cfq-iosched.c')
-rw-r--r-- | block/cfq-iosched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c index e0985f1955e7..5063a0bd831a 100644 --- a/block/cfq-iosched.c +++ b/block/cfq-iosched.c @@ -908,7 +908,7 @@ static inline void cfq_schedule_dispatch(struct cfq_data *cfqd) { if (cfqd->busy_queues) { cfq_log(cfqd, "schedule dispatch"); - kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work); + kblockd_schedule_work(&cfqd->unplug_work); } } |