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
Kirill Smelkov
go-fuse
Commits
9c329cad
Commit
9c329cad
authored
Feb 24, 2019
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fuse: print INTERRUPT opcode
parent
fb9b7327
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
fuse/opcode.go
fuse/opcode.go
+1
-0
fuse/print.go
fuse/print.go
+4
-0
No files found.
fuse/opcode.go
View file @
9c329cad
...
...
@@ -721,6 +721,7 @@ func init() {
_OP_SETLK
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
LkIn
)(
ptr
)
},
_OP_SETLKW
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
LkIn
)(
ptr
)
},
_OP_RENAME2
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
RenameIn
)(
ptr
)
},
_OP_INTERRUPT
:
func
(
ptr
unsafe
.
Pointer
)
interface
{}
{
return
(
*
InterruptIn
)(
ptr
)
},
}
{
operationHandlers
[
op
]
.
DecodeIn
=
f
}
...
...
fuse/print.go
View file @
9c329cad
...
...
@@ -266,6 +266,10 @@ func (f *LinkIn) string() string {
return
fmt
.
Sprintf
(
"{Oldnodeid: %d}"
,
f
.
Oldnodeid
)
}
func
(
in
*
InterruptIn
)
string
()
string
{
return
fmt
.
Sprintf
(
"{ix %d}"
,
in
.
Unique
)
}
// Print pretty prints FUSE data types for kernel communication
func
Print
(
obj
interface
{})
string
{
t
,
ok
:=
obj
.
(
interface
{
...
...
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