Skip to content

Commit

Permalink
xfs: negate xfs_icsb_init_counters error value
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
  • Loading branch information
Dave Chinner authored and Dave Chinner committed May 14, 2014
1 parent 4568764 commit bc14782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/xfs/xfs_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit bc14782

Please sign in to comment.