Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 712
b: refs/heads/master
c: bcf88e1
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Drake authored and Linus Torvalds committed May 1, 2005
1 parent 7ba6fc0 commit 55739a9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 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: 7f261b5f0dccd53ed3a9a95b55c36e24a698a92a
refs/heads/master: bcf88e1163623e8e8ef2ba7feface9c826a890c9
12 changes: 10 additions & 2 deletions trunk/fs/proc/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -1800,8 +1800,12 @@ struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct
inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
inode->i_op = &proc_tgid_base_inode_operations;
inode->i_fop = &proc_tgid_base_operations;
inode->i_nlink = 3;
inode->i_flags|=S_IMMUTABLE;
#ifdef CONFIG_SECURITY
inode->i_nlink = 5;
#else
inode->i_nlink = 4;
#endif

dentry->d_op = &pid_base_dentry_operations;

Expand Down Expand Up @@ -1855,8 +1859,12 @@ static struct dentry *proc_task_lookup(struct inode *dir, struct dentry * dentry
inode->i_mode = S_IFDIR|S_IRUGO|S_IXUGO;
inode->i_op = &proc_tid_base_inode_operations;
inode->i_fop = &proc_tid_base_operations;
inode->i_nlink = 3;
inode->i_flags|=S_IMMUTABLE;
#ifdef CONFIG_SECURITY
inode->i_nlink = 4;
#else
inode->i_nlink = 3;
#endif

dentry->d_op = &pid_base_dentry_operations;

Expand Down

0 comments on commit 55739a9

Please sign in to comment.