Skip to content

Commit c0525a6

Browse files
Steven Rostedtrostedt
authored andcommitted
x86: Reset the debug_stack update counter
When an NMI goes off and it sees that it preempted the debug stack, to keep the debug stack safe, it changes the IDT to point to one that does not modify the stack on breakpoint (to allow breakpoints in NMIs). But the variable that gets set to know to undo it on exit never gets cleared on exit. Thus every NMI will reset it on exit the first time it is done even if it does not need to be reset. [ Added H. Peter Anvin's suggestion to use this_cpu_read/write ] Cc: <stable@vger.kernel.org> # v3.3 Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
1 parent 8a4d0a6 commit c0525a6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

arch/x86/kernel/nmi.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,14 +444,16 @@ static inline void nmi_nesting_preprocess(struct pt_regs *regs)
444444
*/
445445
if (unlikely(is_debug_stack(regs->sp))) {
446446
debug_stack_set_zero();
447-
__get_cpu_var(update_debug_stack) = 1;
447+
this_cpu_write(update_debug_stack, 1);
448448
}
449449
}
450450

451451
static inline void nmi_nesting_postprocess(void)
452452
{
453-
if (unlikely(__get_cpu_var(update_debug_stack)))
453+
if (unlikely(this_cpu_read(update_debug_stack))) {
454454
debug_stack_reset();
455+
this_cpu_write(update_debug_stack, 0);
456+
}
455457
}
456458
#endif
457459

0 commit comments

Comments
 (0)