Re: [PATCH] tracing: use WARN_ONCE

From: Steven Rostedt
Date: Mon Jul 26 2021 - 11:08:23 EST


On Mon, 26 Jul 2021 11:02:37 -0400
Steven Rostedt <rostedt@xxxxxxxxxxx> wrote:

> > @@ -1574,9 +1574,8 @@ __init static int init_events(void)
> >
> > ret = register_trace_event(event);
> > if (!ret) {
> > - printk(KERN_WARNING "event %d failed to register\n",
> > - event->type);
> > - WARN_ON_ONCE(1);
> > + WARN_ONCE(1, "event %d failed to register\n",
> > + event->type);
> > }
> > }
> >
>
> If you're going to change this, then nuke the conditional!
>
> WARN_ONCE(!ret, "event %d failed to register\n", event->type);

Oh, and if you are making these types of changes, you need to
understand them. The string passed to WARN does not need the "\n" like
the printk() does.

WARN_ONCE(!ret, "event %d failed to register", event->type);

-- Steve