Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'selinux-pr-20260410' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux

Pull selinux update from Paul Moore:

- Annotate a known race condition to soothe KCSAN

* tag 'selinux-pr-20260410' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux:
selinux: annotate intentional data race in inode_doinit_with_dentry()

+2 -1
+2 -1
security/selinux/hooks.c
··· 1436 1436 struct dentry *dentry; 1437 1437 int rc = 0; 1438 1438 1439 - if (isec->initialized == LABEL_INITIALIZED) 1439 + /* check below is racy, but we will recheck with lock held */ 1440 + if (data_race(isec->initialized == LABEL_INITIALIZED)) 1440 1441 return 0; 1441 1442 1442 1443 spin_lock(&isec->lock);