[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20260112130121.25965-1-jlayton@kernel.org>
Date: Mon, 12 Jan 2026 08:01:21 -0500
From: Jeff Layton <jlayton@...nel.org>
To: brauner@...nel.org
Cc: miklos@...redi.hu,
linux-fsdevel@...r.kernel.org,
jack@...e.com,
viro@...iv.linux.org.uk,
linux-kernel@...r.kernel.org
Subject: [PATCH] fuse: add setlease file operation
Add the setlease file_operation to fuse_file_operations, pointing to
generic_setlease. A future patch will change the default behavior to
reject lease attempts with -EINVAL when there is no setlease file
operation defined. Add generic_setlease to retain the ability to set
leases on this filesystem.
Signed-off-by: Jeff Layton <jlayton@...nel.org>
---
As Jan pointed out in review, this patch is also needed in the
vfs-7.0.leases branch, as I missed FUSE. Can you drop this patch on top
of that branch, preferably ahead of the patch that changes
kernel_setlease()? Let me know if you'd rather I resend the whole pile.
fs/fuse/file.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/fuse/file.c b/fs/fuse/file.c
index 01bc894e9c2b..2956f6cb598d 100644
--- a/fs/fuse/file.c
+++ b/fs/fuse/file.c
@@ -3177,6 +3177,7 @@ static const struct file_operations fuse_file_operations = {
.poll = fuse_file_poll,
.fallocate = fuse_file_fallocate,
.copy_file_range = fuse_copy_file_range,
+ .setlease = generic_setlease,
};
static const struct address_space_operations fuse_file_aops = {
--
2.52.0
Powered by blists - more mailing lists