Skip to content

Commit

Permalink
Upgrade to FUSE protocol 7.26
Browse files Browse the repository at this point in the history
Feature `InitHandleKillPriv` will likely never be supported, as it's
already deprecated in favor of an upcoming
`FUSE_HANDLE_KILLPRIV_V2` (protocol 7.33).

`InitPosixACL` support is tracked at
<#291>.
  • Loading branch information
tv42 committed Dec 10, 2022
1 parent a93b180 commit 4296bd3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fuse_kernel.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const (
protoVersionMinMajor = 7
protoVersionMinMinor = 17
protoVersionMaxMajor = 7
protoVersionMaxMinor = 25
protoVersionMaxMinor = 26
)

const (
Expand Down Expand Up @@ -296,6 +296,9 @@ const (
InitWritebackCache InitFlags = 1 << 16
InitNoOpenSupport InitFlags = 1 << 17
InitParallelDirOps InitFlags = 1 << 18
// Deprecated: Use `InitHandleKillPriv2`.
InitHandleKillPriv InitFlags = 1 << 19
InitPosixACL InitFlags = 1 << 20

// Deprecated: Not used, OS X remnant.
InitCaseSensitive InitFlags = 1 << 29
Expand Down Expand Up @@ -330,6 +333,8 @@ var initFlagNames = []flagName{
{uint32(InitWritebackCache), "InitWritebackCache"},
{uint32(InitNoOpenSupport), "InitNoOpenSupport"},
{uint32(InitParallelDirOps), "InitParallelDirOps"},
{uint32(InitHandleKillPriv), "InitHandleKillPriv"},
{uint32(InitPosixACL), "InitPosixACL"},
}

func (fl InitFlags) String() string {
Expand Down

0 comments on commit 4296bd3

Please sign in to comment.