summaryrefslogtreecommitdiff
path: root/include/linux/slob_def.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2009-02-10 11:19:58 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2009-02-10 11:19:58 +1100
commit0d91e23aba3d271640311e0b1be22eefe345180c (patch)
treedb80672c595449af3fa224a3f32cf966316940a9 /include/linux/slob_def.h
parent2cda17feef3d6ee9c611587aba0a2a2c77d31414 (diff)
parentad9c972311f9b61a34fcaaae5e21ca11b1ab5d49 (diff)
Merge commit 'ftrace/auto-ftrace-next'
Diffstat (limited to 'include/linux/slob_def.h')
-rw-r--r--include/linux/slob_def.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/linux/slob_def.h b/include/linux/slob_def.h
index 59a3fa476ab9..0ec00b39d006 100644
--- a/include/linux/slob_def.h
+++ b/include/linux/slob_def.h
@@ -3,14 +3,15 @@
void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
-static inline void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
+static __always_inline void *kmem_cache_alloc(struct kmem_cache *cachep,
+ gfp_t flags)
{
return kmem_cache_alloc_node(cachep, flags, -1);
}
void *__kmalloc_node(size_t size, gfp_t flags, int node);
-static inline void *kmalloc_node(size_t size, gfp_t flags, int node)
+static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
{
return __kmalloc_node(size, flags, node);
}
@@ -23,12 +24,12 @@ static inline void *kmalloc_node(size_t size, gfp_t flags, int node)
* kmalloc is the normal method of allocating memory
* in the kernel.
*/
-static inline void *kmalloc(size_t size, gfp_t flags)
+static __always_inline void *kmalloc(size_t size, gfp_t flags)
{
return __kmalloc_node(size, flags, -1);
}
-static inline void *__kmalloc(size_t size, gfp_t flags)
+static __always_inline void *__kmalloc(size_t size, gfp_t flags)
{
return kmalloc(size, flags);
}