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
6c85a939
Commit
6c85a939
authored
Jun 09, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed synchronization from Connection.Close.
parent
5ae9856c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
connection.go
connection.go
+2
-9
No files found.
connection.go
View file @
6c85a939
...
...
@@ -43,7 +43,6 @@ type Connection struct {
debugLogger
*
log
.
Logger
errorLogger
*
log
.
Logger
wrapped
*
bazilfuse
.
Conn
opsInFlight
sync
.
WaitGroup
// The context from which all op contexts inherit.
parentCtx
context
.
Context
...
...
@@ -217,9 +216,6 @@ func (c *Connection) beginOp(
bfReq
bazilfuse
.
Request
)
(
ctx
context
.
Context
)
{
reqID
:=
bfReq
.
Hdr
()
.
ID
// Note that the op is in flight.
c
.
opsInFlight
.
Add
(
1
)
// Choose a parent context.
ctx
=
c
.
maybeTraceByPID
(
int
(
bfReq
.
Hdr
()
.
Pid
))
...
...
@@ -267,9 +263,6 @@ func (c *Connection) finishOp(bfReq bazilfuse.Request) {
cancel
()
delete
(
c
.
cancelFuncs
,
reqID
)
}
// Decrement the in-flight counter.
c
.
opsInFlight
.
Done
()
}
// LOCKS_EXCLUDED(c.mu)
...
...
@@ -365,9 +358,9 @@ func (c *Connection) waitForReady() (err error) {
return
}
// Close the connection and wait for in-flight ops.
// Close the connection. Must not be called until operations that were read
// from the connection have been responded to.
func
(
c
*
Connection
)
close
()
(
err
error
)
{
err
=
c
.
wrapped
.
Close
()
c
.
opsInFlight
.
Wait
()
return
}
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