We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f114040 commit 2d605a3Copy full SHA for 2d605a3
arch/arm/include/uapi/asm/unistd.h
@@ -412,6 +412,7 @@
412
#define __NR_seccomp (__NR_SYSCALL_BASE+383)
413
#define __NR_getrandom (__NR_SYSCALL_BASE+384)
414
#define __NR_memfd_create (__NR_SYSCALL_BASE+385)
415
+#define __NR_bpf (__NR_SYSCALL_BASE+386)
416
417
/*
418
* The following SWIs are ARM private.
arch/arm/kernel/calls.S
@@ -395,6 +395,7 @@
395
CALL(sys_seccomp)
396
CALL(sys_getrandom)
397
/* 385 */ CALL(sys_memfd_create)
398
+ CALL(sys_bpf)
399
#ifndef syscalls_counted
400
.equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls
401
#define syscalls_counted
0 commit comments