summaryrefslogtreecommitdiffstats
path: root/include/linux/zbud.h
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2015-09-09 00:05:06 +0200
committerLinus Torvalds2015-09-09 00:35:28 +0200
commitc83db4f419e7105af38cdcca80cc51213214a2c8 (patch)
treee5beea2a7035d1434b64f4dbb2ba801cb8a68fd1 /include/linux/zbud.h
parentmm: zpool: constify the zpool_ops (diff)
downloadkernel-qcow2-linux-c83db4f419e7105af38cdcca80cc51213214a2c8.tar.gz
kernel-qcow2-linux-c83db4f419e7105af38cdcca80cc51213214a2c8.tar.xz
kernel-qcow2-linux-c83db4f419e7105af38cdcca80cc51213214a2c8.zip
mm: zbud: constify the zbud_ops
The structure zbud_ops is not modified so make the pointer to it a pointer to const. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Acked-by: Dan Streetman <ddstreet@ieee.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/zbud.h')
-rw-r--r--include/linux/zbud.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/zbud.h b/include/linux/zbud.h
index f9d41a6e361f..e183a0a65ac1 100644
--- a/include/linux/zbud.h
+++ b/include/linux/zbud.h
@@ -9,7 +9,7 @@ struct zbud_ops {
int (*evict)(struct zbud_pool *pool, unsigned long handle);
};
-struct zbud_pool *zbud_create_pool(gfp_t gfp, struct zbud_ops *ops);
+struct zbud_pool *zbud_create_pool(gfp_t gfp, const struct zbud_ops *ops);
void zbud_destroy_pool(struct zbud_pool *pool);
int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp,
unsigned long *handle);