From: Steven Rostedt (VMware) Date: Fri, 12 Feb 2021 16:51:06 +0000 (-0500) Subject: tracing: Make hash-ptr option default X-Git-Tag: v5.12-rc1~81^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99e22ce73c59ac2d6d08893af376483ca7d62850;p=thirdparty%2Fkernel%2Flinux.git tracing: Make hash-ptr option default Since the original behavior of the trace events is to hash the %p pointers, make that the default, and have developers have to enable the option in order to have them unhashed. Cc: Masami Hiramatsu Signed-off-by: Steven Rostedt (VMware) --- diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c index 16e252d390169..f5e8e39d6f578 100644 --- a/kernel/trace/trace.c +++ b/kernel/trace/trace.c @@ -408,7 +408,8 @@ EXPORT_SYMBOL_GPL(unregister_ftrace_export); TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK | \ TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | \ TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE | \ - TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS) + TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | \ + TRACE_ITER_HASH_PTR) /* trace_options that are only supported by global_trace */ #define TOP_LEVEL_TRACE_FLAGS (TRACE_ITER_PRINTK | \