summaryrefslogtreecommitdiffstats
path: root/include/linux/trace_seq.h
diff options
context:
space:
mode:
authorSteven Rostedt (Red Hat)2014-06-21 05:31:26 +0200
committerSteven Rostedt2014-07-01 13:13:37 +0200
commit6d2289f3faa71dcc5bba15c7aeba4f31c185b6df (patch)
tree8425f1195f29a670dcb1ad00e56ee1836514ab02 /include/linux/trace_seq.h
parenttracing: Clean up trace_seq.c (diff)
downloadkernel-qcow2-linux-6d2289f3faa71dcc5bba15c7aeba4f31c185b6df.tar.gz
kernel-qcow2-linux-6d2289f3faa71dcc5bba15c7aeba4f31c185b6df.tar.xz
kernel-qcow2-linux-6d2289f3faa71dcc5bba15c7aeba4f31c185b6df.zip
tracing: Make trace_seq_putmem_hex() more robust
Currently trace_seq_putmem_hex() can only take as a parameter a pointer to something that is 8 bytes or less, otherwise it will overflow the buffer. This is protected by a macro that encompasses the call to trace_seq_putmem_hex() that has a BUILD_BUG_ON() for the variable before it is passed in. This is not very robust and if trace_seq_putmem_hex() ever gets used outside that macro it will cause issues. Instead of only being able to produce a hex output of memory that is for a single word, change it to be more robust and allow any size input. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/linux/trace_seq.h')
-rw-r--r--include/linux/trace_seq.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h
index 1f05317f51c4..8283762ab7ef 100644
--- a/include/linux/trace_seq.h
+++ b/include/linux/trace_seq.h
@@ -25,8 +25,6 @@ trace_seq_init(struct trace_seq *s)
s->full = 0;
}
-#define MAX_MEMHEX_BYTES 8
-
/*
* Currently only defined when tracing is enabled.
*/