]> Git Repo - qemu.git/commitdiff
spapr: Make hash table size a factor of maxram_size
authorBharata B Rao <[email protected]>
Mon, 29 Jun 2015 08:44:30 +0000 (14:14 +0530)
committerDavid Gibson <[email protected]>
Wed, 23 Sep 2015 00:51:10 +0000 (10:51 +1000)
The hash table size is dependent on ram_size, but since with hotplug
the memory can grow till maxram_size. Hence make hash table size dependent
on maxram_size.

This allows to hotplug huge amounts of memory to the guest.

Signed-off-by: Bharata B Rao <[email protected]>
Reviewed-by: David Gibson <[email protected]>
Signed-off-by: David Gibson <[email protected]>
hw/ppc/spapr.c

index 2f49f97924df0ef7f61144a3172cd131f1b9c28c..d21e95cf6bf8ff05c31332b5275d50acc2333bf5 100644 (file)
@@ -1715,7 +1715,7 @@ static void ppc_spapr_init(MachineState *machine)
      * 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->ram_size) {
+        if ((1ULL << (spapr->htab_shift + 7)) >= machine->maxram_size) {
             break;
         }
         spapr->htab_shift++;
This page took 0.031316 seconds and 4 git commands to generate.