]> git.baikalelectronics.ru Git - kernel.git/commit
mm/memory_hotplug.c: prevent memory leak when reusing pgdat
authorWei Yang <richardw.yang@linux.intel.com>
Mon, 23 Sep 2019 22:35:52 +0000 (15:35 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 24 Sep 2019 22:54:09 +0000 (15:54 -0700)
commit8ab7f4a0f325f11ad9f5647bc6bcc549acdce2ef
treedff6b88fa98c4478dc2480f64c1764838d9ada14
parentbd3e5d635a67f1e305fc3dbc943040be56f19a7f
mm/memory_hotplug.c: prevent memory leak when reusing pgdat

When offlining a node in try_offline_node(), pgdat is not released.  So
that pgdat could be reused in hotadd_new_pgdat().  While we reallocate
pgdat->per_cpu_nodestats if this pgdat is reused.

This patch prevents the memory leak by just allocating per_cpu_nodestats
when it is a new pgdat.

Link: http://lkml.kernel.org/r/20190813020608.10194-1-richardw.yang@linux.intel.com
Signed-off-by: Wei Yang <richardw.yang@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Oscar Salvador <OSalvador@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memory_hotplug.c