Commit 4e25045b authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Use DefaultRawFuseFileSystem for unimplemented PathFileSystemConnector.

parent dfbf9db0
......@@ -106,6 +106,8 @@ type PathFileSystemConnectorOptions struct {
}
type PathFileSystemConnector struct {
DefaultRawFuseFileSystem
// Protects the hashmap, its contents and the nextFreeInode counter.
lock sync.RWMutex
......@@ -764,18 +766,3 @@ func (me *PathFileSystemConnector) ListXAttr(header *InHeader) (data []byte, cod
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
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment