From ae3c859c1179498a4882b4bd69c2243aa6912332 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 26 Mar 2025 22:45:43 +0100 Subject: 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 --- internal/fusefrontend/node_api_check.go | 1 - 1 file changed, 1 deletion(-) (limited to 'internal/fusefrontend/node_api_check.go') 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)) -- cgit v1.2.3