summaryrefslogtreecommitdiffhomepage
path: root/pkg
diff options
context:
space:
mode:
authorBoyuan He <heboyuan@google.com>2020-09-11 23:28:13 +0000
committerAndrei Vagin <avagin@gmail.com>2020-09-16 12:19:30 -0700
commit8ab32686e274cbebbbb7a8794af40149d5ead7f2 (patch)
treecdfe74602ae158f1d57c2d5ec35e2a61e06e250c /pkg
parentdd103527298375edd3e14600ac762c9a3103ac37 (diff)
fuse_open: add padding to open out request
Diffstat (limited to 'pkg')
-rw-r--r--pkg/abi/linux/fuse.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkg/abi/linux/fuse.go b/pkg/abi/linux/fuse.go
index fdd22a13d..c2357a2ee 100644
--- a/pkg/abi/linux/fuse.go
+++ b/pkg/abi/linux/fuse.go
@@ -156,9 +156,9 @@ const (
// Constants relevant to FUSE operations.
const (
- FUSE_NAME_MAX = 1024
- FUSE_PAGE_SIZE = 4096
- FUSE_DIRENT_ALIGN = 8
+ FUSE_NAME_MAX = 1024
+ FUSE_PAGE_SIZE = 4096
+ FUSE_DIRENT_ALIGN = 8
)
// FUSEInitIn is the request sent by the kernel to the daemon,
@@ -402,6 +402,8 @@ type FUSEOpenOut struct {
// OpenFlag for the opened file.
OpenFlag uint32
+
+ _ uint32
}
// FUSE_READ flags, consistent with the ones in include/uapi/linux/fuse.h.