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

x86/asm/entry: Move the compat syscall entry code to arch/x86/entry/

Move the ia32entry.S file over into arch/x86/entry/.

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>

+5 -2
+4 -1
arch/x86/entry/Makefile
··· 1 1 # 2 2 # Makefile for the x86 low level entry code 3 3 # 4 - obj-y := entry_$(BITS).o 4 + obj-y := entry_$(BITS).o 5 + 6 + obj-$(CONFIG_IA32_EMULATION) += ia32entry.o 7 +
+1 -1
arch/x86/ia32/Makefile
··· 2 2 # Makefile for the ia32 kernel emulation subsystem. 3 3 # 4 4 5 - obj-$(CONFIG_IA32_EMULATION) := ia32entry.o sys_ia32.o ia32_signal.o 5 + obj-$(CONFIG_IA32_EMULATION) := sys_ia32.o ia32_signal.o 6 6 7 7 obj-$(CONFIG_IA32_AOUT) += ia32_aout.o 8 8
arch/x86/ia32/ia32entry.S arch/x86/entry/ia32entry.S