blob: 30862a2d56a9d9e3cfa71a7628a6ccef7b743dd2 [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>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040066#include <linux/export.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>
Catalin Marinas4374e612009-06-11 13:23:17 +010069#include <linux/kmemleak.h>
Li Zefan039ca4e2010-05-26 17:22:17 +080070
71#include <trace/events/kmem.h>
72
Arun Sharma600634972011-07-26 16:09:06 -070073#include <linux/atomic.h>
Matt Mackall10cef602006-01-08 01:01:45 -080074
Nick Piggin95b35122007-07-15 23:38:07 -070075/*
76 * slob_block has a field 'units', which indicates size of block if +ve,
77 * or offset of next block if -ve (in SLOB_UNITs).
78 *
79 * Free blocks of size 1 unit simply contain the offset of the next block.
80 * Those with larger size contain their size in the first SLOB_UNIT of
81 * memory, and the offset of the next free block in the second SLOB_UNIT.
82 */
Nick Piggin55394842007-07-15 23:38:09 -070083#if PAGE_SIZE <= (32767 * 2)
Nick Piggin95b35122007-07-15 23:38:07 -070084typedef s16 slobidx_t;
85#else
86typedef s32 slobidx_t;
87#endif
88
Matt Mackall10cef602006-01-08 01:01:45 -080089struct slob_block {
Nick Piggin95b35122007-07-15 23:38:07 -070090 slobidx_t units;
Nick Piggin55394842007-07-15 23:38:09 -070091};
Matt Mackall10cef602006-01-08 01:01:45 -080092typedef struct slob_block slob_t;
93
Nick Piggin95b35122007-07-15 23:38:07 -070094/*
Nick Piggin95b35122007-07-15 23:38:07 -070095 * free_slob_page: call before a slob_page is returned to the page allocator.
96 */
Christoph Lameterb8c24c42012-06-13 10:24:52 -050097static inline void free_slob_page(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -070098{
Christoph Lameterb8c24c42012-06-13 10:24:52 -050099 reset_page_mapcount(sp);
100 sp->mapping = NULL;
Nick Piggin95b35122007-07-15 23:38:07 -0700101}
102
103/*
Matt Mackall20cecba2008-02-04 22:29:37 -0800104 * All partially free slob pages go on these lists.
Nick Piggin95b35122007-07-15 23:38:07 -0700105 */
Matt Mackall20cecba2008-02-04 22:29:37 -0800106#define SLOB_BREAK1 256
107#define SLOB_BREAK2 1024
108static LIST_HEAD(free_slob_small);
109static LIST_HEAD(free_slob_medium);
110static LIST_HEAD(free_slob_large);
Nick Piggin95b35122007-07-15 23:38:07 -0700111
112/*
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800113 * is_slob_page: True for all slob pages (false for bigblock pages)
Nick Piggin95b35122007-07-15 23:38:07 -0700114 */
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500115static inline int is_slob_page(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700116{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500117 return PageSlab(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700118}
119
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500120static inline void set_slob_page(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700121{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500122 __SetPageSlab(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700123}
124
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500125static inline void clear_slob_page(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700126{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500127 __ClearPageSlab(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700128}
129
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500130static inline struct page *slob_page(const void *addr)
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800131{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500132 return virt_to_page(addr);
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800133}
134
Nick Piggin95b35122007-07-15 23:38:07 -0700135/*
136 * slob_page_free: true for pages on free_slob_pages list.
137 */
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500138static inline int slob_page_free(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700139{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500140 return PageSlobFree(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700141}
142
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500143static void set_slob_page_free(struct page *sp, struct list_head *list)
Nick Piggin95b35122007-07-15 23:38:07 -0700144{
Matt Mackall20cecba2008-02-04 22:29:37 -0800145 list_add(&sp->list, list);
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500146 __SetPageSlobFree(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700147}
148
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500149static inline void clear_slob_page_free(struct page *sp)
Nick Piggin95b35122007-07-15 23:38:07 -0700150{
151 list_del(&sp->list);
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500152 __ClearPageSlobFree(sp);
Nick Piggin95b35122007-07-15 23:38:07 -0700153}
154
Matt Mackall10cef602006-01-08 01:01:45 -0800155#define SLOB_UNIT sizeof(slob_t)
156#define SLOB_UNITS(size) (((size) + SLOB_UNIT - 1)/SLOB_UNIT)
157#define SLOB_ALIGN L1_CACHE_BYTES
158
Nick Pigginafc0ced2007-05-16 22:10:49 -0700159/*
160 * struct slob_rcu is inserted at the tail of allocated slob blocks, which
161 * were created with a SLAB_DESTROY_BY_RCU slab. slob_rcu is used to free
162 * the block using call_rcu.
163 */
164struct slob_rcu {
165 struct rcu_head head;
166 int size;
167};
168
Nick Piggin95b35122007-07-15 23:38:07 -0700169/*
170 * slob_lock protects all slob allocator structures.
171 */
Matt Mackall10cef602006-01-08 01:01:45 -0800172static DEFINE_SPINLOCK(slob_lock);
Matt Mackall10cef602006-01-08 01:01:45 -0800173
Nick Piggin95b35122007-07-15 23:38:07 -0700174/*
175 * Encode the given size and next info into a free slob block s.
176 */
177static void set_slob(slob_t *s, slobidx_t size, slob_t *next)
178{
179 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
180 slobidx_t offset = next - base;
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800181
Nick Piggin95b35122007-07-15 23:38:07 -0700182 if (size > 1) {
183 s[0].units = size;
184 s[1].units = offset;
185 } else
186 s[0].units = -offset;
187}
Matt Mackall10cef602006-01-08 01:01:45 -0800188
Nick Piggin95b35122007-07-15 23:38:07 -0700189/*
190 * Return the size of a slob block.
191 */
192static slobidx_t slob_units(slob_t *s)
193{
194 if (s->units > 0)
195 return s->units;
196 return 1;
197}
198
199/*
200 * Return the next free slob block pointer after this one.
201 */
202static slob_t *slob_next(slob_t *s)
203{
204 slob_t *base = (slob_t *)((unsigned long)s & PAGE_MASK);
205 slobidx_t next;
206
207 if (s[0].units < 0)
208 next = -s[0].units;
209 else
210 next = s[1].units;
211 return base+next;
212}
213
214/*
215 * Returns true if s is the last free block in its page.
216 */
217static int slob_last(slob_t *s)
218{
219 return !((unsigned long)slob_next(s) & ~PAGE_MASK);
220}
221
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800222static void *slob_new_pages(gfp_t gfp, int order, int node)
Paul Mundt6193a2f2007-07-15 23:38:22 -0700223{
224 void *page;
225
226#ifdef CONFIG_NUMA
227 if (node != -1)
Mel Gorman6484eb32009-06-16 15:31:54 -0700228 page = alloc_pages_exact_node(node, gfp, order);
Paul Mundt6193a2f2007-07-15 23:38:22 -0700229 else
230#endif
231 page = alloc_pages(gfp, order);
232
233 if (!page)
234 return NULL;
235
236 return page_address(page);
237}
238
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800239static void slob_free_pages(void *b, int order)
240{
Nick Piggin1f0532e2009-05-05 19:13:45 +1000241 if (current->reclaim_state)
242 current->reclaim_state->reclaimed_slab += 1 << order;
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800243 free_pages((unsigned long)b, order);
244}
245
Nick Piggin95b35122007-07-15 23:38:07 -0700246/*
247 * Allocate a slob block within a given slob_page sp.
248 */
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500249static void *slob_page_alloc(struct page *sp, size_t size, int align)
Matt Mackall10cef602006-01-08 01:01:45 -0800250{
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800251 slob_t *prev, *cur, *aligned = NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800252 int delta = 0, units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800253
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500254 for (prev = NULL, cur = sp->freelist; ; prev = cur, cur = slob_next(cur)) {
Nick Piggin95b35122007-07-15 23:38:07 -0700255 slobidx_t avail = slob_units(cur);
256
Matt Mackall10cef602006-01-08 01:01:45 -0800257 if (align) {
258 aligned = (slob_t *)ALIGN((unsigned long)cur, align);
259 delta = aligned - cur;
260 }
Nick Piggin95b35122007-07-15 23:38:07 -0700261 if (avail >= units + delta) { /* room enough? */
262 slob_t *next;
263
Matt Mackall10cef602006-01-08 01:01:45 -0800264 if (delta) { /* need to fragment head to align? */
Nick Piggin95b35122007-07-15 23:38:07 -0700265 next = slob_next(cur);
266 set_slob(aligned, avail - delta, next);
267 set_slob(cur, delta, aligned);
Matt Mackall10cef602006-01-08 01:01:45 -0800268 prev = cur;
269 cur = aligned;
Nick Piggin95b35122007-07-15 23:38:07 -0700270 avail = slob_units(cur);
Matt Mackall10cef602006-01-08 01:01:45 -0800271 }
272
Nick Piggin95b35122007-07-15 23:38:07 -0700273 next = slob_next(cur);
274 if (avail == units) { /* exact fit? unlink. */
275 if (prev)
276 set_slob(prev, slob_units(prev), next);
277 else
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500278 sp->freelist = next;
Nick Piggin95b35122007-07-15 23:38:07 -0700279 } else { /* fragment */
280 if (prev)
281 set_slob(prev, slob_units(prev), cur + units);
282 else
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500283 sp->freelist = cur + units;
Nick Piggin95b35122007-07-15 23:38:07 -0700284 set_slob(cur + units, avail - units, next);
Matt Mackall10cef602006-01-08 01:01:45 -0800285 }
286
Nick Piggin95b35122007-07-15 23:38:07 -0700287 sp->units -= units;
288 if (!sp->units)
289 clear_slob_page_free(sp);
Matt Mackall10cef602006-01-08 01:01:45 -0800290 return cur;
291 }
Nick Piggin95b35122007-07-15 23:38:07 -0700292 if (slob_last(cur))
293 return NULL;
Matt Mackall10cef602006-01-08 01:01:45 -0800294 }
295}
296
Nick Piggin95b35122007-07-15 23:38:07 -0700297/*
298 * slob_alloc: entry point into the slob allocator.
299 */
Paul Mundt6193a2f2007-07-15 23:38:22 -0700300static void *slob_alloc(size_t size, gfp_t gfp, int align, int node)
Nick Piggin95b35122007-07-15 23:38:07 -0700301{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500302 struct page *sp;
Matt Mackalld6269542007-07-21 04:37:40 -0700303 struct list_head *prev;
Matt Mackall20cecba2008-02-04 22:29:37 -0800304 struct list_head *slob_list;
Nick Piggin95b35122007-07-15 23:38:07 -0700305 slob_t *b = NULL;
306 unsigned long flags;
307
Matt Mackall20cecba2008-02-04 22:29:37 -0800308 if (size < SLOB_BREAK1)
309 slob_list = &free_slob_small;
310 else if (size < SLOB_BREAK2)
311 slob_list = &free_slob_medium;
312 else
313 slob_list = &free_slob_large;
314
Nick Piggin95b35122007-07-15 23:38:07 -0700315 spin_lock_irqsave(&slob_lock, flags);
316 /* Iterate through each partially free page, try to find room */
Matt Mackall20cecba2008-02-04 22:29:37 -0800317 list_for_each_entry(sp, slob_list, list) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700318#ifdef CONFIG_NUMA
319 /*
320 * If there's a node specification, search for a partial
321 * page with a matching node id in the freelist.
322 */
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500323 if (node != -1 && page_to_nid(sp) != node)
Paul Mundt6193a2f2007-07-15 23:38:22 -0700324 continue;
325#endif
Matt Mackalld6269542007-07-21 04:37:40 -0700326 /* Enough room on this page? */
327 if (sp->units < SLOB_UNITS(size))
328 continue;
Paul Mundt6193a2f2007-07-15 23:38:22 -0700329
Matt Mackalld6269542007-07-21 04:37:40 -0700330 /* Attempt to alloc */
331 prev = sp->list.prev;
332 b = slob_page_alloc(sp, size, align);
333 if (!b)
334 continue;
335
336 /* Improve fragment distribution and reduce our average
337 * search time by starting our next search here. (see
338 * Knuth vol 1, sec 2.5, pg 449) */
Matt Mackall20cecba2008-02-04 22:29:37 -0800339 if (prev != slob_list->prev &&
340 slob_list->next != prev->next)
341 list_move_tail(slob_list, prev->next);
Matt Mackalld6269542007-07-21 04:37:40 -0700342 break;
Nick Piggin95b35122007-07-15 23:38:07 -0700343 }
344 spin_unlock_irqrestore(&slob_lock, flags);
345
346 /* Not enough space: must allocate a new page */
347 if (!b) {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800348 b = slob_new_pages(gfp & ~__GFP_ZERO, 0, node);
Nick Piggin95b35122007-07-15 23:38:07 -0700349 if (!b)
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800350 return NULL;
351 sp = slob_page(b);
Nick Piggin95b35122007-07-15 23:38:07 -0700352 set_slob_page(sp);
353
354 spin_lock_irqsave(&slob_lock, flags);
355 sp->units = SLOB_UNITS(PAGE_SIZE);
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500356 sp->freelist = b;
Nick Piggin95b35122007-07-15 23:38:07 -0700357 INIT_LIST_HEAD(&sp->list);
358 set_slob(b, SLOB_UNITS(PAGE_SIZE), b + SLOB_UNITS(PAGE_SIZE));
Matt Mackall20cecba2008-02-04 22:29:37 -0800359 set_slob_page_free(sp, slob_list);
Nick Piggin95b35122007-07-15 23:38:07 -0700360 b = slob_page_alloc(sp, size, align);
361 BUG_ON(!b);
362 spin_unlock_irqrestore(&slob_lock, flags);
363 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -0700364 if (unlikely((gfp & __GFP_ZERO) && b))
365 memset(b, 0, size);
Nick Piggin95b35122007-07-15 23:38:07 -0700366 return b;
367}
368
369/*
370 * slob_free: entry point into the slob allocator.
371 */
Matt Mackall10cef602006-01-08 01:01:45 -0800372static void slob_free(void *block, int size)
373{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500374 struct page *sp;
Nick Piggin95b35122007-07-15 23:38:07 -0700375 slob_t *prev, *next, *b = (slob_t *)block;
376 slobidx_t units;
Matt Mackall10cef602006-01-08 01:01:45 -0800377 unsigned long flags;
Bob Liud602dab2010-07-10 18:05:33 +0800378 struct list_head *slob_list;
Matt Mackall10cef602006-01-08 01:01:45 -0800379
Satyam Sharma2408c552007-10-16 01:24:44 -0700380 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800381 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700382 BUG_ON(!size);
Matt Mackall10cef602006-01-08 01:01:45 -0800383
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800384 sp = slob_page(block);
Nick Piggin95b35122007-07-15 23:38:07 -0700385 units = SLOB_UNITS(size);
Matt Mackall10cef602006-01-08 01:01:45 -0800386
Matt Mackall10cef602006-01-08 01:01:45 -0800387 spin_lock_irqsave(&slob_lock, flags);
Matt Mackall10cef602006-01-08 01:01:45 -0800388
Nick Piggin95b35122007-07-15 23:38:07 -0700389 if (sp->units + units == SLOB_UNITS(PAGE_SIZE)) {
390 /* Go directly to page allocator. Do not pass slob allocator */
391 if (slob_page_free(sp))
392 clear_slob_page_free(sp);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100393 spin_unlock_irqrestore(&slob_lock, flags);
Nick Piggin95b35122007-07-15 23:38:07 -0700394 clear_slob_page(sp);
395 free_slob_page(sp);
Nick Piggin1f0532e2009-05-05 19:13:45 +1000396 slob_free_pages(b, 0);
Nick Piggin6fb8f422009-03-16 21:00:28 +1100397 return;
Nick Piggin95b35122007-07-15 23:38:07 -0700398 }
Matt Mackall10cef602006-01-08 01:01:45 -0800399
Nick Piggin95b35122007-07-15 23:38:07 -0700400 if (!slob_page_free(sp)) {
401 /* This slob page is about to become partially free. Easy! */
402 sp->units = units;
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500403 sp->freelist = b;
Nick Piggin95b35122007-07-15 23:38:07 -0700404 set_slob(b, units,
405 (void *)((unsigned long)(b +
406 SLOB_UNITS(PAGE_SIZE)) & PAGE_MASK));
Bob Liud602dab2010-07-10 18:05:33 +0800407 if (size < SLOB_BREAK1)
408 slob_list = &free_slob_small;
409 else if (size < SLOB_BREAK2)
410 slob_list = &free_slob_medium;
411 else
412 slob_list = &free_slob_large;
413 set_slob_page_free(sp, slob_list);
Nick Piggin95b35122007-07-15 23:38:07 -0700414 goto out;
415 }
Matt Mackall10cef602006-01-08 01:01:45 -0800416
Nick Piggin95b35122007-07-15 23:38:07 -0700417 /*
418 * Otherwise the page is already partially free, so find reinsertion
419 * point.
420 */
421 sp->units += units;
Matt Mackall10cef602006-01-08 01:01:45 -0800422
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500423 if (b < (slob_t *)sp->freelist) {
424 if (b + units == sp->freelist) {
425 units += slob_units(sp->freelist);
426 sp->freelist = slob_next(sp->freelist);
Matt Mackall679299b2008-02-04 22:29:37 -0800427 }
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500428 set_slob(b, units, sp->freelist);
429 sp->freelist = b;
Nick Piggin95b35122007-07-15 23:38:07 -0700430 } else {
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500431 prev = sp->freelist;
Nick Piggin95b35122007-07-15 23:38:07 -0700432 next = slob_next(prev);
433 while (b > next) {
434 prev = next;
435 next = slob_next(prev);
436 }
437
438 if (!slob_last(prev) && b + units == next) {
439 units += slob_units(next);
440 set_slob(b, units, slob_next(next));
441 } else
442 set_slob(b, units, next);
443
444 if (prev + slob_units(prev) == b) {
445 units = slob_units(b) + slob_units(prev);
446 set_slob(prev, units, slob_next(b));
447 } else
448 set_slob(prev, slob_units(prev), b);
449 }
450out:
Matt Mackall10cef602006-01-08 01:01:45 -0800451 spin_unlock_irqrestore(&slob_lock, flags);
452}
453
Nick Piggin95b35122007-07-15 23:38:07 -0700454/*
455 * End of slob allocator proper. Begin kmem_cache_alloc and kmalloc frontend.
456 */
457
Paul Mundt6193a2f2007-07-15 23:38:22 -0700458void *__kmalloc_node(size_t size, gfp_t gfp, int node)
Matt Mackall10cef602006-01-08 01:01:45 -0800459{
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700460 unsigned int *m;
Nick Piggin55394842007-07-15 23:38:09 -0700461 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300462 void *ret;
Nick Piggin55394842007-07-15 23:38:09 -0700463
Steven Rostedtbd50cfa2011-06-07 07:18:45 -0400464 gfp &= gfp_allowed_mask;
465
Ingo Molnar19cefdf2009-03-15 06:03:11 +0100466 lockdep_trace_alloc(gfp);
Nick Piggincf40bd12009-01-21 08:12:39 +0100467
Nick Piggin55394842007-07-15 23:38:09 -0700468 if (size < PAGE_SIZE - align) {
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700469 if (!size)
470 return ZERO_SIZE_PTR;
471
Paul Mundt6193a2f2007-07-15 23:38:22 -0700472 m = slob_alloc(size + align, gfp, align, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300473
MinChan Kim239f49c2008-05-19 22:12:08 +0900474 if (!m)
475 return NULL;
476 *m = size;
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300477 ret = (void *)m + align;
Nick Piggind87a1332007-07-15 23:38:08 -0700478
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200479 trace_kmalloc_node(_RET_IP_, ret,
480 size, size + align, gfp, node);
Nick Piggind87a1332007-07-15 23:38:08 -0700481 } else {
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300482 unsigned int order = get_order(size);
Nick Piggind87a1332007-07-15 23:38:08 -0700483
David Rientjes8df275a2010-08-22 16:16:06 -0700484 if (likely(order))
485 gfp |= __GFP_COMP;
486 ret = slob_new_pages(gfp, order, node);
Nick Piggind87a1332007-07-15 23:38:08 -0700487 if (ret) {
488 struct page *page;
489 page = virt_to_page(ret);
490 page->private = size;
491 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300492
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200493 trace_kmalloc_node(_RET_IP_, ret,
494 size, PAGE_SIZE << order, gfp, node);
Matt Mackall10cef602006-01-08 01:01:45 -0800495 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300496
Catalin Marinas4374e612009-06-11 13:23:17 +0100497 kmemleak_alloc(ret, size, 1, gfp);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300498 return ret;
Matt Mackall10cef602006-01-08 01:01:45 -0800499}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700500EXPORT_SYMBOL(__kmalloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800501
502void kfree(const void *block)
503{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500504 struct page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800505
Pekka Enberg2121db72009-03-25 11:05:57 +0200506 trace_kfree(_RET_IP_, block);
507
Satyam Sharma2408c552007-10-16 01:24:44 -0700508 if (unlikely(ZERO_OR_NULL_PTR(block)))
Matt Mackall10cef602006-01-08 01:01:45 -0800509 return;
Catalin Marinas4374e612009-06-11 13:23:17 +0100510 kmemleak_free(block);
Matt Mackall10cef602006-01-08 01:01:45 -0800511
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800512 sp = slob_page(block);
513 if (is_slob_page(sp)) {
Nick Piggin55394842007-07-15 23:38:09 -0700514 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
515 unsigned int *m = (unsigned int *)(block - align);
516 slob_free(m, *m + align);
Nick Piggind87a1332007-07-15 23:38:08 -0700517 } else
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500518 put_page(sp);
Matt Mackall10cef602006-01-08 01:01:45 -0800519}
Matt Mackall10cef602006-01-08 01:01:45 -0800520EXPORT_SYMBOL(kfree);
521
Nick Piggind87a1332007-07-15 23:38:08 -0700522/* can't use ksize for kmem_cache_alloc memory, only kmalloc */
Pekka Enbergfd76bab2007-05-06 14:48:40 -0700523size_t ksize(const void *block)
Matt Mackall10cef602006-01-08 01:01:45 -0800524{
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500525 struct page *sp;
Matt Mackall10cef602006-01-08 01:01:45 -0800526
Christoph Lameteref8b4522007-10-16 01:24:46 -0700527 BUG_ON(!block);
528 if (unlikely(block == ZERO_SIZE_PTR))
Matt Mackall10cef602006-01-08 01:01:45 -0800529 return 0;
530
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800531 sp = slob_page(block);
532 if (is_slob_page(sp)) {
Matt Mackall70096a52008-10-08 14:51:57 -0500533 int align = max(ARCH_KMALLOC_MINALIGN, ARCH_SLAB_MINALIGN);
534 unsigned int *m = (unsigned int *)(block - align);
535 return SLOB_UNITS(*m) * SLOB_UNIT;
536 } else
Christoph Lameterb8c24c42012-06-13 10:24:52 -0500537 return sp->private;
Matt Mackall10cef602006-01-08 01:01:45 -0800538}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +0200539EXPORT_SYMBOL(ksize);
Matt Mackall10cef602006-01-08 01:01:45 -0800540
541struct kmem_cache {
542 unsigned int size, align;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700543 unsigned long flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800544 const char *name;
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700545 void (*ctor)(void *);
Matt Mackall10cef602006-01-08 01:01:45 -0800546};
547
548struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700549 size_t align, unsigned long flags, void (*ctor)(void *))
Matt Mackall10cef602006-01-08 01:01:45 -0800550{
551 struct kmem_cache *c;
552
Yi Li0701a9e2008-04-25 19:49:21 +0300553 c = slob_alloc(sizeof(struct kmem_cache),
Catalin Marinas5e18e2b2008-12-15 13:54:16 -0800554 GFP_KERNEL, ARCH_KMALLOC_MINALIGN, -1);
Matt Mackall10cef602006-01-08 01:01:45 -0800555
556 if (c) {
557 c->name = name;
558 c->size = size;
Nick Pigginafc0ced2007-05-16 22:10:49 -0700559 if (flags & SLAB_DESTROY_BY_RCU) {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700560 /* leave room for rcu footer at the end of object */
561 c->size += sizeof(struct slob_rcu);
562 }
563 c->flags = flags;
Matt Mackall10cef602006-01-08 01:01:45 -0800564 c->ctor = ctor;
Matt Mackall10cef602006-01-08 01:01:45 -0800565 /* ignore alignment unless it's forced */
Christoph Lameter5af60832007-05-06 14:49:56 -0700566 c->align = (flags & SLAB_HWCACHE_ALIGN) ? SLOB_ALIGN : 0;
Nick Piggin55394842007-07-15 23:38:09 -0700567 if (c->align < ARCH_SLAB_MINALIGN)
568 c->align = ARCH_SLAB_MINALIGN;
Matt Mackall10cef602006-01-08 01:01:45 -0800569 if (c->align < align)
570 c->align = align;
Akinobu Mitabc0055a2007-05-06 14:49:52 -0700571 } else if (flags & SLAB_PANIC)
572 panic("Cannot create slab cache %s\n", name);
Matt Mackall10cef602006-01-08 01:01:45 -0800573
Catalin Marinas4374e612009-06-11 13:23:17 +0100574 kmemleak_alloc(c, sizeof(struct kmem_cache), 1, GFP_KERNEL);
Matt Mackall10cef602006-01-08 01:01:45 -0800575 return c;
576}
577EXPORT_SYMBOL(kmem_cache_create);
578
Alexey Dobriyan133d2052006-09-27 01:49:41 -0700579void kmem_cache_destroy(struct kmem_cache *c)
Matt Mackall10cef602006-01-08 01:01:45 -0800580{
Catalin Marinas4374e612009-06-11 13:23:17 +0100581 kmemleak_free(c);
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -0700582 if (c->flags & SLAB_DESTROY_BY_RCU)
583 rcu_barrier();
Matt Mackall10cef602006-01-08 01:01:45 -0800584 slob_free(c, sizeof(struct kmem_cache));
Matt Mackall10cef602006-01-08 01:01:45 -0800585}
586EXPORT_SYMBOL(kmem_cache_destroy);
587
Paul Mundt6193a2f2007-07-15 23:38:22 -0700588void *kmem_cache_alloc_node(struct kmem_cache *c, gfp_t flags, int node)
Matt Mackall10cef602006-01-08 01:01:45 -0800589{
590 void *b;
591
Steven Rostedtbd50cfa2011-06-07 07:18:45 -0400592 flags &= gfp_allowed_mask;
593
594 lockdep_trace_alloc(flags);
595
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300596 if (c->size < PAGE_SIZE) {
Paul Mundt6193a2f2007-07-15 23:38:22 -0700597 b = slob_alloc(c->size, flags, c->align, node);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200598 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
599 SLOB_UNITS(c->size) * SLOB_UNIT,
600 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300601 } else {
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800602 b = slob_new_pages(flags, get_order(c->size), node);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200603 trace_kmem_cache_alloc_node(_RET_IP_, b, c->size,
604 PAGE_SIZE << get_order(c->size),
605 flags, node);
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300606 }
Matt Mackall10cef602006-01-08 01:01:45 -0800607
608 if (c->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700609 c->ctor(b);
Matt Mackall10cef602006-01-08 01:01:45 -0800610
Catalin Marinas4374e612009-06-11 13:23:17 +0100611 kmemleak_alloc_recursive(b, c->size, 1, c->flags, flags);
Matt Mackall10cef602006-01-08 01:01:45 -0800612 return b;
613}
Paul Mundt6193a2f2007-07-15 23:38:22 -0700614EXPORT_SYMBOL(kmem_cache_alloc_node);
Matt Mackall10cef602006-01-08 01:01:45 -0800615
Nick Pigginafc0ced2007-05-16 22:10:49 -0700616static void __kmem_cache_free(void *b, int size)
617{
618 if (size < PAGE_SIZE)
619 slob_free(b, size);
620 else
Américo Wang6e9ed0c2009-01-19 02:00:38 +0800621 slob_free_pages(b, get_order(size));
Nick Pigginafc0ced2007-05-16 22:10:49 -0700622}
623
624static void kmem_rcu_free(struct rcu_head *head)
625{
626 struct slob_rcu *slob_rcu = (struct slob_rcu *)head;
627 void *b = (void *)slob_rcu - (slob_rcu->size - sizeof(struct slob_rcu));
628
629 __kmem_cache_free(b, slob_rcu->size);
630}
631
Matt Mackall10cef602006-01-08 01:01:45 -0800632void kmem_cache_free(struct kmem_cache *c, void *b)
633{
Catalin Marinas4374e612009-06-11 13:23:17 +0100634 kmemleak_free_recursive(b, c->flags);
Nick Pigginafc0ced2007-05-16 22:10:49 -0700635 if (unlikely(c->flags & SLAB_DESTROY_BY_RCU)) {
636 struct slob_rcu *slob_rcu;
637 slob_rcu = b + (c->size - sizeof(struct slob_rcu));
Nick Pigginafc0ced2007-05-16 22:10:49 -0700638 slob_rcu->size = c->size;
639 call_rcu(&slob_rcu->head, kmem_rcu_free);
640 } else {
Nick Pigginafc0ced2007-05-16 22:10:49 -0700641 __kmem_cache_free(b, c->size);
642 }
Eduard - Gabriel Munteanu3eae2cb22008-08-10 20:14:07 +0300643
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200644 trace_kmem_cache_free(_RET_IP_, b);
Matt Mackall10cef602006-01-08 01:01:45 -0800645}
646EXPORT_SYMBOL(kmem_cache_free);
647
648unsigned int kmem_cache_size(struct kmem_cache *c)
649{
650 return c->size;
651}
652EXPORT_SYMBOL(kmem_cache_size);
653
Christoph Lameter2e892f42006-12-13 00:34:23 -0800654int kmem_cache_shrink(struct kmem_cache *d)
655{
656 return 0;
657}
658EXPORT_SYMBOL(kmem_cache_shrink);
659
Paul Mundt84a01c22007-07-15 23:38:24 -0700660static unsigned int slob_ready __read_mostly;
661
662int slab_is_available(void)
663{
664 return slob_ready;
665}
666
Dimitri Gorokhovikbcb4ddb2006-12-29 16:48:28 -0800667void __init kmem_cache_init(void)
668{
Paul Mundt84a01c22007-07-15 23:38:24 -0700669 slob_ready = 1;
Matt Mackall10cef602006-01-08 01:01:45 -0800670}
Wu Fengguangbbff2e42009-08-06 11:36:25 +0300671
672void __init kmem_cache_init_late(void)
673{
674 /* Nothing to do */
675}