ppc/vof: Fix missed fields in VOF cleanup
Failing to reset the of_instance_last makes ihandle allocation continue to increase, which causes record-replay replay fail to match the recorded trace. Not resetting claimed_base makes VOF eventually run out of memory after some resets. Cc: Alexey Kardashevskiy <aik@ozlabs.ru> Fixes:fc8c745d50
("spapr: Implement Open Firmware client interface") Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Reviewed-by: Alexey Kardashevskiy <aik@ozlabs.ru> Signed-off-by: Cédric Le Goater <clg@kaod.org> (cherry picked from commit7b8589d7ce
) Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
0175121c6c
commit
6864f05cb1
@ -1024,6 +1024,8 @@ void vof_cleanup(Vof *vof)
|
||||
}
|
||||
vof->claimed = NULL;
|
||||
vof->of_instances = NULL;
|
||||
vof->of_instance_last = 0;
|
||||
vof->claimed_base = 0;
|
||||
}
|
||||
|
||||
void vof_build_dt(void *fdt, Vof *vof)
|
||||
|
Loading…
Reference in New Issue
Block a user