diff options
Diffstat (limited to 'kernel/sys_ni.c')
-rw-r--r-- | kernel/sys_ni.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/sys_ni.c b/kernel/sys_ni.c index 27dad2967387..6dab68a286c6 100644 --- a/kernel/sys_ni.c +++ b/kernel/sys_ni.c @@ -16,6 +16,13 @@ asmlinkage long sys_ni_syscall(void) return -ENOSYS; } +long __attribute__ ((weak)) arch_call_syscall(unsigned int nr, + long arg0, long arg1, long arg2, + long arg3, long arg4, long arg5) +{ + return -ENOSYS; +} + cond_syscall(sys_nfsservctl); cond_syscall(sys_quotactl); cond_syscall(sys32_quotactl); |