[PATCH 2/9] xfs: fix incorrect error sign in xfs_file_aio_read
Jeff Liu
jeff.liu at oracle.com
Tue May 13 07:46:45 CDT 2014
On 05/13 2014 16:56 PM, Dave Chinner wrote:
> From: Dave Chinner <dchinner at redhat.com>
>
> Signed-off-by: Dave Chinner <dchinner at redhat.com>
> ---
> fs/xfs/xfs_file.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
> index f499e47..37f98c6 100644
> --- 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) {
>
Reviewed-by: Jie Liu <jeff.liu at oracle.com>
Cheers,
-Jeff
More information about the xfs
mailing list