// SPDX-License-Identifier: GPL-2.0 #define __32bit_syscall_numbers__ #include <asm/unistd.h> #include "kernel.h" unsigned int sparc32_dir_class[] = { #include <asm-generic/audit_dir_write.h> ~0U }; unsigned int sparc32_chattr_class[] = { #include <asm-generic/audit_change_attr.h> ~0U }; unsigned int sparc32_write_class[] = { #include <asm-generic/audit_write.h> ~0U }; unsigned int sparc32_read_class[] = { #include <asm-generic/audit_read.h> ~0U }; unsigned int sparc32_signal_class[] = { #include <asm-generic/audit_signal.h> ~0U };
int sparc32_classify_syscall(unsigned int syscall) { switch(syscall) { case __NR_open: return 2; case __NR_openat: return 3; case __NR_socketcall: return 4; case __NR_execve: return 5; default: return 1; } }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 42 | 97.67% | 1 | 50.00% |
Joe Perches | 1 | 2.33% | 1 | 50.00% |
Total | 43 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Al Viro | 92 | 77.97% | 1 | 16.67% |
Amy Griffis | 12 | 10.17% | 1 | 16.67% |
Joe Perches | 6 | 5.08% | 1 | 16.67% |
Stephen Rothwell | 4 | 3.39% | 1 | 16.67% |
Sam Ravnborg | 3 | 2.54% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 0.85% | 1 | 16.67% |
Total | 118 | 100.00% | 6 | 100.00% |