summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorHonggang Li <enjoymindful@gmail.com>2014-08-12 21:36:15 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-05 13:41:06 -0700
commit6baa29b62446f4b79e59494e2a54473c94eb8424 (patch)
tree14bf63a92587f5e9f4d8ad70436a8e6287b097b3 /mm
parent02a4c4965393b98347f14947fa8d02aeab94be77 (diff)
percpu: free percpu allocation info for uniprocessor system
commit 3189eddbcafcc4d827f7f19facbeddec4424eba8 upstream. Currently, only SMP system free the percpu allocation info. Uniprocessor system should free it too. For example, one x86 UML virtual machine with 256MB memory, UML kernel wastes one page memory. Signed-off-by: Honggang Li <enjoymindful@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/percpu.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/percpu.c b/mm/percpu.c
index 2ddf9a990dbd..492f601df473 100644
--- a/mm/percpu.c
+++ b/mm/percpu.c
@@ -1933,6 +1933,8 @@ void __init setup_per_cpu_areas(void)
if (pcpu_setup_first_chunk(ai, fc) < 0)
panic("Failed to initialize percpu areas.");
+
+ pcpu_free_alloc_info(ai);
}
#endif /* CONFIG_SMP */