1 #ifndef _LINUX_SLAB_DEF_H
2 #define _LINUX_SLAB_DEF_H
5 * Definitions unique to the original Linux SLAB allocator.
7 * What we provide here is a way to optimize the frequent kmalloc
8 * calls in the kernel by selecting the appropriate general cache
9 * if kmalloc was called with a size that can be established at
13 #include <linux/init.h>
14 #include <asm/page.h> /* kmalloc_sizes.h needs PAGE_SIZE */
15 #include <asm/cache.h> /* kmalloc_sizes.h needs L1_CACHE_BYTES */
16 #include <linux/compiler.h>
17 #include <trace/kmemtrace.h>
19 /* Size description struct for general caches. */
22 struct kmem_cache
*cs_cachep
;
23 #ifdef CONFIG_ZONE_DMA
24 struct kmem_cache
*cs_dmacachep
;
27 extern struct cache_sizes malloc_sizes
[];
29 void *kmem_cache_alloc(struct kmem_cache
*, gfp_t
);
30 void *__kmalloc(size_t size
, gfp_t flags
);
32 #ifdef CONFIG_KMEMTRACE
33 extern void *kmem_cache_alloc_notrace(struct kmem_cache
*cachep
, gfp_t flags
);
34 extern size_t slab_buffer_size(struct kmem_cache
*cachep
);
36 static __always_inline
void *
37 kmem_cache_alloc_notrace(struct kmem_cache
*cachep
, gfp_t flags
)
39 return kmem_cache_alloc(cachep
, flags
);
41 static inline size_t slab_buffer_size(struct kmem_cache
*cachep
)
47 static __always_inline
void *kmalloc(size_t size
, gfp_t flags
)
49 struct kmem_cache
*cachep
;
52 if (__builtin_constant_p(size
)) {
63 #include <linux/kmalloc_sizes.h>
67 #ifdef CONFIG_ZONE_DMA
69 cachep
= malloc_sizes
[i
].cs_dmacachep
;
72 cachep
= malloc_sizes
[i
].cs_cachep
;
74 ret
= kmem_cache_alloc_notrace(cachep
, flags
);
76 trace_kmalloc(_THIS_IP_
, ret
,
77 size
, slab_buffer_size(cachep
), flags
);
81 return __kmalloc(size
, flags
);
85 extern void *__kmalloc_node(size_t size
, gfp_t flags
, int node
);
86 extern void *kmem_cache_alloc_node(struct kmem_cache
*, gfp_t flags
, int node
);
88 #ifdef CONFIG_KMEMTRACE
89 extern void *kmem_cache_alloc_node_notrace(struct kmem_cache
*cachep
,
93 static __always_inline
void *
94 kmem_cache_alloc_node_notrace(struct kmem_cache
*cachep
,
98 return kmem_cache_alloc_node(cachep
, flags
, nodeid
);
102 static __always_inline
void *kmalloc_node(size_t size
, gfp_t flags
, int node
)
104 struct kmem_cache
*cachep
;
107 if (__builtin_constant_p(size
)) {
111 return ZERO_SIZE_PTR
;
118 #include <linux/kmalloc_sizes.h>
122 #ifdef CONFIG_ZONE_DMA
124 cachep
= malloc_sizes
[i
].cs_dmacachep
;
127 cachep
= malloc_sizes
[i
].cs_cachep
;
129 ret
= kmem_cache_alloc_node_notrace(cachep
, flags
, node
);
131 trace_kmalloc_node(_THIS_IP_
, ret
,
132 size
, slab_buffer_size(cachep
),
137 return __kmalloc_node(size
, flags
, node
);
140 #endif /* CONFIG_NUMA */
142 #endif /* _LINUX_SLAB_DEF_H */