aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86_64/kernel/signal.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/signal.c b/arch/x86_64/kernel/signal.c
index 4ff0f0117a09..7760224cdfe3 100644
--- a/arch/x86_64/kernel/signal.c
+++ b/arch/x86_64/kernel/signal.c
@@ -368,6 +368,18 @@ handle_signal(unsigned long sig, siginfo_t *info, struct k_sigaction *ka,
368 } 368 }
369 } 369 }
370 370
371 /*
372 * If TF is set due to a debugger (PT_DTRACE), clear the TF
373 * flag so that register information in the sigcontext is
374 * correct.
375 */
376 if (unlikely(regs->eflags & TF_MASK)) {
377 if (likely(current->ptrace & PT_DTRACE)) {
378 current->ptrace &= ~PT_DTRACE;
379 regs->eflags &= ~TF_MASK;
380 }
381 }
382
371#ifdef CONFIG_IA32_EMULATION 383#ifdef CONFIG_IA32_EMULATION
372 if (test_thread_flag(TIF_IA32)) { 384 if (test_thread_flag(TIF_IA32)) {
373 if (ka->sa.sa_flags & SA_SIGINFO) 385 if (ka->sa.sa_flags & SA_SIGINFO)