mirror of
https://git.proxmox.com/git/qemu
synced 2025-07-20 12:08:44 +00:00
spapr_hcall: Replace open-coded CPU loop with qemu_get_cpu()
The helper functions all access ppc-specific fields only so don't bother to change arguments to PowerPCCPU and use env_ptr instead. No functional change. Acked-by: Alexander Graf <agraf@suse.de> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
912ebe10ef
commit
5353d03dd7
@ -469,16 +469,11 @@ static target_ulong h_register_vpa(PowerPCCPU *cpu, sPAPREnvironment *spapr,
|
|||||||
CPUPPCState *tenv;
|
CPUPPCState *tenv;
|
||||||
CPUState *tcpu;
|
CPUState *tcpu;
|
||||||
|
|
||||||
for (tenv = first_cpu; tenv; tenv = tenv->next_cpu) {
|
tcpu = qemu_get_cpu(procno);
|
||||||
tcpu = CPU(ppc_env_get_cpu(tenv));
|
if (!tcpu) {
|
||||||
if (tcpu->cpu_index == procno) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!tenv) {
|
|
||||||
return H_PARAMETER;
|
return H_PARAMETER;
|
||||||
}
|
}
|
||||||
|
tenv = tcpu->env_ptr;
|
||||||
|
|
||||||
switch (flags) {
|
switch (flags) {
|
||||||
case FLAGS_REGISTER_VPA:
|
case FLAGS_REGISTER_VPA:
|
||||||
|
Loading…
Reference in New Issue
Block a user