From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lb0-f179.google.com (mail-lb0-f179.google.com [209.85.217.179]) by kanga.kvack.org (Postfix) with ESMTP id 78F4F6B00A0 for ; Fri, 13 Jun 2014 03:32:32 -0400 (EDT) Received: by mail-lb0-f179.google.com with SMTP id u10so1315594lbd.38 for ; Fri, 13 Jun 2014 00:32:31 -0700 (PDT) Received: from szxga02-in.huawei.com (szxga02-in.huawei.com. [119.145.14.65]) by mx.google.com with ESMTPS id wt9si1396045lbb.8.2014.06.13.00.32.28 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 13 Jun 2014 00:32:30 -0700 (PDT) Message-ID: <539AA8DF.4060805@huawei.com> Date: Fri, 13 Jun 2014 15:31:43 +0800 From: Zhang Zhen MIME-Version: 1.0 Subject: Re: Proposal to realize hot-add *several sections one time* References: <53981D81.5060708@huawei.com> <53991353.5040607@huawei.com> In-Reply-To: Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: David Rientjes Cc: gregkh@linuxfoundation.org, laijs@cn.fujitsu.com, sjenning@linux.vnet.ibm.com, linux-kernel@vger.kernel.org, linux-mm@kvack.org, Wang Nan On 2014/6/12 15:07, David Rientjes wrote: > On Thu, 12 Jun 2014, Zhang Zhen wrote: > >>>> % echo start_address_of_new_memory count_of_sections > /sys/devices/system/memory/probe >>>> >>>> Then, [start_address_of_new_memory, start_address_of_new_memory + >>>> count_of_sections * memory_block_size] memory range is hot-added. >>>> >>>> If this proposal is reasonable, i will send a patch to realize it. >>>> >>> >>> The problem is knowing how much memory is being onlined so that you can >>> definitively determine what count_of_sections should be. The number of >>> pages per memory section depends on PAGE_SIZE and SECTION_SIZE_BITS which >>> differ depending on the architectures that support this interface. So if >>> you support count_of_sections, it would return errno even though you have >>> onlined some sections. >>> >> Hum, sorry. >> My expression is not right. The count of sections one time hot-added >> depends on sections_per_block. >> > > Ok, so you know specifically what sections_per_block is for your platform > so you know exactly how many sections need to be added. > >> Now we are porting the memory-hotplug to arm. >> But we can only hot-add *fixed number of sections one time* on particular architecture. >> >> Whether we can add an argument on behalf of the count of the blocks to add ? >> >> % echo start_address_of_new_memory count_of_blocks > /sys/devices/system/memory/probe >> >> Then, [start_address_of_new_memory, start_address_of_new_memory + count_of_blocks * memory_block_size] >> memory range is hot-added. >> > > As I said, if the above returns errno at some point, it still can result > in some sections being onlined. To be clear: if > "echo 0x10000000 > /sys/devices/system/memory/probe" fails, the section > starting at address 0x10000000 failed to be onlined for the reason > specified by errno. If we follow your suggestion to specify how many > sections to online, if > "echo '0x10000000 16' > /sys/devices/system/memory/probe" fails, eight > sections could have been successfully onlined at address 0x10000000 and > then we encountered a failure (perhaps because the next sections were > already onlined, we get an -EEXIST). We don't know what we successfully > onlined. > > This could be mitigated, but there would have to be a convincing reason > that this is better than using the currently functionally in a loop and > properly handling your error codes. Hi David, I think you are right. We had better to use the currently functionally in a loop if we need to add several blocks. In this way, we can get an errno in time if a block failed to be onlined. Thanks for your comments. I got it. > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Don't email: email@kvack.org > > -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org