Skip to content
Snippets Groups Projects
Commit 2571bb9d authored by Stephen Smalley's avatar Stephen Smalley Committed by Paul Moore
Browse files

selinux: annotate false positive data race to avoid KCSAN warnings


KCSAN flags the check of isec->initialized by
__inode_security_revalidate() as a data race. This is indeed a racy
check, but inode_doinit_with_dentry() will recheck with isec->lock held.
Annotate the check with the data_race() macro to silence the KCSAN false
positive.

Reported-by: default avatar <syzbot+319ed1769c0078257262@syzkaller.appspotmail.com>
Signed-off-by: default avatarStephen Smalley <stephen.smalley.work@gmail.com>
Signed-off-by: default avatarPaul Moore <paul@paul-moore.com>
parent fc328c86
No related branches found
No related tags found
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment