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