[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v6 13/18] spapr: Don't use weird units for MIN_RMA_SLOF
From: |
Cédric Le Goater |
Subject: |
Re: [PATCH v6 13/18] spapr: Don't use weird units for MIN_RMA_SLOF |
Date: |
Tue, 25 Feb 2020 08:49:44 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.4.1 |
On 2/25/20 12:37 AM, David Gibson wrote:
> MIN_RMA_SLOF records the minimum about of RMA that the SLOF firmware
> requires. It lets us give a meaningful error if the RMA ends up too small,
> rather than just letting SLOF crash.
>
> It's currently stored as a number of megabytes, which is strange for global
> constants. Move that megabyte scaling into the definition of the constant
> like most other things use.
>
> Change from M to MiB in the associated message while we're at it.
>
> Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Cédric Le Goater <address@hidden>
> ---
> hw/ppc/spapr.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
> index 828e2cc135..272a270b7a 100644
> --- a/hw/ppc/spapr.c
> +++ b/hw/ppc/spapr.c
> @@ -103,7 +103,7 @@
> #define FW_OVERHEAD 0x2800000
> #define KERNEL_LOAD_ADDR FW_MAX_SIZE
>
> -#define MIN_RMA_SLOF 128UL
> +#define MIN_RMA_SLOF (128 * MiB)
>
> #define PHANDLE_INTC 0x00001111
>
> @@ -2959,10 +2959,10 @@ static void spapr_machine_init(MachineState *machine)
> }
> }
>
> - if (spapr->rma_size < (MIN_RMA_SLOF * MiB)) {
> + if (spapr->rma_size < MIN_RMA_SLOF) {
> error_report(
> - "pSeries SLOF firmware requires >= %ldM guest RMA (Real Mode
> Area memory)",
> - MIN_RMA_SLOF);
> + "pSeries SLOF firmware requires >= %ldMiB guest RMA (Real Mode
> Area memory)",
> + MIN_RMA_SLOF / MiB);
> exit(1);
> }
>
>
- Re: [PATCH v6 06/18] spapr, ppc: Remove VPM0/RMLS hacks for POWER9, (continued)
- [PATCH v6 04/18] target/ppc: Correct handling of real mode accesses with vhyp on hash MMU, David Gibson, 2020/02/24
- [PATCH v6 08/18] target/ppc: Use class fields to simplify LPCR masking, David Gibson, 2020/02/24
- [PATCH v6 10/18] target/ppc: Correct RMLS table, David Gibson, 2020/02/24
- [PATCH v6 13/18] spapr: Don't use weird units for MIN_RMA_SLOF, David Gibson, 2020/02/24
- [PATCH v6 12/18] target/ppc: Don't store VRMA SLBE persistently, David Gibson, 2020/02/24
- [PATCH v6 11/18] target/ppc: Only calculate RMLS derived RMA limit on demand, David Gibson, 2020/02/24
- [PATCH v6 09/18] target/ppc: Streamline calculation of RMA limit from LPCR[RMLS], David Gibson, 2020/02/24