Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jacobsa-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
jacobsa-fuse
Commits
c9971434
Commit
c9971434
authored
Jul 27, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug.
parent
82289ebd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
ops.go
ops.go
+7
-5
No files found.
ops.go
View file @
c9971434
...
...
@@ -48,16 +48,18 @@ func kernelResponse(
msg
=
b
.
Bytes
()
// Fill in the rest of the header.
h
:=
b
.
OutHeader
()
h
.
Unique
=
fuseID
h
.
Len
=
uint32
(
len
(
msg
))
// Fill in the rest of the header, if a response is required.
if
msg
!=
nil
{
h
:=
b
.
OutHeader
()
h
.
Unique
=
fuseID
h
.
Len
=
uint32
(
len
(
msg
))
}
return
}
// Like kernelResponse, but assumes the user replied with a nil error to the
// op.
// op.
Returns a nil response if no response is required.
func
kernelResponseForOp
(
op
interface
{},
protocol
fusekernel
.
Protocol
)
(
b
buffer
.
OutMessage
)
{
...
...
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