From b57a199eb44dff5af3bdb7866b818544e1d270ee Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 14 Mar 2026 16:35:16 -0400 Subject: authfs: implement Rclunk and Ropen --- back/cmd/authfs/root.go | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'back/cmd/authfs/root.go') diff --git a/back/cmd/authfs/root.go b/back/cmd/authfs/root.go index 5d56045..7a0fcbd 100644 --- a/back/cmd/authfs/root.go +++ b/back/cmd/authfs/root.go @@ -29,3 +29,10 @@ func (r *RootDir) Qid() (p9.QID, error) { Path: rootQidPath, }, nil } + +func (r *RootDir) Open(mode p9.Mode) error { + if mode != p9.OREAD { + return ErrPerm + } + return nil +} -- cgit v1.2.3