blob: 6a208f81888a3c09b0161e1fc23bf41fb7367dfd [file] [log] [blame]
Matt Mackall10cef602006-01-08 01:01:45 -08001/*
2 * SLOB Allocator: Simple List Of Blocks
3 *
4 * Matt Mackall <mpm@selenic.com> 12/30/03
5 *
Paul Mundt6193a2f2007-07-15 23:38:22 -07006 * NUMA support by Paul Mundt, 2007.
7 *
Matt Mackall10cef602006-01-08 01:01:45 -08008 * How SLOB works:
9 *
10 * The core of SLOB is a traditional K&R style heap allocator, with
11 * support for returning aligned objects. The granularity of this
Nick Piggin55394842007-07-15 23:38:09 -070012 * allocator is as little as 2 bytes, however typically most architectures
13 * will require 4 bytes on 32-bit and 8 bytes on 64-bit.
Nick Piggin95b35122007-07-15 23:38:07 -070014 *
Matt Mackall20cecba2008-02-04 22:29:37 -080015 * The slob heap is a set of linked list of pages from alloc_pages(),
16 * and within each page, there is a singly-linked list of free blocks
17 * (slob_t). The heap is grown on demand. To reduce fragmentation,
18 * heap pages are segregated into three lists, with objects less than
19 * 256 bytes, objects less than 1024 bytes, and all other objects.
20 *
21 * Allocation from heap involves first searching for a page with
22 * sufficient free blocks (using a next-fit-like approach) followed by
23 * a first-fit scan of the page. Deallocation inserts objects back
24 * into the free list in address order, so this is effectively an
25 * address-ordered first fit.
Matt Mackall10cef602006-01-08 01:01:45 -080026 *
27 * Above this is an implementation of kmalloc/kfree. Blocks returned
Nick Piggin55394842007-07-15 23:38:09 -070028 * from kmalloc are prepended with a 4-byte header with the kmalloc size.
Matt Mackall10cef602006-01-08 01:01:45 -080029 * If kmalloc is asked for objects of PAGE_SIZE or larger, it calls
Paul Mundt6193a2f2007-07-15 23:38:22 -070030 * alloc_pages() directly, allocating compound pages so the page order
Nick Piggind87a1332007-07-15 23:38:08 -070031 * does not have to be separately tracked, and also stores the exact
32 * allocation size in page->private so that it can be used to accurately
33 * provide ksize(). These objects are detected in kfree() because slob_page()
34 * is false for them.
Matt Mackall10cef602006-01-08 01:01:45 -080035 *
36 * SLAB is emulated on top of SLOB by simply calling constructors and
Nick Piggin95b35122007-07-15 23:38:07 -070037 * destructors for every SLAB allocation. Objects are returned with the
38 * 4-byte alignment unless the SLAB_HWCACHE_ALIGN flag is set, in which
39 * case the low-level allocator will fragment blocks to create the proper
40 * alignment. Again, objects of page-size or greater are allocated by
Paul Mundt6193a2f2007-07-15 23:38:22 -070041 * calling alloc_pages(). As SLAB objects know their size, no separate
Nick Piggin95b35122007-07-15 23:38:07 -070042 * size bookkeeping is necessary and there is essentially no allocation
Nick Piggind87a1332007-07-15 23:38:08 -070043 * space overhead, and compound pages aren't needed for multi-page
44 * allocations.
Paul Mundt6193a2f2007-07-15 23:38:22 -070045 *
46 * NUMA support in SLOB is fairly simplistic, pushing most of the real
47 * logic down to the page allocator, and simply doing the node accounting
48 * on the upper levels. In the event that a node id is explicitly
Mel Gorman6484eb32009-06-16 15:31:54 -070049 * provided, alloc_pages_exact_node() with the specified node id is used
Paul Mundt6193a2f2007-07-15 23:38:22 -070050 * instead. The common case (or when the node id isn't explicitly provided)
51 * will default to the current node, as per numa_node_id().
52 *
53 * Node aware pages are still inserted in to the global freelist, and
54 * these are scanned for by matching against the node id encoded in the
55 * page flags. As a result, block allocations that can be satisfied from
56 * the freelist will only be done so on pages residing on the same node,
57 * in order to prevent random node placement.
Matt Mackall10cef602006-01-08 01:01:45 -080058 */
59
Nick Piggin95b35122007-07-15 23:38:07 -070060#include <linux/kernel.h>
Matt Mackall10cef602006-01-08 01:01:45 -080061#include <linux/slab.h>
62#include <linux/mm.h>
Nick Piggin1f0532e2009-05-05 19:13:45 +100063#include <linux/swap.h> /* struct reclaim_state */
Matt Mackall10cef602006-01-08 01:01:45 -080064#include <linux/cache.h>
65#include <linux/init.h>
66#include <linux/module.h>
Nick Pigginafc0ced2007-05-16 22:10:49 -070067#include <linux/rcupdate.h>
Nick Piggin95b35122007-07-15 23:38:07 -070068#include <linux/list.h>
Zhaolei02af61b2009-04-10 14:26:18 +080069#include <linux/kmemtrace.h>
Catalin Marinas4374e612009-06-11 13:23:17 +010070#include <linux/kmemleak.h>
Nick Piggin95b35122007-07-15 23:38:07 -070071#include <asm/atomic.h>
Matt Mackall10cef602006-01-08 01:01:45 -080072
Nick Piggin95b35122007-07-15 23:38:07 -070073/*
74 * slob_block has a field 'units', which indicates size of block if +ve,
75 * or offset of next block if -ve (in SLOB_UNITs).
76 *
77 * Free blocks of size 1 unit simply contain the offset of the next block.
78 * Those with larger size contain their size in the first SLOB_UNIT of
79 * memory, and the offset of the next free block in the second SLOB_UNIT.
80 */
Nick Piggin55394842007-07-15 23:38:09 -070081#if PAGE_SIZE <= (32767 * 2)
Nick Piggin95b35122007-07-15 23:38:07 -070082typedef s16 slobidx_t;
83#else
84typedef s32 slobidx_t;
85#endif
86
Matt Mackall10cef602006-01-08 01:01:45 -080087struct slob_block {
Nick Piggin95b35122007-07-15 23:38:07 -070088 slobidx_t units;
Nick Piggin55394842007-07-15 23:38:09 -070089};
Matt Mackall10cef602006-01-08 01:01:45 -080090typedef struct slob_block slob_t;
91
Nick Piggin95b35122007-07-15 23:38:07 -070092/*
93 * We use struct page fields to manage some slob allocation aspects,
94 * however to avoid the horrible mess in include/linux/mm_types.h, we'll
95 * just define our own struct page type variant here.
96 */
97struct slob_page {
98 union {
99 struct {
100 unsigned long flags; /* mandatory */
101 atomic_t _count; /* mandatory */
102 slobidx_t units; /* free units left in page */
103 unsigned long pad[2];
104 slob_t *free; /* first free slob_t in page */
105 struct list_head list; /* linked list of free pages */
106 };
107 struct page page;
108 };
109};
110static inline void struct_slob_page_wrong_size(void)
111{ BUILD_BUG_ON(sizeof(struct slob_page) != sizeof(struct page)); }
112
113/*
114 * free_slob_page: call before a slob_page is returned to the page allocator.
115 */
116static inline void free_slob_page(struct slob_page *sp)
117{
118 reset_page_mapcount(&sp->page);
119 sp->page.mapping = NULL;
120}
121
122/*
Matt Mackall20cecba2008-02-04 22:29:37 -0800123 * All partially free slob pages go on these lists.
Nick Piggin95b35122007-07-15 23:38:07 -0700124 */
Matt Mackall20cecba2008-02-04 22:29:37 -0800125#define SLOB_BREAK1 256
126#define SLOB_BREAK2 1024
127static LIST_HEAD(free_slob_small);
128static LIST_HEAD(free_slob_medium);
129static LIST_HEAD(free_slob_large);
Nick Piggin95b35122007-07-15 23:38:07 -0700130
131/*
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800132 * is_slob_page: True for all slob pages (false for bigblock pages)
Nick Piggin95b35122007-07-15 23:38:07 -0700133 */
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800134static inline int is_slob_page(struct slob_page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700135{
Wu Fengguang7303f242009-05-11 09:59:34 +0300136 return PageSlab((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700137}
138
139static inline void set_slob_page(struct slob_page *sp)
140{
Wu Fengguang7303f242009-05-11 09:59:34 +0300141 __SetPageSlab((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700142}
143
144static inline void clear_slob_page(struct slob_page *sp)
145{
Wu Fengguang7303f242009-05-11 09:59:34 +0300146 __ClearPageSlab((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700147}
148
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800149static inline struct slob_page *slob_page(const void *addr)
150{
151 return (struct slob_page *)virt_to_page(addr);
152}
153
Nick Piggin95b35122007-07-15 23:38:07 -0700154/*
155 * slob_page_free: true for pages on free_slob_pages list.
156 */
157static inline int slob_page_free(struct slob_page *sp)
158{
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700159 return PageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700160}
161
Matt Mackall20cecba2008-02-04 22:29:37 -0800162static void set_slob_page_free(struct slob_page *sp, struct list_head *list)
Nick Piggin95b35122007-07-15 23:38:07 -0700163{
Matt Mackall20cecba2008-02-04 22:29:37 -0800164 list_add(&sp->list, list);
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700165 __SetPageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700166}
167
168static inline void clear_slob_page_free(struct slob_page *sp)
169{
170 list_del(&sp->list);
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700171 __ClearPageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700172}
173
Matt Mackall10cef602006-01-08 01:01:45 -0800174#define SLOB_UNIT sizeof(slob_t)
175#define SLOB_UNITS(size) (((size) + SLOB_UNIT - 1)/SLOB_UNIT)
176#define SLOB_ALIGN L1_CACHE_BYTES
177
Nick Pigginafc0ced2007-05-16 22:10:49 -0700178/*
179 * struct slob_rcu is inserted at the tail of allocated slob blocks, which
180 * were created with a SLAB_DESTROY_BY_RCU slab. slob_rcu is used to free
181 * the block using call_rcu.
182 */
183struct slob_rcu {
184 struct rcu_head head;
185 int size;
186};
187
Nick Piggin95b35122007-07-15 23:38:07 -0700188/*
189 * slob_lock protects all slob allocator structures.
190 */
Matt Mackall10cef602006-01-08 01:01:45 -0800191static DEFINE_SPINLOCK(slob_lock);
Matt Mackall10cef602006-01-08 01:01:45 -0800192
Nick Piggin95b35122007-07-15 23:38:07 -0700193/*
194 * Encode the given size and next info into a free slob block s.
195 */
196static void set_slob(slob_t *s, slobidx_t size, slob_t *next)
197{
198 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
199 slobidx_t offset = next - base;
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800200
Nick Piggin95b35122007-07-15 23:38:07 -0700201 if (size > 1) {
202 s[0].units = size;
203 s[1].units = offset;
204 } else
205 s[0].units = -offset;
206}
Matt Mackall10cef602006-01-08 01:01:45 -0800207
Nick Piggin95b35122007-07-15 23:38:07 -0700208/*
209 * Return the size of a slob block.
210 */
211static slobidx_t slob_units(slob_t *s)
212{
213 if (s->units > 0)
214 return s->units;
215 return 1;
216}
217
218/*
219 * Return the next free slob block pointer after this one.
220 */
221static slob_t *slob_next(slob_t *s)
222{
223 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
224 slobidx_t next;
225
226 if (s[0].units < 0)
227 next = -s[0].units;
228 else
229 next = s[1].units;
230 return base+next;
231}
232
233/*
234 * Returns true if s is the last free block in its page.
235 */
236static int slob_last(slob_t *s)
237{
238 return !((unsigned long)slob_next(s) & ~PAGE_MASK);
239}
240
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800241static void *slob_new_pages(gfp_t gfp, int order, int node)
Paul Mundt6193a2f2007-07-15 23:38:22 -0700242{
243 void *page;
244
245#ifdef CONFIG_NUMA
246 if (node != -1)
Mel Gorman6484eb32009-06-16 15:31:54 -0700247 page = alloc_pages_exact_node(node, gfp, order);
Paul Mundt6193a2f2007-07-15 23:38:22 -0700248 else
249#endif
250 page = alloc_pages(gfp, order);
251
252 if (!page)
253 return NULL;
254
255 return page_address(page);
256}
257
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800258static void slob_free_pages(void *b, int order)
259{
Nick Piggin1f0532e2009-05-05 19:13:45 +1000260 if (current->reclaim_state)
261 current->reclaim_state->reclaimed_slab += 1 << order;
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800262 free_pages((unsigned long)b, order);
263}
264
Nick Piggin95b35122007-07-15 23:38:07 -0700265/*
266 * Allocate a slob block within a given slob_page sp.
267 */
268static void *slob_page_alloc(struct slob_page *sp, size_t size, int align)
Matt Mackall10cef602006-01-08 01:01:45 -0800269{
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800270 slob_t *prev, *cur, *aligned = NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800271 int delta = 0, units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800272
Nick Piggin95b35122007-07-15 23:38:07 -0700273 for (prev = NULL, cur = sp->free; ; prev = cur, cur = slob_next(cur)) {
274 slobidx_t avail = slob_units(cur);
275
Matt Mackall10cef602006-01-08 01:01:45 -0800276 if (align) {
277 aligned = (slob_t *)ALIGN((unsigned long)cur, align);
278 delta = aligned - cur;
279 }
Nick Piggin95b35122007-07-15 23:38:07 -0700280 if (avail >= units + delta) { /* room enough? */
281 slob_t *next;
282
Matt Mackall10cef602006-01-08 01:01:45 -0800283 if (delta) { /* need to fragment head to align? */
Nick Piggin95b35122007-07-15 23:38:07 -0700284 next = slob_next(cur);
285 set_slob(aligned, avail - delta, next);
286 set_slob(cur, delta, aligned);
Matt Mackall10cef602006-01-08 01:01:45 -0800287 prev = cur;
288 cur = aligned;
Nick Piggin95b35122007-07-15 23:38:07 -0700289 avail = slob_units(cur);
Matt Mackall10cef602006-01-08 01:01:45 -0800290 }
291
Nick Piggin95b35122007-07-15 23:38:07 -0700292 next = slob_next(cur);
293 if (avail == units) { /* exact fit? unlink. */
294 if (prev)
295 set_slob(prev, slob_units(prev), next);
296 else
297 sp->free = next;
298 } else { /* fragment */
299 if (prev)
300 set_slob(prev, slob_units(prev), cur + units);
301 else
302 sp->free = cur + units;
303 set_slob(cur + units, avail - units, next);
Matt Mackall10cef602006-01-08 01:01:45 -0800304 }
305
Nick Piggin95b35122007-07-15 23:38:07 -0700306 sp->units -= units;
307 if (!sp->units)
308 clear_slob_page_free(sp);
Matt Mackall10cef602006-01-08 01:01:45 -0800309 return cur;
310 }
Nick Piggin95b35122007-07-15 23:38:07 -0700311 if (slob_last(cur))
312 return NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800313 }
314}
315
Nick Piggin95b35122007-07-15 23:38:07 -0700316/*
317 * slob_alloc: entry point into the slob allocator.
318 */
Paul Mundt6193a2f2007-07-15 23:38:22 -0700319static void *slob_alloc(size_t size, gfp_t gfp, int align, int node)
Nick Piggin95b35122007-07-15 23:38:07 -0700320{
321 struct slob_page *sp;
Matt Mackalld6269542007-07-21 04:37:40 -0700322 struct list_head *prev;
Matt Mackall20cecba2008-02-04 22:29:37 -0800323 struct list_head *slob_list;
Nick Piggin95b35122007-07-15 23:38:07 -0700324 slob_t *b = NULL;
325 unsigned long flags;
326
Matt Mackall20cecba2008-02-04 22:29:37 -0800327 if (size < SLOB_BREAK1)
328 slob_list = &free_slob_small;
329 else if (size < SLOB_BREAK2)
330 slob_list = &free_slob_medium;
331 else
332 slob_list = &free_slob_large;
333
Nick Piggin95b35122007-07-15 23:38:07 -0700334 spin_lock_irqsave(&slob_lock, flags);
335 /* Iterate through each partially free page, try to find room */
Matt Mackall20cecba2008-02-04 22:29:37 -0800336 list_for_each_entry(sp, slob_list, list) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700337#ifdef CONFIG_NUMA
338 /*
339 * If there's a node specification, search for a partial
340 * page with a matching node id in the freelist.
341 */
342 if (node != -1 && page_to_nid(&sp->page) != node)
343 continue;
344#endif
Matt Mackalld6269542007-07-21 04:37:40 -0700345 /* Enough room on this page? */
346 if (sp->units < SLOB_UNITS(size))
347 continue;
Paul Mundt6193a2f2007-07-15 23:38:22 -0700348
Matt Mackalld6269542007-07-21 04:37:40 -0700349 /* Attempt to alloc */
350 prev = sp->list.prev;
351 b = slob_page_alloc(sp, size, align);
352 if (!b)
353 continue;
354
355 /* Improve fragment distribution and reduce our average
356 * search time by starting our next search here. (see
357 * Knuth vol 1, sec 2.5, pg 449) */
Matt Mackall20cecba2008-02-04 22:29:37 -0800358 if (prev != slob_list->prev &&
359 slob_list->next != prev->next)
360 list_move_tail(slob_list, prev->next);
Matt Mackalld6269542007-07-21 04:37:40 -0700361 break;
Nick Piggin95b35122007-07-15 23:38:07 -0700362 }
363 spin_unlock_irqrestore(&slob_lock, flags);
364
365 /* Not enough space: must allocate a new page */
366 if (!b) {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800367 b = slob_new_pages(gfp & ~__GFP_ZERO, 0, node);
Nick Piggin95b35122007-07-15 23:38:07 -0700368 if (!b)
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800369 return NULL;
370 sp = slob_page(b);
Nick Piggin95b35122007-07-15 23:38:07 -0700371 set_slob_page(sp);
372
373 spin_lock_irqsave(&slob_lock, flags);
374 sp->units = SLOB_UNITS(PAGE_SIZE);
375 sp->free = b;
376 INIT_LIST_HEAD(&sp->list);
377 set_slob(b, SLOB_UNITS(PAGE_SIZE), b + SLOB_UNITS(PAGE_SIZE));
Matt Mackall20cecba2008-02-04 22:29:37 -0800378 set_slob_page_free(sp, slob_list);
Nick Piggin95b35122007-07-15 23:38:07 -0700379 b = slob_page_alloc(sp, size, align);
380 BUG_ON(!b);
381 spin_unlock_irqrestore(&slob_lock, flags);
382 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -0700383 if (unlikely((gfp & __GFP_ZERO) && b))
384 memset(b, 0, size);
Nick Piggin95b35122007-07-15 23:38:07 -0700385 return b;
386}
387
388/*
389 * slob_free: entry point into the slob allocator.
390 */
Matt Mackall10cef602006-01-08 01:01:45 -0800391static void slob_free(void *block, int size)
392{
Nick Piggin95b35122007-07-15 23:38:07 -0700393 struct slob_page *sp;
394 slob_t *prev, *next, *b = (slob_t *)block;
395 slobidx_t units;
Matt Mackall10cef602006-01-08 01:01:45 -0800396 unsigned long flags;
Bob Liud602dab2010-07-10 18:05:33 +0800397 struct list_head *slob_list;
Matt Mackall10cef602006-01-08 01:01:45 -0800398
Satyam Sharma2408c552007-10-16 01:24:44 -0700399 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800400 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700401 BUG_ON(!size);
Matt Mackall10cef602006-01-08 01:01:45 -0800402
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800403 sp = slob_page(block);
Nick Piggin95b35122007-07-15 23:38:07 -0700404 units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800405
Matt Mackall10cef602006-01-08 01:01:45 -0800406 spin_lock_irqsave(&slob_lock, flags);
Matt Mackall10cef602006-01-08 01:01:45 -0800407
Nick Piggin95b35122007-07-15 23:38:07 -0700408 if (sp->units + units == SLOB_UNITS(PAGE_SIZE)) {
409 /* Go directly to page allocator. Do not pass slob allocator */
410 if (slob_page_free(sp))
411 clear_slob_page_free(sp);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100412 spin_unlock_irqrestore(&slob_lock, flags);
Nick Piggin95b35122007-07-15 23:38:07 -0700413 clear_slob_page(sp);
414 free_slob_page(sp);
Nick Piggin1f0532e2009-05-05 19:13:45 +1000415 slob_free_pages(b, 0);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100416 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700417 }
Matt Mackall10cef602006-01-08 01:01:45 -0800418
Nick Piggin95b35122007-07-15 23:38:07 -0700419 if (!slob_page_free(sp)) {
420 /* This slob page is about to become partially free. Easy! */
421 sp->units = units;
422 sp->free = b;
423 set_slob(b, units,
424 (void *)((unsigned long)(b +
425 SLOB_UNITS(PAGE_SIZE)) & PAGE_MASK));
Bob Liud602dab2010-07-10 18:05:33 +0800426 if (size < SLOB_BREAK1)
427 slob_list = &free_slob_small;
428 else if (size < SLOB_BREAK2)
429 slob_list = &free_slob_medium;
430 else
431 slob_list = &free_slob_large;
432 set_slob_page_free(sp, slob_list);
Nick Piggin95b35122007-07-15 23:38:07 -0700433 goto out;
434 }
Matt Mackall10cef602006-01-08 01:01:45 -0800435
Nick Piggin95b35122007-07-15 23:38:07 -0700436 /*
437 * Otherwise the page is already partially free, so find reinsertion
438 * point.
439 */
440 sp->units += units;
Matt Mackall10cef602006-01-08 01:01:45 -0800441
Nick Piggin95b35122007-07-15 23:38:07 -0700442 if (b < sp->free) {
Matt Mackall679299b2008-02-04 22:29:37 -0800443 if (b + units == sp->free) {
444 units += slob_units(sp->free);
445 sp->free = slob_next(sp->free);
446 }
Nick Piggin95b35122007-07-15 23:38:07 -0700447 set_slob(b, units, sp->free);
448 sp->free = b;
449 } else {
450 prev = sp->free;
451 next = slob_next(prev);
452 while (b > next) {
453 prev = next;
454 next = slob_next(prev);
455 }
456
457 if (!slob_last(prev) && b + units == next) {
458 units += slob_units(next);
459 set_slob(b, units, slob_next(next));
460 } else
461 set_slob(b, units, next);
462
463 if (prev + slob_units(prev) == b) {
464 units = slob_units(b) + slob_units(prev);
465 set_slob(prev, units, slob_next(b));
466 } else
467 set_slob(prev, slob_units(prev), b);
468 }
469out:
Matt Mackall10cef602006-01-08 01:01:45 -0800470 spin_unlock_irqrestore(&slob_lock, flags);
471}
472
Nick Piggin95b35122007-07-15 23:38:07 -0700473/*
474 * End of slob allocator proper. Begin kmem_cache_alloc and kmalloc frontend.
475 */
476
Paul Mundt6193a2f2007-07-15 23:38:22 -0700477void *__kmalloc_node(size_t size, gfp_t gfp, int node)
Matt Mackall10cef602006-01-08 01:01:45 -0800478{
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700479 unsigned int *m;
Nick Piggin55394842007-07-15 23:38:09 -0700480 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300481 void *ret;
Nick Piggin55394842007-07-15 23:38:09 -0700482
Ingo Molnar19cefdf2009-03-15 06:03:11 +0100483 lockdep_trace_alloc(gfp);
Nick Piggincf40bd12009-01-21 08:12:39 +0100484
Nick Piggin55394842007-07-15 23:38:09 -0700485 if (size < PAGE_SIZE - align) {
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700486 if (!size)
487 return ZERO_SIZE_PTR;
488
Paul Mundt6193a2f2007-07-15 23:38:22 -0700489 m = slob_alloc(size + align, gfp, align, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300490
MinChan Kim239f49c2008-05-19 22:12:08 +0900491 if (!m)
492 return NULL;
493 *m = size;
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300494 ret = (void *)m + align;
Nick Piggind87a1332007-07-15 23:38:08 -0700495
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +0200496 trace_kmalloc_node(_RET_IP_, ret,
497 size, size + align, gfp, node);
Nick Piggind87a1332007-07-15 23:38:08 -0700498 } else {
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300499 unsigned int order = get_order(size);
Nick Piggind87a1332007-07-15 23:38:08 -0700500
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800501 ret = slob_new_pages(gfp | __GFP_COMP, get_order(size), node);
Nick Piggind87a1332007-07-15 23:38:08 -0700502 if (ret) {
503 struct page *page;
504 page = virt_to_page(ret);
505 page->private = size;
506 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300507
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +0200508 trace_kmalloc_node(_RET_IP_, ret,
509 size, PAGE_SIZE << order, gfp, node);
Matt Mackall10cef602006-01-08 01:01:45 -0800510 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300511
Catalin Marinas4374e612009-06-11 13:23:17 +0100512 kmemleak_alloc(ret, size, 1, gfp);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300513 return ret;
Matt Mackall10cef602006-01-08 01:01:45 -0800514}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700515EXPORT_SYMBOL(__kmalloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800516
517void kfree(const void *block)
518{
Nick Piggin95b35122007-07-15 23:38:07 -0700519 struct slob_page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800520
Pekka Enberg2121db72009-03-25 11:05:57 +0200521 trace_kfree(_RET_IP_, block);
522
Satyam Sharma2408c552007-10-16 01:24:44 -0700523 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800524 return;
Catalin Marinas4374e612009-06-11 13:23:17 +0100525 kmemleak_free(block);
Matt Mackall10cef602006-01-08 01:01:45 -0800526
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800527 sp = slob_page(block);
528 if (is_slob_page(sp)) {
Nick Piggin55394842007-07-15 23:38:09 -0700529 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
530 unsigned int *m = (unsigned int *)(block - align);
531 slob_free(m, *m + align);
Nick Piggind87a1332007-07-15 23:38:08 -0700532 } else
533 put_page(&sp->page);
Matt Mackall10cef602006-01-08 01:01:45 -0800534}
Matt Mackall10cef602006-01-08 01:01:45 -0800535EXPORT_SYMBOL(kfree);
536
Nick Piggind87a1332007-07-15 23:38:08 -0700537/* can't use ksize for kmem_cache_alloc memory, only kmalloc */
Pekka Enbergfd76bab2007-05-06 14:48:40 -0700538size_t ksize(const void *block)
Matt Mackall10cef602006-01-08 01:01:45 -0800539{
Nick Piggin95b35122007-07-15 23:38:07 -0700540 struct slob_page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800541
Christoph Lameteref8b4522007-10-16 01:24:46 -0700542 BUG_ON(!block);
543 if (unlikely(block == ZERO_SIZE_PTR))
Matt Mackall10cef602006-01-08 01:01:45 -0800544 return 0;
545
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800546 sp = slob_page(block);
547 if (is_slob_page(sp)) {
Matt Mackall70096a52008-10-08 14:51:57 -0500548 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
549 unsigned int *m = (unsigned int *)(block - align);
550 return SLOB_UNITS(*m) * SLOB_UNIT;
551 } else
Nick Piggind87a1332007-07-15 23:38:08 -0700552 return sp->page.private;
Matt Mackall10cef602006-01-08 01:01:45 -0800553}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +0200554EXPORT_SYMBOL(ksize);
Matt Mackall10cef602006-01-08 01:01:45 -0800555
556struct kmem_cache {
557 unsigned int size, align;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700558 unsigned long flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800559 const char *name;
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700560 void (*ctor)(void *);
Matt Mackall10cef602006-01-08 01:01:45 -0800561};
562
563struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700564 size_t align, unsigned long flags, void (*ctor)(void *))
Matt Mackall10cef602006-01-08 01:01:45 -0800565{
566 struct kmem_cache *c;
567
Yi Li0701a9e2008-04-25 19:49:21 +0300568 c = slob_alloc(sizeof(struct kmem_cache),
Catalin Marinas5e18e2b2008-12-15 13:54:16 -0800569 GFP_KERNEL, ARCH_KMALLOC_MINALIGN, -1);
Matt Mackall10cef602006-01-08 01:01:45 -0800570
571 if (c) {
572 c->name = name;
573 c->size = size;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700574 if (flags & SLAB_DESTROY_BY_RCU) {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700575 /* leave room for rcu footer at the end of object */
576 c->size += sizeof(struct slob_rcu);
577 }
578 c->flags = flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800579 c->ctor = ctor;
Matt Mackall10cef602006-01-08 01:01:45 -0800580 /* ignore alignment unless it's forced */
Christoph Lameter5af60832007-05-06 14:49:56 -0700581 c->align = (flags & SLAB_HWCACHE_ALIGN) ? SLOB_ALIGN : 0;
Nick Piggin55394842007-07-15 23:38:09 -0700582 if (c->align < ARCH_SLAB_MINALIGN)
583 c->align = ARCH_SLAB_MINALIGN;
Matt Mackall10cef602006-01-08 01:01:45 -0800584 if (c->align < align)
585 c->align = align;
Akinobu Mitabc0055a2007-05-06 14:49:52 -0700586 } else if (flags & SLAB_PANIC)
587 panic("Cannot create slab cache %s\n", name);
Matt Mackall10cef602006-01-08 01:01:45 -0800588
Catalin Marinas4374e612009-06-11 13:23:17 +0100589 kmemleak_alloc(c, sizeof(struct kmem_cache), 1, GFP_KERNEL);
Matt Mackall10cef602006-01-08 01:01:45 -0800590 return c;
591}
592EXPORT_SYMBOL(kmem_cache_create);
593
Alexey Dobriyan133d2052006-09-27 01:49:41 -0700594void kmem_cache_destroy(struct kmem_cache *c)
Matt Mackall10cef602006-01-08 01:01:45 -0800595{
Catalin Marinas4374e612009-06-11 13:23:17 +0100596 kmemleak_free(c);
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -0700597 if (c->flags & SLAB_DESTROY_BY_RCU)
598 rcu_barrier();
Matt Mackall10cef602006-01-08 01:01:45 -0800599 slob_free(c, sizeof(struct kmem_cache));
Matt Mackall10cef602006-01-08 01:01:45 -0800600}
601EXPORT_SYMBOL(kmem_cache_destroy);
602
Paul Mundt6193a2f2007-07-15 23:38:22 -0700603void *kmem_cache_alloc_node(struct kmem_cache *c, gfp_t flags, int node)
Matt Mackall10cef602006-01-08 01:01:45 -0800604{
605 void *b;
606
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300607 if (c->size < PAGE_SIZE) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700608 b = slob_alloc(c->size, flags, c->align, node);
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +0200609 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
610 SLOB_UNITS(c->size) * SLOB_UNIT,
611 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300612 } else {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800613 b = slob_new_pages(flags, get_order(c->size), node);
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +0200614 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
615 PAGE_SIZE << get_order(c->size),
616 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300617 }
Matt Mackall10cef602006-01-08 01:01:45 -0800618
619 if (c->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700620 c->ctor(b);
Matt Mackall10cef602006-01-08 01:01:45 -0800621
Catalin Marinas4374e612009-06-11 13:23:17 +0100622 kmemleak_alloc_recursive(b, c->size, 1, c->flags, flags);
Matt Mackall10cef602006-01-08 01:01:45 -0800623 return b;
624}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700625EXPORT_SYMBOL(kmem_cache_alloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800626
Nick Pigginafc0ced2007-05-16 22:10:49 -0700627static void __kmem_cache_free(void *b, int size)
628{
629 if (size < PAGE_SIZE)
630 slob_free(b, size);
631 else
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800632 slob_free_pages(b, get_order(size));
Nick Pigginafc0ced2007-05-16 22:10:49 -0700633}
634
635static void kmem_rcu_free(struct rcu_head *head)
636{
637 struct slob_rcu *slob_rcu = (struct slob_rcu *)head;
638 void *b = (void *)slob_rcu - (slob_rcu->size - sizeof(struct slob_rcu));
639
640 __kmem_cache_free(b, slob_rcu->size);
641}
642
Matt Mackall10cef602006-01-08 01:01:45 -0800643void kmem_cache_free(struct kmem_cache *c, void *b)
644{
Catalin Marinas4374e612009-06-11 13:23:17 +0100645 kmemleak_free_recursive(b, c->flags);
Nick Pigginafc0ced2007-05-16 22:10:49 -0700646 if (unlikely(c->flags & SLAB_DESTROY_BY_RCU)) {
647 struct slob_rcu *slob_rcu;
648 slob_rcu = b + (c->size - sizeof(struct slob_rcu));
649 INIT_RCU_HEAD(&slob_rcu->head);
650 slob_rcu->size = c->size;
651 call_rcu(&slob_rcu->head, kmem_rcu_free);
652 } else {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700653 __kmem_cache_free(b, c->size);
654 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300655
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +0200656 trace_kmem_cache_free(_RET_IP_, b);
Matt Mackall10cef602006-01-08 01:01:45 -0800657}
658EXPORT_SYMBOL(kmem_cache_free);
659
660unsigned int kmem_cache_size(struct kmem_cache *c)
661{
662 return c->size;
663}
664EXPORT_SYMBOL(kmem_cache_size);
665
666const char *kmem_cache_name(struct kmem_cache *c)
667{
668 return c->name;
669}
670EXPORT_SYMBOL(kmem_cache_name);
671
Christoph Lameter2e892f42006-12-13 00:34:23 -0800672int kmem_cache_shrink(struct kmem_cache *d)
673{
674 return 0;
675}
676EXPORT_SYMBOL(kmem_cache_shrink);
677
Christoph Lameter55935a32006-12-13 00:34:24 -0800678int kmem_ptr_validate(struct kmem_cache *a, const void *b)
Christoph Lameter2e892f42006-12-13 00:34:23 -0800679{
680 return 0;
681}
682
Paul Mundt84a01c22007-07-15 23:38:24 -0700683static unsigned int slob_ready __read_mostly;
684
685int slab_is_available(void)
686{
687 return slob_ready;
688}
689
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800690void __init kmem_cache_init(void)
691{
Paul Mundt84a01c22007-07-15 23:38:24 -0700692 slob_ready = 1;
Matt Mackall10cef602006-01-08 01:01:45 -0800693}
Wu Fengguangbbff2e42009-08-06 11:36:25 +0300694
695void __init kmem_cache_init_late(void)
696{
697 /* Nothing to do */
698}