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

Commit 8691f3a7 authored by Jesper Juhl's avatar Jesper Juhl Committed by Linus Torvalds
Browse files

mm: no need to cast vmalloc() return value in zone_wait_table_init()



vmalloc() returns a void pointer, so there's no need to cast its
return value in mm/page_alloc.c::zone_wait_table_init().

Signed-off-by: default avatarJesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 26fb1589
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2444,7 +2444,7 @@ int zone_wait_table_init(struct zone *zone, unsigned long zone_size_pages)
		 * To use this new node's memory, further consideration will be
		 * necessary.
		 */
		zone->wait_table = (wait_queue_head_t *)vmalloc(alloc_size);
		zone->wait_table = vmalloc(alloc_size);
	}
	if (!zone->wait_table)
		return -ENOMEM;