mirror of https://gitee.com/openkylin/qemu.git
hw/ppc/spapr_rtas: Use local MachineState variable
Since we have the MachineState already available locally, use it instead of the global current_machine. Reviewed-by: Greg Kurz <groug@kaod.org> Acked-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200121110349.25842-2-philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
36fc9bd386
commit
da2c8f4dcd
|
@ -281,7 +281,7 @@ static void rtas_ibm_get_system_parameter(PowerPCCPU *cpu,
|
|||
"DesProcs=%d,"
|
||||
"MaxPlatProcs=%d",
|
||||
max_cpus,
|
||||
current_machine->ram_size / MiB,
|
||||
ms->ram_size / MiB,
|
||||
ms->smp.cpus,
|
||||
max_cpus);
|
||||
if (pcc->n_host_threads > 0) {
|
||||
|
|
Loading…
Reference in New Issue