mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Move sys_ni_syscall() to kernel/process.c, and remove the now empty entry/common.c No functional changes. Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Ingo Molnar <mingo@kernel.org> Reviewed-by: Sohil Mehta <sohil.mehta@intel.com> Cc: Andy Lutomirski <luto@kernel.org> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Link: https://lore.kernel.org/r/20250314151220.862768-6-brgerst@gmail.com
26 lines
684 B
Makefile
26 lines
684 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the x86 low level entry code
|
|
#
|
|
|
|
KASAN_SANITIZE := n
|
|
UBSAN_SANITIZE := n
|
|
KCOV_INSTRUMENT := n
|
|
|
|
CFLAGS_REMOVE_syscall_32.o = $(CC_FLAGS_FTRACE)
|
|
CFLAGS_REMOVE_syscall_64.o = $(CC_FLAGS_FTRACE)
|
|
|
|
CFLAGS_syscall_32.o += -fno-stack-protector
|
|
CFLAGS_syscall_64.o += -fno-stack-protector
|
|
|
|
obj-y := entry.o entry_$(BITS).o syscall_$(BITS).o
|
|
|
|
obj-y += vdso/
|
|
obj-y += vsyscall/
|
|
|
|
obj-$(CONFIG_PREEMPTION) += thunk.o
|
|
CFLAGS_entry_fred.o += -fno-stack-protector
|
|
CFLAGS_REMOVE_entry_fred.o += -pg $(CC_FLAGS_FTRACE)
|
|
obj-$(CONFIG_X86_FRED) += entry_64_fred.o entry_fred.o
|
|
|
|
obj-$(CONFIG_IA32_EMULATION) += entry_64_compat.o syscall_32.o
|