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
7448b27b
Commit
7448b27b
authored
Oct 09, 2018
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: correct definition of unimplemented opcodes.
The CAP_POSIX_ACL and CAP_HANDLE_KILLPRIV opcodes were swapped.
parent
8538d70f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
fuse/print.go
fuse/print.go
+1
-1
fuse/types.go
fuse/types.go
+3
-3
No files found.
fuse/print.go
View file @
7448b27b
...
...
@@ -47,8 +47,8 @@ func init() {
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"
,
CAP_HANDLE_KILLPRIV
:
"CAP_PARALLEL_DIROPS"
,
}
releaseFlagNames
=
map
[
int64
]
string
{
RELEASE_FLUSH
:
"FLUSH"
,
...
...
fuse/types.go
View file @
7448b27b
...
...
@@ -199,8 +199,8 @@ const (
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
)
CAP_
POSIX_ACL
=
(
1
<<
19
)
CAP_
HANDLE_KILLPRIV
=
(
1
<<
20
)
)
type
InitIn
struct
{
...
...
@@ -387,7 +387,7 @@ const (
// NOTIFY_POLL = -1
NOTIFY_INVAL_INODE
=
-
2
NOTIFY_INVAL_ENTRY
=
-
3
NOTIFY_STORE
=
-
4
NOTIFY_STORE
=
-
4
// NOTIFY_RETRIEVE = -5
NOTIFY_INVAL_DELETE
=
-
6
...
...
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