diff options
author | Jakob Unterwurzacher | 2020-07-12 12:59:01 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2020-07-12 12:59:01 +0200 |
commit | 6196a5b5fe78f7a5b8e38c00e656f70c1592e1df (patch) | |
tree | 6bb2eb3058080f589a29d7104a09c2c6f3a1162e /internal/fusefrontend/node.go | |
parent | d539a4c21474a5d45bb3b8432d7b6f07664e61bd (diff) |
v2api: File2: implement Release, Read, Write, Fsync, Flush, Allocate
Fortunately, this just means fixing up the function
signatures.
Diffstat (limited to 'internal/fusefrontend/node.go')
-rw-r--r-- | internal/fusefrontend/node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/fusefrontend/node.go b/internal/fusefrontend/node.go index ee2d8d9..6cdc552 100644 --- a/internal/fusefrontend/node.go +++ b/internal/fusefrontend/node.go @@ -286,7 +286,7 @@ func (n *Node) Setattr(ctx context.Context, f fs.FileHandle, in *fuse.SetAttrIn, return errno } f2 = f.(*File2) - defer f2.Release() + defer f2.Release(ctx) } return f2.Setattr(ctx, in, out) } |