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/gfs2 | |
parent | a6cbcd4a4a85e2fdb0b3344b88df2e8b3d526b9e (diff) |
switch {__,}blockdev_direct_IO() to iov_iter
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/aops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index 228a12d2afa9..910838951d66 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c | |||
@@ -1097,7 +1097,7 @@ static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb, | |||
1097 | } | 1097 | } |
1098 | 1098 | ||
1099 | rv = __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, | 1099 | rv = __blockdev_direct_IO(rw, iocb, inode, inode->i_sb->s_bdev, |
1100 | iter->iov, offset, iter->nr_segs, | 1100 | iter, offset, |
1101 | gfs2_get_block_direct, NULL, NULL, 0); | 1101 | gfs2_get_block_direct, NULL, NULL, 0); |
1102 | out: | 1102 | out: |
1103 | gfs2_glock_dq(&gh); | 1103 | gfs2_glock_dq(&gh); |