diff options
author | Christian Brauner <[email protected]> | 2024-08-22 11:30:58 +0200 |
---|---|---|
committer | Christian Brauner <[email protected]> | 2024-08-30 08:22:38 +0200 |
commit | 71ff58ce3428b2471efae5b00594e892b285c97c (patch) | |
tree | 4126ea0fb342fd4e6468b1018b554061e783109e | |
parent | 029c3f27fe84c5fd29d49a99cc5176433bf12209 (diff) |
fs: s/__u32/u32/ for s_fsnotify_mask
The underscore variants are for uapi whereas the non-underscore variants
are for in-kernel consumers.
Link: https://lore.kernel.org/r/20240822-anwerben-nutzung-1cd6c82a565f@brauner
Reviewed-by: Jan Kara <[email protected]>
Signed-off-by: Christian Brauner <[email protected]>
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 8f8d274929d7..cda1f2545ea0 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -1266,7 +1266,7 @@ struct super_block { time64_t s_time_min; time64_t s_time_max; #ifdef CONFIG_FSNOTIFY - __u32 s_fsnotify_mask; + u32 s_fsnotify_mask; struct fsnotify_sb_info *s_fsnotify_info; #endif |