Lines Matching defs:kmem_cache
11 struct kmem_cache { struct
35 struct kmem_cache *freelist_cache; argument
36 unsigned int freelist_size;
39 void (*ctor)(void *obj);
42 const char *name;
43 struct list_head list;
44 int refcount;
45 int object_size;
46 int align;
50 unsigned long num_active;
51 unsigned long num_allocations;
52 unsigned long high_mark;
53 unsigned long grown;
54 unsigned long reaped;
55 unsigned long errors;
56 unsigned long max_freeable;
57 unsigned long node_allocs;
58 unsigned long node_frees;
59 unsigned long node_overflow;
60 atomic_t allochit;
61 atomic_t allocmiss;
62 atomic_t freehit;
86 struct kmem_cache_node *node[MAX_NUMNODES]; argument
89 static inline void *nearest_obj(struct kmem_cache *cache, struct page *page, in nearest_obj() argument