Commit 45687642e43d5a3b700d6c1df0e07b3976c90c08

Authored by Dave Chinner
Committed by Dave Chinner
1 parent 6670232b48

xfs: negate mount workqueue init error value

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Jie Liu <jeff.liu@oracle.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1433,7 +1433,7 @@
1433 1433 if (error)
1434 1434 goto out_free_fsname;
1435 1435  
1436   - error = xfs_init_mount_workqueues(mp);
  1436 + error = -xfs_init_mount_workqueues(mp);
1437 1437 if (error)
1438 1438 goto out_close_devices;
1439 1439