diff options
author | James Morris <jmorris@namei.org> | 2006-03-22 03:09:16 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-22 10:54:07 -0500 |
commit | 40e906f8224966ef65756cc75f9999ea2de0523d (patch) | |
tree | 6e72a24a93d1f36ae5d89e81d2020cd3d8a0bd9b /security | |
parent | 68bdcf28a8d245208a02dc9caa60fe13cc1b0ea8 (diff) |
[PATCH] selinuxfs cleanups: fix hard link count
Fix the hard link count for selinuxfs directories, which are currently one
short.
Signed-off-by: James Morris <jmorris@namei.org>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/selinuxfs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/selinux/selinuxfs.c b/security/selinux/selinuxfs.c index cc782083d71f..4f7cda67ac0a 100644 --- a/security/selinux/selinuxfs.c +++ b/security/selinux/selinuxfs.c | |||
@@ -1181,6 +1181,8 @@ static int sel_make_dir(struct super_block *sb, struct dentry *dentry) | |||
1181 | } | 1181 | } |
1182 | inode->i_op = &simple_dir_inode_operations; | 1182 | inode->i_op = &simple_dir_inode_operations; |
1183 | inode->i_fop = &simple_dir_operations; | 1183 | inode->i_fop = &simple_dir_operations; |
1184 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ | ||
1185 | inode->i_nlink++; | ||
1184 | d_add(dentry, inode); | 1186 | d_add(dentry, inode); |
1185 | out: | 1187 | out: |
1186 | return ret; | 1188 | return ret; |
@@ -1222,6 +1224,8 @@ static int sel_fill_super(struct super_block * sb, void * data, int silent) | |||
1222 | goto out; | 1224 | goto out; |
1223 | inode->i_op = &simple_dir_inode_operations; | 1225 | inode->i_op = &simple_dir_inode_operations; |
1224 | inode->i_fop = &simple_dir_operations; | 1226 | inode->i_fop = &simple_dir_operations; |
1227 | /* directory inodes start off with i_nlink == 2 (for "." entry) */ | ||
1228 | inode->i_nlink++; | ||
1225 | d_add(dentry, inode); | 1229 | d_add(dentry, inode); |
1226 | bool_dir = dentry; | 1230 | bool_dir = dentry; |
1227 | ret = sel_make_bools(); | 1231 | ret = sel_make_bools(); |