]> git.karo-electronics.de Git - karo-tx-linux.git/commit
mm/memblock.c: WARN_ON when flags differs from overlap region
authorWei Yang <weiyang@linux.vnet.ibm.com>
Tue, 8 Sep 2015 21:59:53 +0000 (14:59 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 8 Sep 2015 22:35:28 +0000 (15:35 -0700)
commit4fcab5f437c481e51c270a2d12ef56a3f2367371
tree7d42710ebc76a2c7525676409665519aef897525
parent7f3eb55bfad8a6dfd880559210f5b21737d69815
mm/memblock.c: WARN_ON when flags differs from overlap region

Each memblock_region has flags to indicates the type 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 flags of the new range differs from the overlapped region, the
information recorded is not correct.

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

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