[PATCH 3/9] xfs: xfs_commit_metadata returns wrong errno
Dave Chinner
david at fromorbit.com
Tue May 13 03:56:07 CDT 2014
From: Dave Chinner <dchinner at redhat.com>
Invert it.
Signed-off-by: Dave Chinner <dchinner at redhat.com>
---
fs/xfs/xfs_export.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/xfs/xfs_export.c b/fs/xfs/xfs_export.c
index 1399e18..753e467 100644
--- a/fs/xfs/xfs_export.c
+++ b/fs/xfs/xfs_export.c
@@ -237,7 +237,7 @@ xfs_fs_nfs_commit_metadata(
if (!lsn)
return 0;
- return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
+ return -_xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
}
const struct export_operations xfs_export_operations = {
--
1.9.0
More information about the xfs
mailing list