The patch titled Subject: fs/inode.c: inode_set_flags(): replace opencoded set_mask_bits() has been added to the -mm tree. Its filename is fs-inode_set_flags-replace-opencoded-set_mask_bits.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-inode_set_flags-replace-opencoded-set_mask_bits.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-inode_set_flags-replace-opencoded-set_mask_bits.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Vineet Gupta <vineet.gupta1@xxxxxxxxxxxx> Subject: fs/inode.c: inode_set_flags(): replace opencoded set_mask_bits() It seems that 5f16f3225b0624 and 00a1a053ebe5, both with same commitlog ("ext4: atomically set inode->i_flags in ext4_set_inode_flags()") introduced the set_mask_bits API, but somehow missed not using it in ext4 in the end. Also, set_mask_bits() is used in fs quite a bit and we can possibly come up with a generic llsc based implementation (w/o the cmpxchg loop) Link: http://lkml.kernel.org/r/1548275584-18096-3-git-send-email-vgupta@xxxxxxxxxxxx Signed-off-by: Vineet Gupta <vgupta@xxxxxxxxxxxx> Reviewed-by: Anthony Yznaga <anthony.yznaga@xxxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: Theodore Ts'o <tytso@xxxxxxx> Cc: Peter Zijlstra (Intel) <peterz@xxxxxxxxxxxxx> Cc: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Jani Nikula <jani.nikula@xxxxxxxxx> Cc: Miklos Szeredi <mszeredi@xxxxxxxxxx> Cc: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: Will Deacon <will.deacon@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/inode.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) --- a/fs/inode.c~fs-inode_set_flags-replace-opencoded-set_mask_bits +++ a/fs/inode.c @@ -2096,14 +2096,8 @@ EXPORT_SYMBOL(inode_dio_wait); void inode_set_flags(struct inode *inode, unsigned int flags, unsigned int mask) { - unsigned int old_flags, new_flags; - WARN_ON_ONCE(flags & ~mask); - do { - old_flags = READ_ONCE(inode->i_flags); - new_flags = (old_flags & ~mask) | flags; - } while (unlikely(cmpxchg(&inode->i_flags, old_flags, - new_flags) != old_flags)); + set_mask_bits(&inode->i_flags, mask, flags); } EXPORT_SYMBOL(inode_set_flags); _ Patches currently in -mm which might be from vineet.gupta1@xxxxxxxxxxxx are coredump-replace-opencoded-set_mask_bits.patch fs-inode_set_flags-replace-opencoded-set_mask_bits.patch bitopsh-set_mask_bits-to-return-old-value.patch