From 4a0966e79efb157b612e4f5867ec6f111571546c Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 12 Jul 2020 21:17:52 +0200 Subject: [PATCH] v2api: Setattr: fill `out` structure --- internal/fusefrontend/node.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/internal/fusefrontend/node.go b/internal/fusefrontend/node.go index 408bfea..48447bb 100644 --- a/internal/fusefrontend/node.go +++ b/internal/fusefrontend/node.go @@ -361,12 +361,15 @@ func (n *Node) Setattr(ctx context.Context, f fs.FileHandle, in *fuse.SetAttrIn, return errno } f2 := f.(*File2) + defer f2.Release(ctx) errno = syscall.Errno(f2.truncate(sz)) if errno != 0 { return errno } + return f2.Getattr(ctx, out) } - return 0 + + return n.Getattr(ctx, nil, out) } // StatFs - FUSE call. Returns information about the filesystem.