diff options
author | Dave Chinner <david@fromorbit.com> | 2015-11-10 02:20:48 +0300 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-11-10 02:20:48 +0300 |
commit | 4e14e49a91e18098fd8ef30743972e0c3cb727c1 (patch) | |
tree | d9f6d8005ccd2a3ccbb13e80c639600b1e1bd6b4 /fs/xfs/xfs_super.c | |
parent | 264e89ad3412ce1e2977e5e807bcf7d20d3b0a59 (diff) | |
parent | 7a29ac474a47eb8cf212b45917683ae89d6fa13b (diff) | |
download | linux-4e14e49a91e18098fd8ef30743972e0c3cb727c1.tar.xz |
Merge branch 'xfs-misc-fixes-for-4.4-3' into for-next
Diffstat (limited to 'fs/xfs/xfs_super.c')
-rw-r--r-- | fs/xfs/xfs_super.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c index 0378e22eeae1..36bd8825bfb0 100644 --- a/fs/xfs/xfs_super.c +++ b/fs/xfs/xfs_super.c @@ -838,17 +838,18 @@ xfs_init_mount_workqueues( goto out_destroy_unwritten; mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s", - WQ_FREEZABLE, 0, mp->m_fsname); + WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname); if (!mp->m_reclaim_workqueue) goto out_destroy_cil; mp->m_log_workqueue = alloc_workqueue("xfs-log/%s", - WQ_FREEZABLE|WQ_HIGHPRI, 0, mp->m_fsname); + WQ_MEM_RECLAIM|WQ_FREEZABLE|WQ_HIGHPRI, 0, + mp->m_fsname); if (!mp->m_log_workqueue) goto out_destroy_reclaim; mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s", - WQ_FREEZABLE, 0, mp->m_fsname); + WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname); if (!mp->m_eofblocks_workqueue) goto out_destroy_log; |