From: Dave Chinner Date: Wed, 14 May 2014 23:22:53 +0000 (+1000) Subject: xfs: negate mount workqueue init error value X-Git-Tag: firefly_0821_release~176^2~3784^2~11 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=45687642e43d5a3b700d6c1df0e07b3976c90c08;p=firefly-linux-kernel-4.4.55.git xfs: negate mount workqueue init 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 205376776377..e1597f2e58da 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -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;