Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30259
b: refs/heads/master
c: a872ff0
h: refs/heads/master
i:
  30257: 9f4603c
  30255: 0d8b704
v: v3
  • Loading branch information
Oleg Nesterov authored and Linus Torvalds committed Jun 26, 2006
1 parent cce6433 commit 3d34459
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 22 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: cc288738c9ae3c64d3c50b86604044d1f6d22941
refs/heads/master: a872ff0cb2218dc9688b990c5ccda064dc40946b
38 changes: 17 additions & 21 deletions trunk/fs/proc/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -2227,38 +2227,34 @@ int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir)
static struct task_struct *first_tid(struct task_struct *leader,
int tid, int nr)
{
struct task_struct *pos = NULL;
struct task_struct *pos;

rcu_read_lock();
/* Attempt to start with the pid of a thread */
if (tid && (nr > 0)) {
pos = find_task_by_pid(tid);
if (pos && (pos->group_leader != leader))
pos = NULL;
if (pos)
nr = 0;
if (pos && (pos->group_leader == leader))
goto found;
}

/* If nr exceeds the number of threads there is nothing todo */
if (nr) {
if (nr >= get_nr_threads(leader))
goto done;
}
pos = NULL;
if (nr && nr >= get_nr_threads(leader))
goto out;

/* If we haven't found our starting place yet start with the
* leader and walk nr threads forward.
/* If we haven't found our starting place yet start
* with the leader and walk nr threads forward.
*/
if (!pos && (nr >= 0))
pos = leader;

for (; pos && pid_alive(pos); pos = next_thread(pos)) {
if (--nr > 0)
continue;
get_task_struct(pos);
goto done;
for (pos = leader; nr > 0; --nr) {
pos = next_thread(pos);
if (pos == leader) {
pos = NULL;
goto out;
}
}
pos = NULL;
done:
found:
get_task_struct(pos);
out:
rcu_read_unlock();
return pos;
}
Expand Down

0 comments on commit 3d34459

Please sign in to comment.