diff options
author | Philippe Mathieu-Daudé | 2020-01-21 12:03:40 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-01-24 20:59:10 +0100 |
commit | da2c8f4dcddc0f9fb64a0c75cf6d577abf6bdb85 (patch) | |
tree | 307dc2c738cfc70447382fd00ceca0a63a95a7c2 /hw/ppc/spapr_rtas.c | |
parent | virtio-scsi: convert to new virtio_delete_queue (diff) | |
download | qemu-da2c8f4dcddc0f9fb64a0c75cf6d577abf6bdb85.tar.gz qemu-da2c8f4dcddc0f9fb64a0c75cf6d577abf6bdb85.tar.xz qemu-da2c8f4dcddc0f9fb64a0c75cf6d577abf6bdb85.zip |
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>
Diffstat (limited to 'hw/ppc/spapr_rtas.c')
-rw-r--r-- | hw/ppc/spapr_rtas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ppc/spapr_rtas.c b/hw/ppc/spapr_rtas.c index 8d8d8cdfcb..e88bb1930e 100644 --- a/hw/ppc/spapr_rtas.c +++ b/hw/ppc/spapr_rtas.c @@ -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) { |