summaryrefslogtreecommitdiffstats
path: root/qom
diff options
context:
space:
mode:
authorGu Zheng2014-10-22 05:24:30 +0200
committerMichael S. Tsirkin2014-11-02 12:44:11 +0100
commitfcd702e17a4aad936c53881fcdac1d9b9eb98452 (patch)
tree1b85a73e3523b305ea1e4f30714b69dc13ed365d /qom
parentpc: Update rtc_cmos in pc_cpu_plug (diff)
downloadqemu-fcd702e17a4aad936c53881fcdac1d9b9eb98452.tar.gz
qemu-fcd702e17a4aad936c53881fcdac1d9b9eb98452.tar.xz
qemu-fcd702e17a4aad936c53881fcdac1d9b9eb98452.zip
qom/cpu: remove the unused CPU hot-plug notifier
Remove the unused CPU hot-plug notifier. Reviewed-by: Igor Mammedov <imammedo@redhat.com> Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'qom')
-rw-r--r--qom/cpu.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/qom/cpu.c b/qom/cpu.c
index 0ec33377f2..79d22285f3 100644
--- a/qom/cpu.c
+++ b/qom/cpu.c
@@ -107,15 +107,6 @@ static void cpu_common_get_memory_mapping(CPUState *cpu,
error_setg(errp, "Obtaining memory mappings is unsupported on this CPU.");
}
-/* CPU hot-plug notifiers */
-static NotifierList cpu_added_notifiers =
- NOTIFIER_LIST_INITIALIZER(cpu_add_notifiers);
-
-void qemu_register_cpu_added_notifier(Notifier *notifier)
-{
- notifier_list_add(&cpu_added_notifiers, notifier);
-}
-
void cpu_reset_interrupt(CPUState *cpu, int mask)
{
cpu->interrupt_request &= ~mask;
@@ -312,7 +303,6 @@ static void cpu_common_realizefn(DeviceState *dev, Error **errp)
if (dev->hotplugged) {
cpu_synchronize_post_init(cpu);
- notifier_list_notify(&cpu_added_notifiers, dev);
cpu_resume(cpu);
}
}