SLUB: allocate smallest object size if the user asks for 0 bytes
[safe/jmp/linux-2.6] / 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 };
20
21 /*
22  * Slab cache management.
23  */
24 struct kmem_cache {
25         /* Used for retriving partial slabs etc */
26         unsigned long flags;
27         int size;               /* The size of an object including meta data */
28         int objsize;            /* The size of an object without meta data */
29         int offset;             /* Free pointer offset. */
30         unsigned int order;
31
32         /*
33          * Avoid an extra cache line for UP, SMP and for the node local to
34          * struct kmem_cache.
35          */
36         struct kmem_cache_node local_node;
37
38         /* Allocation and freeing of slabs */
39         int objects;            /* Number of objects in slab */
40         int refcount;           /* Refcount for slab cache destroy */
41         void (*ctor)(void *, struct kmem_cache *, unsigned long);
42         void (*dtor)(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 25
63 #else
64 #if !defined(CONFIG_MMU) || NR_CPUS > 512 || MAX_NUMNODES > 256
65 #define KMALLOC_SHIFT_HIGH 20
66 #else
67 #define KMALLOC_SHIFT_HIGH 18
68 #endif
69 #endif
70
71 /*
72  * We keep the general caches in an array of slab caches that are used for
73  * 2^x bytes of allocations.
74  */
75 extern struct kmem_cache kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
76
77 /*
78  * Sorry that the following has to be that ugly but some versions of GCC
79  * have trouble with constant propagation and loops.
80  */
81 static inline int kmalloc_index(int size)
82 {
83         /*
84          * We should return 0 if size == 0 but we use the smallest object
85          * here for SLAB legacy reasons.
86          */
87         WARN_ON_ONCE(size == 0);
88
89         if (size > 64 && size <= 96)
90                 return 1;
91         if (size > 128 && size <= 192)
92                 return 2;
93         if (size <=          8) return 3;
94         if (size <=         16) return 4;
95         if (size <=         32) return 5;
96         if (size <=         64) return 6;
97         if (size <=        128) return 7;
98         if (size <=        256) return 8;
99         if (size <=        512) return 9;
100         if (size <=       1024) return 10;
101         if (size <=   2 * 1024) return 11;
102         if (size <=   4 * 1024) return 12;
103         if (size <=   8 * 1024) return 13;
104         if (size <=  16 * 1024) return 14;
105         if (size <=  32 * 1024) return 15;
106         if (size <=  64 * 1024) return 16;
107         if (size <= 128 * 1024) return 17;
108         if (size <= 256 * 1024) return 18;
109 #if KMALLOC_SHIFT_HIGH > 18
110         if (size <=  512 * 1024) return 19;
111         if (size <= 1024 * 1024) return 20;
112 #endif
113 #if KMALLOC_SHIFT_HIGH > 20
114         if (size <=  2 * 1024 * 1024) return 21;
115         if (size <=  4 * 1024 * 1024) return 22;
116         if (size <=  8 * 1024 * 1024) return 23;
117         if (size <= 16 * 1024 * 1024) return 24;
118         if (size <= 32 * 1024 * 1024) return 25;
119 #endif
120         return -1;
121
122 /*
123  * What we really wanted to do and cannot do because of compiler issues is:
124  *      int i;
125  *      for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++)
126  *              if (size <= (1 << i))
127  *                      return i;
128  */
129 }
130
131 /*
132  * Find the slab cache for a given combination of allocation flags and size.
133  *
134  * This ought to end up with a global pointer to the right cache
135  * in kmalloc_caches.
136  */
137 static inline struct kmem_cache *kmalloc_slab(size_t size)
138 {
139         int index = kmalloc_index(size);
140
141         if (index == 0)
142                 return NULL;
143
144         if (index < 0) {
145                 /*
146                  * Generate a link failure. Would be great if we could
147                  * do something to stop the compile here.
148                  */
149                 extern void __kmalloc_size_too_large(void);
150                 __kmalloc_size_too_large();
151         }
152         return &kmalloc_caches[index];
153 }
154
155 #ifdef CONFIG_ZONE_DMA
156 #define SLUB_DMA __GFP_DMA
157 #else
158 /* Disable DMA functionality */
159 #define SLUB_DMA 0
160 #endif
161
162 static inline void *kmalloc(size_t size, gfp_t flags)
163 {
164         if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
165                 struct kmem_cache *s = kmalloc_slab(size);
166
167                 if (!s)
168                         return NULL;
169
170                 return kmem_cache_alloc(s, flags);
171         } else
172                 return __kmalloc(size, flags);
173 }
174
175 static inline void *kzalloc(size_t size, gfp_t flags)
176 {
177         if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
178                 struct kmem_cache *s = kmalloc_slab(size);
179
180                 if (!s)
181                         return NULL;
182
183                 return kmem_cache_zalloc(s, flags);
184         } else
185                 return __kzalloc(size, flags);
186 }
187
188 #ifdef CONFIG_NUMA
189 extern void *__kmalloc_node(size_t size, gfp_t flags, int node);
190
191 static inline void *kmalloc_node(size_t size, gfp_t flags, int node)
192 {
193         if (__builtin_constant_p(size) && !(flags & SLUB_DMA)) {
194                 struct kmem_cache *s = kmalloc_slab(size);
195
196                 if (!s)
197                         return NULL;
198
199                 return kmem_cache_alloc_node(s, flags, node);
200         } else
201                 return __kmalloc_node(size, flags, node);
202 }
203 #endif
204
205 #endif /* _LINUX_SLUB_DEF_H */