Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'trace-v4.17-rc1-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing fixes from Steven Rostedt:
"Some of the files in the tracing directory show file mode 0444 when
they are writable by root. To fix the confusion, they should be 0644.
Note, either case root can still write to them.

Zhengyuan asked why I never applied that patch (the first one is from
2014!). I simply forgot about it. /me lowers head in shame"

* tag 'trace-v4.17-rc1-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
tracing: Fix the file mode of stack tracer
ftrace: Have set_graph_* files have normal file modes

+3 -3
+2 -2
kernel/trace/ftrace.c
··· 5514 5514 ftrace_create_filter_files(&global_ops, d_tracer); 5515 5515 5516 5516 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 5517 - trace_create_file("set_graph_function", 0444, d_tracer, 5517 + trace_create_file("set_graph_function", 0644, d_tracer, 5518 5518 NULL, 5519 5519 &ftrace_graph_fops); 5520 - trace_create_file("set_graph_notrace", 0444, d_tracer, 5520 + trace_create_file("set_graph_notrace", 0644, d_tracer, 5521 5521 NULL, 5522 5522 &ftrace_graph_notrace_fops); 5523 5523 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
+1 -1
kernel/trace/trace_stack.c
··· 472 472 NULL, &stack_trace_fops); 473 473 474 474 #ifdef CONFIG_DYNAMIC_FTRACE 475 - trace_create_file("stack_trace_filter", 0444, d_tracer, 475 + trace_create_file("stack_trace_filter", 0644, d_tracer, 476 476 &trace_ops, &stack_trace_filter_fops); 477 477 #endif 478 478