Received: by 2002:a05:6a10:a841:0:0:0:0 with SMTP id d1csp221885pxy; Wed, 21 Apr 2021 01:07:30 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzWV7VDb3VJmpPiJRugPe0GeZ66/vPhdKxjLxJjYbr4jwGD4kKIrgqdCW+dRCAH31zuSbu9 X-Received: by 2002:a17:90a:fb4c:: with SMTP id iq12mr9645557pjb.121.1618992449782; Wed, 21 Apr 2021 01:07:29 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1618992449; cv=none; d=google.com; s=arc-20160816; b=hQi7Qwz/kZ8Jnwn+kmYyfbaZcQBPWVPcE3yooISyEocXR4N0TtdS6ZcDRDRMNPIK/F YcFWM0uGHmmL3olRrdre1E5s3wE2rAE5s7dmMW658BOdyJWFoJ7oYFgxhaZZqWm6non6 mWjJ4YE8gclAFUU0+mmbFRFev8mIL3kqssd5Xf4SLdFMXAaIccbW6z70ldATQUq3qmE8 C/VOTRahULuEHt3he5ktPsPlefXtyX1+193Q2qpYrOnpMqz2DAfUjtUuP4tfH1tBEJ4w AjMDo4Fp8A9nkdyPVponAHWWVzCiC/GL4iGh2zTeJmbpOMbNenplkpotkSs+6zsvb/k3 YrIg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=cUAX8F8qJGeA3R1a7xce1bYjAbDc1ovusDNF1vVZrD4=; b=IHC9jTrTCRxp54Y+XrcbbagfwnSwVrB9+V9FfcYiVdv9zfREHekvltZZyL5cTukIpd gPZjoP2Vhn+MKdMnrq+2twrUgn+LQdppdXGlU+J3Gd/wdUABz4/HAo/ACr0/FlKX8HOB dAnpu+KFt8GpygEqa68+cB/LfMFsy84Cf4pcWS79nBFcXQW4IyyaClyY7HhYEOA+mUxN zkkcIB0GHAZXiN4gJNLSNHo2315thWbO89QxNfoxjzSzz7g5dQH+eRFcf9DD2+Vpv2Fs E7sVfIyjY9bZsW1LdhKSsQda0X1d/f3WFN9C4W41RmFMikil4NrikklrpHds6ho/R0p1 k+yw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id lt16si1503475pjb.64.2021.04.21.01.07.17; Wed, 21 Apr 2021 01:07:29 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237519AbhDUIBO (ORCPT + 99 others); Wed, 21 Apr 2021 04:01:14 -0400 Received: from mx2.suse.de ([195.135.220.15]:49556 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235510AbhDUIBM (ORCPT ); Wed, 21 Apr 2021 04:01:12 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 303F8B127; Wed, 21 Apr 2021 08:00:39 +0000 (UTC) Date: Wed, 21 Apr 2021 10:00:36 +0200 From: Oscar Salvador To: Michal Hocko Cc: Andrew Morton , David Hildenbrand , Anshuman Khandual , Pavel Tatashin , Vlastimil Babka , linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v9 3/8] mm,memory_hotplug: Factor out adjusting present pages into adjust_present_page_count() Message-ID: <20210421080036.GC22456@linux> References: <20210416112411.9826-1-osalvador@suse.de> <20210416112411.9826-4-osalvador@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Apr 20, 2021 at 11:45:55AM +0200, Michal Hocko wrote: > On Fri 16-04-21 13:24:06, Oscar Salvador wrote: > > From: David Hildenbrand > > > > Let's have a single place (inspired by adjust_managed_page_count()) where > > we adjust present pages. > > In contrast to adjust_managed_page_count(), only memory onlining/offlining > > is allowed to modify the number of present pages. > > > > Signed-off-by: David Hildenbrand > > Signed-off-by: Oscar Salvador > > Reviewed-by: Oscar Salvador > > Not sure self review counts ;) Uhm, the original author is David, I just added my signed-off-by as a deliverer. I thought that in that case was ok to stick my Reviewed-by. Or maybe my signed-off-by carries that implicitly. > Acked-by: Michal Hocko > > Btw. I strongly suspect the resize lock is quite pointless here. > Something for a follow up patch. What makes you think that? I have been thinking about this, let us ignore this patch for a moment. If I poked the code correctly, node_size_lock is taken in: remove_pfn_range_from_zone() move_pfn_range_to_zone() both of them handling {zone,node}->spanned_pages Then we take it in {offline,online}_pages() for {zone,node}->present_pages. The other places where we take it are __init functions, so not of interest. Given that {offline,online}_pages() is serialized by the memory_hotplug lock, I would say that {node,zone}->{spanned,present}_pages is, at any time, stable? So, no need for the lock even without considering this patch? Now, getting back to this patch. adjust_present_page_count() will be called from memory_block_online(), which is not holding the memory_hotplug lock yet. But, we only fiddle with present pages out of {online,offline}_pages() if we have vmemmap pages, and since that operates on the same memory block, its lock should serialize that. I think I went down a rabbit hole, I am slightly confused now. -- Oscar Salvador SUSE L3