diff options
| author | Omar Sandoval <osandov@osandov.com> | 2015-03-16 07:33:50 -0400 |
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-04-11 22:29:44 -0400 |
| commit | 17f8c842d24ac054e4212c82b5bd6ae455a334f3 (patch) | |
| tree | db8e5831159db867f34280200f81d4eadbec74a4 /fs/affs | |
| parent | bd8e0ff956456ad9071dbb6c2ed7d33bd22fc216 (diff) | |
Remove rw from {,__,do_}blockdev_direct_IO()
Most filesystems call through to these at some point, so we'll start
here.
Signed-off-by: Omar Sandoval <osandov@osandov.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/affs')
| -rw-r--r-- | fs/affs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/affs/file.c b/fs/affs/file.c index 7c1a3d4c19c2..1edc0d4b40db 100644 --- a/fs/affs/file.c +++ b/fs/affs/file.c | |||
| @@ -405,7 +405,7 @@ affs_direct_IO(int rw, struct kiocb *iocb, struct iov_iter *iter, | |||
| 405 | return 0; | 405 | return 0; |
| 406 | } | 406 | } |
| 407 | 407 | ||
| 408 | ret = blockdev_direct_IO(rw, iocb, inode, iter, offset, affs_get_block); | 408 | ret = blockdev_direct_IO(iocb, inode, iter, offset, affs_get_block); |
| 409 | if (ret < 0 && (rw & WRITE)) | 409 | if (ret < 0 && (rw & WRITE)) |
| 410 | affs_write_failed(mapping, offset + count); | 410 | affs_write_failed(mapping, offset + count); |
| 411 | return ret; | 411 | return ret; |
