blob: f92e66d558bd3608f5c758d7b7c39748cf936f51 [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
49 * provided, alloc_pages_node() with the specified node id is used
50 * 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>
Frederic Weisbecker36994e52008-12-29 13:42:23 -080069#include <trace/kmemtrace.h>
Nick Piggin95b35122007-07-15 23:38:07 -070070#include <asm/atomic.h>
Matt Mackall10cef602006-01-08 01:01:45 -080071
Nick Piggin95b35122007-07-15 23:38:07 -070072/*
73 * slob_block has a field 'units', which indicates size of block if +ve,
74 * or offset of next block if -ve (in SLOB_UNITs).
75 *
76 * Free blocks of size 1 unit simply contain the offset of the next block.
77 * Those with larger size contain their size in the first SLOB_UNIT of
78 * memory, and the offset of the next free block in the second SLOB_UNIT.
79 */
Nick Piggin55394842007-07-15 23:38:09 -070080#if PAGE_SIZE <= (32767 * 2)
Nick Piggin95b35122007-07-15 23:38:07 -070081typedef s16 slobidx_t;
82#else
83typedef s32 slobidx_t;
84#endif
85
Matt Mackall10cef602006-01-08 01:01:45 -080086struct slob_block {
Nick Piggin95b35122007-07-15 23:38:07 -070087 slobidx_t units;
Nick Piggin55394842007-07-15 23:38:09 -070088};
Matt Mackall10cef602006-01-08 01:01:45 -080089typedef struct slob_block slob_t;
90
Nick Piggin95b35122007-07-15 23:38:07 -070091/*
92 * We use struct page fields to manage some slob allocation aspects,
93 * however to avoid the horrible mess in include/linux/mm_types.h, we'll
94 * just define our own struct page type variant here.
95 */
96struct slob_page {
97 union {
98 struct {
99 unsigned long flags; /* mandatory */
100 atomic_t _count; /* mandatory */
101 slobidx_t units; /* free units left in page */
102 unsigned long pad[2];
103 slob_t *free; /* first free slob_t in page */
104 struct list_head list; /* linked list of free pages */
105 };
106 struct page page;
107 };
108};
109static inline void struct_slob_page_wrong_size(void)
110{ BUILD_BUG_ON(sizeof(struct slob_page) != sizeof(struct page)); }
111
112/*
113 * free_slob_page: call before a slob_page is returned to the page allocator.
114 */
115static inline void free_slob_page(struct slob_page *sp)
116{
117 reset_page_mapcount(&sp->page);
118 sp->page.mapping = NULL;
119}
120
121/*
Matt Mackall20cecba2008-02-04 22:29:37 -0800122 * All partially free slob pages go on these lists.
Nick Piggin95b35122007-07-15 23:38:07 -0700123 */
Matt Mackall20cecba2008-02-04 22:29:37 -0800124#define SLOB_BREAK1 256
125#define SLOB_BREAK2 1024
126static LIST_HEAD(free_slob_small);
127static LIST_HEAD(free_slob_medium);
128static LIST_HEAD(free_slob_large);
Nick Piggin95b35122007-07-15 23:38:07 -0700129
130/*
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800131 * is_slob_page: True for all slob pages (false for bigblock pages)
Nick Piggin95b35122007-07-15 23:38:07 -0700132 */
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800133static inline int is_slob_page(struct slob_page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700134{
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700135 return PageSlobPage((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700136}
137
138static inline void set_slob_page(struct slob_page *sp)
139{
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700140 __SetPageSlobPage((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700141}
142
143static inline void clear_slob_page(struct slob_page *sp)
144{
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700145 __ClearPageSlobPage((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700146}
147
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800148static inline struct slob_page *slob_page(const void *addr)
149{
150 return (struct slob_page *)virt_to_page(addr);
151}
152
Nick Piggin95b35122007-07-15 23:38:07 -0700153/*
154 * slob_page_free: true for pages on free_slob_pages list.
155 */
156static inline int slob_page_free(struct slob_page *sp)
157{
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700158 return PageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700159}
160
Matt Mackall20cecba2008-02-04 22:29:37 -0800161static void set_slob_page_free(struct slob_page *sp, struct list_head *list)
Nick Piggin95b35122007-07-15 23:38:07 -0700162{
Matt Mackall20cecba2008-02-04 22:29:37 -0800163 list_add(&sp->list, list);
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700164 __SetPageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700165}
166
167static inline void clear_slob_page_free(struct slob_page *sp)
168{
169 list_del(&sp->list);
Andy Whitcroft9023cb72008-07-23 21:27:19 -0700170 __ClearPageSlobFree((struct page *)sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700171}
172
Matt Mackall10cef602006-01-08 01:01:45 -0800173#define SLOB_UNIT sizeof(slob_t)
174#define SLOB_UNITS(size) (((size) + SLOB_UNIT - 1)/SLOB_UNIT)
175#define SLOB_ALIGN L1_CACHE_BYTES
176
Nick Pigginafc0ced2007-05-16 22:10:49 -0700177/*
178 * struct slob_rcu is inserted at the tail of allocated slob blocks, which
179 * were created with a SLAB_DESTROY_BY_RCU slab. slob_rcu is used to free
180 * the block using call_rcu.
181 */
182struct slob_rcu {
183 struct rcu_head head;
184 int size;
185};
186
Nick Piggin95b35122007-07-15 23:38:07 -0700187/*
188 * slob_lock protects all slob allocator structures.
189 */
Matt Mackall10cef602006-01-08 01:01:45 -0800190static DEFINE_SPINLOCK(slob_lock);
Matt Mackall10cef602006-01-08 01:01:45 -0800191
Nick Piggin95b35122007-07-15 23:38:07 -0700192/*
193 * Encode the given size and next info into a free slob block s.
194 */
195static void set_slob(slob_t *s, slobidx_t size, slob_t *next)
196{
197 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
198 slobidx_t offset = next - base;
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800199
Nick Piggin95b35122007-07-15 23:38:07 -0700200 if (size > 1) {
201 s[0].units = size;
202 s[1].units = offset;
203 } else
204 s[0].units = -offset;
205}
Matt Mackall10cef602006-01-08 01:01:45 -0800206
Nick Piggin95b35122007-07-15 23:38:07 -0700207/*
208 * Return the size of a slob block.
209 */
210static slobidx_t slob_units(slob_t *s)
211{
212 if (s->units > 0)
213 return s->units;
214 return 1;
215}
216
217/*
218 * Return the next free slob block pointer after this one.
219 */
220static slob_t *slob_next(slob_t *s)
221{
222 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
223 slobidx_t next;
224
225 if (s[0].units < 0)
226 next = -s[0].units;
227 else
228 next = s[1].units;
229 return base+next;
230}
231
232/*
233 * Returns true if s is the last free block in its page.
234 */
235static int slob_last(slob_t *s)
236{
237 return !((unsigned long)slob_next(s) & ~PAGE_MASK);
238}
239
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800240static void *slob_new_pages(gfp_t gfp, int order, int node)
Paul Mundt6193a2f2007-07-15 23:38:22 -0700241{
242 void *page;
243
244#ifdef CONFIG_NUMA
245 if (node != -1)
246 page = alloc_pages_node(node, gfp, order);
247 else
248#endif
249 page = alloc_pages(gfp, order);
250
251 if (!page)
252 return NULL;
253
254 return page_address(page);
255}
256
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800257static void slob_free_pages(void *b, int order)
258{
Nick Piggin1f0532e2009-05-05 19:13:45 +1000259 if (current->reclaim_state)
260 current->reclaim_state->reclaimed_slab += 1 << order;
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800261 free_pages((unsigned long)b, order);
262}
263
Nick Piggin95b35122007-07-15 23:38:07 -0700264/*
265 * Allocate a slob block within a given slob_page sp.
266 */
267static void *slob_page_alloc(struct slob_page *sp, size_t size, int align)
Matt Mackall10cef602006-01-08 01:01:45 -0800268{
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800269 slob_t *prev, *cur, *aligned = NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800270 int delta = 0, units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800271
Nick Piggin95b35122007-07-15 23:38:07 -0700272 for (prev = NULL, cur = sp->free; ; prev = cur, cur = slob_next(cur)) {
273 slobidx_t avail = slob_units(cur);
274
Matt Mackall10cef602006-01-08 01:01:45 -0800275 if (align) {
276 aligned = (slob_t *)ALIGN((unsigned long)cur, align);
277 delta = aligned - cur;
278 }
Nick Piggin95b35122007-07-15 23:38:07 -0700279 if (avail >= units + delta) { /* room enough? */
280 slob_t *next;
281
Matt Mackall10cef602006-01-08 01:01:45 -0800282 if (delta) { /* need to fragment head to align? */
Nick Piggin95b35122007-07-15 23:38:07 -0700283 next = slob_next(cur);
284 set_slob(aligned, avail - delta, next);
285 set_slob(cur, delta, aligned);
Matt Mackall10cef602006-01-08 01:01:45 -0800286 prev = cur;
287 cur = aligned;
Nick Piggin95b35122007-07-15 23:38:07 -0700288 avail = slob_units(cur);
Matt Mackall10cef602006-01-08 01:01:45 -0800289 }
290
Nick Piggin95b35122007-07-15 23:38:07 -0700291 next = slob_next(cur);
292 if (avail == units) { /* exact fit? unlink. */
293 if (prev)
294 set_slob(prev, slob_units(prev), next);
295 else
296 sp->free = next;
297 } else { /* fragment */
298 if (prev)
299 set_slob(prev, slob_units(prev), cur + units);
300 else
301 sp->free = cur + units;
302 set_slob(cur + units, avail - units, next);
Matt Mackall10cef602006-01-08 01:01:45 -0800303 }
304
Nick Piggin95b35122007-07-15 23:38:07 -0700305 sp->units -= units;
306 if (!sp->units)
307 clear_slob_page_free(sp);
Matt Mackall10cef602006-01-08 01:01:45 -0800308 return cur;
309 }
Nick Piggin95b35122007-07-15 23:38:07 -0700310 if (slob_last(cur))
311 return NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800312 }
313}
314
Nick Piggin95b35122007-07-15 23:38:07 -0700315/*
316 * slob_alloc: entry point into the slob allocator.
317 */
Paul Mundt6193a2f2007-07-15 23:38:22 -0700318static void *slob_alloc(size_t size, gfp_t gfp, int align, int node)
Nick Piggin95b35122007-07-15 23:38:07 -0700319{
320 struct slob_page *sp;
Matt Mackalld6269542007-07-21 04:37:40 -0700321 struct list_head *prev;
Matt Mackall20cecba2008-02-04 22:29:37 -0800322 struct list_head *slob_list;
Nick Piggin95b35122007-07-15 23:38:07 -0700323 slob_t *b = NULL;
324 unsigned long flags;
325
Matt Mackall20cecba2008-02-04 22:29:37 -0800326 if (size < SLOB_BREAK1)
327 slob_list = &free_slob_small;
328 else if (size < SLOB_BREAK2)
329 slob_list = &free_slob_medium;
330 else
331 slob_list = &free_slob_large;
332
Nick Piggin95b35122007-07-15 23:38:07 -0700333 spin_lock_irqsave(&slob_lock, flags);
334 /* Iterate through each partially free page, try to find room */
Matt Mackall20cecba2008-02-04 22:29:37 -0800335 list_for_each_entry(sp, slob_list, list) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700336#ifdef CONFIG_NUMA
337 /*
338 * If there's a node specification, search for a partial
339 * page with a matching node id in the freelist.
340 */
341 if (node != -1 && page_to_nid(&sp->page) != node)
342 continue;
343#endif
Matt Mackalld6269542007-07-21 04:37:40 -0700344 /* Enough room on this page? */
345 if (sp->units < SLOB_UNITS(size))
346 continue;
Paul Mundt6193a2f2007-07-15 23:38:22 -0700347
Matt Mackalld6269542007-07-21 04:37:40 -0700348 /* Attempt to alloc */
349 prev = sp->list.prev;
350 b = slob_page_alloc(sp, size, align);
351 if (!b)
352 continue;
353
354 /* Improve fragment distribution and reduce our average
355 * search time by starting our next search here. (see
356 * Knuth vol 1, sec 2.5, pg 449) */
Matt Mackall20cecba2008-02-04 22:29:37 -0800357 if (prev != slob_list->prev &&
358 slob_list->next != prev->next)
359 list_move_tail(slob_list, prev->next);
Matt Mackalld6269542007-07-21 04:37:40 -0700360 break;
Nick Piggin95b35122007-07-15 23:38:07 -0700361 }
362 spin_unlock_irqrestore(&slob_lock, flags);
363
364 /* Not enough space: must allocate a new page */
365 if (!b) {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800366 b = slob_new_pages(gfp & ~__GFP_ZERO, 0, node);
Nick Piggin95b35122007-07-15 23:38:07 -0700367 if (!b)
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800368 return NULL;
369 sp = slob_page(b);
Nick Piggin95b35122007-07-15 23:38:07 -0700370 set_slob_page(sp);
371
372 spin_lock_irqsave(&slob_lock, flags);
373 sp->units = SLOB_UNITS(PAGE_SIZE);
374 sp->free = b;
375 INIT_LIST_HEAD(&sp->list);
376 set_slob(b, SLOB_UNITS(PAGE_SIZE), b + SLOB_UNITS(PAGE_SIZE));
Matt Mackall20cecba2008-02-04 22:29:37 -0800377 set_slob_page_free(sp, slob_list);
Nick Piggin95b35122007-07-15 23:38:07 -0700378 b = slob_page_alloc(sp, size, align);
379 BUG_ON(!b);
380 spin_unlock_irqrestore(&slob_lock, flags);
381 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -0700382 if (unlikely((gfp & __GFP_ZERO) && b))
383 memset(b, 0, size);
Nick Piggin95b35122007-07-15 23:38:07 -0700384 return b;
385}
386
387/*
388 * slob_free: entry point into the slob allocator.
389 */
Matt Mackall10cef602006-01-08 01:01:45 -0800390static void slob_free(void *block, int size)
391{
Nick Piggin95b35122007-07-15 23:38:07 -0700392 struct slob_page *sp;
393 slob_t *prev, *next, *b = (slob_t *)block;
394 slobidx_t units;
Matt Mackall10cef602006-01-08 01:01:45 -0800395 unsigned long flags;
396
Satyam Sharma2408c552007-10-16 01:24:44 -0700397 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800398 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700399 BUG_ON(!size);
Matt Mackall10cef602006-01-08 01:01:45 -0800400
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800401 sp = slob_page(block);
Nick Piggin95b35122007-07-15 23:38:07 -0700402 units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800403
Matt Mackall10cef602006-01-08 01:01:45 -0800404 spin_lock_irqsave(&slob_lock, flags);
Matt Mackall10cef602006-01-08 01:01:45 -0800405
Nick Piggin95b35122007-07-15 23:38:07 -0700406 if (sp->units + units == SLOB_UNITS(PAGE_SIZE)) {
407 /* Go directly to page allocator. Do not pass slob allocator */
408 if (slob_page_free(sp))
409 clear_slob_page_free(sp);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100410 spin_unlock_irqrestore(&slob_lock, flags);
Nick Piggin95b35122007-07-15 23:38:07 -0700411 clear_slob_page(sp);
412 free_slob_page(sp);
Nick Piggin1f0532e2009-05-05 19:13:45 +1000413 slob_free_pages(b, 0);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100414 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700415 }
Matt Mackall10cef602006-01-08 01:01:45 -0800416
Nick Piggin95b35122007-07-15 23:38:07 -0700417 if (!slob_page_free(sp)) {
418 /* This slob page is about to become partially free. Easy! */
419 sp->units = units;
420 sp->free = b;
421 set_slob(b, units,
422 (void *)((unsigned long)(b +
423 SLOB_UNITS(PAGE_SIZE)) & PAGE_MASK));
Matt Mackall20cecba2008-02-04 22:29:37 -0800424 set_slob_page_free(sp, &free_slob_small);
Nick Piggin95b35122007-07-15 23:38:07 -0700425 goto out;
426 }
Matt Mackall10cef602006-01-08 01:01:45 -0800427
Nick Piggin95b35122007-07-15 23:38:07 -0700428 /*
429 * Otherwise the page is already partially free, so find reinsertion
430 * point.
431 */
432 sp->units += units;
Matt Mackall10cef602006-01-08 01:01:45 -0800433
Nick Piggin95b35122007-07-15 23:38:07 -0700434 if (b < sp->free) {
Matt Mackall679299b2008-02-04 22:29:37 -0800435 if (b + units == sp->free) {
436 units += slob_units(sp->free);
437 sp->free = slob_next(sp->free);
438 }
Nick Piggin95b35122007-07-15 23:38:07 -0700439 set_slob(b, units, sp->free);
440 sp->free = b;
441 } else {
442 prev = sp->free;
443 next = slob_next(prev);
444 while (b > next) {
445 prev = next;
446 next = slob_next(prev);
447 }
448
449 if (!slob_last(prev) && b + units == next) {
450 units += slob_units(next);
451 set_slob(b, units, slob_next(next));
452 } else
453 set_slob(b, units, next);
454
455 if (prev + slob_units(prev) == b) {
456 units = slob_units(b) + slob_units(prev);
457 set_slob(prev, units, slob_next(b));
458 } else
459 set_slob(prev, slob_units(prev), b);
460 }
461out:
Matt Mackall10cef602006-01-08 01:01:45 -0800462 spin_unlock_irqrestore(&slob_lock, flags);
463}
464
Nick Piggin95b35122007-07-15 23:38:07 -0700465/*
466 * End of slob allocator proper. Begin kmem_cache_alloc and kmalloc frontend.
467 */
468
Nick Piggin55394842007-07-15 23:38:09 -0700469#ifndef ARCH_KMALLOC_MINALIGN
470#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long)
471#endif
472
473#ifndef ARCH_SLAB_MINALIGN
474#define ARCH_SLAB_MINALIGN __alignof__(unsigned long)
475#endif
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 Munteanuca2b84cb2009-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 Munteanuca2b84cb2009-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
512 return ret;
Matt Mackall10cef602006-01-08 01:01:45 -0800513}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700514EXPORT_SYMBOL(__kmalloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800515
516void kfree(const void *block)
517{
Nick Piggin95b35122007-07-15 23:38:07 -0700518 struct slob_page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800519
Pekka Enberg2121db72009-03-25 11:05:57 +0200520 trace_kfree(_RET_IP_, block);
521
Satyam Sharma2408c552007-10-16 01:24:44 -0700522 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800523 return;
524
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800525 sp = slob_page(block);
526 if (is_slob_page(sp)) {
Nick Piggin55394842007-07-15 23:38:09 -0700527 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
528 unsigned int *m = (unsigned int *)(block - align);
529 slob_free(m, *m + align);
Nick Piggind87a1332007-07-15 23:38:08 -0700530 } else
531 put_page(&sp->page);
Matt Mackall10cef602006-01-08 01:01:45 -0800532}
Matt Mackall10cef602006-01-08 01:01:45 -0800533EXPORT_SYMBOL(kfree);
534
Nick Piggind87a1332007-07-15 23:38:08 -0700535/* can't use ksize for kmem_cache_alloc memory, only kmalloc */
Pekka Enbergfd76bab2007-05-06 14:48:40 -0700536size_t ksize(const void *block)
Matt Mackall10cef602006-01-08 01:01:45 -0800537{
Nick Piggin95b35122007-07-15 23:38:07 -0700538 struct slob_page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800539
Christoph Lameteref8b4522007-10-16 01:24:46 -0700540 BUG_ON(!block);
541 if (unlikely(block == ZERO_SIZE_PTR))
Matt Mackall10cef602006-01-08 01:01:45 -0800542 return 0;
543
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800544 sp = slob_page(block);
545 if (is_slob_page(sp)) {
Matt Mackall70096a52008-10-08 14:51:57 -0500546 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
547 unsigned int *m = (unsigned int *)(block - align);
548 return SLOB_UNITS(*m) * SLOB_UNIT;
549 } else
Nick Piggind87a1332007-07-15 23:38:08 -0700550 return sp->page.private;
Matt Mackall10cef602006-01-08 01:01:45 -0800551}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +0200552EXPORT_SYMBOL(ksize);
Matt Mackall10cef602006-01-08 01:01:45 -0800553
554struct kmem_cache {
555 unsigned int size, align;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700556 unsigned long flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800557 const char *name;
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700558 void (*ctor)(void *);
Matt Mackall10cef602006-01-08 01:01:45 -0800559};
560
561struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700562 size_t align, unsigned long flags, void (*ctor)(void *))
Matt Mackall10cef602006-01-08 01:01:45 -0800563{
564 struct kmem_cache *c;
565
Yi Li0701a9e2008-04-25 19:49:21 +0300566 c = slob_alloc(sizeof(struct kmem_cache),
Catalin Marinas5e18e2b2008-12-15 13:54:16 -0800567 GFP_KERNEL, ARCH_KMALLOC_MINALIGN, -1);
Matt Mackall10cef602006-01-08 01:01:45 -0800568
569 if (c) {
570 c->name = name;
571 c->size = size;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700572 if (flags & SLAB_DESTROY_BY_RCU) {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700573 /* leave room for rcu footer at the end of object */
574 c->size += sizeof(struct slob_rcu);
575 }
576 c->flags = flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800577 c->ctor = ctor;
Matt Mackall10cef602006-01-08 01:01:45 -0800578 /* ignore alignment unless it's forced */
Christoph Lameter5af60832007-05-06 14:49:56 -0700579 c->align = (flags & SLAB_HWCACHE_ALIGN) ? SLOB_ALIGN : 0;
Nick Piggin55394842007-07-15 23:38:09 -0700580 if (c->align < ARCH_SLAB_MINALIGN)
581 c->align = ARCH_SLAB_MINALIGN;
Matt Mackall10cef602006-01-08 01:01:45 -0800582 if (c->align < align)
583 c->align = align;
Akinobu Mitabc0055a2007-05-06 14:49:52 -0700584 } else if (flags & SLAB_PANIC)
585 panic("Cannot create slab cache %s\n", name);
Matt Mackall10cef602006-01-08 01:01:45 -0800586
587 return c;
588}
589EXPORT_SYMBOL(kmem_cache_create);
590
Alexey Dobriyan133d2052006-09-27 01:49:41 -0700591void kmem_cache_destroy(struct kmem_cache *c)
Matt Mackall10cef602006-01-08 01:01:45 -0800592{
593 slob_free(c, sizeof(struct kmem_cache));
Matt Mackall10cef602006-01-08 01:01:45 -0800594}
595EXPORT_SYMBOL(kmem_cache_destroy);
596
Paul Mundt6193a2f2007-07-15 23:38:22 -0700597void *kmem_cache_alloc_node(struct kmem_cache *c, gfp_t flags, int node)
Matt Mackall10cef602006-01-08 01:01:45 -0800598{
599 void *b;
600
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300601 if (c->size < PAGE_SIZE) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700602 b = slob_alloc(c->size, flags, c->align, node);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200603 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
604 SLOB_UNITS(c->size) * SLOB_UNIT,
605 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300606 } else {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800607 b = slob_new_pages(flags, get_order(c->size), node);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200608 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
609 PAGE_SIZE << get_order(c->size),
610 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300611 }
Matt Mackall10cef602006-01-08 01:01:45 -0800612
613 if (c->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700614 c->ctor(b);
Matt Mackall10cef602006-01-08 01:01:45 -0800615
616 return b;
617}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700618EXPORT_SYMBOL(kmem_cache_alloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800619
Nick Pigginafc0ced2007-05-16 22:10:49 -0700620static void __kmem_cache_free(void *b, int size)
621{
622 if (size < PAGE_SIZE)
623 slob_free(b, size);
624 else
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800625 slob_free_pages(b, get_order(size));
Nick Pigginafc0ced2007-05-16 22:10:49 -0700626}
627
628static void kmem_rcu_free(struct rcu_head *head)
629{
630 struct slob_rcu *slob_rcu = (struct slob_rcu *)head;
631 void *b = (void *)slob_rcu - (slob_rcu->size - sizeof(struct slob_rcu));
632
633 __kmem_cache_free(b, slob_rcu->size);
634}
635
Matt Mackall10cef602006-01-08 01:01:45 -0800636void kmem_cache_free(struct kmem_cache *c, void *b)
637{
Nick Pigginafc0ced2007-05-16 22:10:49 -0700638 if (unlikely(c->flags & SLAB_DESTROY_BY_RCU)) {
639 struct slob_rcu *slob_rcu;
640 slob_rcu = b + (c->size - sizeof(struct slob_rcu));
641 INIT_RCU_HEAD(&slob_rcu->head);
642 slob_rcu->size = c->size;
643 call_rcu(&slob_rcu->head, kmem_rcu_free);
644 } else {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700645 __kmem_cache_free(b, c->size);
646 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300647
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200648 trace_kmem_cache_free(_RET_IP_, b);
Matt Mackall10cef602006-01-08 01:01:45 -0800649}
650EXPORT_SYMBOL(kmem_cache_free);
651
652unsigned int kmem_cache_size(struct kmem_cache *c)
653{
654 return c->size;
655}
656EXPORT_SYMBOL(kmem_cache_size);
657
658const char *kmem_cache_name(struct kmem_cache *c)
659{
660 return c->name;
661}
662EXPORT_SYMBOL(kmem_cache_name);
663
Christoph Lameter2e892f42006-12-13 00:34:23 -0800664int kmem_cache_shrink(struct kmem_cache *d)
665{
666 return 0;
667}
668EXPORT_SYMBOL(kmem_cache_shrink);
669
Christoph Lameter55935a32006-12-13 00:34:24 -0800670int kmem_ptr_validate(struct kmem_cache *a, const void *b)
Christoph Lameter2e892f42006-12-13 00:34:23 -0800671{
672 return 0;
673}
674
Paul Mundt84a01c22007-07-15 23:38:24 -0700675static unsigned int slob_ready __read_mostly;
676
677int slab_is_available(void)
678{
679 return slob_ready;
680}
681
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800682void __init kmem_cache_init(void)
683{
Paul Mundt84a01c22007-07-15 23:38:24 -0700684 slob_ready = 1;
Matt Mackall10cef602006-01-08 01:01:45 -0800685}