diff options
author | Daniel Borkmann <daniel@iogearbox.net> | 2017-02-02 17:09:54 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-03 15:50:18 -0500 |
commit | 3898fac1f488c76e0eef5b5267b4ba8112a82ac4 (patch) | |
tree | fc6ee165a3338409580a8784111f53c10b22c6d5 /include/trace | |
parent | f38c5ad79f1eb5569843ea24ac7f4cabccc3c657 (diff) | |
download | linux-3898fac1f488c76e0eef5b5267b4ba8112a82ac4.tar.gz linux-3898fac1f488c76e0eef5b5267b4ba8112a82ac4.tar.bz2 linux-3898fac1f488c76e0eef5b5267b4ba8112a82ac4.zip |
trace: rename trace_print_hex_seq arg and add kdoc
Steven suggested to improve trace_print_hex_seq() a bit after commit
2acae0d5b0f7 ("trace: add variant without spacing in trace_print_hex_seq")
in two ways: i) by adding a kdoc comment for the helper function
itself and ii) by renaming 'spacing' argument into 'concatenate'
to better denote that we don't add spaces between each hex bytes.
Suggested-by: Steven Rostedt <rostedt@goodmis.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/trace_events.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/trace/trace_events.h b/include/trace/trace_events.h index 9f684629c3cf..5c06f4af8323 100644 --- a/include/trace/trace_events.h +++ b/include/trace/trace_events.h @@ -298,11 +298,11 @@ TRACE_MAKE_SYSTEM_STR(); #undef __print_hex #define __print_hex(buf, buf_len) \ - trace_print_hex_seq(p, buf, buf_len, true) + trace_print_hex_seq(p, buf, buf_len, false) #undef __print_hex_str #define __print_hex_str(buf, buf_len) \ - trace_print_hex_seq(p, buf, buf_len, false) + trace_print_hex_seq(p, buf, buf_len, true) #undef __print_array #define __print_array(array, count, el_size) \ |