xref: /linux/mm/slab.h (revision 943a451a87d229ca564a27274b58eaeae35fde5d)
197d06609SChristoph Lameter #ifndef MM_SLAB_H
297d06609SChristoph Lameter #define MM_SLAB_H
397d06609SChristoph Lameter /*
497d06609SChristoph Lameter  * Internal slab definitions
597d06609SChristoph Lameter  */
697d06609SChristoph Lameter 
797d06609SChristoph Lameter /*
897d06609SChristoph Lameter  * State of the slab allocator.
997d06609SChristoph Lameter  *
1097d06609SChristoph Lameter  * This is used to describe the states of the allocator during bootup.
1197d06609SChristoph Lameter  * Allocators use this to gradually bootstrap themselves. Most allocators
1297d06609SChristoph Lameter  * have the problem that the structures used for managing slab caches are
1397d06609SChristoph Lameter  * allocated from slab caches themselves.
1497d06609SChristoph Lameter  */
1597d06609SChristoph Lameter enum slab_state {
1697d06609SChristoph Lameter 	DOWN,			/* No slab functionality yet */
1797d06609SChristoph Lameter 	PARTIAL,		/* SLUB: kmem_cache_node available */
1897d06609SChristoph Lameter 	PARTIAL_ARRAYCACHE,	/* SLAB: kmalloc size for arraycache available */
1997d06609SChristoph Lameter 	PARTIAL_L3,		/* SLAB: kmalloc size for l3 struct available */
2097d06609SChristoph Lameter 	UP,			/* Slab caches usable but not all extras yet */
2197d06609SChristoph Lameter 	FULL			/* Everything is working */
2297d06609SChristoph Lameter };
2397d06609SChristoph Lameter 
2497d06609SChristoph Lameter extern enum slab_state slab_state;
2597d06609SChristoph Lameter 
2618004c5dSChristoph Lameter /* The slab cache mutex protects the management structures during changes */
2718004c5dSChristoph Lameter extern struct mutex slab_mutex;
289b030cb8SChristoph Lameter 
299b030cb8SChristoph Lameter /* The list of all slab caches on the system */
3018004c5dSChristoph Lameter extern struct list_head slab_caches;
3118004c5dSChristoph Lameter 
329b030cb8SChristoph Lameter /* The slab cache that manages slab cache information */
339b030cb8SChristoph Lameter extern struct kmem_cache *kmem_cache;
349b030cb8SChristoph Lameter 
3545906855SChristoph Lameter unsigned long calculate_alignment(unsigned long flags,
3645906855SChristoph Lameter 		unsigned long align, unsigned long size);
3745906855SChristoph Lameter 
389b030cb8SChristoph Lameter /* Functions provided by the slab allocators */
398a13a4ccSChristoph Lameter extern int __kmem_cache_create(struct kmem_cache *, unsigned long flags);
4097d06609SChristoph Lameter 
4145530c44SChristoph Lameter extern struct kmem_cache *create_kmalloc_cache(const char *name, size_t size,
4245530c44SChristoph Lameter 			unsigned long flags);
4345530c44SChristoph Lameter extern void create_boot_cache(struct kmem_cache *, const char *name,
4445530c44SChristoph Lameter 			size_t size, unsigned long flags);
4545530c44SChristoph Lameter 
462633d7a0SGlauber Costa struct mem_cgroup;
47cbb79694SChristoph Lameter #ifdef CONFIG_SLUB
482633d7a0SGlauber Costa struct kmem_cache *
492633d7a0SGlauber Costa __kmem_cache_alias(struct mem_cgroup *memcg, const char *name, size_t size,
50cbb79694SChristoph Lameter 		   size_t align, unsigned long flags, void (*ctor)(void *));
51cbb79694SChristoph Lameter #else
522633d7a0SGlauber Costa static inline struct kmem_cache *
532633d7a0SGlauber Costa __kmem_cache_alias(struct mem_cgroup *memcg, const char *name, size_t size,
54cbb79694SChristoph Lameter 		   size_t align, unsigned long flags, void (*ctor)(void *))
55cbb79694SChristoph Lameter { return NULL; }
56cbb79694SChristoph Lameter #endif
57cbb79694SChristoph Lameter 
58cbb79694SChristoph Lameter 
59d8843922SGlauber Costa /* Legal flag mask for kmem_cache_create(), for various configurations */
60d8843922SGlauber Costa #define SLAB_CORE_FLAGS (SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA | SLAB_PANIC | \
61d8843922SGlauber Costa 			 SLAB_DESTROY_BY_RCU | SLAB_DEBUG_OBJECTS )
62d8843922SGlauber Costa 
63d8843922SGlauber Costa #if defined(CONFIG_DEBUG_SLAB)
64d8843922SGlauber Costa #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
65d8843922SGlauber Costa #elif defined(CONFIG_SLUB_DEBUG)
66d8843922SGlauber Costa #define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
67d8843922SGlauber Costa 			  SLAB_TRACE | SLAB_DEBUG_FREE)
68d8843922SGlauber Costa #else
69d8843922SGlauber Costa #define SLAB_DEBUG_FLAGS (0)
70d8843922SGlauber Costa #endif
71d8843922SGlauber Costa 
72d8843922SGlauber Costa #if defined(CONFIG_SLAB)
73d8843922SGlauber Costa #define SLAB_CACHE_FLAGS (SLAB_MEM_SPREAD | SLAB_NOLEAKTRACE | \
74d8843922SGlauber Costa 			  SLAB_RECLAIM_ACCOUNT | SLAB_TEMPORARY | SLAB_NOTRACK)
75d8843922SGlauber Costa #elif defined(CONFIG_SLUB)
76d8843922SGlauber Costa #define SLAB_CACHE_FLAGS (SLAB_NOLEAKTRACE | SLAB_RECLAIM_ACCOUNT | \
77d8843922SGlauber Costa 			  SLAB_TEMPORARY | SLAB_NOTRACK)
78d8843922SGlauber Costa #else
79d8843922SGlauber Costa #define SLAB_CACHE_FLAGS (0)
80d8843922SGlauber Costa #endif
81d8843922SGlauber Costa 
82d8843922SGlauber Costa #define CACHE_CREATE_MASK (SLAB_CORE_FLAGS | SLAB_DEBUG_FLAGS | SLAB_CACHE_FLAGS)
83d8843922SGlauber Costa 
84945cf2b6SChristoph Lameter int __kmem_cache_shutdown(struct kmem_cache *);
85945cf2b6SChristoph Lameter 
86b7454ad3SGlauber Costa struct seq_file;
87b7454ad3SGlauber Costa struct file;
88b7454ad3SGlauber Costa 
890d7561c6SGlauber Costa struct slabinfo {
900d7561c6SGlauber Costa 	unsigned long active_objs;
910d7561c6SGlauber Costa 	unsigned long num_objs;
920d7561c6SGlauber Costa 	unsigned long active_slabs;
930d7561c6SGlauber Costa 	unsigned long num_slabs;
940d7561c6SGlauber Costa 	unsigned long shared_avail;
950d7561c6SGlauber Costa 	unsigned int limit;
960d7561c6SGlauber Costa 	unsigned int batchcount;
970d7561c6SGlauber Costa 	unsigned int shared;
980d7561c6SGlauber Costa 	unsigned int objects_per_slab;
990d7561c6SGlauber Costa 	unsigned int cache_order;
1000d7561c6SGlauber Costa };
1010d7561c6SGlauber Costa 
1020d7561c6SGlauber Costa void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo);
1030d7561c6SGlauber Costa void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s);
104b7454ad3SGlauber Costa ssize_t slabinfo_write(struct file *file, const char __user *buffer,
105b7454ad3SGlauber Costa 		       size_t count, loff_t *ppos);
106ba6c496eSGlauber Costa 
107ba6c496eSGlauber Costa #ifdef CONFIG_MEMCG_KMEM
108ba6c496eSGlauber Costa static inline bool is_root_cache(struct kmem_cache *s)
109ba6c496eSGlauber Costa {
110ba6c496eSGlauber Costa 	return !s->memcg_params || s->memcg_params->is_root_cache;
111ba6c496eSGlauber Costa }
1122633d7a0SGlauber Costa 
1132633d7a0SGlauber Costa static inline bool cache_match_memcg(struct kmem_cache *cachep,
1142633d7a0SGlauber Costa 				     struct mem_cgroup *memcg)
1152633d7a0SGlauber Costa {
1162633d7a0SGlauber Costa 	return (is_root_cache(cachep) && !memcg) ||
1172633d7a0SGlauber Costa 				(cachep->memcg_params->memcg == memcg);
1182633d7a0SGlauber Costa }
119b9ce5ef4SGlauber Costa 
1201f458cbfSGlauber Costa static inline void memcg_bind_pages(struct kmem_cache *s, int order)
1211f458cbfSGlauber Costa {
1221f458cbfSGlauber Costa 	if (!is_root_cache(s))
1231f458cbfSGlauber Costa 		atomic_add(1 << order, &s->memcg_params->nr_pages);
1241f458cbfSGlauber Costa }
1251f458cbfSGlauber Costa 
1261f458cbfSGlauber Costa static inline void memcg_release_pages(struct kmem_cache *s, int order)
1271f458cbfSGlauber Costa {
1281f458cbfSGlauber Costa 	if (is_root_cache(s))
1291f458cbfSGlauber Costa 		return;
1301f458cbfSGlauber Costa 
1311f458cbfSGlauber Costa 	if (atomic_sub_and_test((1 << order), &s->memcg_params->nr_pages))
1321f458cbfSGlauber Costa 		mem_cgroup_destroy_cache(s);
1331f458cbfSGlauber Costa }
1341f458cbfSGlauber Costa 
135b9ce5ef4SGlauber Costa static inline bool slab_equal_or_root(struct kmem_cache *s,
136b9ce5ef4SGlauber Costa 					struct kmem_cache *p)
137b9ce5ef4SGlauber Costa {
138b9ce5ef4SGlauber Costa 	return (p == s) ||
139b9ce5ef4SGlauber Costa 		(s->memcg_params && (p == s->memcg_params->root_cache));
140b9ce5ef4SGlauber Costa }
141749c5415SGlauber Costa 
142749c5415SGlauber Costa /*
143749c5415SGlauber Costa  * We use suffixes to the name in memcg because we can't have caches
144749c5415SGlauber Costa  * created in the system with the same name. But when we print them
145749c5415SGlauber Costa  * locally, better refer to them with the base name
146749c5415SGlauber Costa  */
147749c5415SGlauber Costa static inline const char *cache_name(struct kmem_cache *s)
148749c5415SGlauber Costa {
149749c5415SGlauber Costa 	if (!is_root_cache(s))
150749c5415SGlauber Costa 		return s->memcg_params->root_cache->name;
151749c5415SGlauber Costa 	return s->name;
152749c5415SGlauber Costa }
153749c5415SGlauber Costa 
154749c5415SGlauber Costa static inline struct kmem_cache *cache_from_memcg(struct kmem_cache *s, int idx)
155749c5415SGlauber Costa {
156749c5415SGlauber Costa 	return s->memcg_params->memcg_caches[idx];
157749c5415SGlauber Costa }
158*943a451aSGlauber Costa 
159*943a451aSGlauber Costa static inline struct kmem_cache *memcg_root_cache(struct kmem_cache *s)
160*943a451aSGlauber Costa {
161*943a451aSGlauber Costa 	if (is_root_cache(s))
162*943a451aSGlauber Costa 		return s;
163*943a451aSGlauber Costa 	return s->memcg_params->root_cache;
164*943a451aSGlauber Costa }
165ba6c496eSGlauber Costa #else
166ba6c496eSGlauber Costa static inline bool is_root_cache(struct kmem_cache *s)
167ba6c496eSGlauber Costa {
168ba6c496eSGlauber Costa 	return true;
169ba6c496eSGlauber Costa }
170ba6c496eSGlauber Costa 
1712633d7a0SGlauber Costa static inline bool cache_match_memcg(struct kmem_cache *cachep,
1722633d7a0SGlauber Costa 				     struct mem_cgroup *memcg)
1732633d7a0SGlauber Costa {
1742633d7a0SGlauber Costa 	return true;
1752633d7a0SGlauber Costa }
176b9ce5ef4SGlauber Costa 
1771f458cbfSGlauber Costa static inline void memcg_bind_pages(struct kmem_cache *s, int order)
1781f458cbfSGlauber Costa {
1791f458cbfSGlauber Costa }
1801f458cbfSGlauber Costa 
1811f458cbfSGlauber Costa static inline void memcg_release_pages(struct kmem_cache *s, int order)
1821f458cbfSGlauber Costa {
1831f458cbfSGlauber Costa }
1841f458cbfSGlauber Costa 
185b9ce5ef4SGlauber Costa static inline bool slab_equal_or_root(struct kmem_cache *s,
186b9ce5ef4SGlauber Costa 				      struct kmem_cache *p)
187b9ce5ef4SGlauber Costa {
188b9ce5ef4SGlauber Costa 	return true;
189b9ce5ef4SGlauber Costa }
190749c5415SGlauber Costa 
191749c5415SGlauber Costa static inline const char *cache_name(struct kmem_cache *s)
192749c5415SGlauber Costa {
193749c5415SGlauber Costa 	return s->name;
194749c5415SGlauber Costa }
195749c5415SGlauber Costa 
196749c5415SGlauber Costa static inline struct kmem_cache *cache_from_memcg(struct kmem_cache *s, int idx)
197749c5415SGlauber Costa {
198749c5415SGlauber Costa 	return NULL;
199749c5415SGlauber Costa }
200*943a451aSGlauber Costa 
201*943a451aSGlauber Costa static inline struct kmem_cache *memcg_root_cache(struct kmem_cache *s)
202*943a451aSGlauber Costa {
203*943a451aSGlauber Costa 	return s;
204*943a451aSGlauber Costa }
205ba6c496eSGlauber Costa #endif
206b9ce5ef4SGlauber Costa 
207b9ce5ef4SGlauber Costa static inline struct kmem_cache *cache_from_obj(struct kmem_cache *s, void *x)
208b9ce5ef4SGlauber Costa {
209b9ce5ef4SGlauber Costa 	struct kmem_cache *cachep;
210b9ce5ef4SGlauber Costa 	struct page *page;
211b9ce5ef4SGlauber Costa 
212b9ce5ef4SGlauber Costa 	/*
213b9ce5ef4SGlauber Costa 	 * When kmemcg is not being used, both assignments should return the
214b9ce5ef4SGlauber Costa 	 * same value. but we don't want to pay the assignment price in that
215b9ce5ef4SGlauber Costa 	 * case. If it is not compiled in, the compiler should be smart enough
216b9ce5ef4SGlauber Costa 	 * to not do even the assignment. In that case, slab_equal_or_root
217b9ce5ef4SGlauber Costa 	 * will also be a constant.
218b9ce5ef4SGlauber Costa 	 */
219b9ce5ef4SGlauber Costa 	if (!memcg_kmem_enabled() && !unlikely(s->flags & SLAB_DEBUG_FREE))
220b9ce5ef4SGlauber Costa 		return s;
221b9ce5ef4SGlauber Costa 
222b9ce5ef4SGlauber Costa 	page = virt_to_head_page(x);
223b9ce5ef4SGlauber Costa 	cachep = page->slab_cache;
224b9ce5ef4SGlauber Costa 	if (slab_equal_or_root(cachep, s))
225b9ce5ef4SGlauber Costa 		return cachep;
226b9ce5ef4SGlauber Costa 
227b9ce5ef4SGlauber Costa 	pr_err("%s: Wrong slab cache. %s but object is from %s\n",
228b9ce5ef4SGlauber Costa 		__FUNCTION__, cachep->name, s->name);
229b9ce5ef4SGlauber Costa 	WARN_ON_ONCE(1);
230b9ce5ef4SGlauber Costa 	return s;
231b9ce5ef4SGlauber Costa }
23297d06609SChristoph Lameter #endif
233