diff options
author | Bharata B Rao <bharata@linux.vnet.ibm.com> | 2017-05-17 09:19:20 +0530 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2017-05-24 11:39:52 +1000 |
commit | 06ec79e865a4a496e762a83126d00d0ed39205f5 (patch) | |
tree | 8707d7689dcf67b226f44d5b9fe8557e38798bb7 /hw/ppc/spapr_hcall.c | |
parent | c8a98293f7fe672fc3b7a3caafede701fbb3180e (diff) | |
download | qemu-06ec79e865a4a496e762a83126d00d0ed39205f5.zip qemu-06ec79e865a4a496e762a83126d00d0ed39205f5.tar.gz qemu-06ec79e865a4a496e762a83126d00d0ed39205f5.tar.bz2 |
spapr: Consolidate HPT freeing code into a routine
Consolidate the code that frees HPT into a separate routine
spapr_free_hpt() as the same chunk of code is called from two places.
Signed-off-by: Bharata B Rao <bharata@linux.vnet.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'hw/ppc/spapr_hcall.c')
-rw-r--r-- | hw/ppc/spapr_hcall.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c index 0d608d6..2daace4 100644 --- a/hw/ppc/spapr_hcall.c +++ b/hw/ppc/spapr_hcall.c @@ -913,10 +913,7 @@ static void spapr_check_setup_free_hpt(sPAPRMachineState *spapr, /* We assume RADIX, so this catches all the "Do Nothing" cases */ } else if (!(patbe_old & PATBE1_GR)) { /* HASH->RADIX : Free HPT */ - g_free(spapr->htab); - spapr->htab = NULL; - spapr->htab_shift = 0; - close_htab_fd(spapr); + spapr_free_hpt(spapr); } else if (!(patbe_new & PATBE1_GR)) { /* RADIX->HASH || NOTHING->HASH : Allocate HPT */ spapr_setup_hpt_and_vrma(spapr); |