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 branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull stacktrace fix from Ingo Molnar:
"Fix a stack_trace_save_tsk_reliable() regression"

* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
stacktrace: Unbreak stack_trace_save_tsk_reliable()

+1 -1
+1 -1
kernel/stacktrace.c
··· 207 207 208 208 ret = arch_stack_walk_reliable(consume_entry, &c, tsk); 209 209 put_task_stack(tsk); 210 - return ret; 210 + return ret ? ret : c.len; 211 211 } 212 212 #endif 213 213