]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
fs: add setlease to generic_ro_fops and read-only filesystem directory operations
authorJeff Layton <jlayton@kernel.org>
Thu, 8 Jan 2026 17:12:56 +0000 (12:12 -0500)
committerChristian Brauner <brauner@kernel.org>
Mon, 12 Jan 2026 09:55:45 +0000 (10:55 +0100)
commitca4388bf1d9e1daa849ea0550b83a6566e65502a
treedcc957858e5ae54a30242c3958f5677278a052ae
parent7d42f2b1cc3a60a71784967384ddcf29fe3f35ed
fs: add setlease to generic_ro_fops and read-only filesystem directory operations

Add the setlease file_operation to generic_ro_fops, which covers file
operations for several read-only filesystems (BEFS, EFS, ISOFS, QNX4,
QNX6, CRAMFS, FREEVXFS). Also add setlease to the directory
file_operations for these filesystems. 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 these filesystems.

Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://patch.msgid.link/20260108-setlease-6-20-v1-1-ea4dec9b67fa@kernel.org
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Acked-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
Signed-off-by: Christian Brauner <brauner@kernel.org>
fs/befs/linuxvfs.c
fs/cramfs/inode.c
fs/efs/dir.c
fs/freevxfs/vxfs_lookup.c
fs/isofs/dir.c
fs/qnx4/dir.c
fs/qnx6/dir.c
fs/read_write.c