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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A6D48C433EF for ; Fri, 21 Jan 2022 09:59:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1379823AbiAUJ7e (ORCPT ); Fri, 21 Jan 2022 04:59:34 -0500 Received: from smtp-out1.suse.de ([195.135.220.28]:43128 "EHLO smtp-out1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344496AbiAUJ7d (ORCPT ); Fri, 21 Jan 2022 04:59:33 -0500 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id BE759218F2; Fri, 21 Jan 2022 09:59:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1642759172; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=txiYfsB/ZVqu58YnbSCKgoimsE8JyGRSMKIcL+DqcGI=; b=HfMrRPy22TTfIzSpCw+4rvFV1Sbedi3V+LmXQCxD4mrGRQSXb3SnyhKTtdueDKwKN8LVra jLMHb7R2tAXxAUNO1oaISGsRDakBhsSzN8odIjsFBnSfpJ8nnCHYhchHzkFObPKWE6hzO+ spfazkDYV4auClYRPFxDSBZsOrRx5Aw= Received: from suse.cz (unknown [10.100.201.86]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by relay2.suse.de (Postfix) with ESMTPS id A8F96A3BA2; Fri, 21 Jan 2022 09:59:32 +0000 (UTC) Date: Fri, 21 Jan 2022 10:59:32 +0100 From: Michal Hocko To: Minchan Kim Cc: Andrew Morton , David Hildenbrand , linux-mm , LKML , Suren Baghdasaryan , John Dias Subject: Re: [RESEND][PATCH v2] mm: don't call lru draining in the nested lru_cache_disable Message-ID: References: <20211230193627.495145-1-minchan@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu 20-01-22 13:07:55, Minchan Kim wrote: > On Thu, Jan 20, 2022 at 09:24:22AM +0100, Michal Hocko wrote: > > On Wed 19-01-22 20:25:54, Minchan Kim wrote: > > > On Wed, Jan 19, 2022 at 10:20:22AM +0100, Michal Hocko wrote: > > [...] > > > > What does prevent you from calling lru_cache_{disable,enable} this way > > > > with the existing implementation? AFAICS calls can be nested just fine. > > > > Or am I missing something? > > > > > > It just increases more IPI calls since we drain the lru cache > > > both upper layer and lower layer. That's I'd like to avoid > > > in this patch. Just disable lru cache one time for entire > > > allocation path. > > > > I do not follow. Once you call lru_cache_disable at the higher level > > then no new pages are going to be added to the pcp caches. At the same > > time existing caches are flushed so the inner lru_cache_disable will not > > trigger any new IPIs. > > lru_cache_disable calls __lru_add_drain_all with force_all_cpus > unconditionally so keep calling the IPI. OK, this is something I have missed. Why cannot we remove the force_all mode for lru_disable_count>0 when there are no pcp caches populated? -- Michal Hocko SUSE Labs