Prev: fix kfifo miss use of nozami.c
Next: [PATCH 1/4] arch/frv: Removing dead RAMKERNEL config option
From: Christian Dietrich on 10 Aug 2010 05:20 CONFIG_DEBUG_STACK_USAGE doesn't exist in Kconfig, therefore removing all references to it from the source. Signed-off-by: Christian Dietrich <qy03fugy(a)stud.informatik.uni-erlangen.de> --- arch/frv/include/asm/thread_info.h | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/arch/frv/include/asm/thread_info.h b/arch/frv/include/asm/thread_info.h index 11f33ea..89ab701 100644 --- a/arch/frv/include/asm/thread_info.h +++ b/arch/frv/include/asm/thread_info.h @@ -83,18 +83,7 @@ register struct thread_info *__current_thread_info asm("gr15"); #define __HAVE_ARCH_THREAD_INFO_ALLOCATOR /* thread information allocation */ -#ifdef CONFIG_DEBUG_STACK_USAGE -#define alloc_thread_info(tsk) \ - ({ \ - struct thread_info *ret; \ - \ - ret = kzalloc(THREAD_SIZE, GFP_KERNEL); \ - \ - ret; \ - }) -#else #define alloc_thread_info(tsk) kmalloc(THREAD_SIZE, GFP_KERNEL) -#endif #define free_thread_info(info) kfree(info) -- 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|
Pages: 1 Prev: fix kfifo miss use of nozami.c Next: [PATCH 1/4] arch/frv: Removing dead RAMKERNEL config option |