(ctx context.Context, op *fuseops.StatFSOp)
| 30 | } |
| 31 | |
| 32 | func (fs *gatedFileSystem) StatFS(ctx context.Context, op *fuseops.StatFSOp) error { |
| 33 | return fs.next.StatFS(ctx, op) |
| 34 | } |
| 35 | |
| 36 | func (fs *gatedFileSystem) LookUpInode(ctx context.Context, op *fuseops.LookUpInodeOp) error { |
| 37 | if err := fs.wait(ctx); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected