diff options
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 7b5d6816542b..6ae137c1bdf6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1844,7 +1844,8 @@ struct super_operations { | |||
1844 | */ | 1844 | */ |
1845 | #define __IS_FLG(inode, flg) ((inode)->i_sb->s_flags & (flg)) | 1845 | #define __IS_FLG(inode, flg) ((inode)->i_sb->s_flags & (flg)) |
1846 | 1846 | ||
1847 | #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY) | 1847 | static inline bool sb_rdonly(const struct super_block *sb) { return sb->s_flags & MS_RDONLY; } |
1848 | #define IS_RDONLY(inode) sb_rdonly((inode)->i_sb) | ||
1848 | #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) || \ | 1849 | #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) || \ |
1849 | ((inode)->i_flags & S_SYNC)) | 1850 | ((inode)->i_flags & S_SYNC)) |
1850 | #define IS_DIRSYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS|MS_DIRSYNC) || \ | 1851 | #define IS_DIRSYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS|MS_DIRSYNC) || \ |