diff options
author | Jens Axboe <jaxboe@fusionio.com> | 2011-03-11 20:17:08 +0100 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-03-11 20:17:08 +0100 |
commit | 1f940bdfc0d03265d178d9dfd840d854819f797d (patch) | |
tree | b45ef8482ef17ccaee2e754e872fb4047efb3448 /include/linux | |
parent | eba2ed9c9636d9e7ed203a2498ed230b48341709 (diff) | |
download | talos-op-linux-1f940bdfc0d03265d178d9dfd840d854819f797d.tar.gz talos-op-linux-1f940bdfc0d03265d178d9dfd840d854819f797d.zip |
block: fixup plugging stubs for !CONFIG_BLOCK
They used an older prototype, fix it up.
Reported-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/blkdev.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 91fa428fa2c1..16a902f099ac 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h @@ -1297,15 +1297,18 @@ static inline long nr_blockdev_pages(void) return 0; } -static inline void blk_start_plug(struct list_head *list) +struct blk_plug { +}; + +static inline void blk_start_plug(struct blk_plug *plug) { } -static inline void blk_finish_plug(struct list_head *list) +static inline void blk_finish_plug(struct blk_plug *plug) { } -static inline void blk_flush_plug(struct task_struct *tsk) +static inline void blk_flush_plug(struct task_struct *task) { } |