Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad3d5d2f authored by Toshi Kikuchi's avatar Toshi Kikuchi Committed by Linus Torvalds
Browse files

lib/genalloc.c: fix the end addr check in addr_in_gen_pool()



Since chunk->end_addr is (chunk->start_addr + size - 1), the end address
to compare should be (start + size - 1).

Signed-off-by: default avatarToshi Kikuchi <toshik@chromium.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent af3cd135
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -415,7 +415,7 @@ bool addr_in_gen_pool(struct gen_pool *pool, unsigned long start,
			size_t size)
			size_t size)
{
{
	bool found = false;
	bool found = false;
	unsigned long end = start + size;
	unsigned long end = start + size - 1;
	struct gen_pool_chunk *chunk;
	struct gen_pool_chunk *chunk;


	rcu_read_lock();
	rcu_read_lock();