aboutsummaryrefslogtreecommitdiff
path: root/src/syscall/sockcmsg_unix_other.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/sockcmsg_unix_other.go')
-rw-r--r--src/syscall/sockcmsg_unix_other.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/syscall/sockcmsg_unix_other.go b/src/syscall/sockcmsg_unix_other.go
index 3aaf7c3616..40f03142a6 100644
--- a/src/syscall/sockcmsg_unix_other.go
+++ b/src/syscall/sockcmsg_unix_other.go
@@ -32,6 +32,10 @@ func cmsgAlignOf(salen int) int {
if runtime.GOARCH == "arm" {
salign = 8
}
+ // NetBSD aarch64 requires 128-bit alignment.
+ if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
+ salign = 16
+ }
}
return (salen + salign - 1) & ^(salign - 1)