diff options
author | Linus Torvalds | 2023-10-19 10:10:14 -0700 |
---|---|---|
committer | Linus Torvalds | 2023-10-19 10:10:14 -0700 |
commit | 189b756271e69bb6b9dfe4703b7f74855ab201b4 (patch) | |
tree | 08cdba3952bc7efaa3d8967415e6dc91168b2938 /tools/arch | |
parent | ea1cc20cd4ce55dd920a87a317c43da03ccea192 (diff) | |
parent | 31c65705a8cfa5f80d3824c686ab74b0409ee76d (diff) |
Merge tag 'seccomp-v6.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux
Pull seccomp fix from Kees Cook:
- Fix seccomp_unotify perf benchmark for 32-bit (Jiri Slaby)
* tag 'seccomp-v6.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
perf/benchmark: fix seccomp_unotify benchmark for 32-bit
Diffstat (limited to 'tools/arch')
-rw-r--r-- | tools/arch/x86/include/uapi/asm/unistd_32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/arch/x86/include/uapi/asm/unistd_32.h b/tools/arch/x86/include/uapi/asm/unistd_32.h index 4798f9d18fe8..9de35df1afc3 100644 --- a/tools/arch/x86/include/uapi/asm/unistd_32.h +++ b/tools/arch/x86/include/uapi/asm/unistd_32.h @@ -26,6 +26,6 @@ #ifndef __NR_setns #define __NR_setns 346 #endif -#ifdef __NR_seccomp +#ifndef __NR_seccomp #define __NR_seccomp 354 #endif |