
Support xcall prefetch. Jinjie Ruan (2): arm64: Introduce Xint software solution arm64: Add debugfs dir for xint Liao Chen (1): revert kpti bypass Yipeng Zou (5): arm64: Introduce xcall a faster svc exception handling arm64: Faster SVC exception handler with xcall xcall: introduce xcall_select to implement a custom xcall function eventpoll: xcall: Support sync and async prefetch data in epoll xcall: eventpoll: add tracepoint arch/Kconfig | 64 ++++++ arch/arm64/Kconfig | 2 + arch/arm64/configs/openeuler_defconfig | 4 + arch/arm64/include/asm/cpucaps.h | 2 + arch/arm64/include/asm/exception.h | 6 + arch/arm64/include/asm/syscall.h | 14 ++ arch/arm64/include/asm/syscall_wrapper.h | 25 +++ arch/arm64/kernel/asm-offsets.c | 3 + arch/arm64/kernel/cpufeature.c | 54 +++++ arch/arm64/kernel/entry-common.c | 22 ++ arch/arm64/kernel/entry.S | 183 ++++++++++++++- arch/arm64/kernel/sys.c | 20 ++ arch/arm64/kernel/syscall.c | 69 ++++++ drivers/irqchip/irq-gic-v3.c | 123 ++++++++++ fs/eventpoll.c | 275 ++++++++++++++++++++++- fs/open.c | 4 + fs/proc/base.c | 201 +++++++++++++++++ fs/read_write.c | 65 +++++- include/linux/fs.h | 30 +++ include/linux/hardirq.h | 5 + include/linux/irqchip/arm-gic-v3.h | 13 ++ include/linux/sched.h | 8 + include/linux/sched/task.h | 8 + include/linux/syscalls.h | 19 ++ include/trace/events/fs.h | 91 ++++++++ include/uapi/asm-generic/unistd.h | 11 + kernel/fork.c | 45 ++++ kernel/irq/debugfs.c | 33 +++ kernel/irq/internals.h | 18 ++ kernel/irq/irqdesc.c | 19 ++ kernel/irq/proc.c | 10 + kernel/softirq.c | 73 ++++++ kernel/sysctl.c | 36 +++ 33 files changed, 1548 insertions(+), 7 deletions(-) -- 2.34.1