]> git.baikalelectronics.ru Git - kernel.git/commit
memblock: Fix memblock_is_region_reserved() to return a boolean
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 4 Aug 2010 04:17:17 +0000 (14:17 +1000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Wed, 4 Aug 2010 04:17:17 +0000 (14:17 +1000)
commit54bac5e0a81bb710beab52fe5ac357595072ee5a
tree61c1b8b9ab32cd76128e33186148597a8b8b39b1
parente2800a69249efe65d3f5a617693ba718fb36ad4c
memblock: Fix memblock_is_region_reserved() to return a boolean

All callers expect a boolean result which is true if the region
overlaps a reserved region. However, the implementation actually
returns -1 if there is no overlap, and a region index (0 based)
if there is.

Make it behave as callers (and common sense) expect.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
mm/memblock.c