Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/asm/entry: Move entry_64.S and entry_32.S to arch/x86/entry/

Create a new directory hierarchy for the low level x86 entry code:

arch/x86/entry/*

This will host all the low level glue that is currently scattered
all across arch/x86/.

Start with entry_64.S and entry_32.S.

Cc: Borislav Petkov <bp@alien8.de>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

+8 -1
+3
arch/x86/Kbuild
··· 1 + 2 + obj-y += entry/ 3 + 1 4 obj-$(CONFIG_KVM) += kvm/ 2 5 3 6 # Xen paravirtualization support
+4
arch/x86/entry/Makefile
··· 1 + # 2 + # Makefile for the x86 low level entry code 3 + # 4 + obj-y := entry_$(BITS).o
+1 -1
arch/x86/kernel/Makefile
··· 22 22 23 23 CFLAGS_irq.o := -I$(src)/../include/asm/trace 24 24 25 - obj-y := process_$(BITS).o signal.o entry_$(BITS).o 25 + obj-y := process_$(BITS).o signal.o 26 26 obj-y += traps.o irq.o irq_$(BITS).o dumpstack_$(BITS).o 27 27 obj-y += time.o ioport.o ldt.o dumpstack.o nmi.o 28 28 obj-y += setup.o x86_init.o i8259.o irqinit.o jump_label.o
arch/x86/kernel/entry_32.S arch/x86/entry/entry_32.S
arch/x86/kernel/entry_64.S arch/x86/entry/entry_64.S