Searched defs:kmem_cache (Results 1 – 4 of 4) sorted by relevance
10 struct kmem_cache { struct34 struct kmem_cache *freelist_cache; argument35 unsigned int freelist_size;38 void (*ctor)(void *obj);41 const char *name;42 struct list_head list;43 int refcount;44 int object_size;45 int align;49 unsigned long num_active;[all …]
62 struct kmem_cache { struct63 struct kmem_cache_cpu __percpu *cpu_slab; argument71 struct kmem_cache_order_objects oo; argument74 struct kmem_cache_order_objects max; argument75 struct kmem_cache_order_objects min; argument76 gfp_t allocflags; /* gfp flags to use on each alloc */77 int refcount; /* Refcount for slab cache destroy */101 struct kmem_cache_node *node[MAX_NUMNODES]; argument106 void sysfs_slab_remove(struct kmem_cache *); argument
19 struct kmem_cache { struct20 unsigned int object_size;/* The original size of the object */21 unsigned int size; /* The aligned/padded/added on size */22 unsigned int align; /* Alignment as calculated */23 unsigned long flags; /* Active flags on the slab */24 const char *name; /* Slab name for sysfs */25 int refcount; /* Use counter */26 void (*ctor)(void *); /* Called on object slot creation */27 struct list_head list; /* List of all slab caches on the system */
31 struct kmem_cache *kmem_cache; variable