exec: avoid realloc in phys_map_node_reserve
commit101420b886eec36990419bc9ed5b503622af8a0d
authorPeter Lieven <pl@kamp.de>
Fri, 15 Jul 2016 10:03:50 +0000 (15 12:03 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Sun, 17 Jul 2016 07:59:21 +0000 (17 09:59 +0200)
treebfb9ec332f8ecc2bcd7498529bdf4796492689a1
parentd211bd6016a5d2d59911c6d3d343f114e9853366
exec: avoid realloc in phys_map_node_reserve

this is the first step in reducing the brk heap fragmentation
created by the map->nodes memory allocation. Since the introduction
of RCU the freeing of the PhysPageMaps is delayed so that sometimes
several hundred are allocated at the same time.

Even worse the memory for map->nodes is allocated and shortly
afterwards reallocated. Since the number of nodes it grows
to in the end is the same for all PhysPageMaps remember this value
and at least avoid the reallocation.

The large number of simultaneous allocations (about 450 x 70kB in
my configuration) has to be addressed later.

Signed-off-by: Peter Lieven <pl@kamp.de>
Message-Id: <1468577030-21097-1-git-send-email-pl@kamp.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
exec.c