Skip to content

Commit

Permalink
xfs: negate mount workqueue init 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 6670232 commit 4568764
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 @@ -1433,7 +1433,7 @@ xfs_fs_fill_super(
if (error)
goto out_free_fsname;

error = xfs_init_mount_workqueues(mp);
error = -xfs_init_mount_workqueues(mp);
if (error)
goto out_close_devices;

Expand Down

0 comments on commit 4568764

Please sign in to comment.