preempt_enable()
以前はnmi_exit()
良いコードですか?
if ((m.cs & 3) == 3) {
/* If this triggers there is no way to recover. Die hard. */
BUG_ON(!on_thread_stack() || !user_mode(regs));
local_irq_enable();
preempt_enable();
current->task_struct_rh->mce_ripv = !!(m.mcgstatus & MCG_STATUS_RIPV);
current->task_struct_rh->mce_whole_page = whole_page(&m);
if (kill_it || do_memory_failure(&m))
force_sig(SIGBUS, current);
preempt_disable();
local_irq_disable();
} else {
if (!fixup_exception(regs, X86_TRAP_MC))
mce_panic("Failed kernel mode recovery", &m, NULL);
}
out_ist:
nmi_exit();
}
私が理解したところによると、カーネルがプリエンプションできない場合、preempt_count > 0
この場合はNMIの内部にあるのでpreempt_count > 0
。
SIGBUSを送信しています。
force_sig(SIGBUS, current);
local_irq_enable
andをする必要はありませんかpreempt_enable
?