From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay1.corp.sgi.com [137.38.102.111]) by oss.sgi.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id q8SIFxje014252 for ; Fri, 28 Sep 2012 13:15:59 -0500 Message-ID: <5065E9A3.3040707@sgi.com> Date: Fri, 28 Sep 2012 13:17:07 -0500 From: Mark Tinguely MIME-Version: 1.0 Subject: Re: [PATCH 07/13] xfs: syncd workqueue is no more References: <1348807485-20165-1-git-send-email-david@fromorbit.com> <1348807485-20165-8-git-send-email-david@fromorbit.com> In-Reply-To: <1348807485-20165-8-git-send-email-david@fromorbit.com> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Sender: xfs-bounces@oss.sgi.com Errors-To: xfs-bounces@oss.sgi.com To: Dave Chinner Cc: xfs@oss.sgi.com On 09/27/12 23:44, Dave Chinner wrote: > From: Dave Chinner > > With the syncd functions moved to the log and/or removed, the syncd > workqueue is the only remaining bit left. It is used by the log > covering/ail pushing work, as well as by the inode reclaim work. > > Given how cheap workqueues are these days, give the log and inode > reclaim work their own work queues and kill the syncd work queue. > > Signed-off-by: Dave Chinner > --- > diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c > index fed1eb2..65cf42c 100644 > --- a/fs/xfs/xfs_super.c > +++ b/fs/xfs/xfs_super.c > @@ -776,8 +776,23 @@ xfs_init_mount_workqueues( > WQ_MEM_RECLAIM, 0, mp->m_fsname); > if (!mp->m_cil_workqueue) > goto out_destroy_unwritten; > + > + mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s", > + WQ_NON_REENTRANT, 0, mp->m_fsname); > + if (!mp->m_reclaim_workqueue) > + goto out_destroy_cil; > + > + mp->m_log_workqueue = alloc_workqueue("xfs-reclaim/%s", > + WQ_NON_REENTRANT, 0, mp->m_fsname); Cut/paste error for the worker name? Looks good. Reviewed-by: Mark Tinguely _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs