]> git.baikalelectronics.ru Git - kernel.git/commit
mm/memblock: WARN_ON when nid differs from overlap region
authorWei Yang <weiyang@linux.vnet.ibm.com>
Fri, 4 Sep 2015 22:47:38 +0000 (15:47 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 4 Sep 2015 23:54:41 +0000 (16:54 -0700)
commit9ffabf25b671f0a77cb1aab9b497a69fe36dceda
tree19ba1165faa4f8c5892c65cb0efb3e497c2205da
parent93f9ffb28d5685e9aaeafc2fb83e9a3c7d17cfea
mm/memblock: WARN_ON when nid differs from overlap region

Each memblock_region has nid to indicates the Node ID of this range.  For
the overlap case, memblock_add_range() inserts the lower part and leave
the upper part as indicated in the overlapped region.

If the nid of the new range differs from the overlapped region, the
information recorded is not correct.

This patch adds a WARN_ON when the nid of the new range differs from the
overlapped region.

Signed-off-by: Wei Yang <weiyang@linux.vnet.ibm.com>
Acked-by: David Rientjes <rientjes@google.com>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
mm/memblock.c