Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mm/zbud: change zbud_alloc size type to size_t

Change the type of the zbud_alloc() size param from unsigned int to
size_t.

Technically, this should not make any difference, as the zbud
implementation already restricts the size to well within either type's
limits; but as zsmalloc (and kmalloc) use size_t, and zpool will use
size_t, this brings the size parameter type in line with zsmalloc/zpool.

Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Acked-by: Seth Jennings <sjennings@variantweb.net>
Tested-by: Seth Jennings <sjennings@variantweb.net>
Cc: Weijie Yang <weijie.yang@samsung.com>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Nitin Gupta <ngupta@vflare.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Dan Streetman and committed by
Linus Torvalds
99eef8e9 d2d5e762

+3 -3
+1 -1
include/linux/zbud.h
··· 11 11 12 12 struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops); 13 13 void zbud_destroy_pool(struct zbud_pool *pool); 14 - int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp, 14 + int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp, 15 15 unsigned long *handle); 16 16 void zbud_free(struct zbud_pool *pool, unsigned long handle); 17 17 int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries);
+2 -2
mm/zbud.c
··· 122 122 }; 123 123 124 124 /* Converts an allocation size in bytes to size in zbud chunks */ 125 - static int size_to_chunks(int size) 125 + static int size_to_chunks(size_t size) 126 126 { 127 127 return (size + CHUNK_SIZE - 1) >> CHUNK_SHIFT; 128 128 } ··· 247 247 * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate 248 248 * a new page. 249 249 */ 250 - int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp, 250 + int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp, 251 251 unsigned long *handle) 252 252 { 253 253 int chunks, i, freechunks;