From: Darrick J. Wong Date: Sun, 30 Jan 2022 16:53:17 +0000 (-0800) Subject: xfs: return errors in xfs_fs_sync_fs X-Git-Tag: v5.17-rc3~10^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2d86293c70750e4331e9616aded33ab6b47c299d;p=thirdparty%2Flinux.git xfs: return errors in xfs_fs_sync_fs Now that the VFS will do something with the return values from ->sync_fs, make ours pass on error codes. Signed-off-by: Darrick J. Wong Reviewed-by: Jan Kara Reviewed-by: Christoph Hellwig Acked-by: Christian Brauner --- diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index e8f37bdc83548..4c0dee78b2f8b 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -735,6 +735,7 @@ xfs_fs_sync_fs( int wait) { struct xfs_mount *mp = XFS_M(sb); + int error; trace_xfs_fs_sync_fs(mp, __return_address); @@ -744,7 +745,10 @@ xfs_fs_sync_fs( if (!wait) return 0; - xfs_log_force(mp, XFS_LOG_SYNC); + error = xfs_log_force(mp, XFS_LOG_SYNC); + if (error) + return error; + if (laptop_mode) { /* * The disk must be active because we're syncing.