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 'objtool_urgent_for_v6.1_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool fix from Borislav Petkov:

- Fix ORC stack unwinding when GCOV is enabled

* tag 'objtool_urgent_for_v6.1_rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/unwind/orc: Fix unreliable stack dump with gcov

+1 -1
+1 -1
arch/x86/kernel/unwind_orc.c
··· 713 713 /* Otherwise, skip ahead to the user-specified starting frame: */ 714 714 while (!unwind_done(state) && 715 715 (!on_stack(&state->stack_info, first_frame, sizeof(long)) || 716 - state->sp < (unsigned long)first_frame)) 716 + state->sp <= (unsigned long)first_frame)) 717 717 unwind_next_frame(state); 718 718 719 719 return;