From: Karol Swietlicki Date: Tue, 5 Feb 2008 06:30:42 +0000 (-0800) Subject: uml: GPROF needs to depend on FRAME_POINTER X-Git-Tag: v2.6.25-rc1~856 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=054211acad0cb911177507a039d8e7a25bff084d;p=~shefty%2Frdma-dev.git uml: GPROF needs to depend on FRAME_POINTER This is a short Kconfig fix for a problem in User Mode Linux. Frame pointers are required for gprof support to work. Signed-off-by: Karol Swietlicki Signed-off-by: Jeff Dike Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/um/Kconfig.debug b/arch/um/Kconfig.debug index 40456f43541..8fce5e536b0 100644 --- a/arch/um/Kconfig.debug +++ b/arch/um/Kconfig.debug @@ -4,7 +4,7 @@ source "lib/Kconfig.debug" config GPROF bool "Enable gprof support" - depends on DEBUG_INFO + depends on DEBUG_INFO && FRAME_POINTER help This allows profiling of a User-Mode Linux kernel with the gprof utility.