lkml.org 
[lkml]   [2011]   [Sep]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH v2] acpi: Fix CPU hot removal problem
We run Linux as a guest in Xen environment. When used xen tools
(xm vcpu-set <n>) to hot add and remove vcpu to and from the guest,
we encountered the failure on vcpu removal. We found the reason is
that it didn't go to really remove cpu in the cpu removal code path.

This patch adds acpi_bus_trim in acpi_process_hotplug_notify to fix
this issue. With this patch, it works fine for us.

Signed-off-by: Canquan Shen <shencanquan@huawei.com>
---
drivers/acpi/processor_driver.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/drivers/acpi/processor_driver.c
b/drivers/acpi/processor_driver.c
index a1c564f..114592f 100644
--- a/drivers/acpi/processor_driver.c
+++ b/drivers/acpi/processor_driver.c
@@ -678,7 +678,11 @@ static void
acpi_processor_hotplug_notify(acpi_handle handle,
return;
}

+ if (acpi_bus_trim(device, 1)) {
+ printk(KERN_ERR PREFIX
+ "Removing device failed\n");
+ return;
+ }
break;
default:
ACPI_DEBUG_PRINT((ACPI_DB_INFO,
--
1.7.6


\
 
 \ /
  Last update: 2011-09-08 04:41    [W:0.181 / U:0.584 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site