diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2006-06-26 03:25:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:24 -0400 |
commit | aed7a6c476d90660ac5af860158407ae9fe61c68 (patch) | |
tree | b8b92412f457598a2348de0eb304b9b4ec204157 /fs/proc/inode.c | |
parent | 87bfbf679ffb1e95dd9ada694f66aafc4bfa5959 (diff) |
[PATCH] proc: Replace proc_inode.type with proc_inode.fd
The sole renaming use of proc_inode.type is to discover the file descriptor
number, so just store the file descriptor number and don't wory about
processing this field. This removes any /proc limits on the maximum number of
file descriptors, and clears the path to make the hard coded /proc inode
numbers go away.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/proc/inode.c')
-rw-r--r-- | fs/proc/inode.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |