Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Levin Zimmermann
go-fuse
Commits
96a198bf
Commit
96a198bf
authored
Jul 15, 2017
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: add capability flags up to POSIX_ACL
parent
4f10e248
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
fuse/print.go
fuse/print.go
+3
-0
fuse/types.go
fuse/types.go
+3
-0
No files found.
fuse/print.go
View file @
96a198bf
...
...
@@ -46,6 +46,9 @@ func init() {
CAP_ASYNC_DIO
:
"ASYNC_DIO"
,
CAP_WRITEBACK_CACHE
:
"WRITEBACK_CACHE"
,
CAP_NO_OPEN_SUPPORT
:
"NO_OPEN_SUPPORT"
,
CAP_PARALLEL_DIROPS
:
"CAP_PARALLEL_DIROPS"
,
CAP_HANDLE_KILLPRIV
:
"CAP_PARALLEL_DIROPS"
,
CAP_POSIX_ACL
:
"CAP_POSIX_ACL"
,
}
releaseFlagNames
=
map
[
int64
]
string
{
RELEASE_FLUSH
:
"FLUSH"
,
...
...
fuse/types.go
View file @
96a198bf
...
...
@@ -194,6 +194,9 @@ const (
CAP_ASYNC_DIO
=
(
1
<<
15
)
CAP_WRITEBACK_CACHE
=
(
1
<<
16
)
CAP_NO_OPEN_SUPPORT
=
(
1
<<
17
)
CAP_PARALLEL_DIROPS
=
(
1
<<
18
)
CAP_HANDLE_KILLPRIV
=
(
1
<<
19
)
CAP_POSIX_ACL
=
(
1
<<
20
)
)
type
InitIn
struct
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment