diff options
| author | Christian Brauner <brauner@kernel.org> | 2026-06-16 16:08:20 +0200 |
|---|---|---|
| committer | Christian Brauner <brauner@kernel.org> | 2026-06-29 10:31:51 +0200 |
| commit | abc410fc6d8ff4af5b37038c2db5e3b451dd2244 (patch) | |
| tree | fdcc3eaae7a8e69e505e5566e0b413ed881bb10d /include/linux/types.h | |
| parent | 9c486f28994fdfc1a83f5f60129402cf4379957b (diff) | |
| download | linux-next-abc410fc6d8ff4af5b37038c2db5e3b451dd2244.tar.gz linux-next-abc410fc6d8ff4af5b37038c2db5e3b451dd2244.zip | |
fs, block: move blk_mode_t and fop_flags_t into <linux/types.h>
blk_mode_t and fop_flags_t are both plain 'unsigned int __bitwise' flag
typedefs, exactly like the gfp_t, slab_flags_t and fmode_t that already
live in <linux/types.h>. Move them there so they are available
everywhere without having to drag in a subsystem header.
Reviewed-by: Jan Kara <jack@suse.cz>
Link: https://patch.msgid.link/20260616-work-super-bdev_holder_global-v2-4-7df6b864028e@kernel.org
Tested-by: syzbot@syzkaller.appspotmail.com
Signed-off-by: Christian Brauner (Amutable) <brauner@kernel.org>
Diffstat (limited to 'include/linux/types.h')
| -rw-r--r-- | include/linux/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/types.h b/include/linux/types.h index 93166b0b0617..bc5dda2a3d86 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -163,6 +163,8 @@ typedef u32 dma_addr_t; typedef unsigned int __bitwise gfp_t; typedef unsigned int __bitwise slab_flags_t; typedef unsigned int __bitwise fmode_t; +typedef unsigned int __bitwise blk_mode_t; +typedef unsigned int __bitwise fop_flags_t; #ifdef CONFIG_PHYS_ADDR_T_64BIT typedef u64 phys_addr_t; |
