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 F1981C433F5 for ; Mon, 6 Dec 2021 14:53:59 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344714AbhLFO51 (ORCPT ); Mon, 6 Dec 2021 09:57:27 -0500 Received: from smtp-out2.suse.de ([195.135.220.29]:36494 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244997AbhLFO50 (ORCPT ); Mon, 6 Dec 2021 09:57:26 -0500 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id 251311FD2F; Mon, 6 Dec 2021 14:53:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1638802437; 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=rzsvF+jZphdcc5mjwpWnruSLC29c6H+jMTR3hi4SV9g=; b=DoXsB5KULViHuspaKnzSMFFg+2zkUMQBEaw3nNYkyig3bK+2402/LmLCmZiCkhJOkgcXaf WZLBG5WskhvGvGI3vz0f7kIcpUOCNPKxr+Jcm9yH/2ykJ3mThfivAoCmQCWwvAUm2M3ijh BiX+Y9UcV3MvRL+aOX8uMzo6gdy4FIE= 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 EB81FA3B85; Mon, 6 Dec 2021 14:53:56 +0000 (UTC) Date: Mon, 6 Dec 2021 15:53:56 +0100 From: Michal Hocko To: Vlastimil Babka Cc: David Hildenbrand , Nico Pache , linux-kernel@vger.kernel.org, linux-mm@kvack.org, akpm@linux-foundation.org, shakeelb@google.com, ktkhai@virtuozzo.com, shy828301@gmail.com, guro@fb.com, vdavydov.dev@gmail.com, raquini@redhat.com Subject: Re: [RFC PATCH 2/2] mm/vmscan.c: Prevent allocating shrinker_info on offlined nodes Message-ID: References: <840cb3d0-61fe-b6cb-9918-69146ba06cf7@redhat.com> <51c65635-1dae-6ba4-daf9-db9df0ec35d8@redhat.com> <05157de4-e5df-11fc-fc46-8a9f79d0ddb4@redhat.com> 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 Mon 06-12-21 15:30:37, Vlastimil Babka wrote: > On 12/6/21 15:21, Michal Hocko wrote: > > On Mon 06-12-21 15:08:10, David Hildenbrand wrote: > >> > >> >> But there might be more missing. Onlining a new zone will get more > >> >> expensive in setups with a lot of possible nodes (x86-64 shouldn't > >> >> really be an issue in that regard). > >> > > >> > Honestly, I am not really concerned by platforms with too many nodes > >> > without any memory. If they want to shoot their feet then that's their > >> > choice. We can optimize for those if they ever prove to be standar. > >> > > >> >> If we want stable backports, we'll want something simple upfront. > >> > > >> > For stable backports I would be fine by doing your NODE_DATA check in > >> > the allocator. In upstream I think we should be aiming for a more robust > >> > solution that is also easier to maintain further down the line. Even if > >> > that is an investment at this momemnt because the initialization code is > >> > a mess. > >> > > >> > >> Agreed. I would be curious *why* we decided to dynamically allocate the > >> pgdat. is this just a historical coincidence or was there real reason to > >> not allocate it for all possible nodes during boot? > > > > I don't know but if I was to guess the most likely explanation would be > > that the numa init code was in a similar order as now and it was easier > > to simply allocate a pgdat when a new one was onlined. > > 9af3c2dea3a3 ("[PATCH] pgdat allocation for new node add (call pgdat allocation)") > > doesn't really tell much. > > I don't know if that's true for pgdat specifically, but generally IMHO the > advantages of allocating during/after online instead for each possible is > - memory savings when some possible node is actually never online > - at least in some cases, the allocations can be local to the node in > question where the advantages is > - faster access > - less memory occupied on nodes that are earlier online, especially node 0 > > So while the approach of allocate on boot for all possible nodes instead of > just online nodes has advantages of being generally safer and simpler (no > memory hotplug callbacks etc), we should also be careful not to overdo this > approach so we don't end up with Node 0 memory filled with structures used > for nodes 1-X that are just onlined later. I imagine that could be a problem > even for "sane" archs that don't have tons of possible, but offline nodes. Yes this can indeed turn out to be a problem as the memory allocations scales not only with numa nodes but memcgs as well. The later one being a more visible one. > Concretely, pgdat should probably be fine, but things like all shrinkers? > Maybe less so. Yeah, right. But for that purpose the concept of online_node is just misleading. You would need a check whether the node is populated with memory and implement hotplug notifiers. -- Michal Hocko SUSE Labs