diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2008-07-28 13:08:45 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-10-09 08:56:09 +0200 |
commit | 18887ad910e56066233a07fd3cfb2fa11338b782 (patch) | |
tree | a8d14ba47f15c58e36b26c82fa4ae4ad7526c80a /include | |
parent | b646fc59b332ef307895558c9cd1359dc2d25813 (diff) | |
download | linux-3.10-18887ad910e56066233a07fd3cfb2fa11338b782.tar.gz linux-3.10-18887ad910e56066233a07fd3cfb2fa11338b782.tar.bz2 linux-3.10-18887ad910e56066233a07fd3cfb2fa11338b782.zip |
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 'include')
-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 1adb03827bd..10aa46c8f17 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -912,7 +912,7 @@ static inline void put_dev_sector(Sector p) } struct work_struct; -int kblockd_schedule_work(struct work_struct *work); +int kblockd_schedule_work(struct request_queue *q, struct work_struct *work); void kblockd_flush_work(struct work_struct *work); #define MODULE_ALIAS_BLOCKDEV(major,minor) \ |