From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.2 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 30A1DC43331 for ; Thu, 5 Sep 2019 22:11:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 5B7C5206A3 for ; Thu, 5 Sep 2019 22:11:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1733137AbfIEWK7 (ORCPT ); Thu, 5 Sep 2019 18:10:59 -0400 Received: from mail104.syd.optusnet.com.au ([211.29.132.246]:36688 "EHLO mail104.syd.optusnet.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1732232AbfIEWK7 (ORCPT ); Thu, 5 Sep 2019 18:10:59 -0400 Received: from dread.disaster.area (pa49-181-255-194.pa.nsw.optusnet.com.au [49.181.255.194]) by mail104.syd.optusnet.com.au (Postfix) with ESMTPS id F39CB43EA50; Fri, 6 Sep 2019 08:10:55 +1000 (AEST) Received: from dave by dread.disaster.area with local (Exim 4.92) (envelope-from ) id 1i5zxu-0002h7-SE; Fri, 06 Sep 2019 08:10:54 +1000 Date: Fri, 6 Sep 2019 08:10:54 +1000 From: Dave Chinner To: "Darrick J. Wong" Cc: linux-xfs@vger.kernel.org Subject: Re: [PATCH 3/8] xfs: prevent CIL push holdoff in log recovery Message-ID: <20190905221054.GG1119@dread.disaster.area> References: <20190905084717.30308-1-david@fromorbit.com> <20190905084717.30308-4-david@fromorbit.com> <20190905152644.GD2229799@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190905152644.GD2229799@magnolia> User-Agent: Mutt/1.10.1 (2018-07-13) X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.2 cv=P6RKvmIu c=1 sm=1 tr=0 a=YO9NNpcXwc8z/SaoS+iAiA==:117 a=YO9NNpcXwc8z/SaoS+iAiA==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=kj9zAlcOel0A:10 a=J70Eh1EUuV4A:10 a=20KFwNOVAAAA:8 a=7-415B0cAAAA:8 a=bhBTvbuiUjBpqQar4V0A:9 a=CjuIK1q_8ugA:10 a=biEYGPWJfzWAr4FL6Ov7:22 Sender: linux-xfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On Thu, Sep 05, 2019 at 08:26:44AM -0700, Darrick J. Wong wrote: > On Thu, Sep 05, 2019 at 06:47:12PM +1000, Dave Chinner wrote: > > From: Dave Chinner > > > > generic/530 on a machine with enough ram and a non-preemptible > > kernel can run the AGI processing phase of log recovery enitrely out > > of cache. This means it never blocks on locks, never waits for IO > > and runs entirely through the unlinked lists until it either > > completes or blocks and hangs because it has run out of log space. > > > > It runs out of log space because the background CIL push is > > scheduled but never runs. queue_work() queues the CIL work on the > > current CPU that is busy, and the workqueue code will not run it on > > any other CPU. Hence if the unlinked list processing never yields > > the CPU voluntarily, the push work is delayed indefinitely. This > > results in the CIL aggregating changes until all the log space is > > consumed. > > > > When the log recoveyr processing evenutally blocks, the CIL flushes > > but because the last iclog isn't submitted for IO because it isn't > > full, the CIL flush never completes and nothing ever moves the log > > head forwards, or indeed inserts anything into the tail of the log, > > and hence nothing is able to get the log moving again and recovery > > hangs. > > > > There are several problems here, but the two obvious ones from > > the trace are that: > > a) log recovery does not yield the CPU for over 4 seconds, > > b) binding CIL pushes to a single CPU is a really bad idea. > > > > This patch addresses just these two aspects of the problem, and are > > suitable for backporting to work around any issues in older kernels. > > The more fundamental problem of preventing the CIL from consuming > > more than 50% of the log without committing will take more invasive > > and complex work, so will be done as followup work. > > > > Signed-off-by: Dave Chinner > > --- > > fs/xfs/xfs_log_recover.c | 1 + > > fs/xfs/xfs_super.c | 3 ++- > > 2 files changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c > > index f05c6c99c4f3..c9665455431e 100644 > > --- a/fs/xfs/xfs_log_recover.c > > +++ b/fs/xfs/xfs_log_recover.c > > @@ -5080,6 +5080,7 @@ xlog_recover_process_iunlinks( > > while (agino != NULLAGINO) { > > agino = xlog_recover_process_one_iunlink(mp, > > agno, agino, bucket); > > + cond_resched(); > > Funny, I encountered a similar problem in the deferred inactivation > series where iunlinked inodes marked for inactivation pile up until we > OOM or stall in the log. I solved it by kicking the inactivation > workqueue and going to sleep every ~1000 inodes. If the workqueue had already been kicked, then yielding with cond_resched() would probably be enough to avoid that. I think I'm going to have a bit of a look at our use of workqueues - I didn't realise that the default behaviour of the workqueues was "cannot run work unless CPU is yeilded" - it kinda makes the "do async work by workqueue" model somewhat problematic if the work queued by a single CPU can only be run on that same CPU instead of concurrently across all idle CPUs... > > } > > } > > xfs_buf_rele(agibp); > > diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c > > index f9450235533c..55a268997bde 100644 > > --- a/fs/xfs/xfs_super.c > > +++ b/fs/xfs/xfs_super.c > > @@ -818,7 +818,8 @@ xfs_init_mount_workqueues( > > goto out_destroy_buf; > > > > mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s", > > - WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_fsname); > > + WQ_MEM_RECLAIM|WQ_FREEZABLE|WQ_UNBOUND, > > More stupid nits: spaces between the "|". It's the same as the rest of the code in that function. Fixed anyway. -Dave. -- Dave Chinner david@fromorbit.com