From: Dave Chinner Date: Wed, 14 May 2014 23:23:07 +0000 (+1000) Subject: xfs: negate xfs_icsb_init_counters error value X-Git-Tag: v4.9.8~6269^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc147822d5ada188fff792691efffe89589e2e19;p=platform%2Fkernel%2Flinux-rpi3.git xfs: negate xfs_icsb_init_counters error value Signed-off-by: Dave Chinner Reviewed-by: Jie Liu Signed-off-by: Dave Chinner --- diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index e1597f2..3494eff 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -1437,7 +1437,7 @@ xfs_fs_fill_super( if (error) goto out_close_devices; - error = xfs_icsb_init_counters(mp); + error = -xfs_icsb_init_counters(mp); if (error) goto out_destroy_workqueues;