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-2023-09-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull objtool fix from Ingo Molnar:
"Fix a cold functions related false-positive objtool warning that
triggers on Clang"

* tag 'objtool-urgent-2023-09-17' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool: Fix _THIS_IP_ detection for cold functions

+2 -1
+2 -1
tools/objtool/check.c
··· 4333 4333 continue; 4334 4334 } 4335 4335 4336 - if (insn_func(dest) && insn_func(dest) == insn_func(insn)) { 4336 + if (insn_func(dest) && insn_func(insn) && 4337 + insn_func(dest)->pfunc == insn_func(insn)->pfunc) { 4337 4338 /* 4338 4339 * Anything from->to self is either _THIS_IP_ or 4339 4340 * IRET-to-self.