[PATCH] pass iocb to dio_iodone_t

XFS will have to look at iocb->private to fix aio+dio.  No other filesystem
is using the blockdev_direct_IO* end_io callback.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Christoph Hellwig
2005-06-23 22:00:59 -07:00
committed by Linus Torvalds
parent 16c29b67fb
commit 92198f7eaa
3 changed files with 5 additions and 4 deletions

View File

@ -220,6 +220,7 @@ extern int dir_notify_enable;
struct iovec;
struct nameidata;
struct kiocb;
struct pipe_inode_info;
struct poll_table_struct;
struct kstatfs;
@ -240,7 +241,7 @@ typedef int (get_block_t)(struct inode *inode, sector_t iblock,
typedef int (get_blocks_t)(struct inode *inode, sector_t iblock,
unsigned long max_blocks,
struct buffer_head *bh_result, int create);
typedef void (dio_iodone_t)(struct inode *inode, loff_t offset,
typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
ssize_t bytes, void *private);
/*
@ -302,7 +303,6 @@ struct iattr {
struct page;
struct address_space;
struct writeback_control;
struct kiocb;
struct address_space_operations {
int (*writepage)(struct page *page, struct writeback_control *wbc);