aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/zbud.h2
-rw-r--r--mm/zbud.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/zbud.h b/include/linux/zbud.h
index 13af0d450bf6..f9d41a6e361f 100644
--- a/include/linux/zbud.h
+++ b/include/linux/zbud.h
@@ -11,7 +11,7 @@ struct zbud_ops {
11 11
12struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops); 12struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops);
13void zbud_destroy_pool(struct zbud_pool *pool); 13void zbud_destroy_pool(struct zbud_pool *pool);
14int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp, 14int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp,
15 unsigned long *handle); 15 unsigned long *handle);
16void zbud_free(struct zbud_pool *pool, unsigned long handle); 16void zbud_free(struct zbud_pool *pool, unsigned long handle);
17int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries); 17int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries);
diff --git a/mm/zbud.c b/mm/zbud.c
index 01df13a7e2e1..d01226117b8d 100644
--- a/mm/zbud.c
+++ b/mm/zbud.c
@@ -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 */
125static int size_to_chunks(int size) 125static 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 */
250int zbud_alloc(struct zbud_pool *pool, unsigned int size, gfp_t gfp, 250int 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;