fs: claw back a few FMODE_* bits
authorChristian Brauner <brauner@kernel.org>
Thu, 28 Mar 2024 12:27:24 +0000 (13:27 +0100)
committerChristian Brauner <brauner@kernel.org>
Sun, 7 Apr 2024 11:49:02 +0000 (13:49 +0200)
commit210a03c9d51aa0e6e6f06980116e3256da8d4c48
tree04084320e97c4e3991b2ea3d36959f5651893e67
parent68d6f4f3fbd9b1baae53e7cf33fb3362b5a21494
fs: claw back a few FMODE_* bits

There's a bunch of flags that are purely based on what the file
operations support while also never being conditionally set or unset.
IOW, they're not subject to change for individual files. Imho, such
flags don't need to live in f_mode they might as well live in the fops
structs itself. And the fops struct already has that lonely
mmap_supported_flags member. We might as well turn that into a generic
fop_flags member and move a few flags from FMODE_* space into FOP_*
space. That gets us four FMODE_* bits back and the ability for new
static flags that are about file ops to not have to live in FMODE_*
space but in their own FOP_* space. It's not the most beautiful thing
ever but it gets the job done. Yes, there'll be an additional pointer
chase but hopefully that won't matter for these flags.

I suspect there's a few more we can move into there and that we can also
redirect a bunch of new flag suggestions that follow this pattern into
the fop_flags field instead of f_mode.

Link: https://lore.kernel.org/r/20240328-gewendet-spargel-aa60a030ef74@brauner
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
Reviewed-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Christian Brauner <brauner@kernel.org>
12 files changed:
block/bdev.c
block/fops.c
drivers/dax/device.c
fs/btrfs/file.c
fs/ext4/file.c
fs/f2fs/file.c
fs/read_write.c
fs/xfs/xfs_file.c
include/linux/fs.h
io_uring/io_uring.c
io_uring/rw.c
mm/mmap.c