diff options
Diffstat (limited to 'mm/zbud.c')
-rw-r--r-- | mm/zbud.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -122,7 +122,7 @@ enum buddy { | |||
122 | }; | 122 | }; |
123 | 123 | ||
124 | /* Converts an allocation size in bytes to size in zbud chunks */ | 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 | return (size + CHUNK_SIZE - 1) >> CHUNK_SHIFT; | 127 | return (size + CHUNK_SIZE - 1) >> CHUNK_SHIFT; |
128 | } | 128 | } |
@@ -247,7 +247,7 @@ void zbud_destroy_pool(struct zbud_pool *pool) | |||
247 | * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate | 247 | * gfp arguments are invalid or -ENOMEM if the pool was unable to allocate |
248 | * a new page. | 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 | unsigned long *handle) | 251 | unsigned long *handle) |
252 | { | 252 | { |
253 | int chunks, i, freechunks; | 253 | int chunks, i, freechunks; |