mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 17:53:56 -06:00
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>
This commit is contained in:
parent
c8a98293f7
commit
06ec79e865
3 changed files with 11 additions and 8 deletions
|
@ -1227,16 +1227,21 @@ static int spapr_hpt_shift_for_ramsize(uint64_t ramsize)
|
|||
return shift;
|
||||
}
|
||||
|
||||
void spapr_free_hpt(sPAPRMachineState *spapr)
|
||||
{
|
||||
g_free(spapr->htab);
|
||||
spapr->htab = NULL;
|
||||
spapr->htab_shift = 0;
|
||||
close_htab_fd(spapr);
|
||||
}
|
||||
|
||||
static void spapr_reallocate_hpt(sPAPRMachineState *spapr, int shift,
|
||||
Error **errp)
|
||||
{
|
||||
long rc;
|
||||
|
||||
/* Clean up any HPT info from a previous boot */
|
||||
g_free(spapr->htab);
|
||||
spapr->htab = NULL;
|
||||
spapr->htab_shift = 0;
|
||||
close_htab_fd(spapr);
|
||||
spapr_free_hpt(spapr);
|
||||
|
||||
rc = kvmppc_reset_htab(shift);
|
||||
if (rc < 0) {
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue