From: Piotr Maziarz Date: Tue, 26 Nov 2019 10:06:31 +0000 (+0100) Subject: tracing: Fix __print_hex_dump scope X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=02a65a0bfbef5c644f520885a0a85b45b9703cf3;p=linux.git 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 Signed-off-by: Cezary Rojewski Signed-off-by: Steven Rostedt (VMware) --- diff --git a/include/trace/trace_events.h b/include/trace/trace_events.h index 7089760d4c7a8..472b33d23a10e 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)