Seth Jennings | 4e2e277 | 2013-07-10 16:04:55 -0700 | [diff] [blame] | 1 | #ifndef _ZBUD_H_ |
| 2 | #define _ZBUD_H_ |
| 3 | |
| 4 | #include <linux/types.h> |
| 5 | |
| 6 | struct zbud_pool; |
| 7 | |
| 8 | struct zbud_ops { |
| 9 | int (*evict)(struct zbud_pool *pool, unsigned long handle); |
| 10 | }; |
| 11 | |
Krzysztof Kozlowski | c83db4f | 2015-09-08 15:05:06 -0700 | [diff] [blame] | 12 | struct zbud_pool *zbud_create_pool(gfp_t gfp, const struct zbud_ops *ops); |
Seth Jennings | 4e2e277 | 2013-07-10 16:04:55 -0700 | [diff] [blame] | 13 | void zbud_destroy_pool(struct zbud_pool *pool); |
Dan Streetman | 99eef8e | 2014-08-06 16:08:33 -0700 | [diff] [blame] | 14 | int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp, |
Seth Jennings | 4e2e277 | 2013-07-10 16:04:55 -0700 | [diff] [blame] | 15 | unsigned long *handle); |
| 16 | void zbud_free(struct zbud_pool *pool, unsigned long handle); |
| 17 | int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries); |
| 18 | void *zbud_map(struct zbud_pool *pool, unsigned long handle); |
| 19 | void zbud_unmap(struct zbud_pool *pool, unsigned long handle); |
| 20 | u64 zbud_get_pool_size(struct zbud_pool *pool); |
| 21 | |
| 22 | #endif /* _ZBUD_H_ */ |