Commit df671c90 authored by Aaron Jacobs's avatar Aaron Jacobs

Fixed FileSystem.StatFS support.

parent 6d0c2608
......@@ -120,6 +120,9 @@ func (s *fileSystemServer) handleOp(
default:
err = fuse.ENOSYS
case *fuseops.StatFSOp:
err = s.fs.StatFS(ctx, typed)
case *fuseops.LookUpInodeOp:
err = s.fs.LookUpInode(ctx, typed)
......
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