fs/inode.c: inode_set_flags(): replace opencoded set_mask_bits()
authorVineet Gupta <[email protected]>
Tue, 5 Mar 2019 23:41:52 +0000 (15:41 -0800)
committerLinus Torvalds <[email protected]>
Wed, 6 Mar 2019 05:07:13 +0000 (21:07 -0800)
It seems that commits 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/[email protected]
Signed-off-by: Vineet Gupta <[email protected]>
Reviewed-by: Anthony Yznaga <[email protected]>
Cc: Alexander Viro <[email protected]>
Cc: Theodore Ts'o <[email protected]>
Cc: Peter Zijlstra (Intel) <[email protected]>
Cc: Chris Wilson <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: Miklos Szeredi <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Will Deacon <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/inode.c

index 73432e64f8746179e94bcd580984d78f40da823a..e9d97add2b36c9731a8d877e2fd32c7c2e1a382d 100644 (file)
@@ -2093,14 +2093,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);