]> www.infradead.org Git - users/jedix/linux-maple.git/commit
xfs: return errors from partial I/O failures to files
authorDavid Jeffery <djeffery@redhat.com>
Fri, 28 Aug 2015 04:50:45 +0000 (14:50 +1000)
committerChuck Anderson <chuck.anderson@oracle.com>
Wed, 16 Mar 2016 17:59:36 +0000 (10:59 -0700)
commit2e58ec0b4619ce115b9ae952259697a76b0e528c
tree57421ad51fd0e70ad56d0769ac067cea58d362f1
parent6eb8d583f6cba0c4dbc40aaf2c681880d07f1887
xfs: return errors from partial I/O failures to files

There is an issue with xfs's error reporting in some cases of I/O partially
failing and partially succeeding. Calls like fsync() can report success even
though not all I/O was successful in partial-failure cases such as one disk of
a RAID0 array being offline.

The issue can occur when there are more than one bio per xfs_ioend struct.
Each call to xfs_end_bio() for a bio completing will write a value to
ioend->io_error.  If a successful bio completes after any failed bio, no
error is reported do to it writing 0 over the error code set by any failed bio.
The I/O error information is now lost and when the ioend is completed
only success is reported back up the filesystem stack.

xfs_end_bio() should only set ioend->io_error in the case of BIO_UPTODATE
being clear.  ioend->io_error is initialized to 0 at allocation so only needs
to be updated by a failed bio. Also check that ioend->io_error is 0 so that
the first error reported will be the error code returned.

Cc: stable@vger.kernel.org
Signed-off-by: David Jeffery <djeffery@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Orabug : 22681464
Mainline v4.3 commit c9eb256eda4420c06bb10f5e8fbdbe1a34bc98e0
Signed-off-by: Manjunath Govindashetty <manjunath.govindashetty@oracle.com>
fs/xfs/xfs_aops.c