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
4f3be4ed
Commit
4f3be4ed
authored
Apr 29, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print opcodes symbolically.
parent
ec5217de
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
fuse/fuse.go
fuse/fuse.go
+5
-1
fuse/opcode.go
fuse/opcode.go
+4
-0
No files found.
fuse/fuse.go
View file @
4f3be4ed
...
@@ -251,7 +251,11 @@ func (me *MountState) chopMessage(req *request) *operationHandler {
...
@@ -251,7 +251,11 @@ func (me *MountState) chopMessage(req *request) *operationHandler {
handler
:=
getHandler
(
req
.
inHeader
.
Opcode
)
handler
:=
getHandler
(
req
.
inHeader
.
Opcode
)
if
handler
==
nil
||
handler
.
Func
==
nil
{
if
handler
==
nil
||
handler
.
Func
==
nil
{
log
.
Printf
(
"Unknown opcode %v"
,
req
.
inHeader
.
Opcode
)
msg
:=
"Unimplemented"
if
handler
==
nil
{
msg
=
"Unknown"
}
log
.
Printf
(
"%s opcode %v"
,
msg
,
req
.
inHeader
.
Opcode
)
req
.
status
=
ENOSYS
req
.
status
=
ENOSYS
return
handler
return
handler
}
}
...
...
fuse/opcode.go
View file @
4f3be4ed
...
@@ -273,6 +273,10 @@ func operationName(opcode Opcode) string {
...
@@ -273,6 +273,10 @@ func operationName(opcode Opcode) string {
return
h
.
Name
return
h
.
Name
}
}
func
(
op
Opcode
)
String
()
string
{
return
operationName
(
op
)
}
func
getHandler
(
o
Opcode
)
*
operationHandler
{
func
getHandler
(
o
Opcode
)
*
operationHandler
{
if
o
>=
OPCODE_COUNT
{
if
o
>=
OPCODE_COUNT
{
return
nil
return
nil
...
...
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