|
@ -9,6 +9,7 @@ func (wfs *WFS) AcquireHandle(inode uint64, uid, gid uint32) (fileHandle *FileHa |
|
|
var entry *filer_pb.Entry |
|
|
var entry *filer_pb.Entry |
|
|
_, _, entry, status = wfs.maybeReadEntry(inode) |
|
|
_, _, entry, status = wfs.maybeReadEntry(inode) |
|
|
if status == fuse.OK { |
|
|
if status == fuse.OK { |
|
|
|
|
|
// need to AcquireFileHandle again to ensure correct handle counter
|
|
|
fileHandle = wfs.fhmap.AcquireFileHandle(wfs, inode, entry) |
|
|
fileHandle = wfs.fhmap.AcquireFileHandle(wfs, inode, entry) |
|
|
} |
|
|
} |
|
|
return |
|
|
return |
|
|