* [PATCH] fix detection of CONFIG_FRAME_WARN=0
@ 2009-05-23 23:38 Mike Frysinger
2009-06-01 22:54 ` Mike Frysinger
0 siblings, 1 reply; 3+ messages in thread
From: Mike Frysinger @ 2009-05-23 23:38 UTC (permalink / raw)
To: linux-kernel; +Cc: Andi Kleen, Sam Ravnborg
The checking of CONFIG_FRAME_WARN in the top level Makefile forgot to
actually derefence the variable thus leading to an always true check.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
CC: Andi Kleen <ak@suse.de>
CC: Sam Ravnborg <sam@ravnborg.org>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index 739fd34..47c8d11 100644
--- a/Makefile
+++ b/Makefile
@@ -533,7 +533,7 @@ endif
include $(srctree)/arch/$(SRCARCH)/Makefile
-ifneq (CONFIG_FRAME_WARN,0)
+ifneq ($(CONFIG_FRAME_WARN),0)
KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN})
endif
--
1.6.3
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] fix detection of CONFIG_FRAME_WARN=0
2009-05-23 23:38 [PATCH] fix detection of CONFIG_FRAME_WARN=0 Mike Frysinger
@ 2009-06-01 22:54 ` Mike Frysinger
2009-06-02 5:29 ` Andrew Morton
0 siblings, 1 reply; 3+ messages in thread
From: Mike Frysinger @ 2009-06-01 22:54 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, Andi Kleen, Sam Ravnborg
On Sat, May 23, 2009 at 19:38, Mike Frysinger wrote:
> The checking of CONFIG_FRAME_WARN in the top level Makefile forgot to
> actually derefence the variable thus leading to an always true check.
Andrew: could you pick this up ?
-mike
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] fix detection of CONFIG_FRAME_WARN=0
2009-06-01 22:54 ` Mike Frysinger
@ 2009-06-02 5:29 ` Andrew Morton
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2009-06-02 5:29 UTC (permalink / raw)
To: Mike Frysinger; +Cc: linux-kernel, Andi Kleen, Sam Ravnborg
On Mon, 1 Jun 2009 18:54:27 -0400 Mike Frysinger <vapier.adi@gmail.com> wrote:
> On Sat, May 23, 2009 at 19:38, Mike Frysinger wrote:
> > The checking of CONFIG_FRAME_WARN in the top level Makefile forgot to
> > actually derefence the variable thus leading to an always true check.
>
> Andrew: could you pick this up ?
yup, I'll shoot for 2.6.30 on this one, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-06-02 5:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-23 23:38 [PATCH] fix detection of CONFIG_FRAME_WARN=0 Mike Frysinger
2009-06-01 22:54 ` Mike Frysinger
2009-06-02 5:29 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome