]> 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)
commit6b36509625f4031da0e634af2021bad5e0a2a45a
treedff6b88fa98c4478dc2480f64c1764838d9ada14
parentd1522a9bb6fb2c7de67fd2f1f37518757d9e48b2
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