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.5-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull tracing fix from Steven Rostedt:
"A cleanup to the stack tracer broke stack tracing on s390. Here's a
simple fix to correct that issue"

* tag 'trace-v4.5-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
tracing/stacktrace: Show entire trace if passed in function not found

+7
+7
kernel/trace/trace_stack.c
··· 126 126 } 127 127 128 128 /* 129 + * Some archs may not have the passed in ip in the dump. 130 + * If that happens, we need to show everything. 131 + */ 132 + if (i == stack_trace_max.nr_entries) 133 + i = 0; 134 + 135 + /* 129 136 * Now find where in the stack these are. 130 137 */ 131 138 x = 0;