Contributors: 23
Author Tokens Token Proportion Commits Commit Proportion
Andrew Morton 55 38.73% 2 6.90%
Paul Mackerras 17 11.97% 3 10.34%
Al Viro 9 6.34% 1 3.45%
Arnd Bergmann 9 6.34% 3 10.34%
Christoph Hellwig 6 4.23% 2 6.90%
David Howells 4 2.82% 1 3.45%
Linus Torvalds (pre-git) 4 2.82% 1 3.45%
Michal Suchanek 3 2.11% 1 3.45%
Linus Torvalds 3 2.11% 1 3.45%
Andreas Schwab 3 2.11% 1 3.45%
Rohan McLure 3 2.11% 1 3.45%
Andi Kleen 3 2.11% 1 3.45%
Christophe Leroy 3 2.11% 1 3.45%
Michael Ellerman 3 2.11% 1 3.45%
Guo Ren 3 2.11% 1 3.45%
Catalin Marinas 3 2.11% 1 3.45%
Thomas Gleixner 2 1.41% 1 3.45%
Ingo Molnar 2 1.41% 1 3.45%
Christopher Yeoh 2 1.41% 1 3.45%
Becky Bruce 2 1.41% 1 3.45%
David Woodhouse 1 0.70% 1 3.45%
Firoz Khan 1 0.70% 1 3.45%
Rashmica Gupta 1 0.70% 1 3.45%
Total 142 29


/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * This file contains the system call numbers.
 */
#ifndef _ASM_POWERPC_UNISTD_H_
#define _ASM_POWERPC_UNISTD_H_

#include <uapi/asm/unistd.h>

#define NR_syscalls	__NR_syscalls

#ifndef __ASSEMBLY__

#include <linux/types.h>
#include <linux/compiler.h>
#include <linux/linkage.h>

#define __ARCH_WANT_NEW_STAT
#define __ARCH_WANT_OLD_READDIR
#define __ARCH_WANT_STAT64
#define __ARCH_WANT_SYS_ALARM
#define __ARCH_WANT_SYS_GETHOSTNAME
#define __ARCH_WANT_SYS_IPC
#define __ARCH_WANT_SYS_PAUSE
#define __ARCH_WANT_SYS_SIGNAL
#define __ARCH_WANT_SYS_TIME32
#define __ARCH_WANT_SYS_UTIME32
#define __ARCH_WANT_SYS_WAITPID
#define __ARCH_WANT_SYS_SOCKETCALL
#define __ARCH_WANT_SYS_FADVISE64
#define __ARCH_WANT_SYS_GETPGRP
#define __ARCH_WANT_SYS_LLSEEK
#define __ARCH_WANT_SYS_NICE
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
#define __ARCH_WANT_SYS_OLD_UNAME
#define __ARCH_WANT_SYS_OLDUMOUNT
#define __ARCH_WANT_SYS_SIGPENDING
#define __ARCH_WANT_SYS_SIGPROCMASK
#ifdef CONFIG_PPC32
#define __ARCH_WANT_OLD_STAT
#define __ARCH_WANT_SYS_OLD_SELECT
#endif
#ifdef CONFIG_PPC64
#define __ARCH_WANT_SYS_TIME
#define __ARCH_WANT_SYS_UTIME
#define __ARCH_WANT_SYS_NEWFSTATAT
#define __ARCH_WANT_COMPAT_STAT
#define __ARCH_WANT_COMPAT_FALLOCATE
#define __ARCH_WANT_COMPAT_SYS_SENDFILE
#endif
#define __ARCH_WANT_SYS_FORK
#define __ARCH_WANT_SYS_VFORK
#define __ARCH_WANT_SYS_CLONE
#define __ARCH_WANT_SYS_CLONE3

#endif		/* __ASSEMBLY__ */
#endif /* _ASM_POWERPC_UNISTD_H_ */