diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2014-04-02 14:33:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-05-06 17:37:55 -0400 |
commit | aad4f8bb42af06371aa0e85bf0cd9d52c0494985 (patch) | |
tree | 8ac28ca7ea6f4676d10cde8e7f148ebe42237f39 /fs/ubifs | |
parent | 293bc9822fa9b3c9d4b7893bcb241e085580771a (diff) |
switch simple generic_file_aio_read() users to ->read_iter()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c index 4f34dbae823d..ab721529c57c 100644 --- a/fs/ubifs/file.c +++ b/fs/ubifs/file.c | |||
@@ -1582,9 +1582,9 @@ const struct inode_operations ubifs_symlink_inode_operations = { | |||
1582 | 1582 | ||
1583 | const struct file_operations ubifs_file_operations = { | 1583 | const struct file_operations ubifs_file_operations = { |
1584 | .llseek = generic_file_llseek, | 1584 | .llseek = generic_file_llseek, |
1585 | .read = do_sync_read, | 1585 | .read = new_sync_read, |
1586 | .write = do_sync_write, | 1586 | .write = do_sync_write, |
1587 | .aio_read = generic_file_aio_read, | 1587 | .read_iter = generic_file_read_iter, |
1588 | .aio_write = ubifs_aio_write, | 1588 | .aio_write = ubifs_aio_write, |
1589 | .mmap = ubifs_file_mmap, | 1589 | .mmap = ubifs_file_mmap, |
1590 | .fsync = ubifs_fsync, | 1590 | .fsync = ubifs_fsync, |