Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 116609
b: refs/heads/master
c: 652567a
h: refs/heads/master
i:
  116607: f2c63ae
v: v3
  • Loading branch information
Steven Rostedt authored and Ingo Molnar committed Oct 14, 2008
1 parent 16cf3a1 commit 891c15b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a6168353d1c0b24b7512e14d1c3e47ed69881a23
refs/heads/master: 652567aa2000f1d4a1fd434382a30d8dd4a7c980
6 changes: 3 additions & 3 deletions trunk/kernel/trace/trace.c
Original file line number Diff line number Diff line change
Expand Up @@ -1655,7 +1655,7 @@ print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
case TRACE_PRINT:
seq_print_ip_sym(s, field->print.ip, sym_flags);
trace_seq_printf(s, ": %s", field->print.buf);
if (field->flags && TRACE_FLAG_CONT)
if (field->flags & TRACE_FLAG_CONT)
trace_seq_print_cont(s, iter);
break;
default:
Expand Down Expand Up @@ -1768,7 +1768,7 @@ static int print_trace_fmt(struct trace_iterator *iter)
case TRACE_PRINT:
seq_print_ip_sym(s, field->print.ip, sym_flags);
trace_seq_printf(s, ": %s", field->print.buf);
if (field->flags && TRACE_FLAG_CONT)
if (field->flags & TRACE_FLAG_CONT)
trace_seq_print_cont(s, iter);
break;
}
Expand Down Expand Up @@ -1833,7 +1833,7 @@ static int print_raw_fmt(struct trace_iterator *iter)
case TRACE_PRINT:
trace_seq_printf(s, "# %lx %s",
field->print.ip, field->print.buf);
if (field->flags && TRACE_FLAG_CONT)
if (field->flags & TRACE_FLAG_CONT)
trace_seq_print_cont(s, iter);
break;
}
Expand Down

0 comments on commit 891c15b

Please sign in to comment.