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
e4cd605c
Commit
e4cd605c
authored
Jun 22, 2015
by
Aaron Jacobs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated package fuseutil.
parent
11eadaed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
fuseutil/file_system.go
fuseutil/file_system.go
+0
-4
fuseutil/not_implemented_file_system.go
fuseutil/not_implemented_file_system.go
+0
-6
No files found.
fuseutil/file_system.go
View file @
e4cd605c
...
...
@@ -40,7 +40,6 @@ var fRandomDelays = flag.Bool(
// See NotImplementedFileSystem for a convenient way to embed default
// implementations for methods you don't care about.
type
FileSystem
interface
{
Init
(
*
fuseops
.
InitOp
)
error
LookUpInode
(
*
fuseops
.
LookUpInodeOp
)
error
GetInodeAttributes
(
*
fuseops
.
GetInodeAttributesOp
)
error
SetInodeAttributes
(
*
fuseops
.
SetInodeAttributesOp
)
error
...
...
@@ -128,9 +127,6 @@ func (s *fileSystemServer) handleOp(op fuseops.Op) {
default
:
err
=
fuse
.
ENOSYS
case
*
fuseops
.
InitOp
:
err
=
s
.
fs
.
Init
(
typed
)
case
*
fuseops
.
LookUpInodeOp
:
err
=
s
.
fs
.
LookUpInode
(
typed
)
...
...
fuseutil/not_implemented_file_system.go
View file @
e4cd605c
...
...
@@ -28,12 +28,6 @@ type NotImplementedFileSystem struct {
var
_
FileSystem
=
&
NotImplementedFileSystem
{}
func
(
fs
*
NotImplementedFileSystem
)
Init
(
op
*
fuseops
.
InitOp
)
(
err
error
)
{
err
=
fuse
.
ENOSYS
return
}
func
(
fs
*
NotImplementedFileSystem
)
LookUpInode
(
op
*
fuseops
.
LookUpInodeOp
)
(
err
error
)
{
err
=
fuse
.
ENOSYS
...
...
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