(ctx context.Context, op *fuseops.GetInodeAttributesOp)
| 41 | } |
| 42 | |
| 43 | func (fs *gatedFileSystem) GetInodeAttributes(ctx context.Context, op *fuseops.GetInodeAttributesOp) error { |
| 44 | if op.Inode != fuseops.RootInodeID { |
| 45 | if err := fs.wait(ctx); err != nil { |
| 46 | return err |
| 47 | } |
| 48 | } |
| 49 | return fs.next.GetInodeAttributes(ctx, op) |
| 50 | } |
| 51 | |
| 52 | func (fs *gatedFileSystem) SetInodeAttributes(ctx context.Context, op *fuseops.SetInodeAttributesOp) error { |
| 53 | if err := fs.wait(ctx); err != nil { |