[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 02/15] hw/ppc/spapr_rtas: Use local MachineState variable
From: |
Greg Kurz |
Subject: |
Re: [PATCH 02/15] hw/ppc/spapr_rtas: Use local MachineState variable |
Date: |
Thu, 9 Jan 2020 18:13:46 +0100 |
On Thu, 9 Jan 2020 16:21:20 +0100
Philippe Mathieu-Daudé <address@hidden> wrote:
> Since we have the MachineState already available locally,
> ues it instead of the global current_machine.
>
> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
> ---
Reviewed-by: Greg Kurz <address@hidden>
> hw/ppc/spapr_rtas.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> 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) {