public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] inode_has_no_xattr() does not use proper sync
@ 2018-11-27 14:54 Alexander Lochmann
  2018-12-05  9:01 ` Jan Kara
  0 siblings, 1 reply; 3+ messages in thread
From: Alexander Lochmann @ 2018-11-27 14:54 UTC (permalink / raw)
  To: Jan Kara; +Cc: Horst Schirmeier, linux-ext4


[-- Attachment #1.1: Type: text/plain, Size: 933 bytes --]


inode.i_flags is modified without any proper
synchronisation used. inode_set_flags() is now used.

Found by LockDoc (Alexander Lochmann, Horst Schirmeier and Olaf
Spinczyk)

Signed-off-by: Alexander Lochmann <alexander.lochmann@tu-dortmund.de>
Signed-off-by: Horst Schirmeier <horst.schirmeier@tu-dortmund.de>
---
 include/linux/fs.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/fs.h b/include/linux/fs.h
index c95c0807471f..54f3a21668a6 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -3446,7 +3446,7 @@ static inline int check_sticky(struct inode *dir,
struct inode *inode)
 static inline void inode_has_no_xattr(struct inode *inode)
 {
 	if (!is_sxid(inode->i_mode) && (inode->i_sb->s_flags & SB_NOSEC))
-		inode->i_flags |= S_NOSEC;
+		inode_set_flags(inode, S_NOSEC, S_NOSEC);
 }

 static inline bool is_root_inode(struct inode *inode)
-- 
2.19.1


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-05 11:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-27 14:54 [PATCH] inode_has_no_xattr() does not use proper sync Alexander Lochmann
2018-12-05  9:01 ` Jan Kara
2018-12-05 11:43   ` Alexander Lochmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox