mirror of
https://github.com/torvalds/linux.git
synced 2026-06-06 13:37:36 +02:00
x86/mce: Allow instrumentation during task work queueing
[ Upstream commit 4fbce464db ]
Fixes
vmlinux.o: warning: objtool: do_machine_check()+0xdb1: call to queue_task_work() leaves .noinstr.text section
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lore.kernel.org/r/20211208111343.8130-6-bp@alien8.de
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
af371e0abb
commit
de360d9443
|
|
@ -1443,6 +1443,14 @@ noinstr void do_machine_check(struct pt_regs *regs)
|
||||||
if (worst != MCE_AR_SEVERITY && !kill_it)
|
if (worst != MCE_AR_SEVERITY && !kill_it)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Enable instrumentation around the external facilities like
|
||||||
|
* task_work_add() (via queue_task_work()), fixup_exception() etc.
|
||||||
|
* For now, that is. Fixing this properly would need a lot more involved
|
||||||
|
* reorganization.
|
||||||
|
*/
|
||||||
|
instrumentation_begin();
|
||||||
|
|
||||||
/* Fault was in user mode and we need to take some action */
|
/* Fault was in user mode and we need to take some action */
|
||||||
if ((m.cs & 3) == 3) {
|
if ((m.cs & 3) == 3) {
|
||||||
/* If this triggers there is no way to recover. Die hard. */
|
/* If this triggers there is no way to recover. Die hard. */
|
||||||
|
|
@ -1468,6 +1476,9 @@ noinstr void do_machine_check(struct pt_regs *regs)
|
||||||
if (m.kflags & MCE_IN_KERNEL_COPYIN)
|
if (m.kflags & MCE_IN_KERNEL_COPYIN)
|
||||||
queue_task_work(&m, msg, kill_it);
|
queue_task_work(&m, msg, kill_it);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
instrumentation_end();
|
||||||
|
|
||||||
out:
|
out:
|
||||||
mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
|
mce_wrmsrl(MSR_IA32_MCG_STATUS, 0);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user