[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PULL 05/26] pseries: Add helper to calculate recommended has
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PULL 05/26] pseries: Add helper to calculate recommended hash page table size |
Date: |
Thu, 18 Feb 2016 15:18:26 +1100 |
At present we calculate the recommended hash page table (HPT) size for a
pseries guest just once in ppc_spapr_init() before allocating the HPT.
In future patches we're going to want this calculation in other places, so
this splits it out into a helper function. While we're at it, change the
calculation to use ctz() instead of an explicit loop.
Signed-off-by: David Gibson <address@hidden>
Reviewed-by: Alexey Kardashevskiy <address@hidden>
---
hw/ppc/spapr.c | 24 ++++++++++++++----------
1 file changed, 14 insertions(+), 10 deletions(-)
diff --git a/hw/ppc/spapr.c b/hw/ppc/spapr.c
index c315715..2a81e8f 100644
--- a/hw/ppc/spapr.c
+++ b/hw/ppc/spapr.c
@@ -1050,6 +1050,19 @@ static void close_htab_fd(sPAPRMachineState *spapr)
spapr->htab_fd = -1;
}
+static int spapr_hpt_shift_for_ramsize(uint64_t ramsize)
+{
+ int shift;
+
+ /* We aim for a hash table of size 1/128 the size of RAM (rounded
+ * up). The PAPR recommendation is actually 1/64 of RAM size, but
+ * that's much more than is needed for Linux guests */
+ shift = ctz64(pow2ceil(ramsize)) - 7;
+ shift = MAX(shift, 18); /* Minimum architected size */
+ shift = MIN(shift, 46); /* Maximum architected size */
+ return shift;
+}
+
static void spapr_alloc_htab(sPAPRMachineState *spapr)
{
long shift;
@@ -1790,16 +1803,7 @@ static void ppc_spapr_init(MachineState *machine)
/* Setup a load limit for the ramdisk leaving room for SLOF and FDT */
load_limit = MIN(spapr->rma_size, RTAS_MAX_ADDR) - FW_OVERHEAD;
- /* We aim for a hash table of size 1/128 the size of RAM. The
- * normal rule of thumb is 1/64 the size of RAM, but that's much
- * more than needed for the Linux guests we support. */
- spapr->htab_shift = 18; /* Minimum architected size */
- while (spapr->htab_shift <= 46) {
- if ((1ULL << (spapr->htab_shift + 7)) >= machine->maxram_size) {
- break;
- }
- spapr->htab_shift++;
- }
+ spapr->htab_shift = spapr_hpt_shift_for_ramsize(machine->maxram_size);
spapr_alloc_htab(spapr);
/* Set up Interrupt Controller before we create the VCPUs */
--
2.5.0
- [Qemu-ppc] [PULL 00/26] ppc-for-2.6 queue 20160218, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 09/26] hw/ppc/spapr: Add h_set_sprg0 hypercall, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 07/26] target-ppc: Remove hack for ppc_hash64_load_hpte*() with HV KVM, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 08/26] migration: ensure htab_save_first completes after timeout, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 13/26] cuda: move unknown commands reject out of switch, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 19/26] cuda: port FILE_SERVER_FLAG command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 15/26] cuda: port SET_AUTO_RATE command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 01/26] hw: fix some debug message format strings, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 05/26] pseries: Add helper to calculate recommended hash page table size,
David Gibson <=
- [Qemu-ppc] [PULL 10/26] hw/ppc/spapr: Implement h_set_dabr, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 23/26] cuda: remove GET_6805_ADDR command, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 03/26] target-ppc: Include missing MMU models for SDR1 in info registers, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 17/26] cuda: port POWERDOWN command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 16/26] cuda: port SET_DEVICE_LIST command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 12/26] cuda: add a framework to handle commands, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 25/26] pseries: Include missing pseries-2.5 compat properties in pseries-2.4, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 18/26] cuda: port RESET_SYSTEM command to new framework, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 24/26] cuda: remove CUDA_GET_SET_IIC/CUDA_COMBINED_FORMAT_IIC commands, David Gibson, 2016/02/17
- [Qemu-ppc] [PULL 02/26] target-ppc: Remove unused kvmppc_update_sdr1() stub, David Gibson, 2016/02/17