summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric W. Biederman2012-01-08 09:16:29 +0100
committerEric W. Biederman2012-01-25 01:37:55 +0100
commita15e20982e2fbb06e85da584a0f150784042c17d (patch)
tree63f33957dd0d87b6654be8653661f841ce5baf1d
parentsysctl: Move the implementation into fs/proc/proc_sysctl.c (diff)
downloadkernel-qcow2-linux-a15e20982e2fbb06e85da584a0f150784042c17d.tar.gz
kernel-qcow2-linux-a15e20982e2fbb06e85da584a0f150784042c17d.tar.xz
kernel-qcow2-linux-a15e20982e2fbb06e85da584a0f150784042c17d.zip
sysctl: Make the directories have nlink == 1
I goofed when I made sysctl directories have nlink == 0. nlink == 0 means the directory has been deleted. nlink == 1 meands a directory does not count subdirectories. Use the default nlink == 1 for sysctl directories. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
-rw-r--r--fs/proc/proc_sysctl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c
index 06e6f10ee8ec..f6aa75111b41 100644
--- a/fs/proc/proc_sysctl.c
+++ b/fs/proc/proc_sysctl.c
@@ -253,7 +253,6 @@ static struct inode *proc_sys_make_inode(struct super_block *sb,
inode->i_fop = &proc_sys_file_operations;
} else {
inode->i_mode |= S_IFDIR;
- clear_nlink(inode);
inode->i_op = &proc_sys_dir_operations;
inode->i_fop = &proc_sys_dir_file_operations;
}