]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blob - include/linux/slub_def.h
Slab allocators: Drop support for destructors
[mirror_ubuntu-focal-kernel.git] / include / linux / slub_def.h
1 #ifndef _LINUX_SLUB_DEF_H
2 #define _LINUX_SLUB_DEF_H
3
4 /*
5 * SLUB : A Slab allocator without object queues.
6 *
7 * (C) 2007 SGI, Christoph Lameter <clameter@sgi.com>
8 */
9 #include <linux/types.h>
10 #include <linux/gfp.h>
11 #include <linux/workqueue.h>
12 #include <linux/kobject.h>
13
14 struct kmem_cache_node {
15 spinlock_t list_lock; /* Protect partial list and nr_partial */
16 unsigned long nr_partial;
17 atomic_long_t nr_slabs;
18 struct list_head partial;
19 struct list_head full;
20 };
21
22 /*
23 * Slab cache management.
24 */
25 struct kmem_cache {
26 /* Used for retriving partial slabs etc */
27 unsigned long flags;
28 int size; /* The size of an object including meta data */
29 int objsize; /* The size of an object without meta data */
30 int offset; /* Free pointer offset. */
31 unsigned int order;
32
33 /*
34 * Avoid an extra cache line for UP, SMP and for the node local to
35 * struct kmem_cache.
36 */
37 struct kmem_cache_node local_node;
38
39 /* Allocation and freeing of slabs */
40 int objects; /* Number of objects in slab */
41 int refcount; /* Refcount for slab cache destroy */
42 void (*ctor)(void *, struct kmem_cache *, unsigned long);
43 int inuse; /* Offset to metadata */
44 int align; /* Alignment */
45 const char *name; /* Name (only for display!) */
46 struct list_head list; /* List of slab caches */
47 struct kobject kobj; /* For sysfs */
48
49 #ifdef CONFIG_NUMA
50 int defrag_ratio;
51 struct kmem_cache_node *node[MAX_NUMNODES];
52 #endif
53 struct page *cpu_slab[NR_CPUS];
54 };
55
56 /*
57 * Kmalloc subsystem.
58 */
59 #define KMALLOC_SHIFT_LOW 3
60
61 #ifdef CONFIG_LARGE_ALLOCS
62 #define KMALLOC_SHIFT_HIGH ((MAX_ORDER + PAGE_SHIFT) =< 25 ? \
63 (MAX_ORDER + PAGE_SHIFT - 1) : 25)
64 #else
65 #if !defined(CONFIG_MMU) || NR_CPUS > 512 || MAX_NUMNODES > 256
66 #define KMALLOC_SHIFT_HIGH 20
67 #else
68 #define KMALLOC_SHIFT_HIGH 18
69 #endif
70 #endif
71
72 /*
73 * We keep the general caches in an array of slab caches that are used for
74 * 2^x bytes of allocations.
75 */
76 extern struct kmem_cache kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
77
78 /*
79 * Sorry that the following has to be that ugly but some versions of GCC
80 * have trouble with constant propagation and loops.
81 */
82 static inline int kmalloc_index(int size)
83 {
84 /*
85 * We should return 0 if size == 0 but we use the smallest object
86 * here for SLAB legacy reasons.
87 */
88 WARN_ON_ONCE(size == 0);
89
90 if (size > (1 << KMALLOC_SHIFT_HIGH))
91 return -1;
92
93 if (size > 64 && size <= 96)
94 return 1;
95 if (size > 128 && size <= 192)
96 return 2;
97 if (size <= 8) return 3;
98 if (size <= 16) return 4;
99 if (size <= 32) return 5;
100 if (size <= 64) return 6;
101 if (size <= 128) return 7;
102 if (size <= 256) return 8;
103 if (size <= 512) return 9;
104 if (size <= 1024) return 10;
105 if (size <= 2 * 1024) return 11;
106 if (size <= 4 * 1024) return 12;
107 if (size <= 8 * 1024) return 13;
108 if (size <= 16 * 1024) return 14;
109 if (size <= 32 * 1024) return 15;
110 if (size <= 64 * 1024) return 16;
111 if (size <= 128 * 1024) return 17;
112 if (size <= 256 * 1024) return 18;
113 #if KMALLOC_SHIFT_HIGH > 18
114 if (size <= 512 * 1024) return 19;
115 if (size <= 1024 * 1024) return 20;
116 #endif
117 #if KMALLOC_SHIFT_HIGH > 20
118 if (size <= 2 * 1024 * 1024) return 21;
119 if (size <= 4 * 1024 * 1024) return 22;
120 if (size <= 8 * 1024 * 1024) return 23;
121 if (size <= 16 * 1024 * 1024) return 24;
122 if (size <= 32 * 1024 * 1024) return 25;
123 #endif
124 return -1;
125
126 /*
127 * What we really wanted to do and cannot do because of compiler issues is:
128 * int i;
129 * for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++)
130 * if (size <= (1 << i))
131 * return i;
132 */
133 }
134
135 /*
136 * Find the slab cache for a given combination of allocation flags and size.
137 *
138 * This ought to end up with a global pointer to the right cache
139 * in kmalloc_caches.
140 */
141 static inline struct kmem_cache *kmalloc_slab(size_t size)
142 {
143 int index = kmalloc_index(size);
144
145 if (index == 0)
146 return NULL;
147
148 if (index < 0) {
149 /*
150 * Generate a link failure. Would be great if we could
151 * do something to stop the compile here.
152 */
153 extern void __kmalloc_size_too_large(void);
154 __kmalloc_size_too_large();
155 }
156 return &kmalloc_caches[index];
157 }
158
159 #ifdef CONFIG_ZONE_DMA
160 #define SLUB_DMA __GFP_DMA
161 #else
162 /* Disable DMA functionality */
163 #define SLUB_DMA 0
164 #endif
165
166 static inline void *kmalloc(size_t size, gfp_t flags)
167 {
168 if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
169 struct kmem_cache *s = kmalloc_slab(size);
170
171 if (!s)
172 return NULL;
173
174 return kmem_cache_alloc(s, flags);
175 } else
176 return __kmalloc(size, flags);
177 }
178
179 static inline void *kzalloc(size_t size, gfp_t flags)
180 {
181 if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
182 struct kmem_cache *s = kmalloc_slab(size);
183
184 if (!s)
185 return NULL;
186
187 return kmem_cache_zalloc(s, flags);
188 } else
189 return __kzalloc(size, flags);
190 }
191
192 #ifdef CONFIG_NUMA
193 extern void *__kmalloc_node(size_t size, gfp_t flags, int node);
194
195 static inline void *kmalloc_node(size_t size, gfp_t flags, int node)
196 {
197 if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
198 struct kmem_cache *s = kmalloc_slab(size);
199
200 if (!s)
201 return NULL;
202
203 return kmem_cache_alloc_node(s, flags, node);
204 } else
205 return __kmalloc_node(size, flags, node);
206 }
207 #endif
208
209 #endif /* _LINUX_SLUB_DEF_H */