diff options
author | Jens Axboe <axboe@fb.com> | 2014-04-08 11:15:35 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-04-09 12:17:00 -0400 |
commit | 59c3d45e487315e6e05a3f2310b61109f8e503e7 (patch) | |
tree | b275e73e6ab7dd599d2ec7edd5b9aa6efe361b31 /block/cfq-iosched.c | |
parent | e69f18f06b97ed29645d020500222bfcec2b42b2 (diff) |
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) | |||
908 | { | 908 | { |
909 | if (cfqd->busy_queues) { | 909 | if (cfqd->busy_queues) { |
910 | cfq_log(cfqd, "schedule dispatch"); | 910 | cfq_log(cfqd, "schedule dispatch"); |
911 | kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work); | 911 | kblockd_schedule_work(&cfqd->unplug_work); |
912 | } | 912 | } |
913 | } | 913 | } |
914 | 914 | ||