diff options
author | Guo Ren <guoren@linux.alibaba.com> | 2021-01-04 03:37:07 +0000 |
---|---|---|
committer | Guo Ren <guoren@linux.alibaba.com> | 2021-01-12 09:52:41 +0800 |
commit | 87f3248cdb9aeac35129cb4337ce541a945cb35c (patch) | |
tree | e5bf46123eb160c318adaad9bdb9e490e714a109 /arch/csky/kernel/Makefile | |
parent | e26db7ad9c319496bcbe6043d9d4e1d1da3ec613 (diff) |
csky: Reconstruct VDSO framework
Reconstruct vdso framework to support future vsyscall,
vgettimeofday features. These are very important features to reduce
system calls into the kernel for performance improvement.
The patch is reference RISC-V's
Signed-off-by: Guo Ren <guoren@linux.alibaba.com>
Cc: Palmer Dabbelt <palmerdabbelt@google.com>
Diffstat (limited to 'arch/csky/kernel/Makefile')
-rw-r--r-- | arch/csky/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/csky/kernel/Makefile b/arch/csky/kernel/Makefile index 37f37c0e934a..6c0f36010ed0 100644 --- a/arch/csky/kernel/Makefile +++ b/arch/csky/kernel/Makefile @@ -1,7 +1,7 @@ # SPDX-License-Identifier: GPL-2.0-only extra-y := head.o vmlinux.lds -obj-y += entry.o atomic.o signal.o traps.o irq.o time.o vdso.o +obj-y += entry.o atomic.o signal.o traps.o irq.o time.o vdso.o vdso/ obj-y += power.o syscall.o syscall_table.o setup.o obj-y += process.o cpu-probe.o ptrace.o stacktrace.o obj-y += probes/ |