dect
/
linux-2.6
Archived
13
0
Fork 0

ftrace: fix breakage in bin_fmt results

In 777e208d40 we changed from outputting
field->cpu (a char) to iter->cpu (unsigned int), increasing the resulting
structure size by 3 bytes.

Signed-off-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Eric Anholt 2008-10-26 15:26:57 -07:00 committed by Ingo Molnar
parent 42ec632e7b
commit 072ba49838
1 changed files with 1 additions and 1 deletions

View File

@ -1755,7 +1755,7 @@ static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
return TRACE_TYPE_HANDLED;
SEQ_PUT_FIELD_RET(s, entry->pid);
SEQ_PUT_FIELD_RET(s, iter->cpu);
SEQ_PUT_FIELD_RET(s, entry->cpu);
SEQ_PUT_FIELD_RET(s, iter->ts);
switch (entry->type) {