From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751698AbdIAJKX (ORCPT ); Fri, 1 Sep 2017 05:10:23 -0400 Received: from terminus.zytor.com ([65.50.211.136]:40119 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751541AbdIAJKU (ORCPT ); Fri, 1 Sep 2017 05:10:20 -0400 Date: Fri, 1 Sep 2017 02:09:03 -0700 From: tip-bot for Ingo Molnar Message-ID: Cc: hpa@zytor.com, mingo@kernel.org, avagin@virtuozzo.com, gorcunov@openvz.org, linux-kernel@vger.kernel.org, tglx@linutronix.de, tipbot@zytor.com Reply-To: linux-kernel@vger.kernel.org, gorcunov@openvz.org, tipbot@zytor.com, tglx@linutronix.de, hpa@zytor.com, avagin@virtuozzo.com, mingo@kernel.org In-Reply-To: <20170901082630.xvyi5bwk6etmppqc@gmail.com> References: <20170901082630.xvyi5bwk6etmppqc@gmail.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/apic] x86/idt: Fix the X86_TRAP_BP gate Git-Commit-ID: c6ef89421e236d75693ae968d80d44a52409889d X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: c6ef89421e236d75693ae968d80d44a52409889d Gitweb: http://git.kernel.org/tip/c6ef89421e236d75693ae968d80d44a52409889d Author: Ingo Molnar AuthorDate: Fri, 1 Sep 2017 11:04:56 +0200 Committer: Thomas Gleixner CommitDate: Fri, 1 Sep 2017 11:04:56 +0200 x86/idt: Fix the X86_TRAP_BP gate Andrei Vagin reported a CRIU regression and bisected it back to: 90f6225fba0c ("x86/idt: Move IST stack based traps to table init") This table init conversion loses the system-gate property of X86_TRAP_BP and erroneously moves it from DPL3 to DPL0. Fix it. Reported-by: Andrei Vagin Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner Cc: dvlasenk@redhat.com Cc: linux-tip-commits@vger.kernel.org Cc: peterz@infradead.org Cc: brgerst@gmail.com Cc: rostedt@goodmis.org Cc: bp@alien8.de Cc: luto@kernel.org Cc: jpoimboe@redhat.com Cc: Cyrill Gorcunov Cc: torvalds@linux-foundation.org Cc: tip-bot for Jacob Shin Link: http://lkml.kernel.org/r/20170901082630.xvyi5bwk6etmppqc@gmail.com --- arch/x86/kernel/idt.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/arch/x86/kernel/idt.c b/arch/x86/kernel/idt.c index 61b490c..6107ee1 100644 --- a/arch/x86/kernel/idt.c +++ b/arch/x86/kernel/idt.c @@ -44,6 +44,10 @@ struct idt_data { #define ISTG(_vector, _addr, _ist) \ G(_vector, _addr, _ist, GATE_INTERRUPT, DPL0, __KERNEL_CS) +/* System interrupt gate with interrupt stack */ +#define SISTG(_vector, _addr, _ist) \ + G(_vector, _addr, _ist, GATE_INTERRUPT, DPL3, __KERNEL_CS) + /* Task gate */ #define TSKG(_vector, _gdt) \ G(_vector, NULL, DEFAULT_STACK, GATE_TASK, DPL0, _gdt << 3) @@ -181,7 +185,7 @@ gate_desc debug_idt_table[IDT_ENTRIES] __page_aligned_bss; static const __initdata struct idt_data ist_idts[] = { ISTG(X86_TRAP_DB, debug, DEBUG_STACK), ISTG(X86_TRAP_NMI, nmi, NMI_STACK), - ISTG(X86_TRAP_BP, int3, DEBUG_STACK), + SISTG(X86_TRAP_BP, int3, DEBUG_STACK), ISTG(X86_TRAP_DF, double_fault, DOUBLEFAULT_STACK), #ifdef CONFIG_X86_MCE ISTG(X86_TRAP_MC, &machine_check, MCE_STACK),