Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a378c9a authored by Tejun Heo's avatar Tejun Heo Committed by Ben Myers
Browse files

xfs: WQ_NON_REENTRANT is meaningless and going away



dbf2576e ("workqueue: make all workqueues non-reentrant") made
WQ_NON_REENTRANT no-op and the flag is going away.  Remove its usages.

This patch doesn't introduce any behavior changes.

Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Cc: Ben Myers <bpm@sgi.com>
Cc: Alex Elder <elder@kernel.org>
Cc: xfs@oss.sgi.com
Reviewed-by: default avatarBen Myers <bpm@sgi.com>
Signed-off-by: default avatarBen Myers <bpm@sgi.com>
parent e60896d8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -863,17 +863,17 @@ xfs_init_mount_workqueues(
		goto out_destroy_unwritten;

	mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
			WQ_NON_REENTRANT, 0, mp->m_fsname);
			0, 0, mp->m_fsname);
	if (!mp->m_reclaim_workqueue)
		goto out_destroy_cil;

	mp->m_log_workqueue = alloc_workqueue("xfs-log/%s",
			WQ_NON_REENTRANT, 0, mp->m_fsname);
			0, 0, mp->m_fsname);
	if (!mp->m_log_workqueue)
		goto out_destroy_reclaim;

	mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s",
			WQ_NON_REENTRANT, 0, mp->m_fsname);
			0, 0, mp->m_fsname);
	if (!mp->m_eofblocks_workqueue)
		goto out_destroy_log;