Commit 442ffd32 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

Drop DefaultRawFuseDir.

parent f7febb40
......@@ -159,19 +159,6 @@ func (me *DefaultFuseFile) Fsync(*FsyncIn) (code Status) {
return ENOSYS
}
////////////////////////////////////////////////////////////////
//
func (me *DefaultRawFuseDir) ReadDir(input *ReadIn) (*DirEntryList, Status) {
return nil, ENOSYS
}
func (me *DefaultRawFuseDir) ReleaseDir() {
}
func (me *DefaultRawFuseDir) FsyncDir(input *FsyncIn) (code Status) {
return ENOSYS
}
////////////////////////////////////////////////////////////////
// DefaultPathFilesystem
......
......@@ -68,8 +68,6 @@ func (me *DirEntryList) Bytes() []byte {
type FuseDir struct {
stream chan DirEntry
leftOver DirEntry
DefaultRawFuseDir
}
func (me *FuseDir) inode(name string) uint64 {
......
......@@ -596,7 +596,6 @@ type PathFilesystem interface {
// Include this struct in your implementation to inherit default nop
// implementations.
type DefaultRawFuseDir struct{}
type DefaultPathFilesystem struct{}
type DefaultFuseFile struct{}
type DefaultRawFuseFileSystem struct{}
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