(ctx context.Context, vfsroot, vd vfs.VirtualDentry, b *fspath.Builder)
| 395 | } |
| 396 | |
| 397 | func (fs *filesystem) PrependPath(ctx context.Context, vfsroot, vd vfs.VirtualDentry, b *fspath.Builder) error { |
| 398 | d := vd.Dentry().Impl().(*kernfs.Dentry) |
| 399 | inode := d.Inode().(*inode) |
| 400 | b.PrependComponent(fmt.Sprintf("host:[%d]", inode.ino)) |
| 401 | return vfs.PrependPathSyntheticError{} |
| 402 | } |
| 403 | |
| 404 | // MountOptions implements vfs.FilesystemImpl.MountOptions. |
| 405 | func (fs *filesystem) MountOptions() string { |
nothing calls this directly
no test coverage detected