Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 00398a00 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86/asm/entry: Move the vsyscall code to arch/x86/entry/vsyscall/



The vsyscall code is entry code too, so move it to arch/x86/entry/vsyscall/.

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: default avatarIngo Molnar <mingo@kernel.org>
parent 1f57d5d8
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
#
# Makefile for the x86 low level entry code
#
obj-y				:= entry_$(BITS).o thunk_$(BITS).o
obj-y				:= entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o

obj-y				+= vdso/
obj-y				+= vsyscall/

obj-$(CONFIG_IA32_EMULATION)	+= ia32entry.o
obj-$(CONFIG_IA32_EMULATION)	+= ia32entry.o syscall_32.o
+7 −0
Original line number Diff line number Diff line
#
# Makefile for the x86 low level vsyscall code
#
obj-y					:= vsyscall_gtod.o

obj-$(CONFIG_X86_VSYSCALL_EMULATION)	+= vsyscall_64.o vsyscall_emu_64.o
Loading