mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
cpus: Pass CPUState to qemu_cpu_kick()
CPUArchState is no longer needed there. Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
d5a6814697
commit
c08d7424d6
12 changed files with 26 additions and 20 deletions
|
@ -76,9 +76,8 @@ static QEMUTimer *idle_timer;
|
|||
static void kvm_kick_cpu(void *opaque)
|
||||
{
|
||||
PowerPCCPU *cpu = opaque;
|
||||
CPUPPCState *env = &cpu->env;
|
||||
|
||||
qemu_cpu_kick(env);
|
||||
qemu_cpu_kick(CPU(cpu));
|
||||
}
|
||||
|
||||
int kvm_arch_init(KVMState *s)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue