diff options
author | Jakob Unterwurzacher | 2025-03-26 22:45:43 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2025-04-26 11:03:55 +0200 |
commit | ae3c859c1179498a4882b4bd69c2243aa6912332 (patch) | |
tree | 5b40f6ecc0071afc8301cb68a4a52e9cd3847d86 /internal/fusefrontend/node_api_check.go | |
parent | 7309412215551052dc4dbb6c137c568ccbd02430 (diff) |
fusefrontend: switch to new go-fuse dir api
go-fuse 2.6.0, specifically,
https://github.com/hanwen/go-fuse/commit/e885cea8d4d40a5a9bb92bc3cef7193f2a316f59
introduced a new, file-based directory API while
deprecating the old one.
Switch to the new API.
xfstests generic/035 now passes.
Fixes https://github.com/hanwen/go-fuse/issues/55
Diffstat (limited to 'internal/fusefrontend/node_api_check.go')
-rw-r--r-- | internal/fusefrontend/node_api_check.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/fusefrontend/node_api_check.go b/internal/fusefrontend/node_api_check.go index 0f60c74..37d4293 100644 --- a/internal/fusefrontend/node_api_check.go +++ b/internal/fusefrontend/node_api_check.go @@ -7,7 +7,6 @@ import ( // Check that we have implemented the fs.Node* interfaces var _ = (fs.NodeGetattrer)((*Node)(nil)) var _ = (fs.NodeLookuper)((*Node)(nil)) -var _ = (fs.NodeReaddirer)((*Node)(nil)) var _ = (fs.NodeCreater)((*Node)(nil)) var _ = (fs.NodeMkdirer)((*Node)(nil)) var _ = (fs.NodeRmdirer)((*Node)(nil)) |