diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2009-12-15 02:39:19 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-12-30 10:27:03 -0500 |
commit | 79b408210885b9f7f0b067b07a09d68f4da3a700 (patch) | |
tree | b1297cf9ce84442abe48e67debf67214bd00ac9b /kernel/trace | |
parent | 53ab668064edaeef99c0ee22799483d45f4c81f6 (diff) |
tracing/kprobe: Show sign of fields in trace_kprobe format files
The format files of trace_kprobe do not show the sign of the fields.
The other format files show the field signed type of the fields and
this patch makes the trace_kprobe formats consistent with the others.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
LKML-Reference: <4B273D27.5040009@cn.fujitsu.com>
Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'kernel/trace')
-rw-r--r-- | kernel/trace/trace_kprobe.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c index 7ecab06547a5..83f1e6ef7063 100644 --- a/kernel/trace/trace_kprobe.c +++ b/kernel/trace/trace_kprobe.c | |||
@@ -1182,10 +1182,11 @@ static int __probe_event_show_format(struct trace_seq *s, | |||
1182 | #undef SHOW_FIELD | 1182 | #undef SHOW_FIELD |
1183 | #define SHOW_FIELD(type, item, name) \ | 1183 | #define SHOW_FIELD(type, item, name) \ |
1184 | do { \ | 1184 | do { \ |
1185 | ret = trace_seq_printf(s, "\tfield: " #type " %s;\t" \ | 1185 | ret = trace_seq_printf(s, "\tfield:" #type " %s;\t" \ |
1186 | "offset:%u;\tsize:%u;\n", name, \ | 1186 | "offset:%u;\tsize:%u;\tsigned:%d;\n", name,\ |
1187 | (unsigned int)offsetof(typeof(field), item),\ | 1187 | (unsigned int)offsetof(typeof(field), item),\ |
1188 | (unsigned int)sizeof(type)); \ | 1188 | (unsigned int)sizeof(type), \ |
1189 | is_signed_type(type)); \ | ||
1189 | if (!ret) \ | 1190 | if (!ret) \ |
1190 | return 0; \ | 1191 | return 0; \ |
1191 | } while (0) | 1192 | } while (0) |