diff options
author | Piotr Maziarz <piotrx.maziarz@linux.intel.com> | 2019-11-26 11:06:31 +0100 |
---|---|---|
committer | Steven Rostedt (VMware) <rostedt@goodmis.org> | 2019-11-26 13:20:51 -0500 |
commit | 02a65a0bfbef5c644f520885a0a85b45b9703cf3 (patch) | |
tree | 037dda8e940c8a5d9204071172e585feb281c0f0 /include/trace/trace_events.h | |
parent | 16c0f03f629a89e6a1249497202b2c154ff46206 (diff) | |
download | linux-02a65a0bfbef5c644f520885a0a85b45b9703cf3.tar.bz2 |
tracing: Fix __print_hex_dump scope
undef is needed for parsing __print_hex_dump in traceevent lib.
Link: http://lkml.kernel.org/r/1574762791-14883-1-git-send-email-piotrx.maziarz@linux.intel.com
Signed-off-by: Piotr Maziarz <piotrx.maziarz@linux.intel.com>
Signed-off-by: Cezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Diffstat (limited to 'include/trace/trace_events.h')
-rw-r--r-- | include/trace/trace_events.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/trace/trace_events.h b/include/trace/trace_events.h index 7089760d4c7a..472b33d23a10 100644 --- a/include/trace/trace_events.h +++ b/include/trace/trace_events.h @@ -757,6 +757,7 @@ static inline void ftrace_test_probe_##call(void) \ #undef __get_str #undef __get_bitmask #undef __print_array +#undef __print_hex_dump #undef TP_printk #define TP_printk(fmt, args...) "\"" fmt "\", " __stringify(args) |