On Sun, 2010-01-24 at 23:44 -0500, [email protected] wrote: > Revision > 8227 > Author > vapier > Date > 2010-01-24 23:44:01 -0500 (Sun, 24 Jan 2010) > Log Message > fix ftrace trace stop test as pointed out Yi > Modified Paths > * trunk/arch/blackfin/kernel/ftrace-entry.S > Diff > Modified: trunk/arch/blackfin/kernel/ftrace-entry.S (8226 => 8227) > > --- trunk/arch/blackfin/kernel/ftrace-entry.S 2010-01-25 04:30:10 UTC (rev > 8226) > +++ trunk/arch/blackfin/kernel/ftrace-entry.S 2010-01-25 04:44:01 UTC (rev > 8227) > @@ -26,7 +26,7 @@ > p1.l = _function_trace_stop; > p1.h = _function_trace_stop; > r3 = [p1]; > - cc = r3 == 0; > + cc = r3 != 0; > if cc jump _ftrace_stub (bp); Do you mean:
cc = r3 == 0; if !cc jump _ftrace_stub (bp); > #endif > -Yi _______________________________________________ Linux-kernel-commits mailing list [email protected] https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits
