Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-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
Levin Zimmermann
go-fuse
Commits
4e25045b
Commit
4e25045b
authored
Mar 26, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use DefaultRawFuseFileSystem for unimplemented PathFileSystemConnector.
parent
dfbf9db0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
15 deletions
+2
-15
fuse/pathfilesystem.go
fuse/pathfilesystem.go
+2
-15
No files found.
fuse/pathfilesystem.go
View file @
4e25045b
...
@@ -106,6 +106,8 @@ type PathFileSystemConnectorOptions struct {
...
@@ -106,6 +106,8 @@ type PathFileSystemConnectorOptions struct {
}
}
type
PathFileSystemConnector
struct
{
type
PathFileSystemConnector
struct
{
DefaultRawFuseFileSystem
// Protects the hashmap, its contents and the nextFreeInode counter.
// Protects the hashmap, its contents and the nextFreeInode counter.
lock
sync
.
RWMutex
lock
sync
.
RWMutex
...
@@ -764,18 +766,3 @@ func (me *PathFileSystemConnector) ListXAttr(header *InHeader) (data []byte, cod
...
@@ -764,18 +766,3 @@ func (me *PathFileSystemConnector) ListXAttr(header *InHeader) (data []byte, cod
return
b
.
Bytes
(),
code
return
b
.
Bytes
(),
code
}
}
////////////////////////////////////////////////////////////////
// unimplemented.
func
(
me
*
PathFileSystemConnector
)
Bmap
(
header
*
InHeader
,
input
*
BmapIn
)
(
out
*
BmapOut
,
code
Status
)
{
return
nil
,
ENOSYS
}
func
(
me
*
PathFileSystemConnector
)
Ioctl
(
header
*
InHeader
,
input
*
IoctlIn
)
(
out
*
IoctlOut
,
code
Status
)
{
return
nil
,
ENOSYS
}
func
(
me
*
PathFileSystemConnector
)
Poll
(
header
*
InHeader
,
input
*
PollIn
)
(
out
*
PollOut
,
code
Status
)
{
return
nil
,
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