aboutgitcodebugslistschat
path: root/fwd.c
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2024-04-11 17:34:04 +0200
committerStefano Brivio <sbrivio@redhat.com>2024-04-11 17:34:04 +0200
commit5d5208b67d4e4dfb4098495620591c73ac3de50d (patch)
tree06d39eeffcd277896833656601fe381970e9b188 /fwd.c
parent954589b64ba55e0d85be39dc8d7b1260f0ea6f1a (diff)
downloadpasst-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar.gz
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar.bz2
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar.lz
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar.xz
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.tar.zst
passt-5d5208b67d4e4dfb4098495620591c73ac3de50d.zip
treewide: Compilers' name for armv6l and armv7l is "arm"
When I switched from 'uname -m' to 'gcc -dumpmachine' to fetch the architecture name for, among others, seccomp.sh, I didn't realise that "armv6l" and "armv7l" are just Linux kernel names -- compilers just call that "arm". Fix the "syscalls" annotation we use to define seccomp profiles accordingly, otherwise pasta will be terminated on sigreturn() on armv6l and armv7l. Fixes: 213c397492bd ("passt, pasta: Run-time selection of AVX2 build") Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'fwd.c')
-rw-r--r--fwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fwd.c b/fwd.c
index a235d13..b3d5a37 100644
--- a/fwd.c
+++ b/fwd.c
@@ -38,7 +38,7 @@
* @exclude: Bitmap of ports to exclude from setting (and clear)
*
* #syscalls:pasta lseek
- * #syscalls:pasta ppc64le:_llseek ppc64:_llseek armv6l:_llseek armv7l:_llseek
+ * #syscalls:pasta ppc64le:_llseek ppc64:_llseek arm:_llseek
*/
static void procfs_scan_listen(int fd, unsigned int lstate,
uint8_t *map, const uint8_t *exclude)