diff options
Diffstat (limited to 'weed/mount/weedfs.go')
| -rw-r--r-- | weed/mount/weedfs.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/weed/mount/weedfs.go b/weed/mount/weedfs.go index 072f562fc..25ef830ae 100644 --- a/weed/mount/weedfs.go +++ b/weed/mount/weedfs.go @@ -67,6 +67,7 @@ type WFS struct { concurrentWriters *util.LimitedConcurrentExecutor inodeToPath *InodeToPath fhmap *FileHandleToInode + dhmap *DirectoryHandleToInode } func NewSeaweedFileSystem(option *Option) *WFS { @@ -76,6 +77,7 @@ func NewSeaweedFileSystem(option *Option) *WFS { signature: util.RandomInt32(), inodeToPath: NewInodeToPath(), fhmap: NewFileHandleToInode(), + dhmap: NewDirectoryHandleToInode(), } wfs.root = Directory{ |
