Skip to content

Commit

Permalink
mm/nobootmem: free_all_bootmem again
Browse files Browse the repository at this point in the history
get_allocated_memblock_reserved_regions_info() should work if it is
compiled in.  Extended the ifdef around
get_allocated_memblock_memory_regions_info() to include
get_allocated_memblock_reserved_regions_info() as well.  Similar changes
in nobootmem.c/free_low_memory_core_early() where the two functions are
called.

[[email protected]: cleanup]
Signed-off-by: Philipp Hachtmann <[email protected]>
Cc: qiuxishi <[email protected]>
Cc: David Howells <[email protected]>
Cc: Daeseok Youn <[email protected]>
Cc: Jiang Liu <[email protected]>
Acked-by: Yinghai Lu <[email protected]>
Cc: Zhang Yanfei <[email protected]>
Cc: Santosh Shilimkar <[email protected]>
Cc: Grygorii Strashko <[email protected]>
Cc: Tang Chen <[email protected]>
Cc: Martin Schwidefsky <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Philipp Hachtmann authored and torvalds committed Jan 24, 2014
1 parent ec97097 commit 354f17e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 26 deletions.
17 changes: 2 additions & 15 deletions mm/memblock.c
Original file line number Diff line number Diff line change
Expand Up @@ -266,33 +266,20 @@ static void __init_memblock memblock_remove_region(struct memblock_type *type, u
}
}

#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK

phys_addr_t __init_memblock get_allocated_memblock_reserved_regions_info(
phys_addr_t *addr)
{
if (memblock.reserved.regions == memblock_reserved_init_regions)
return 0;

/*
* Don't allow nobootmem allocator to free reserved memory regions
* array if
* - CONFIG_DEBUG_FS is enabled;
* - CONFIG_ARCH_DISCARD_MEMBLOCK is not enabled;
* - reserved memory regions array have been resized during boot.
* Otherwise debug_fs entry "sys/kernel/debug/memblock/reserved"
* will show garbage instead of state of memory reservations.
*/
if (IS_ENABLED(CONFIG_DEBUG_FS) &&
!IS_ENABLED(CONFIG_ARCH_DISCARD_MEMBLOCK))
return 0;

*addr = __pa(memblock.reserved.regions);

return PAGE_ALIGN(sizeof(struct memblock_region) *
memblock.reserved.max);
}

#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK

phys_addr_t __init_memblock get_allocated_memblock_memory_regions_info(
phys_addr_t *addr)
{
Expand Down
25 changes: 14 additions & 11 deletions mm/nobootmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -116,23 +116,26 @@ static unsigned long __init __free_memory_core(phys_addr_t start,
static unsigned long __init free_low_memory_core_early(void)
{
unsigned long count = 0;
phys_addr_t start, end, size;
phys_addr_t start, end;
u64 i;

for_each_free_mem_range(i, NUMA_NO_NODE, &start, &end, NULL)
count += __free_memory_core(start, end);

/* Free memblock.reserved array if it was allocated */
size = get_allocated_memblock_reserved_regions_info(&start);
if (size)
count += __free_memory_core(start, start + size);

#ifdef CONFIG_ARCH_DISCARD_MEMBLOCK

/* Free memblock.memory array if it was allocated */
size = get_allocated_memblock_memory_regions_info(&start);
if (size)
count += __free_memory_core(start, start + size);
{
phys_addr_t size;

/* Free memblock.reserved array if it was allocated */
size = get_allocated_memblock_reserved_regions_info(&start);
if (size)
count += __free_memory_core(start, start + size);

/* Free memblock.memory array if it was allocated */
size = get_allocated_memblock_memory_regions_info(&start);
if (size)
count += __free_memory_core(start, start + size);
}
#endif

return count;
Expand Down

0 comments on commit 354f17e

Please sign in to comment.