Skip to content

Commit

Permalink
cpu: Call cpu_synchronize_post_init() from DeviceClass::realize()
Browse files Browse the repository at this point in the history
If hotplugged, synchronize CPU state to KVM.

Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
  • Loading branch information
Igor Mammedov authored and afaerber committed May 1, 2013
1 parent c4cfef5 commit 13eed94
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
20 changes: 10 additions & 10 deletions include/sysemu/kvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,6 @@ int kvm_check_extension(KVMState *s, unsigned int extension);
uint32_t kvm_arch_get_supported_cpuid(KVMState *env, uint32_t function,
uint32_t index, int reg);
void kvm_cpu_synchronize_state(CPUArchState *env);
void kvm_cpu_synchronize_post_reset(CPUState *cpu);
void kvm_cpu_synchronize_post_init(CPUState *cpu);

/* generic hooks - to be moved/refactored once there are more users */

Expand All @@ -262,6 +260,16 @@ static inline void cpu_synchronize_state(CPUArchState *env)
}
}

#if !defined(CONFIG_USER_ONLY)
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
hwaddr *phys_addr);
#endif

#endif /* NEED_CPU_H */

void kvm_cpu_synchronize_post_reset(CPUState *cpu);
void kvm_cpu_synchronize_post_init(CPUState *cpu);

static inline void cpu_synchronize_post_reset(CPUState *cpu)
{
if (kvm_enabled()) {
Expand All @@ -276,14 +284,6 @@ static inline void cpu_synchronize_post_init(CPUState *cpu)
}
}


#if !defined(CONFIG_USER_ONLY)
int kvm_physical_memory_addr_from_host(KVMState *s, void *ram_addr,
hwaddr *phys_addr);
#endif

#endif

int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg);
int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg);
void kvm_irqchip_release_virq(KVMState *s, int virq);
Expand Down
1 change: 1 addition & 0 deletions kvm-all.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ bool kvm_async_interrupts_allowed;
bool kvm_irqfds_allowed;
bool kvm_msi_via_irqfd_allowed;
bool kvm_gsi_routing_allowed;
bool kvm_allowed;

static const KVMCapabilityInfo kvm_required_capabilites[] = {
KVM_CAP_INFO(USER_MEMORY),
Expand Down
1 change: 1 addition & 0 deletions kvm-stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ bool kvm_async_interrupts_allowed;
bool kvm_irqfds_allowed;
bool kvm_msi_via_irqfd_allowed;
bool kvm_gsi_routing_allowed;
bool kvm_allowed;

int kvm_init_vcpu(CPUState *cpu)
{
Expand Down
6 changes: 6 additions & 0 deletions qom/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

#include "qom/cpu.h"
#include "qemu-common.h"
#include "sysemu/kvm.h"

void cpu_reset_interrupt(CPUState *cpu, int mask)
{
Expand Down Expand Up @@ -57,6 +58,11 @@ static ObjectClass *cpu_common_class_by_name(const char *cpu_model)

static void cpu_common_realizefn(DeviceState *dev, Error **errp)
{
CPUState *cpu = CPU(dev);

if (dev->hotplugged) {
cpu_synchronize_post_init(cpu);
}
}

static void cpu_class_init(ObjectClass *klass, void *data)
Expand Down
1 change: 0 additions & 1 deletion vl.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ static NotifierList machine_init_done_notifiers =
NOTIFIER_LIST_INITIALIZER(machine_init_done_notifiers);

static bool tcg_allowed = true;
bool kvm_allowed;
bool xen_allowed;
uint32_t xen_domid;
enum xen_mode xen_mode = XEN_EMULATE;
Expand Down

0 comments on commit 13eed94

Please sign in to comment.