Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 132643
b: refs/heads/master
c: df7f54c
h: refs/heads/master
i:
  132641: 5d12de3
  132639: 8cd2d7a
v: v3
  • Loading branch information
Eric Paris authored and James Morris committed Mar 9, 2009
1 parent e4e89a1 commit b8fc29e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: dd34b5d75a0405814a3de83f02a44ac297e81629
refs/heads/master: df7f54c012b92ec93d56b68547351dcdf8a163d3
12 changes: 9 additions & 3 deletions trunk/security/selinux/hooks.c
Original file line number Diff line number Diff line change
Expand Up @@ -1263,9 +1263,15 @@ static int inode_doinit_with_dentry(struct inode *inode, struct dentry *opt_dent
dentry = d_find_alias(inode);
}
if (!dentry) {
printk(KERN_WARNING "SELinux: %s: no dentry for dev=%s "
"ino=%ld\n", __func__, inode->i_sb->s_id,
inode->i_ino);
/*
* this is can be hit on boot when a file is accessed
* before the policy is loaded. When we load policy we
* may find inodes that have no dentry on the
* sbsec->isec_head list. No reason to complain as these
* will get fixed up the next time we go through
* inode_doinit with a dentry, before these inodes could
* be used again by userspace.
*/
goto out_unlock;
}

Expand Down

0 comments on commit b8fc29e

Please sign in to comment.