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
eba79bc9
Commit
eba79bc9
authored
Nov 02, 2017
by
baul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add mount subtype documentation
parent
171218ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
mount_config.go
mount_config.go
+5
-2
No files found.
mount_config.go
View file @
eba79bc9
...
...
@@ -143,7 +143,10 @@ type MountConfig struct {
// documentation for this package.
Options
map
[
string
]
string
SubType
string
// Sets the filesystem type (third field in /etc/mtab). /etc/mtab and
// /proc/mounts will show the filesystem type as fuse.<Subtype>.
// If not set, /proc/mounts will show the filesystem type as fuse/fuseblk.
Subtype
string
}
// Create a map containing all of the key=value mount options to be given to
...
...
@@ -175,7 +178,7 @@ func (c *MountConfig) toMap() (opts map[string]string) {
opts
[
"fsname"
]
=
fsname
}
subtype
:=
c
.
Sub
T
ype
subtype
:=
c
.
Sub
t
ype
if
subtype
!=
""
{
opts
[
"subtype"
]
=
subtype
}
...
...
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