On Apr 20, 2018, at 11:03 AM, Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> wrote: > > On Fri, Apr 20, 2018 at 5:35 AM, David Howells <dhowells@xxxxxxxxxx> wrote: >> In do_mount() when the MS_* flags are being converted to MNT_* flags, >> MS_RDONLY got accidentally convered to SB_RDONLY. > > Applied. > > I guess they have the same value (1). How did you notice? Do you have > some patches that turn the kernel flags into a bitwise type? Or did > you just happen on it manually? Making s_flags and mnt_flags differently-named enums would help make this problem more obvious (and some compilers might complain if used incorrectly). That also makes it more clear what kind of flags are being passed to do_mount(), rather than "unsigned long flags". Even while looking at the code for this, I see that s_flags is being used incorrectly with MS_* flags all over the place: static inline bool sb_rdonly(const struct super_block *sb) { return sb->s_flags & MS_RDONLY; } void inode_add_lru(struct inode *inode) { if (!(inode->i_state & (I_DIRTY_ALL | I_SYNC | I_FREEING | I_WILL_FREE)) && !atomic_read(&inode->i_count) && inode->i_sb->s_flags & MS_ACTIVE) inode_lru_list_add(inode); } A quick grep showed 243 lines matching "->s_flags.*MS_". Cheers, Andreas
Attachment:
signature.asc
Description: Message signed with OpenPGP