aboutsummaryrefslogtreecommitdiffstats
path: root/block/cfq-iosched.c
diff options
context:
space:
mode:
authorJens Axboe <jens.axboe@oracle.com>2008-07-28 07:08:45 -0400
committerJens Axboe <jens.axboe@oracle.com>2008-10-09 02:56:09 -0400
commit18887ad910e56066233a07fd3cfb2fa11338b782 (patch)
treea8d14ba47f15c58e36b26c82fa4ae4ad7526c80a /block/cfq-iosched.c
parentb646fc59b332ef307895558c9cd1359dc2d25813 (diff)
block: make kblockd_schedule_work() take the queue as parameter
Preparatory patch for checking queuing affinity. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/cfq-iosched.c')
-rw-r--r--block/cfq-iosched.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
index 1e2aff812ee2..5f6fd287c185 100644
--- a/block/cfq-iosched.c
+++ b/block/cfq-iosched.c
@@ -244,7 +244,7 @@ static inline void cfq_schedule_dispatch(struct cfq_data *cfqd)
244{ 244{
245 if (cfqd->busy_queues) { 245 if (cfqd->busy_queues) {
246 cfq_log(cfqd, "schedule dispatch"); 246 cfq_log(cfqd, "schedule dispatch");
247 kblockd_schedule_work(&cfqd->unplug_work); 247 kblockd_schedule_work(cfqd->queue, &cfqd->unplug_work);
248 } 248 }
249} 249}
250 250