[PATCH] procfs: Fix hardlink counts for /proc/<PID>/task
The current logic assumes that a /proc/<PID>/task directory should have a hardlink count of 3, probably counting ".", "..", and a directory for a single child task. It's fairly obvious that this doesn't work out correctly when a PID has more than one child task, which is quite often the case. Signed-off-by: Daniel Drake <dsd@gentoo.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
bcf88e1163
commit
f246315e1a
@ -1419,6 +1419,8 @@ static struct file_operations proc_tgid_attr_operations;
|
|||||||
static struct inode_operations proc_tgid_attr_inode_operations;
|
static struct inode_operations proc_tgid_attr_inode_operations;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static int get_tid_list(int index, unsigned int *tids, struct inode *dir);
|
||||||
|
|
||||||
/* SMP-safe */
|
/* SMP-safe */
|
||||||
static struct dentry *proc_pident_lookup(struct inode *dir,
|
static struct dentry *proc_pident_lookup(struct inode *dir,
|
||||||
struct dentry *dentry,
|
struct dentry *dentry,
|
||||||
@ -1458,7 +1460,7 @@ static struct dentry *proc_pident_lookup(struct inode *dir,
|
|||||||
*/
|
*/
|
||||||
switch(p->type) {
|
switch(p->type) {
|
||||||
case PROC_TGID_TASK:
|
case PROC_TGID_TASK:
|
||||||
inode->i_nlink = 3;
|
inode->i_nlink = 2 + get_tid_list(2, NULL, dir);
|
||||||
inode->i_op = &proc_task_inode_operations;
|
inode->i_op = &proc_task_inode_operations;
|
||||||
inode->i_fop = &proc_task_operations;
|
inode->i_fop = &proc_task_operations;
|
||||||
break;
|
break;
|
||||||
@ -1943,7 +1945,8 @@ static int get_tid_list(int index, unsigned int *tids, struct inode *dir)
|
|||||||
|
|
||||||
if (--index >= 0)
|
if (--index >= 0)
|
||||||
continue;
|
continue;
|
||||||
tids[nr_tids] = tid;
|
if (tids != NULL)
|
||||||
|
tids[nr_tids] = tid;
|
||||||
nr_tids++;
|
nr_tids++;
|
||||||
if (nr_tids >= PROC_MAXPIDS)
|
if (nr_tids >= PROC_MAXPIDS)
|
||||||
break;
|
break;
|
||||||
@ -2043,6 +2046,7 @@ static int proc_task_readdir(struct file * filp, void * dirent, filldir_t filldi
|
|||||||
}
|
}
|
||||||
|
|
||||||
nr_tids = get_tid_list(pos, tid_array, inode);
|
nr_tids = get_tid_list(pos, tid_array, inode);
|
||||||
|
inode->i_nlink = pos + nr_tids;
|
||||||
|
|
||||||
for (i = 0; i < nr_tids; i++) {
|
for (i = 0; i < nr_tids; i++) {
|
||||||
unsigned long j = PROC_NUMBUF;
|
unsigned long j = PROC_NUMBUF;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user