Commit 11878520 authored by Aaron Jacobs's avatar Aaron Jacobs

fsImpl.OpenDir

parent 7f614f1f
......@@ -308,3 +308,17 @@ func (fs *fsImpl) OpenFile(
return
}
func (fs *fsImpl) OpenDir(
op *fuseops.OpenDirOp) {
var err error
defer fuseutil.RespondToOp(op, &err)
fs.mu.Lock()
defer fs.mu.Unlock()
// Verify that the inode has not been forgotten.
_ = fs.findInodeByID(op.Inode)
return
}
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