Blame view

include/linux/zbud.h 701 Bytes
4e2e2770b   Seth Jennings   zbud: add to mm/
1
2
3
4
5
6
7
8
9
10
  #ifndef _ZBUD_H_
  #define _ZBUD_H_
  
  #include <linux/types.h>
  
  struct zbud_pool;
  
  struct zbud_ops {
  	int (*evict)(struct zbud_pool *pool, unsigned long handle);
  };
c83db4f41   Krzysztof Kozlowski   mm: zbud: constif...
11
  struct zbud_pool *zbud_create_pool(gfp_t gfp, const struct zbud_ops *ops);
4e2e2770b   Seth Jennings   zbud: add to mm/
12
  void zbud_destroy_pool(struct zbud_pool *pool);
99eef8e93   Dan Streetman   mm/zbud: change z...
13
  int zbud_alloc(struct zbud_pool *pool, size_t size, gfp_t gfp,
4e2e2770b   Seth Jennings   zbud: add to mm/
14
15
16
17
18
19
20
21
  	unsigned long *handle);
  void zbud_free(struct zbud_pool *pool, unsigned long handle);
  int zbud_reclaim_page(struct zbud_pool *pool, unsigned int retries);
  void *zbud_map(struct zbud_pool *pool, unsigned long handle);
  void zbud_unmap(struct zbud_pool *pool, unsigned long handle);
  u64 zbud_get_pool_size(struct zbud_pool *pool);
  
  #endif /* _ZBUD_H_ */