提交 9dfeca7c 编写于 作者: B Bharata B Rao 提交者: David Gibson

exec: Do vmstate unregistration from cpu_exec_exit()

cpu_exec_init() does vmstate_register for the CPU device. This needs to be
undone from cpu_exec_exit(). This change is needed to support CPU hot
removal.
Signed-off-by: NBharata B Rao <bharata@linux.vnet.ibm.com>
Reviewed-by: NThomas Huth <thuth@redhat.com>
Reviewed-by: NDavid Gibson <david@gibson.dropbear.id.au>
Acked-by: NPaolo Bonzini <pbonzini@redhat.com>
[dwg: added missing include to fix compile on some archs]
Signed-off-by: NDavid Gibson <david@gibson.dropbear.id.au>
上级 1c59eb39
...@@ -57,6 +57,8 @@ ...@@ -57,6 +57,8 @@
#include "exec/ram_addr.h" #include "exec/ram_addr.h"
#include "exec/log.h" #include "exec/log.h"
#include "migration/vmstate.h"
#include "qemu/range.h" #include "qemu/range.h"
#ifndef _WIN32 #ifndef _WIN32
#include "qemu/mmap-alloc.h" #include "qemu/mmap-alloc.h"
...@@ -637,6 +639,8 @@ static void cpu_release_index(CPUState *cpu) ...@@ -637,6 +639,8 @@ static void cpu_release_index(CPUState *cpu)
void cpu_exec_exit(CPUState *cpu) void cpu_exec_exit(CPUState *cpu)
{ {
CPUClass *cc = CPU_GET_CLASS(cpu);
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
cpu_list_lock(); cpu_list_lock();
#endif #endif
...@@ -654,6 +658,13 @@ void cpu_exec_exit(CPUState *cpu) ...@@ -654,6 +658,13 @@ void cpu_exec_exit(CPUState *cpu)
#if defined(CONFIG_USER_ONLY) #if defined(CONFIG_USER_ONLY)
cpu_list_unlock(); cpu_list_unlock();
#endif #endif
if (cc->vmsd != NULL) {
vmstate_unregister(NULL, cc->vmsd, cpu);
}
if (qdev_get_vmsd(DEVICE(cpu)) == NULL) {
vmstate_unregister(NULL, &vmstate_cpu_common, cpu);
}
} }
void cpu_exec_init(CPUState *cpu, Error **errp) void cpu_exec_init(CPUState *cpu, Error **errp)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册