Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_SLOB_DEF_H |
| 2 | #define __LINUX_SLOB_DEF_H |
| 3 | |
FUJITA Tomonori | a6eb9fe | 2010-08-10 18:03:22 -0700 | [diff] [blame] | 4 | #ifdef ARCH_DMA_MINALIGN |
| 5 | #define ARCH_KMALLOC_MINALIGN ARCH_DMA_MINALIGN |
| 6 | #else |
David Woodhouse | bac49ce | 2010-05-19 12:01:43 +0100 | [diff] [blame] | 7 | #define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long) |
| 8 | #endif |
| 9 | |
| 10 | #ifndef ARCH_SLAB_MINALIGN |
| 11 | #define ARCH_SLAB_MINALIGN __alignof__(unsigned long) |
| 12 | #endif |
| 13 | |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 14 | void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node); |
| 15 | |
Eduard - Gabriel Munteanu | 3eae2cb2 | 2008-08-10 20:14:07 +0300 | [diff] [blame] | 16 | static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep, |
| 17 | gfp_t flags) |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 18 | { |
| 19 | return kmem_cache_alloc_node(cachep, flags, -1); |
| 20 | } |
| 21 | |
| 22 | void *__kmalloc_node(size_t size, gfp_t flags, int node); |
| 23 | |
Eduard - Gabriel Munteanu | 3eae2cb2 | 2008-08-10 20:14:07 +0300 | [diff] [blame] | 24 | static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 25 | { |
| 26 | return __kmalloc_node(size, flags, node); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * kmalloc - allocate memory |
| 31 | * @size: how many bytes of memory are required. |
| 32 | * @flags: the type of memory to allocate (see kcalloc). |
| 33 | * |
| 34 | * kmalloc is the normal method of allocating memory |
| 35 | * in the kernel. |
| 36 | */ |
Eduard - Gabriel Munteanu | 3eae2cb2 | 2008-08-10 20:14:07 +0300 | [diff] [blame] | 37 | static __always_inline void *kmalloc(size_t size, gfp_t flags) |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 38 | { |
| 39 | return __kmalloc_node(size, flags, -1); |
| 40 | } |
| 41 | |
Eduard - Gabriel Munteanu | 3eae2cb2 | 2008-08-10 20:14:07 +0300 | [diff] [blame] | 42 | static __always_inline void *__kmalloc(size_t size, gfp_t flags) |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 43 | { |
| 44 | return kmalloc(size, flags); |
| 45 | } |
| 46 | |
Paul Mundt | 6193a2f | 2007-07-15 23:38:22 -0700 | [diff] [blame] | 47 | #endif /* __LINUX_SLOB_DEF_H */ |