Re: [PATCH 2/2 v3] ftracetest: Add a couple of ftrace test cases

2014-11-05 Thread Steven Rostedt
On Wed, 05 Nov 2014 17:41:15 +0900 Masami Hiramatsu wrote: > (2014/11/05 16:52), Namhyung Kim wrote: > > Hi Steve, > > > > On Tue, 04 Nov 2014 10:28:47 -0500, Steven Rostedt wrote: > >> +count=`cat trace | grep '()' | grep -v schedule | wc -l` > >> + > >> +if [ $count -ne 0 ]; then > >> +ech

Re: [PATCH 2/2 v3] ftracetest: Add a couple of ftrace test cases

2014-11-05 Thread Masami Hiramatsu
(2014/11/05 16:52), Namhyung Kim wrote: > Hi Steve, > > On Tue, 04 Nov 2014 10:28:47 -0500, Steven Rostedt wrote: >> +count=`cat trace | grep '()' | grep -v schedule | wc -l` >> + >> +if [ $count -ne 0 ]; then >> +echo "Graph filtering not working after stack tracer disabled?" >> +exit -1

Re: [PATCH 2/2 v3] ftracetest: Add a couple of ftrace test cases

2014-11-04 Thread Namhyung Kim
Hi Steve, On Tue, 04 Nov 2014 10:28:47 -0500, Steven Rostedt wrote: > +count=`cat trace | grep '()' | grep -v schedule | wc -l` > + > +if [ $count -ne 0 ]; then > +echo "Graph filtering not working after stack tracer disabled?" > +exit -1 > +fi > + > +count=`cat trace | grep 'schedule()' |