mirror of https://gitee.com/openkylin/qemu.git
kvm: ppc: Fix breakage of kvm_arch_pre_run/process_irqchip_events
Commit 7a39fe5882
failed to convert the right arch function.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
cc015e9a5d
commit
bdcbd3e2fb
|
@ -222,7 +222,7 @@ int kvmppc_set_interrupt(CPUState *env, int irq, int level)
|
||||||
#define PPC_INPUT_INT PPC6xx_INPUT_INT
|
#define PPC_INPUT_INT PPC6xx_INPUT_INT
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int kvm_arch_pre_run(CPUState *env, struct kvm_run *run)
|
void kvm_arch_pre_run(CPUState *env, struct kvm_run *run)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
unsigned irq;
|
unsigned irq;
|
||||||
|
@ -253,15 +253,15 @@ int kvm_arch_pre_run(CPUState *env, struct kvm_run *run)
|
||||||
/* We don't know if there are more interrupts pending after this. However,
|
/* We don't know if there are more interrupts pending after this. However,
|
||||||
* the guest will return to userspace in the course of handling this one
|
* the guest will return to userspace in the course of handling this one
|
||||||
* anyways, so we will get a chance to deliver the rest. */
|
* anyways, so we will get a chance to deliver the rest. */
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
|
void kvm_arch_post_run(CPUState *env, struct kvm_run *run)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void kvm_arch_process_irqchip_events(CPUState *env)
|
int kvm_arch_process_irqchip_events(CPUState *env)
|
||||||
{
|
{
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int kvmppc_handle_halt(CPUState *env)
|
static int kvmppc_handle_halt(CPUState *env)
|
||||||
|
|
Loading…
Reference in New Issue