Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
jacobsa-fuse
Commits
baa7c29f
Commit
baa7c29f
authored
9 years ago
by
Aaron Jacobs
Browse files
Options
Download
Email Patches
Plain Diff
Use the mount helper in Mount.
parent
d2b9accc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
mounted_file_system.go
mounted_file_system.go
+9
-11
No files found.
mounted_file_system.go
View file @
baa7c29f
...
...
@@ -17,8 +17,6 @@ package fuse
import
(
"fmt"
"github.com/jacobsa/fuse/internal/fuseshim"
"golang.org/x/net/context"
)
...
...
@@ -74,10 +72,11 @@ func Mount(
joinStatusAvailable
:
make
(
chan
struct
{}),
}
// Open a fuseshim connection.
bfConn
,
err
:=
fuseshim
.
Mount
(
mfs
.
dir
,
config
.
bazilfuseOptions
()
...
)
// Begin the mounting process, which will continue in the background.
ready
:=
make
(
chan
error
,
1
)
dev
,
err
:=
mount
(
dir
,
config
,
ready
)
if
err
!=
nil
{
err
=
fmt
.
Errorf
(
"
fuseshim.M
ount: %v"
,
err
)
err
=
fmt
.
Errorf
(
"
m
ount: %v"
,
err
)
return
}
...
...
@@ -87,15 +86,14 @@ func Mount(
opContext
=
context
.
Background
()
}
// Create
our own
Connection object wrapping
i
t.
// Create
a
Connection object wrapping t
he device
.
connection
,
err
:=
newConnection
(
opContext
,
config
.
DebugLogger
,
config
.
ErrorLogger
,
bfConn
)
dev
)
if
err
!=
nil
{
bfConn
.
Close
()
err
=
fmt
.
Errorf
(
"newConnection: %v"
,
err
)
return
}
...
...
@@ -107,9 +105,9 @@ func Mount(
close
(
mfs
.
joinStatusAvailable
)
}()
// Wait for the
connection to say it is ready
.
if
err
=
connection
.
waitForR
eady
()
;
err
!=
nil
{
err
=
fmt
.
Errorf
(
"
WaitForReady
: %v"
,
err
)
// Wait for the
mount process to complete
.
if
err
=
<-
r
eady
;
err
!=
nil
{
err
=
fmt
.
Errorf
(
"
mount (background)
: %v"
,
err
)
return
}
...
...
This diff is collapsed.
Click to expand it.
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