aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/proc/base.c6
-rw-r--r--fs/proc/inode.c2
-rw-r--r--fs/proc/internal.h4
-rw-r--r--include/linux/proc_fs.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c
index fa0e6bee40fa..9562df760901 100644
--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -297,7 +297,7 @@ static int proc_fd_link(struct inode *inode, struct dentry **dentry, struct vfsm
297 struct task_struct *task = proc_task(inode); 297 struct task_struct *task = proc_task(inode);
298 struct files_struct *files; 298 struct files_struct *files;
299 struct file *file; 299 struct file *file;
300 int fd = proc_type(inode) - PROC_TID_FD_DIR; 300 int fd = proc_fd(inode);
301 301
302 files = get_files_struct(task); 302 files = get_files_struct(task);
303 if (files) { 303 if (files) {
@@ -1368,7 +1368,6 @@ static struct inode *proc_pid_make_inode(struct super_block * sb, struct task_st
1368 */ 1368 */
1369 get_task_struct(task); 1369 get_task_struct(task);
1370 ei->task = task; 1370 ei->task = task;
1371 ei->type = ino;
1372 inode->i_uid = 0; 1371 inode->i_uid = 0;
1373 inode->i_gid = 0; 1372 inode->i_gid = 0;
1374 if (task_dumpable(task)) { 1373 if (task_dumpable(task)) {
@@ -1418,7 +1417,7 @@ static int tid_fd_revalidate(struct dentry *dentry, struct nameidata *nd)
1418{ 1417{
1419 struct inode *inode = dentry->d_inode; 1418 struct inode *inode = dentry->d_inode;
1420 struct task_struct *task = proc_task(inode); 1419 struct task_struct *task = proc_task(inode);
1421 int fd = proc_type(inode) - PROC_TID_FD_DIR; 1420 int fd = proc_fd(inode);
1422 struct files_struct *files; 1421 struct files_struct *files;
1423 1422
1424 files = get_files_struct(task); 1423 files = get_files_struct(task);
@@ -1525,6 +1524,7 @@ static struct dentry *proc_lookupfd(struct inode * dir, struct dentry * dentry,
1525 if (!inode) 1524 if (!inode)
1526 goto out; 1525 goto out;
1527 ei = PROC_I(inode); 1526 ei = PROC_I(inode);
1527 ei->fd = fd;
1528 files = get_files_struct(task); 1528 files = get_files_struct(task);
1529 if (!files) 1529 if (!files)
1530 goto out_unlock; 1530 goto out_unlock;
diff --git a/fs/proc/inode.c b/fs/proc/inode.c
index 722b9c463111..fbc94df138a7 100644
--- a/fs/proc/inode.c
+++ b/fs/proc/inode.c
@@ -95,7 +95,7 @@ static struct inode *proc_alloc_inode(struct super_block *sb)
95 if (!ei) 95 if (!ei)
96 return NULL; 96 return NULL;
97 ei->task = NULL; 97 ei->task = NULL;
98 ei->type = 0; 98 ei->fd = 0;
99 ei->op.proc_get_link = NULL; 99 ei->op.proc_get_link = NULL;
100 ei->pde = NULL; 100 ei->pde = NULL;
101 inode = &ei->vfs_inode; 101 inode = &ei->vfs_inode;
diff --git a/fs/proc/internal.h b/fs/proc/internal.h
index 0502f17b860d..6264b7a3a9f0 100644
--- a/fs/proc/internal.h
+++ b/fs/proc/internal.h
@@ -46,7 +46,7 @@ static inline struct task_struct *proc_task(struct inode *inode)
46 return PROC_I(inode)->task; 46 return PROC_I(inode)->task;
47} 47}
48 48
49static inline int proc_type(struct inode *inode) 49static inline int proc_fd(struct inode *inode)
50{ 50{
51 return PROC_I(inode)->type; 51 return PROC_I(inode)->fd;
52} 52}
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h
index 5810d28fbed9..9dd84884abb1 100644
--- a/include/linux/proc_fs.h
+++ b/include/linux/proc_fs.h
@@ -249,7 +249,7 @@ extern void kclist_add(struct kcore_list *, void *, size_t);
249 249
250struct proc_inode { 250struct proc_inode {
251 struct task_struct *task; 251 struct task_struct *task;
252 int type; 252 int fd;
253 union { 253 union {
254 int (*proc_get_link)(struct inode *, struct dentry **, struct vfsmount **); 254 int (*proc_get_link)(struct inode *, struct dentry **, struct vfsmount **);
255 int (*proc_read)(struct task_struct *task, char *page); 255 int (*proc_read)(struct task_struct *task, char *page);