lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 3 Sep 2013 09:26:15 -0400
From:	Steven Rostedt <rostedt@...dmis.org>
To:	paulmck@...ux.vnet.ibm.com
Cc:	linux-kernel@...r.kernel.org, Ingo Molnar <mingo@...nel.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Peter Zijlstra <peterz@...radead.org>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Jiri Olsa <jolsa@...hat.com>
Subject: Re: [RFC][PATCH 05/18 v2] ftrace: Do not display non safe RCU
 functions in available_filter_functions

On Sat, 31 Aug 2013 13:54:30 -0700
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com> wrote:

> On Sat, Aug 31, 2013 at 04:35:03PM -0400, Steven Rostedt wrote:
> > On Sat, 2013-08-31 at 12:46 -0700, Paul E. McKenney wrote:
> > 
> > > >  void arch_ftrace_update_code(int command);
> > > > diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
> > > > index 06504b2..be87ac9 100644
> > > > --- a/kernel/trace/ftrace.c
> > > > +++ b/kernel/trace/ftrace.c
> > > > @@ -2645,7 +2645,10 @@ t_next(struct seq_file *m, void *v, loff_t *pos)
> > > >  		     !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
> > > > 
> > > >  		    ((iter->flags & FTRACE_ITER_ENABLED) &&
> > > > -		     !(rec->flags & FTRACE_FL_ENABLED))) {
> > > > +		     !(rec->flags & FTRACE_FL_ENABLED)) ||
> > > > +
> > > 
> > > OK, I'll bite...  Why the blank line?
> > 
> > For readability. Here's the full if statement:
> > 
> >                 if (((iter->flags & FTRACE_ITER_FILTER) &&
> >                      !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
> > 
> >                     ((iter->flags & FTRACE_ITER_NOTRACE) &&
> >                      !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
> > 
> >                     ((iter->flags & FTRACE_ITER_ENABLED) &&
> >                      !(rec->flags & FTRACE_FL_ENABLED)) ||
> > 
> >                     ((iter->flags & FTRACE_ITER_UNSAFE_ONLY) &&
> >                      !ftrace_lookup_ip(ftrace_unsafe_rcu, rec->ip)) ||
> > 
> >                     ((iter->flags & FTRACE_ITER_NO_UNSAFE) &&
> >                      ftrace_lookup_ip(ftrace_unsafe_rcu, rec->ip))) {
> > 
> > 
> > They are grouped in pairs.
> 
> Fair enough!

Can I take this as an Acked-by?

-- Steve

> 
> 							Thanx, Paul
> 
> > -- Steve
> > 
> > > 
> > > 							Thanx, Paul
> > > 
> > > > +		    ((iter->flags & FTRACE_ITER_NO_UNSAFE) &&
> > > > +		     ftrace_lookup_ip(ftrace_unsafe_rcu, rec->ip))) {
> > > > 
> > > >  			rec = NULL;
> > > >  			goto retry;
> > > > @@ -2773,6 +2776,7 @@ ftrace_avail_open(struct inode *inode, struct file *file)
> > > >  	iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
> > > >  	if (iter) {
> > > >  		iter->pg = ftrace_pages_start;
> > > > +		iter->flags = FTRACE_ITER_NO_UNSAFE;
> > > >  		iter->ops = &global_ops;
> > > >  	}
> > > > 
> > > > -- 
> > > > 1.7.10.4
> > > > 
> > > > 
> > 
> > 

--
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

Powered by Openwall GNU/*/Linux Powered by OpenVZ