From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751334AbdH1GxS (ORCPT ); Mon, 28 Aug 2017 02:53:18 -0400 Received: from Galois.linutronix.de ([146.0.238.70]:45697 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751180AbdH1GxO (ORCPT ); Mon, 28 Aug 2017 02:53:14 -0400 Message-Id: <20170828064715.802987421@linutronix.de> User-Agent: quilt/0.63-1 Date: Mon, 28 Aug 2017 08:47:15 +0200 From: Thomas Gleixner To: LKML Cc: Ingo Molnar , Peter Anvin , Peter Zijlstra , Andy Lutomirski , Borislav Petkov , Steven Rostedt Subject: [patch V3 00/44] x86: Cleanup IDT code Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This is the 3rd iteration of the series. The previous version can be found here: http://lkml.kernel.org/r/20170825214648.264521964@linutronix.de The series applies on top of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/apic and is available as a git branch from git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git WIP.x86/apic Changes since V2: - Addressed the review comments - Addressed the fallout reported by kbuild robot - Picked up acks and reviewed by tags Thanks, tglx ---- arch/x86/boot/compressed/eboot.c | 8 arch/x86/entry/entry_32.S | 20 - arch/x86/entry/entry_64.S | 26 -- arch/x86/entry/vdso/vma.c | 2 arch/x86/include/asm/desc.h | 248 +++----------------- arch/x86/include/asm/desc_defs.h | 122 +++++----- arch/x86/include/asm/entry_arch.h | 17 - arch/x86/include/asm/hw_irq.h | 20 - arch/x86/include/asm/irq.h | 4 arch/x86/include/asm/irq_work.h | 8 arch/x86/include/asm/segment.h | 4 arch/x86/include/asm/trace/common.h | 16 + arch/x86/include/asm/trace/exceptions.h | 8 arch/x86/include/asm/trace/irq_vectors.h | 51 +++- arch/x86/include/asm/traps.h | 10 arch/x86/include/asm/xen/hypercall.h | 6 arch/x86/kernel/Makefile | 3 arch/x86/kernel/apic/apic.c | 70 +---- arch/x86/kernel/apic/vector.c | 2 arch/x86/kernel/cpu/common.c | 9 arch/x86/kernel/cpu/mcheck/mce_amd.c | 16 - arch/x86/kernel/cpu/mcheck/therm_throt.c | 20 - arch/x86/kernel/cpu/mcheck/threshold.c | 16 - arch/x86/kernel/cpu/mshyperv.c | 9 arch/x86/kernel/eisa.c | 18 + arch/x86/kernel/head32.c | 4 arch/x86/kernel/head64.c | 6 arch/x86/kernel/head_32.S | 42 --- arch/x86/kernel/idt.c | 367 +++++++++++++++++++++++++++++++ arch/x86/kernel/irq.c | 40 +-- arch/x86/kernel/irq_work.c | 20 - arch/x86/kernel/irqinit.c | 102 -------- arch/x86/kernel/kvm.c | 4 arch/x86/kernel/machine_kexec_32.c | 14 - arch/x86/kernel/reboot.c | 4 arch/x86/kernel/setup.c | 4 arch/x86/kernel/setup_percpu.c | 9 arch/x86/kernel/smp.c | 81 +----- arch/x86/kernel/tls.c | 2 arch/x86/kernel/tracepoint.c | 57 +--- arch/x86/kernel/traps.c | 107 --------- arch/x86/kvm/vmx.c | 2 arch/x86/math-emu/fpu_entry.c | 11 arch/x86/math-emu/fpu_system.h | 48 +++- arch/x86/math-emu/get_address.c | 17 - arch/x86/mm/fault.c | 49 +--- arch/x86/xen/enlighten_pv.c | 14 - drivers/xen/events/events_base.c | 6 48 files changed, 760 insertions(+), 983 deletions(-)