2022-04-05 15:13:05 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
|
|
|
#define __SYSCALL_COMPAT
|
|
|
|
|
|
|
|
#include <linux/compat.h>
|
|
|
|
#include <linux/syscalls.h>
|
|
|
|
#include <asm-generic/mman-common.h>
|
|
|
|
#include <asm-generic/syscalls.h>
|
|
|
|
#include <asm/syscall.h>
|
|
|
|
|
2024-04-24 09:14:39 +02:00
|
|
|
#define __SYSCALL_WITH_COMPAT(nr, native, compat) __SYSCALL(nr, compat)
|
|
|
|
|
2022-04-05 15:13:05 +08:00
|
|
|
#undef __SYSCALL
|
2023-07-10 18:35:46 +00:00
|
|
|
#define __SYSCALL(nr, call) asmlinkage long __riscv_##call(const struct pt_regs *);
|
2024-04-24 09:14:39 +02:00
|
|
|
#include <asm/syscall_table_32.h>
|
2023-07-10 18:35:46 +00:00
|
|
|
|
|
|
|
#undef __SYSCALL
|
|
|
|
#define __SYSCALL(nr, call) [nr] = __riscv_##call,
|
2022-04-05 15:13:05 +08:00
|
|
|
|
|
|
|
asmlinkage long compat_sys_rt_sigreturn(void);
|
|
|
|
|
|
|
|
void * const compat_sys_call_table[__NR_syscalls] = {
|
2023-07-10 18:35:46 +00:00
|
|
|
[0 ... __NR_syscalls - 1] = __riscv_sys_ni_syscall,
|
2024-04-24 09:14:39 +02:00
|
|
|
#include <asm/syscall_table_32.h>
|
2022-04-05 15:13:05 +08:00
|
|
|
};
|