diff options
-rw-r--r-- | fs/xfs/xfs_super.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 525524e43f22..19922ebeea25 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c | |||
@@ -863,17 +863,17 @@ xfs_init_mount_workqueues( | |||
863 | goto out_destroy_unwritten; | 863 | goto out_destroy_unwritten; |
864 | 864 | ||
865 | mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s", | 865 | mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s", |
866 | WQ_NON_REENTRANT, 0, mp->m_fsname); | 866 | 0, 0, mp->m_fsname); |
867 | if (!mp->m_reclaim_workqueue) | 867 | if (!mp->m_reclaim_workqueue) |
868 | goto out_destroy_cil; | 868 | goto out_destroy_cil; |
869 | 869 | ||
870 | mp->m_log_workqueue = alloc_workqueue("xfs-log/%s", | 870 | mp->m_log_workqueue = alloc_workqueue("xfs-log/%s", |
871 | WQ_NON_REENTRANT, 0, mp->m_fsname); | 871 | 0, 0, mp->m_fsname); |
872 | if (!mp->m_log_workqueue) | 872 | if (!mp->m_log_workqueue) |
873 | goto out_destroy_reclaim; | 873 | goto out_destroy_reclaim; |
874 | 874 | ||
875 | mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s", | 875 | mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s", |
876 | WQ_NON_REENTRANT, 0, mp->m_fsname); | 876 | 0, 0, mp->m_fsname); |
877 | if (!mp->m_eofblocks_workqueue) | 877 | if (!mp->m_eofblocks_workqueue) |
878 | goto out_destroy_log; | 878 | goto out_destroy_log; |
879 | 879 | ||