fuse_open: add padding to open out request

This commit is contained in:
Boyuan He
2020-09-16 12:19:30 -07:00
committed by Andrei Vagin
parent dd10352729
commit 8ab32686e2
+5 -3
View File
@@ -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.