Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_SLUB_DEF_H |
| 2 | #define _LINUX_SLUB_DEF_H |
| 3 | |
| 4 | /* |
| 5 | * SLUB : A Slab allocator without object queues. |
| 6 | * |
Christoph Lameter | cde5353 | 2008-07-04 09:59:22 -0700 | [diff] [blame] | 7 | * (C) 2007 SGI, Christoph Lameter |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/gfp.h> |
Paul Gortmaker | 187f188 | 2011-11-23 20:12:59 -0500 | [diff] [blame] | 11 | #include <linux/bug.h> |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 12 | #include <linux/workqueue.h> |
| 13 | #include <linux/kobject.h> |
| 14 | |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 15 | #include <linux/kmemleak.h> |
Li Zefan | 039ca4e | 2010-05-26 17:22:17 +0800 | [diff] [blame] | 16 | |
Christoph Lameter | 8ff12cf | 2008-02-07 17:47:41 -0800 | [diff] [blame] | 17 | enum stat_item { |
| 18 | ALLOC_FASTPATH, /* Allocation from cpu slab */ |
| 19 | ALLOC_SLOWPATH, /* Allocation by getting a new cpu slab */ |
| 20 | FREE_FASTPATH, /* Free to cpu slub */ |
| 21 | FREE_SLOWPATH, /* Freeing not to cpu slab */ |
| 22 | FREE_FROZEN, /* Freeing to frozen slab */ |
| 23 | FREE_ADD_PARTIAL, /* Freeing moves slab to partial list */ |
| 24 | FREE_REMOVE_PARTIAL, /* Freeing removes last object */ |
Alex Shi | 8028dce | 2012-02-03 23:34:56 +0800 | [diff] [blame] | 25 | ALLOC_FROM_PARTIAL, /* Cpu slab acquired from node partial list */ |
Christoph Lameter | 8ff12cf | 2008-02-07 17:47:41 -0800 | [diff] [blame] | 26 | ALLOC_SLAB, /* Cpu slab acquired from page allocator */ |
| 27 | ALLOC_REFILL, /* Refill cpu slab from slab freelist */ |
Christoph Lameter | e36a265 | 2011-06-01 12:25:57 -0500 | [diff] [blame] | 28 | ALLOC_NODE_MISMATCH, /* Switching cpu slab */ |
Christoph Lameter | 8ff12cf | 2008-02-07 17:47:41 -0800 | [diff] [blame] | 29 | FREE_SLAB, /* Slab freed to the page allocator */ |
| 30 | CPUSLAB_FLUSH, /* Abandoning of the cpu slab */ |
| 31 | DEACTIVATE_FULL, /* Cpu slab was full when deactivated */ |
| 32 | DEACTIVATE_EMPTY, /* Cpu slab was empty when deactivated */ |
| 33 | DEACTIVATE_TO_HEAD, /* Cpu slab was moved to the head of partials */ |
| 34 | DEACTIVATE_TO_TAIL, /* Cpu slab was moved to the tail of partials */ |
| 35 | DEACTIVATE_REMOTE_FREES,/* Slab contained remotely freed objects */ |
Christoph Lameter | 03e404a | 2011-06-01 12:25:58 -0500 | [diff] [blame] | 36 | DEACTIVATE_BYPASS, /* Implicit deactivation */ |
Christoph Lameter | 65c3376 | 2008-04-14 19:11:40 +0300 | [diff] [blame] | 37 | ORDER_FALLBACK, /* Number of times fallback was necessary */ |
Christoph Lameter | 4fdccdf | 2011-03-22 13:35:00 -0500 | [diff] [blame] | 38 | CMPXCHG_DOUBLE_CPU_FAIL,/* Failure of this_cpu_cmpxchg_double */ |
Christoph Lameter | b789ef5 | 2011-06-01 12:25:49 -0500 | [diff] [blame] | 39 | CMPXCHG_DOUBLE_FAIL, /* Number of times that cmpxchg double did not match */ |
Christoph Lameter | 49e2258 | 2011-08-09 16:12:27 -0500 | [diff] [blame] | 40 | CPU_PARTIAL_ALLOC, /* Used cpu partial on alloc */ |
Alex Shi | 8028dce | 2012-02-03 23:34:56 +0800 | [diff] [blame] | 41 | CPU_PARTIAL_FREE, /* Refill cpu partial on free */ |
| 42 | CPU_PARTIAL_NODE, /* Refill cpu partial from node partial */ |
| 43 | CPU_PARTIAL_DRAIN, /* Drain cpu partial to node partial */ |
Christoph Lameter | 8ff12cf | 2008-02-07 17:47:41 -0800 | [diff] [blame] | 44 | NR_SLUB_STAT_ITEMS }; |
| 45 | |
Christoph Lameter | dfb4f09 | 2007-10-16 01:26:05 -0700 | [diff] [blame] | 46 | struct kmem_cache_cpu { |
Christoph Lameter | 8a5ec0b | 2011-02-25 11:38:54 -0600 | [diff] [blame] | 47 | void **freelist; /* Pointer to next available object */ |
Christoph Lameter | 8a5ec0b | 2011-02-25 11:38:54 -0600 | [diff] [blame] | 48 | unsigned long tid; /* Globally unique transaction id */ |
Christoph Lameter | da89b79 | 2008-01-07 23:20:31 -0800 | [diff] [blame] | 49 | struct page *page; /* The slab from which we are allocating */ |
Christoph Lameter | 49e2258 | 2011-08-09 16:12:27 -0500 | [diff] [blame] | 50 | struct page *partial; /* Partially allocated frozen slabs */ |
Christoph Lameter | 8ff12cf | 2008-02-07 17:47:41 -0800 | [diff] [blame] | 51 | #ifdef CONFIG_SLUB_STATS |
| 52 | unsigned stat[NR_SLUB_STAT_ITEMS]; |
| 53 | #endif |
Christoph Lameter | 4c93c355 | 2007-10-16 01:26:08 -0700 | [diff] [blame] | 54 | }; |
Christoph Lameter | dfb4f09 | 2007-10-16 01:26:05 -0700 | [diff] [blame] | 55 | |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 56 | struct kmem_cache_node { |
| 57 | spinlock_t list_lock; /* Protect partial list and nr_partial */ |
| 58 | unsigned long nr_partial; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 59 | struct list_head partial; |
Christoph Lameter | 0c71001 | 2007-07-17 04:03:24 -0700 | [diff] [blame] | 60 | #ifdef CONFIG_SLUB_DEBUG |
Christoph Lameter | 0f389ec | 2008-04-14 18:53:02 +0300 | [diff] [blame] | 61 | atomic_long_t nr_slabs; |
Christoph Lameter | 205ab99 | 2008-04-14 19:11:40 +0300 | [diff] [blame] | 62 | atomic_long_t total_objects; |
Christoph Lameter | 643b113 | 2007-05-06 14:49:42 -0700 | [diff] [blame] | 63 | struct list_head full; |
Christoph Lameter | 0c71001 | 2007-07-17 04:03:24 -0700 | [diff] [blame] | 64 | #endif |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | /* |
Christoph Lameter | 834f3d1 | 2008-04-14 19:11:31 +0300 | [diff] [blame] | 68 | * Word size structure that can be atomically updated or read and that |
| 69 | * contains both the order and the number of objects that a slab of the |
| 70 | * given order would contain. |
| 71 | */ |
| 72 | struct kmem_cache_order_objects { |
| 73 | unsigned long x; |
| 74 | }; |
| 75 | |
| 76 | /* |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 77 | * Slab cache management. |
| 78 | */ |
| 79 | struct kmem_cache { |
Namhyung Kim | 1b5ad24 | 2010-08-07 14:29:22 +0200 | [diff] [blame] | 80 | struct kmem_cache_cpu __percpu *cpu_slab; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 81 | /* Used for retriving partial slabs etc */ |
| 82 | unsigned long flags; |
Christoph Lameter | 1a757fe | 2011-02-25 11:38:51 -0600 | [diff] [blame] | 83 | unsigned long min_partial; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 84 | int size; /* The size of an object including meta data */ |
Christoph Lameter | 3b0efdf | 2012-06-13 10:24:57 -0500 | [diff] [blame] | 85 | int object_size; /* The size of an object without meta data */ |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 86 | int offset; /* Free pointer offset. */ |
Alex Shi | 9f26490 | 2011-09-01 11:32:18 +0800 | [diff] [blame] | 87 | int cpu_partial; /* Number of per cpu partial objects to keep around */ |
Christoph Lameter | 834f3d1 | 2008-04-14 19:11:31 +0300 | [diff] [blame] | 88 | struct kmem_cache_order_objects oo; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 89 | |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 90 | /* Allocation and freeing of slabs */ |
Christoph Lameter | 205ab99 | 2008-04-14 19:11:40 +0300 | [diff] [blame] | 91 | struct kmem_cache_order_objects max; |
Christoph Lameter | 65c3376 | 2008-04-14 19:11:40 +0300 | [diff] [blame] | 92 | struct kmem_cache_order_objects min; |
Christoph Lameter | b7a49f0 | 2008-02-14 14:21:32 -0800 | [diff] [blame] | 93 | gfp_t allocflags; /* gfp flags to use on each alloc */ |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 94 | int refcount; /* Refcount for slab cache destroy */ |
Alexey Dobriyan | 51cc506 | 2008-07-25 19:45:34 -0700 | [diff] [blame] | 95 | void (*ctor)(void *); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 96 | int inuse; /* Offset to metadata */ |
| 97 | int align; /* Alignment */ |
Lai Jiangshan | ab9a0f1 | 2011-03-10 15:21:48 +0800 | [diff] [blame] | 98 | int reserved; /* Reserved bytes at the end of slabs */ |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 99 | const char *name; /* Name (only for display!) */ |
| 100 | struct list_head list; /* List of slab caches */ |
Christoph Lameter | ab4d5ed | 2010-10-05 13:57:26 -0500 | [diff] [blame] | 101 | #ifdef CONFIG_SYSFS |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 102 | struct kobject kobj; /* For sysfs */ |
Christoph Lameter | 0c71001 | 2007-07-17 04:03:24 -0700 | [diff] [blame] | 103 | #endif |
Glauber Costa | ba6c496 | 2012-12-18 14:22:27 -0800 | [diff] [blame] | 104 | #ifdef CONFIG_MEMCG_KMEM |
| 105 | struct memcg_cache_params *memcg_params; |
Glauber Costa | 107dab5 | 2012-12-18 14:23:05 -0800 | [diff] [blame] | 106 | int max_attr_size; /* for propagation, maximum size of a stored attr */ |
Glauber Costa | ba6c496 | 2012-12-18 14:22:27 -0800 | [diff] [blame] | 107 | #endif |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 108 | |
| 109 | #ifdef CONFIG_NUMA |
Christoph Lameter | 9824601 | 2008-01-07 23:20:26 -0800 | [diff] [blame] | 110 | /* |
| 111 | * Defragmentation by allocating from a remote node. |
| 112 | */ |
| 113 | int remote_node_defrag_ratio; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 114 | #endif |
Christoph Lameter | 7340cc8 | 2010-09-28 08:10:26 -0500 | [diff] [blame] | 115 | struct kmem_cache_node *node[MAX_NUMNODES]; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 116 | }; |
| 117 | |
Christoph Lameter | 756dee7 | 2009-12-18 16:26:21 -0600 | [diff] [blame] | 118 | #ifdef CONFIG_ZONE_DMA |
| 119 | #define SLUB_DMA __GFP_DMA |
Christoph Lameter | 756dee7 | 2009-12-18 16:26:21 -0600 | [diff] [blame] | 120 | #else |
| 121 | /* Disable DMA functionality */ |
| 122 | #define SLUB_DMA (__force gfp_t)0 |
Christoph Lameter | 756dee7 | 2009-12-18 16:26:21 -0600 | [diff] [blame] | 123 | #endif |
| 124 | |
Christoph Lameter | ffadd4d | 2009-02-17 12:05:07 -0500 | [diff] [blame] | 125 | /* |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 126 | * We keep the general caches in an array of slab caches that are used for |
| 127 | * 2^x bytes of allocations. |
| 128 | */ |
Christoph Lameter | 95a05b4 | 2013-01-10 19:14:19 +0000 | [diff] [blame^] | 129 | extern struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1]; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 130 | |
| 131 | /* |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 132 | * Find the slab cache for a given combination of allocation flags and size. |
| 133 | * |
| 134 | * This ought to end up with a global pointer to the right cache |
| 135 | * in kmalloc_caches. |
| 136 | */ |
Christoph Lameter | aa137f9 | 2007-08-31 00:48:45 -0700 | [diff] [blame] | 137 | static __always_inline struct kmem_cache *kmalloc_slab(size_t size) |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 138 | { |
| 139 | int index = kmalloc_index(size); |
| 140 | |
| 141 | if (index == 0) |
| 142 | return NULL; |
| 143 | |
Christoph Lameter | 51df114 | 2010-08-20 12:37:15 -0500 | [diff] [blame] | 144 | return kmalloc_caches[index]; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 147 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
| 148 | void *__kmalloc(size_t size, gfp_t flags); |
| 149 | |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 150 | static __always_inline void * |
| 151 | kmalloc_order(size_t size, gfp_t flags, unsigned int order) |
| 152 | { |
Glauber Costa | d79923f | 2012-12-18 14:22:48 -0800 | [diff] [blame] | 153 | void *ret; |
| 154 | |
| 155 | flags |= (__GFP_COMP | __GFP_KMEMCG); |
| 156 | ret = (void *) __get_free_pages(flags, order); |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 157 | kmemleak_alloc(ret, size, 1, flags); |
| 158 | return ret; |
| 159 | } |
| 160 | |
Ben Greear | d18a90d | 2011-07-07 11:36:37 -0700 | [diff] [blame] | 161 | /** |
| 162 | * Calling this on allocated memory will check that the memory |
| 163 | * is expected to be in use, and print warnings if not. |
| 164 | */ |
| 165 | #ifdef CONFIG_SLUB_DEBUG |
| 166 | extern bool verify_mem_not_deleted(const void *x); |
| 167 | #else |
| 168 | static inline bool verify_mem_not_deleted(const void *x) |
| 169 | { |
| 170 | return true; |
| 171 | } |
| 172 | #endif |
| 173 | |
Li Zefan | 0f24f12 | 2009-12-11 15:45:30 +0800 | [diff] [blame] | 174 | #ifdef CONFIG_TRACING |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 175 | extern void * |
| 176 | kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size); |
| 177 | extern void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order); |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 178 | #else |
| 179 | static __always_inline void * |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 180 | kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size) |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 181 | { |
| 182 | return kmem_cache_alloc(s, gfpflags); |
| 183 | } |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 184 | |
| 185 | static __always_inline void * |
| 186 | kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order) |
| 187 | { |
| 188 | return kmalloc_order(size, flags, order); |
| 189 | } |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 190 | #endif |
| 191 | |
Pekka Enberg | eada35e | 2008-02-11 22:47:46 +0200 | [diff] [blame] | 192 | static __always_inline void *kmalloc_large(size_t size, gfp_t flags) |
| 193 | { |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 194 | unsigned int order = get_order(size); |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 195 | return kmalloc_order_trace(size, flags, order); |
Pekka Enberg | eada35e | 2008-02-11 22:47:46 +0200 | [diff] [blame] | 196 | } |
| 197 | |
Christoph Lameter | aa137f9 | 2007-08-31 00:48:45 -0700 | [diff] [blame] | 198 | static __always_inline void *kmalloc(size_t size, gfp_t flags) |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 199 | { |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 200 | if (__builtin_constant_p(size)) { |
Christoph Lameter | 95a05b4 | 2013-01-10 19:14:19 +0000 | [diff] [blame^] | 201 | if (size > KMALLOC_MAX_CACHE_SIZE) |
Pekka Enberg | eada35e | 2008-02-11 22:47:46 +0200 | [diff] [blame] | 202 | return kmalloc_large(size, flags); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 203 | |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 204 | if (!(flags & SLUB_DMA)) { |
| 205 | struct kmem_cache *s = kmalloc_slab(size); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 206 | |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 207 | if (!s) |
| 208 | return ZERO_SIZE_PTR; |
| 209 | |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 210 | return kmem_cache_alloc_trace(s, flags, size); |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 211 | } |
| 212 | } |
| 213 | return __kmalloc(size, flags); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 216 | #ifdef CONFIG_NUMA |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 217 | void *__kmalloc_node(size_t size, gfp_t flags, int node); |
| 218 | void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 219 | |
Li Zefan | 0f24f12 | 2009-12-11 15:45:30 +0800 | [diff] [blame] | 220 | #ifdef CONFIG_TRACING |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 221 | extern void *kmem_cache_alloc_node_trace(struct kmem_cache *s, |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 222 | gfp_t gfpflags, |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 223 | int node, size_t size); |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 224 | #else |
| 225 | static __always_inline void * |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 226 | kmem_cache_alloc_node_trace(struct kmem_cache *s, |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 227 | gfp_t gfpflags, |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 228 | int node, size_t size) |
Eduard - Gabriel Munteanu | 5b882be | 2008-08-19 20:43:26 +0300 | [diff] [blame] | 229 | { |
| 230 | return kmem_cache_alloc_node(s, gfpflags, node); |
| 231 | } |
| 232 | #endif |
| 233 | |
Christoph Lameter | aa137f9 | 2007-08-31 00:48:45 -0700 | [diff] [blame] | 234 | static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 235 | { |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 236 | if (__builtin_constant_p(size) && |
Christoph Lameter | 95a05b4 | 2013-01-10 19:14:19 +0000 | [diff] [blame^] | 237 | size <= KMALLOC_MAX_CACHE_SIZE && !(flags & SLUB_DMA)) { |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 238 | struct kmem_cache *s = kmalloc_slab(size); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 239 | |
| 240 | if (!s) |
Christoph Lameter | 272c1d2 | 2007-06-08 13:46:49 -0700 | [diff] [blame] | 241 | return ZERO_SIZE_PTR; |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 242 | |
Richard Kennedy | 4a92379 | 2010-10-21 10:29:19 +0100 | [diff] [blame] | 243 | return kmem_cache_alloc_node_trace(s, flags, node, size); |
Christoph Lameter | aadb4bc | 2007-10-16 01:24:38 -0700 | [diff] [blame] | 244 | } |
| 245 | return __kmalloc_node(size, flags, node); |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 246 | } |
| 247 | #endif |
| 248 | |
Christoph Lameter | 81819f0 | 2007-05-06 14:49:36 -0700 | [diff] [blame] | 249 | #endif /* _LINUX_SLUB_DEF_H */ |