Report symlink sizes from FUSE mount for snapshot dir

Fixes #3667.
This commit is contained in:
Jason Lenz 2022-03-17 22:21:47 -05:00
parent fdc738fb70
commit 2b1932a258
1 changed files with 2 additions and 0 deletions

View File

@ -440,6 +440,8 @@ func (l *snapshotLink) Readlink(ctx context.Context, req *fuse.ReadlinkRequest)
func (l *snapshotLink) Attr(ctx context.Context, a *fuse.Attr) error {
a.Inode = l.inode
a.Mode = os.ModeSymlink | 0777
a.Size = uint64(len(l.target))
a.Blocks = 1 + a.Size/blockSize
a.Uid = l.root.uid
a.Gid = l.root.gid
a.Atime = l.snapshot.Time