]> git.baikalelectronics.ru Git - kernel.git/commit
mm/memory_hotplug.c: add NULL check to avoid potential NULL pointer dereference
authorGustavo A. R. Silva <garsilva@embeddedor.com>
Mon, 10 Jul 2017 22:47:23 +0000 (15:47 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 10 Jul 2017 23:32:30 +0000 (16:32 -0700)
commitb8b7d107465c45cf1f7f3ff1a2c625bd89595170
treec9bbf5dd8f0a086143df9908146ea8ece1d9bb28
parent35c3abf4a18d238b0e513fa53ba57f194937fa84
mm/memory_hotplug.c: add NULL check to avoid potential NULL pointer dereference

The NULL check at line 1226: if (!pgdat), implies that pointer pgdat
might be NULL.

rollback_node_hotadd() dereferences this pointer.  Add NULL check to
avoid a potential NULL pointer dereference.

Addresses-Coverity-ID: 1369133
Link: http://lkml.kernel.org/r/20170530212436.GA6195@embeddedgus
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memory_hotplug.c