[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.1.10.0810221519350.25759@gandalf.stny.rr.com>
Date: Wed, 22 Oct 2008 15:20:08 -0400 (EDT)
From: Steven Rostedt <rostedt@...dmis.org>
To: Andrew Morton <akpm@...ux-foundation.org>
cc: linux-kernel@...r.kernel.org, mingo@...e.hu, fweisbec@...il.com,
sagar.abhishek@...il.com, davem@...emloft.net, tglx@...utronix.de,
peterz@...radead.org, torvalds@...ux-foundation.org,
srostedt@...hat.com
Subject: Re: [PATCH 06/11] ftrace: add ftrace warn on to disable ftrace
On Wed, 22 Oct 2008, Andrew Morton wrote:
> > Index: linux-compile.git/kernel/trace/ftrace.c
> > ===================================================================
> > --- linux-compile.git.orig/kernel/trace/ftrace.c 2008-10-22 13:17:29.000000000 -0400
> > +++ linux-compile.git/kernel/trace/ftrace.c 2008-10-22 13:20:11.000000000 -0400
> > @@ -32,6 +32,24 @@
> >
> > #include "trace.h"
> >
> > +#define FTRACE_WARN_ON(cond) \
> > + do { \
> > + if (unlikely(cond)) { \
> > + WARN_ON(1); \
> > + ftrace_kill(); \
> > + } \
> > + } while (0)
>
> This could be coded as
>
> if (WARN_ON(cond))
> ftrace_kill();
Ah, I didn't realize that WARN_ON returned the value of the condition.
Will update in v2.
-- Steve
>
> > +#define FTRACE_WARN_ON_ONCE(cond) \
> > + do { \
> > + static int once; \
> > + if (unlikely(cond) && !once) { \
> > + once++; \
> > + WARN_ON(1); \
> > + ftrace_kill(); \
> > + } \
> > + } while (0)
>
>
> if (WARN_ON_ONCE(cond))
> ftrace_kill();
>
>
>
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists