OSDN Git Service

x86/asm/entry: Move entry_64.S and entry_32.S to arch/x86/entry/
authorIngo Molnar <mingo@kernel.org>
Wed, 3 Jun 2015 11:37:36 +0000 (13:37 +0200)
committerIngo Molnar <mingo@kernel.org>
Wed, 3 Jun 2015 16:51:28 +0000 (18:51 +0200)
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>
arch/x86/Kbuild
arch/x86/entry/Makefile [new file with mode: 0644]
arch/x86/entry/entry_32.S [moved from arch/x86/kernel/entry_32.S with 100% similarity]
arch/x86/entry/entry_64.S [moved from arch/x86/kernel/entry_64.S with 100% similarity]
arch/x86/kernel/Makefile

index 3942f74..b9b8162 100644 (file)
@@ -1,3 +1,6 @@
+
+obj-y += entry/
+
 obj-$(CONFIG_KVM) += kvm/
 
 # Xen paravirtualization support
diff --git a/arch/x86/entry/Makefile b/arch/x86/entry/Makefile
new file mode 100644 (file)
index 0000000..fa7e0cf
--- /dev/null
@@ -0,0 +1,4 @@
+#
+# Makefile for the x86 low level entry code
+#
+obj-y                  := entry_$(BITS).o
index 9bcd0b5..9d3ee05 100644 (file)
@@ -22,7 +22,7 @@ KASAN_SANITIZE_dumpstack_$(BITS).o := n
 
 CFLAGS_irq.o := -I$(src)/../include/asm/trace
 
-obj-y                  := process_$(BITS).o signal.o entry_$(BITS).o
+obj-y                  := process_$(BITS).o signal.o
 obj-y                  += traps.o irq.o irq_$(BITS).o dumpstack_$(BITS).o
 obj-y                  += time.o ioport.o ldt.o dumpstack.o nmi.o
 obj-y                  += setup.o x86_init.o i8259.o irqinit.o jump_label.o