From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753166Ab2GTHuS (ORCPT ); Fri, 20 Jul 2012 03:50:18 -0400 Received: from fgwmail6.fujitsu.co.jp ([192.51.44.36]:58291 "EHLO fgwmail6.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751542Ab2GTHuO (ORCPT ); Fri, 20 Jul 2012 03:50:14 -0400 X-SecurityPolicyCheck: OK by SHieldMailChecker v1.7.4 Message-ID: <50090DA4.8040908@jp.fujitsu.com> Date: Fri, 20 Jul 2012 16:49:56 +0900 From: Yasuaki Ishimatsu User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: Wen Congyang CC: , , , , , , , , , , , , Subject: Re: [RFC PATCH 3/8] memory-hotplug: call remove_memory() to cleanup when removing memory device References: <5009038A.4090001@cn.fujitsu.com> <5009046C.106@cn.fujitsu.com> In-Reply-To: <5009046C.106@cn.fujitsu.com> Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Wen, 2012/07/20 16:10, Wen Congyang wrote: > We should remove the following things when removing the memory device: > 1. memmap and related sysfs files > 2. iomem_resource > 3. mem_section and related sysfs files > 4. node and related sysfs files > > The function remove_memory() can do this. So call it after the memory device > is offlined. > > CC: David Rientjes > CC: Jiang Liu > CC: Len Brown > CC: Benjamin Herrenschmidt > CC: Paul Mackerras > CC: Christoph Lameter > Cc: Minchan Kim > CC: Andrew Morton > CC: KOSAKI Motohiro > CC: Yasuaki Ishimatsu > Signed-off-by: Wen Congyang > --- I have no comment. Reviewed-by: Yasuaki Ishimatsu Thanks, Yasuaki Ishimatsu > drivers/acpi/acpi_memhotplug.c | 7 ++++++- > 1 files changed, 6 insertions(+), 1 deletions(-) > > diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c > index 712e767..58e4e63 100644 > --- a/drivers/acpi/acpi_memhotplug.c > +++ b/drivers/acpi/acpi_memhotplug.c > @@ -315,7 +315,7 @@ static int acpi_memory_disable_device(struct acpi_memory_device *mem_device) > { > int result; > struct acpi_memory_info *info, *n; > - > + int node = mem_device->nid; > > /* > * Ask the VM to offline this memory range. > @@ -330,6 +330,11 @@ static int acpi_memory_disable_device(struct acpi_memory_device *mem_device) > if (result) > return result; > } > + > + result = remove_memory(node, info->start_addr, > + info->length); > + if (result) > + return result; > } > list_del(&info->list); > kfree(info); >