Declaring arch-dependent syscalls for mips architecture This patch only depends on mips. Signed-off-by: Jaswinder Singh <jaswinder@xxxxxxxxxxxxx> --- arch/mips/kernel/signal.c | 2 +- arch/mips/kernel/syscall.c | 2 +- include/asm-mips/syscalls.h | 49 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+), 2 deletions(-) create mode 100644 include/asm-mips/syscalls.h diff --git a/arch/mips/kernel/signal.c b/arch/mips/kernel/signal.c index a4e106c..98f9c20 100644 --- a/arch/mips/kernel/signal.c +++ b/arch/mips/kernel/signal.c @@ -26,7 +26,7 @@ #include <linux/bitops.h> #include <asm/cacheflush.h> #include <asm/fpu.h> -#include <asm/sim.h> +#include <asm/syscalls.h> #include <asm/ucontext.h> #include <asm/cpu-features.h> #include <asm/war.h> diff --git a/arch/mips/kernel/syscall.c b/arch/mips/kernel/syscall.c index 343015a..81c44a1 100644 --- a/arch/mips/kernel/syscall.c +++ b/arch/mips/kernel/syscall.c @@ -35,7 +35,7 @@ #include <asm/cacheflush.h> #include <asm/asm-offsets.h> #include <asm/signal.h> -#include <asm/sim.h> +#include <asm/syscalls.h> #include <asm/shmparam.h> #include <asm/sysmips.h> #include <asm/uaccess.h> diff --git a/include/asm-mips/syscalls.h b/include/asm-mips/syscalls.h new file mode 100644 index 0000000..415a69b --- /dev/null +++ b/include/asm-mips/syscalls.h @@ -0,0 +1,49 @@ +/* + * syscalls.h - Linux syscall interfaces (arch-specific) + * + * Copyright (c) 2008 Jaswinder Singh + * + * This file is released under the GPLv2. + * See the file COPYING for more details. + */ + +#ifndef _ASM_MIPS_SYSCALLS_H +#define _ASM_MIPS_SYSCALLS_H + +#include <linux/compiler.h> +#include <linux/linkage.h> +#include <linux/types.h> +#include <linux/signal.h> +#include <linux/ptrace.h> +#include <asm/sim.h> + +/* kernel/signal.c */ +#ifdef CONFIG_TRAD_SIGNALS +asmlinkage int sys_sigsuspend(nabi_no_regargs struct pt_regs); +asmlinkage int sys_sigaction(int, const struct sigaction __user *, + struct sigaction __user *); +asmlinkage void sys_sigreturn(nabi_no_regargs struct pt_regs); +#endif + +asmlinkage int sys_rt_sigsuspend(nabi_no_regargs struct pt_regs); +asmlinkage int sys_sigaltstack(nabi_no_regargs struct pt_regs); +asmlinkage void sys_rt_sigreturn(nabi_no_regargs struct pt_regs); + +/* kernel/syscalls.c */ +asmlinkage unsigned long old_mmap(unsigned long, unsigned long, + int, int, int, off_t); + +asmlinkage unsigned long sys_mmap2(unsigned long, unsigned long, + unsigned long, unsigned long, + unsigned long, unsigned long); +asmlinkage int sys_execve(nabi_no_regargs struct pt_regs); +struct old_utsname; +asmlinkage int sys_uname(struct old_utsname __user *); +struct oldold_utsname; +asmlinkage int sys_olduname(struct oldold_utsname __user *); +asmlinkage int sys_set_thread_area(unsigned long); +asmlinkage int sys_ipc(unsigned int, int, int, + unsigned long, void __user *, long); +asmlinkage int sys_cachectl(char *, int, int); + +#endif /* _ASM_MIPS_SYSCALLS_H */ -- 1.5.5.1