xfs: remove spurious shutdown type check from xfs_bmap_finish()
The static checker reports that after commit 8d99fe92fe
("xfs: fix
efi/efd error handling to avoid fs shutdown hangs"), the code has been
reworked such that error == -EFSCORRUPTED is not possible in this
codepath.
Remove the spurious error check and just use SHUTDOWN_META_IO_ERROR
unconditionally.
Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
This commit is contained in:
parent
a3916e528b
commit
0c871f9a10
|
@ -125,8 +125,6 @@ xfs_bmap_finish(
|
||||||
if (committed) {
|
if (committed) {
|
||||||
xfs_efi_release(efi);
|
xfs_efi_release(efi);
|
||||||
xfs_force_shutdown((*tp)->t_mountp,
|
xfs_force_shutdown((*tp)->t_mountp,
|
||||||
(error == -EFSCORRUPTED) ?
|
|
||||||
SHUTDOWN_CORRUPT_INCORE :
|
|
||||||
SHUTDOWN_META_IO_ERROR);
|
SHUTDOWN_META_IO_ERROR);
|
||||||
}
|
}
|
||||||
return error;
|
return error;
|
||||||
|
|
Loading…
Reference in New Issue