From 76ec0e2e6d6edf81abc0331d5e7873ef7b2f6019 Mon Sep 17 00:00:00 2001 From: Kyle McMartin Date: Wed, 8 Jul 2009 13:06:01 -0400 Subject: [PATCH 6/6] fedora: linux-2.6-debug-always-inline-kzalloc.patch --- include/linux/slab.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/slab.h b/include/linux/slab.h index 2da8372..d4ef74f 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h @@ -310,7 +310,7 @@ static inline void *kmem_cache_zalloc(struct kmem_cache *k, gfp_t flags) * @size: how many bytes of memory are required. * @flags: the type of memory to allocate (see kmalloc). */ -static inline void *kzalloc(size_t size, gfp_t flags) +static __always_inline void *kzalloc(size_t size, gfp_t flags) { return kmalloc(size, flags | __GFP_ZERO); } -- 1.6.2.5