Browse Source

xfs: fix duplicate workqueue initialisation

The workqueue initialisation function is called twice when
initialising the XFS subsystem. Remove the second initialisation
call.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Alex Elder <aelder@sgi.com>
Dave Chinner 14 years ago
parent
commit
1beb65ad45
1 changed files with 0 additions and 4 deletions
  1. 0 4
      fs/xfs/linux-2.6/xfs_super.c

+ 0 - 4
fs/xfs/linux-2.6/xfs_super.c

@@ -1787,10 +1787,6 @@ init_xfs_fs(void)
 	if (error)
 		goto out_cleanup_procfs;
 
-	error = xfs_init_workqueues();
-	if (error)
-		goto out_sysctl_unregister;
-
 	vfs_initquota();
 
 	error = register_filesystem(&xfs_fs_type);