Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 1 | #ifndef _LINUX_SLAB_DEF_H |
| 2 | #define _LINUX_SLAB_DEF_H |
| 3 | |
| 4 | /* |
| 5 | * Definitions unique to the original Linux SLAB allocator. |
| 6 | * |
| 7 | * What we provide here is a way to optimize the frequent kmalloc |
| 8 | * calls in the kernel by selecting the appropriate general cache |
| 9 | * if kmalloc was called with a size that can be established at |
| 10 | * compile time. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/init.h> |
| 14 | #include <asm/page.h> /* kmalloc_sizes.h needs PAGE_SIZE */ |
| 15 | #include <asm/cache.h> /* kmalloc_sizes.h needs L1_CACHE_BYTES */ |
| 16 | #include <linux/compiler.h> |
Zhaolei | 02af61b | 2009-04-10 14:26:18 +0800 | [diff] [blame] | 17 | #include <linux/kmemtrace.h> |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 18 | |
| 19 | /* Size description struct for general caches. */ |
| 20 | struct cache_sizes { |
| 21 | size_t cs_size; |
| 22 | struct kmem_cache *cs_cachep; |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 23 | #ifdef CONFIG_ZONE_DMA |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 24 | struct kmem_cache *cs_dmacachep; |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 25 | #endif |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 26 | }; |
| 27 | extern struct cache_sizes malloc_sizes[]; |
| 28 | |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 29 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
| 30 | void *__kmalloc(size_t size, gfp_t flags); |
| 31 | |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 32 | #ifdef CONFIG_KMEMTRACE |
| 33 | extern void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags); |
| 34 | extern size_t slab_buffer_size(struct kmem_cache *cachep); |
| 35 | #else |
| 36 | static __always_inline void * |
| 37 | kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags) |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 38 | { |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 39 | return kmem_cache_alloc(cachep, flags); |
| 40 | } |
| 41 | static inline size_t slab_buffer_size(struct kmem_cache *cachep) |
| 42 | { |
| 43 | return 0; |
| 44 | } |
| 45 | #endif |
| 46 | |
| 47 | static __always_inline void *kmalloc(size_t size, gfp_t flags) |
| 48 | { |
| 49 | struct kmem_cache *cachep; |
| 50 | void *ret; |
| 51 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 52 | if (__builtin_constant_p(size)) { |
| 53 | int i = 0; |
Christoph Lameter | 6cb8f91 | 2007-07-17 04:03:22 -0700 | [diff] [blame] | 54 | |
| 55 | if (!size) |
| 56 | return ZERO_SIZE_PTR; |
| 57 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 58 | #define CACHE(x) \ |
| 59 | if (size <= x) \ |
| 60 | goto found; \ |
| 61 | else \ |
| 62 | i++; |
Joe Perches | 1c61fc4 | 2008-03-05 13:58:17 -0800 | [diff] [blame] | 63 | #include <linux/kmalloc_sizes.h> |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 64 | #undef CACHE |
Jeff Mahoney | 1cf3eb2 | 2009-01-27 23:48:59 +0200 | [diff] [blame] | 65 | return NULL; |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 66 | found: |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 67 | #ifdef CONFIG_ZONE_DMA |
| 68 | if (flags & GFP_DMA) |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 69 | cachep = malloc_sizes[i].cs_dmacachep; |
| 70 | else |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 71 | #endif |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 72 | cachep = malloc_sizes[i].cs_cachep; |
| 73 | |
| 74 | ret = kmem_cache_alloc_notrace(cachep, flags); |
| 75 | |
Eduard - Gabriel Munteanu | ca2b84cb | 2009-03-23 15:12:24 +0200 | [diff] [blame] | 76 | trace_kmalloc(_THIS_IP_, ret, |
| 77 | size, slab_buffer_size(cachep), flags); |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 78 | |
| 79 | return ret; |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 80 | } |
| 81 | return __kmalloc(size, flags); |
| 82 | } |
| 83 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 84 | #ifdef CONFIG_NUMA |
| 85 | extern void *__kmalloc_node(size_t size, gfp_t flags, int node); |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 86 | extern void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 87 | |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 88 | #ifdef CONFIG_KMEMTRACE |
| 89 | extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep, |
| 90 | gfp_t flags, |
| 91 | int nodeid); |
| 92 | #else |
| 93 | static __always_inline void * |
| 94 | kmem_cache_alloc_node_notrace(struct kmem_cache *cachep, |
| 95 | gfp_t flags, |
| 96 | int nodeid) |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 97 | { |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 98 | return kmem_cache_alloc_node(cachep, flags, nodeid); |
| 99 | } |
| 100 | #endif |
| 101 | |
| 102 | static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) |
| 103 | { |
| 104 | struct kmem_cache *cachep; |
| 105 | void *ret; |
| 106 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 107 | if (__builtin_constant_p(size)) { |
| 108 | int i = 0; |
Christoph Lameter | 6cb8f91 | 2007-07-17 04:03:22 -0700 | [diff] [blame] | 109 | |
| 110 | if (!size) |
| 111 | return ZERO_SIZE_PTR; |
| 112 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 113 | #define CACHE(x) \ |
| 114 | if (size <= x) \ |
| 115 | goto found; \ |
| 116 | else \ |
| 117 | i++; |
Joe Perches | 1c61fc4 | 2008-03-05 13:58:17 -0800 | [diff] [blame] | 118 | #include <linux/kmalloc_sizes.h> |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 119 | #undef CACHE |
Jeff Mahoney | 1cf3eb2 | 2009-01-27 23:48:59 +0200 | [diff] [blame] | 120 | return NULL; |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 121 | found: |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 122 | #ifdef CONFIG_ZONE_DMA |
| 123 | if (flags & GFP_DMA) |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 124 | cachep = malloc_sizes[i].cs_dmacachep; |
| 125 | else |
Christoph Lameter | 4b51d66 | 2007-02-10 01:43:10 -0800 | [diff] [blame] | 126 | #endif |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 127 | cachep = malloc_sizes[i].cs_cachep; |
| 128 | |
| 129 | ret = kmem_cache_alloc_node_notrace(cachep, flags, node); |
| 130 | |
Eduard - Gabriel Munteanu | ca2b84cb | 2009-03-23 15:12:24 +0200 | [diff] [blame] | 131 | trace_kmalloc_node(_THIS_IP_, ret, |
| 132 | size, slab_buffer_size(cachep), |
| 133 | flags, node); |
Eduard - Gabriel Munteanu | 3655575 | 2008-08-10 20:14:05 +0300 | [diff] [blame] | 134 | |
| 135 | return ret; |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 136 | } |
| 137 | return __kmalloc_node(size, flags, node); |
| 138 | } |
| 139 | |
| 140 | #endif /* CONFIG_NUMA */ |
| 141 | |
Christoph Lameter | 2e892f4 | 2006-12-13 00:34:23 -0800 | [diff] [blame] | 142 | #endif /* _LINUX_SLAB_DEF_H */ |