1
0
Fork 0

selinux: check ss_initialized before revalidating an inode label

There is no point in trying to revalidate an inode's security label if
the security server is not yet initialized.

Signed-off-by: Paul Moore <paul@paul-moore.com>
steinar/wifi_calib_4_9_kernel
Paul Moore 2016-04-18 16:41:38 -04:00
parent 20cdef8d57
commit 1ac4247626
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ static int __inode_security_revalidate(struct inode *inode,
might_sleep_if(may_sleep);
if (isec->initialized != LABEL_INITIALIZED) {
if (ss_initialized && isec->initialized != LABEL_INITIALIZED) {
if (!may_sleep)
return -ECHILD;