// SPDX-License-Identifier: GPL-2.0 #include <linux/linkage.h> #include <linux/errno.h> #include <asm/unistd.h> /* we can't #include <linux/syscalls.h> here, but tell gcc to not warn with -Wmissing-prototypes */ asmlinkage long sys_ni_syscall(void); /* * Non-implemented system calls get redirected here. */
asmlinkage long sys_ni_syscall(void) { return -ENOSYS; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Peter Chubb | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Matt Mackall | 238 | 21.17% | 3 | 3.95% |
Peter Chubb | 221 | 19.66% | 1 | 1.32% |
Iulia Manda | 70 | 6.23% | 1 | 1.32% |
Hyok S. Choi | 51 | 4.54% | 1 | 1.32% |
Kevin Cernekee | 35 | 3.11% | 1 | 1.32% |
Davide Libenzi | 33 | 2.94% | 4 | 5.26% |
Thomas Petazzoni | 30 | 2.67% | 2 | 2.63% |
Al Viro | 26 | 2.31% | 4 | 5.26% |
Ingo Molnar | 26 | 2.31% | 3 | 3.95% |
Stephen Rothwell | 25 | 2.22% | 4 | 5.26% |
Christopher Yeoh | 20 | 1.78% | 1 | 1.32% |
Ulrich Drepper | 20 | 1.78% | 5 | 6.58% |
Josh Triplett | 20 | 1.78% | 2 | 2.63% |
David S. Miller | 20 | 1.78% | 1 | 1.32% |
Anton Blanchard | 18 | 1.60% | 3 | 3.95% |
David Howells | 16 | 1.42% | 1 | 1.32% |
Dave Hansen | 16 | 1.42% | 1 | 1.32% |
Aneesh Kumar K.V | 16 | 1.42% | 2 | 2.63% |
Fabian Frederick | 15 | 1.33% | 2 | 2.63% |
Robert Love | 15 | 1.33% | 1 | 1.32% |
Christoph Lameter | 15 | 1.33% | 3 | 3.95% |
Heiko Carstens | 13 | 1.16% | 2 | 2.63% |
Kees Cook | 11 | 0.98% | 2 | 2.63% |
Eric Paris | 11 | 0.98% | 2 | 2.63% |
Arnaldo Carvalho de Melo | 10 | 0.89% | 1 | 1.32% |
Eric W. Biedermann | 10 | 0.89% | 1 | 1.32% |
Arnd Bergmann | 10 | 0.89% | 1 | 1.32% |
Alexey Ishchuk | 10 | 0.89% | 1 | 1.32% |
Adrian Bunk | 8 | 0.71% | 1 | 1.32% |
Mathieu Desnoyers | 6 | 0.53% | 1 | 1.32% |
David Drysdale | 6 | 0.53% | 1 | 1.32% |
Cyrill V. Gorcunov | 6 | 0.53% | 1 | 1.32% |
Alexei Starovoitov | 6 | 0.53% | 1 | 1.32% |
Paul Mackerras | 5 | 0.44% | 1 | 1.32% |
Wang Chen | 5 | 0.44% | 1 | 1.32% |
Randy Dunlap | 5 | 0.44% | 1 | 1.32% |
Vasily Tarasov | 5 | 0.44% | 1 | 1.32% |
Vivek Goyal | 5 | 0.44% | 1 | 1.32% |
David Herrmann | 5 | 0.44% | 1 | 1.32% |
Atsushi Nemoto | 5 | 0.44% | 1 | 1.32% |
Christoph Hellwig | 5 | 0.44% | 1 | 1.32% |
Andrew Morton | 5 | 0.44% | 1 | 1.32% |
Zach Brown | 5 | 0.44% | 1 | 1.32% |
Andrea Arcangeli | 5 | 0.44% | 1 | 1.32% |
Thomas Gleixner | 5 | 0.44% | 1 | 1.32% |
Eric B Munson | 5 | 0.44% | 1 | 1.32% |
Andrew Lutomirski | 5 | 0.44% | 1 | 1.32% |
Greg Kroah-Hartman | 1 | 0.09% | 1 | 1.32% |
Total | 1124 | 100.00% | 76 | 100.00% |