diff options
Diffstat (limited to 'drivers/acpi/acpi_memhotplug.c')
| -rw-r--r-- | drivers/acpi/acpi_memhotplug.c | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/acpi/acpi_memhotplug.c b/drivers/acpi/acpi_memhotplug.c index 034d3e72aa9..da1f82b445e 100644 --- a/drivers/acpi/acpi_memhotplug.c +++ b/drivers/acpi/acpi_memhotplug.c @@ -280,9 +280,11 @@ static int acpi_memory_enable_device(struct acpi_memory_device *mem_device)  static int acpi_memory_remove_memory(struct acpi_memory_device *mem_device)  { -	int result = 0; +	int result = 0, nid;  	struct acpi_memory_info *info, *n; +	nid = acpi_get_node(mem_device->device->handle); +  	list_for_each_entry_safe(info, n, &mem_device->res_list, list) {  		if (info->failed)  			/* The kernel does not use this memory block */ @@ -295,7 +297,9 @@ static int acpi_memory_remove_memory(struct acpi_memory_device *mem_device)  			 */  			return -EBUSY; -		result = remove_memory(info->start_addr, info->length); +		if (nid < 0) +			nid = memory_add_physaddr_to_nid(info->start_addr); +		result = remove_memory(nid, info->start_addr, info->length);  		if (result)  			return result;  |