Received: by 2002:a25:ad19:0:0:0:0:0 with SMTP id y25csp10635746ybi; Thu, 25 Jul 2019 02:49:33 -0700 (PDT) X-Google-Smtp-Source: APXvYqyTEwUVMGpteCO6ei/9W4oQKGXfynGX6dbyWldfHHNOEjoyw1D1oRmtb6+fu6KgxwRgORJ2 X-Received: by 2002:aa7:9146:: with SMTP id 6mr15251816pfi.67.1564048173229; Thu, 25 Jul 2019 02:49:33 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1564048173; cv=none; d=google.com; s=arc-20160816; b=jaCWtrTBLvDD0+ZnIw/4G1v8MZumJ4dKu89pIgwS/fI7rrEpegeIRdx4lvwPbFmhGw UcMNkyB/Eo782hGyPs7AT9PF1N8nlfjWW6E8Dnqm2hwaMqYG4ot58BEAT3LvfNGqPOZm XBGIjmi0rwzO8mov0RkpvL5BiuPNCEdoWsMLkUzhcrtWYr1WxqPgkTq3ClKJ+SbsmQaf MoNe81W7FNPXyF/FSDsIJHI7QpYuLvM6rH7h1bnCjdTYE8ooDBieE6+Gpk2LbTxXOLri qDNIwZ8glDh8Q1dmplA2+TGqy0irNG5DJ+AXyLJJrwIApsZcJfH1y2LRBy8moU4haSB6 2DsQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:message-id:references :in-reply-to:subject:cc:to:from:date:content-transfer-encoding :mime-version; bh=hIcv+QIZUOKonKzD5p7Xpnug4v3G04PkzSxccjFzQLE=; b=K98OBBeSbYGWwu85zu8QMNgv73arUoIB3kKgRPv8a2JpPS3CIBAAYCiyE3/jWJ1vTc dBljPy+xTHcZwnAusnMQ205OVn7VDg5DqYkxQqh3xaAkKrLngJsLPTXaazbaBe3QDskT vF52KhmXhiO0ibPt8t5K0nNcZ5MnTnV+9onRWc0fuNsby8q8OiwbXBg40MCJMBZkgHSr MgfSIw4mZyVIk99Aa4G7+rYFOPLbIpf3N/Qt0xMEv2usThdsi3MBlefF+XeFe/Ga3KxE ZEJ/MZ4MbL6ygRKpduXxhOqAfsjaTBc9qrd6aj2xIQ2wEDeUBkF3WBt/GIIcRo4r8hCE ahbg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 69si16378044pge.101.2019.07.25.02.49.14; Thu, 25 Jul 2019 02:49:33 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729014AbfGXVgx (ORCPT + 99 others); Wed, 24 Jul 2019 17:36:53 -0400 Received: from mx2.suse.de ([195.135.220.15]:57944 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727373AbfGXVgx (ORCPT ); Wed, 24 Jul 2019 17:36:53 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 33E6CABC6; Wed, 24 Jul 2019 21:36:51 +0000 (UTC) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Wed, 24 Jul 2019 23:36:49 +0200 From: osalvador@suse.de To: Dan Williams Cc: Andrew Morton , Michal Hocko , Pavel Tatashin , Jonathan Cameron , David Hildenbrand , Anshuman Khandual , Vlastimil Babka , Linux MM , Linux Kernel Mailing List Subject: Re: [PATCH v2 2/5] mm,memory_hotplug: Introduce MHP_VMEMMAP_FLAGS In-Reply-To: References: <20190625075227.15193-1-osalvador@suse.de> <20190625075227.15193-3-osalvador@suse.de> Message-ID: X-Sender: osalvador@suse.de User-Agent: Roundcube Webmail Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2019-07-24 22:11, Dan Williams wrote: > On Tue, Jun 25, 2019 at 12:53 AM Oscar Salvador > wrote: >> >> This patch introduces MHP_MEMMAP_DEVICE and MHP_MEMMAP_MEMBLOCK flags, >> and prepares the callers that add memory to take a "flags" parameter. >> This "flags" parameter will be evaluated later on in Patch#3 >> to init mhp_restrictions struct. >> >> The callers are: >> >> add_memory >> __add_memory >> add_memory_resource >> >> Unfortunately, we do not have a single entry point to add memory, as >> depending >> on the requisites of the caller, they want to hook up in different >> places, >> (e.g: Xen reserve_additional_memory()), so we have to spread the >> parameter >> in the three callers. >> >> The flags are either MHP_MEMMAP_DEVICE or MHP_MEMMAP_MEMBLOCK, and >> only differ >> in the way they allocate vmemmap pages within the memory blocks. >> >> MHP_MEMMAP_MEMBLOCK: >> - With this flag, we will allocate vmemmap pages in each >> memory block. >> This means that if we hot-add a range that spans multiple >> memory blocks, >> we will use the beginning of each memory block for the >> vmemmap pages. >> This strategy is good for cases where the caller wants the >> flexiblity >> to hot-remove memory in a different granularity than when it >> was added. >> >> E.g: >> We allocate a range (x,y], that spans 3 memory blocks, >> and given >> memory block size = 128MB. >> [memblock#0 ] >> [0 - 511 pfns ] - vmemmaps for section#0 >> [512 - 32767 pfns ] - normal memory >> >> [memblock#1 ] >> [32768 - 33279 pfns] - vmemmaps for section#1 >> [33280 - 65535 pfns] - normal memory >> >> [memblock#2 ] >> [65536 - 66047 pfns] - vmemmap for section#2 >> [66048 - 98304 pfns] - normal memory >> >> MHP_MEMMAP_DEVICE: >> - With this flag, we will store all vmemmap pages at the >> beginning of >> hot-added memory. >> >> E.g: >> We allocate a range (x,y], that spans 3 memory blocks, >> and given >> memory block size = 128MB. >> [memblock #0 ] >> [0 - 1533 pfns ] - vmemmap for section#{0-2} >> [1534 - 98304 pfns] - normal memory >> >> When using larger memory blocks (1GB or 2GB), the principle is the >> same. >> >> Of course, MHP_MEMMAP_DEVICE is nicer when it comes to have a large >> contigous >> area, while MHP_MEMMAP_MEMBLOCK allows us to have flexibility when >> removing the >> memory. > > Concept and patch looks good to me, but I don't quite like the > proliferation of the _DEVICE naming, in theory it need not necessarily > be ZONE_DEVICE that is the only user of that flag. I also think it > might be useful to assign a flag for the default 'allocate from RAM' > case, just so the code is explicit. So, how about: > > MHP_MEMMAP_PAGE_ALLOC > MHP_MEMMAP_MEMBLOCK > MHP_MEMMAP_RESERVED > > ...for the 3 cases? > > Other than that, feel free to add: > > Reviewed-by: Dan Williams HI Dan, I'll be sending V3 tomorrow, with some major rewrites (more simplified). Thanks