diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-03-05 01:33:16 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-05-06 17:32:46 -0400 |
commit | 31b140398ce56ab41646eda7f02bcb78d6a4c916 (patch) | |
tree | 1cc4be44c5f94f9fe1829e5c53267f3ce9bad309 /fs/ext3 | |
parent | a6cbcd4a4a85e2fdb0b3344b88df2e8b3d526b9e (diff) |
switch {__,}blockdev_direct_IO() to iov_iter
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ext3')
-rw-r--r-- | fs/ext3/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c index 8582ae2c80b0..4d32133a76c4 100644 --- a/fs/ext3/inode.c +++ b/fs/ext3/inode.c | |||
@@ -1855,8 +1855,7 @@ static ssize_t ext3_direct_IO(int rw, struct kiocb *iocb, | |||
1855 | } | 1855 | } |
1856 | 1856 | ||
1857 | retry: | 1857 | retry: |
1858 | ret = blockdev_direct_IO(rw, iocb, inode, iter->iov, offset, | 1858 | ret = blockdev_direct_IO(rw, iocb, inode, iter, offset, ext3_get_block); |
1859 | iter->nr_segs, ext3_get_block); | ||
1860 | /* | 1859 | /* |
1861 | * In case of error extending write may have instantiated a few | 1860 | * In case of error extending write may have instantiated a few |
1862 | * blocks outside i_size. Trim these off again. | 1861 | * blocks outside i_size. Trim these off again. |