projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43ec146
)
xfs: fix incorrect error sign in xfs_file_aio_read
author
Dave Chinner
<dchinner@redhat.com>
Wed, 14 May 2014 23:21:37 +0000
(09:21 +1000)
committer
Dave Chinner
<david@fromorbit.com>
Wed, 14 May 2014 23:21:37 +0000
(09:21 +1000)
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_file.c
patch
|
blob
|
history
diff --git
a/fs/xfs/xfs_file.c
b/fs/xfs/xfs_file.c
index
f499e47
..
37f98c6
100644
(file)
--- a/
fs/xfs/xfs_file.c
+++ b/
fs/xfs/xfs_file.c
@@
-295,7
+295,7
@@
xfs_file_aio_read(
xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
if (inode->i_mapping->nrpages) {
- ret =
-
filemap_write_and_wait_range(
+ ret = filemap_write_and_wait_range(
VFS_I(ip)->i_mapping,
pos, -1);
if (ret) {