aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fat
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2014-03-05 01:33:16 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2014-05-06 17:32:46 -0400
commit31b140398ce56ab41646eda7f02bcb78d6a4c916 (patch)
tree1cc4be44c5f94f9fe1829e5c53267f3ce9bad309 /fs/fat
parenta6cbcd4a4a85e2fdb0b3344b88df2e8b3d526b9e (diff)
switch {__,}blockdev_direct_IO() to iov_iter
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/fat')
-rw-r--r--fs/fat/inode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fat/inode.c b/fs/fat/inode.c
index 154a6f9d3189..385cce464e82 100644
--- a/fs/fat/inode.c
+++ b/fs/fat/inode.c
@@ -213,8 +213,7 @@ static ssize_t fat_direct_IO(int rw, struct kiocb *iocb,
213 * FAT need to use the DIO_LOCKING for avoiding the race 213 * FAT need to use the DIO_LOCKING for avoiding the race
214 * condition of fat_get_block() and ->truncate(). 214 * condition of fat_get_block() and ->truncate().
215 */ 215 */
216 ret = blockdev_direct_IO(rw, iocb, inode, iter->iov, offset, 216 ret = blockdev_direct_IO(rw, iocb, inode, iter, offset, fat_get_block);
217 iter->nr_segs, fat_get_block);
218 if (ret < 0 && (rw & WRITE)) 217 if (ret < 0 && (rw & WRITE))
219 fat_write_failed(mapping, offset + count); 218 fat_write_failed(mapping, offset + count);
220 219