fuse: Return EPERM rather than ENOSYS from link()

link() is documented to return EPERM when a filesystem doesn't support
the operation, return that instead.

Link: https://github.com/libfuse/libfuse/issues/925
Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
This commit is contained in:
Matt Johnston 2025-02-14 09:17:53 +08:00 committed by Miklos Szeredi
parent 841c7b812c
commit 8344213571

View File

@ -1137,6 +1137,8 @@ static int fuse_link(struct dentry *entry, struct inode *newdir,
else if (err == -EINTR)
fuse_invalidate_attr(inode);
if (err == -ENOSYS)
err = -EPERM;
return err;
}