[PATCH] fuse: add setlease file operation

From: Jeff Layton

Date: Mon Jan 12 2026 - 08:01:23 EST


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@xxxxxxxxxx>
---
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