From 0e3181a0b0ab36c750708324599a368f69bab601 Mon Sep 17 00:00:00 2001 From: Adam Conrad Date: Fri, 10 Apr 2015 12:49:28 -0600 Subject: [PATCH] Fix setns syscall number for ARM, this has been wrong all along. See: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=571503e10045c89af951962ea0bb783482663aad Signed-off-by: Adam Conrad --- system/setns_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/setns_linux.go b/system/setns_linux.go index beffd8dd8..eeeec4f55 100644 --- a/system/setns_linux.go +++ b/system/setns_linux.go @@ -14,7 +14,7 @@ var setNsMap = map[string]uintptr{ "linux/386": 346, "linux/arm64": 268, "linux/amd64": 308, - "linux/arm": 374, + "linux/arm": 375, "linux/ppc64": 350, "linux/ppc64le": 350, "linux/s390x": 339,