diff options
author | Oleg Nesterov <oleg@redhat.com> | 2010-05-26 17:43:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-27 12:12:47 -0400 |
commit | 5089a9768041206c76fac299ccd82a528c24c254 (patch) | |
tree | 88c7951ab137bc04db3ca02ef8bfeef2536472e2 /kernel/sched_debug.c | |
parent | 7e49827cc937a742ae02078b483e3eb78f791a2a (diff) |
proc_sched_show_task(): use get_nr_threads()
Trivial, use get_nr_threads() helper to read signal->count which we are
going to change.
Like other callers, proc_sched_show_task() doesn't need the exactly
precise nr_threads.
David said:
: Note that get_nr_threads() isn't completely equivalent (it can return 0
: where proc_sched_show_task() will display a 1). But I don't think this
: should be a problem.
Signed-off-by: Oleg Nesterov <oleg@redhat.com>
Acked-by: David Howells <dhowells@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Acked-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/sched_debug.c')
-rw-r--r-- | kernel/sched_debug.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/kernel/sched_debug.c b/kernel/sched_debug.c index 87a330a7185f..35565395d00d 100644 --- a/kernel/sched_debug.c +++ b/kernel/sched_debug.c | |||
@@ -381,15 +381,9 @@ __initcall(init_sched_debug_procfs); | |||
381 | void proc_sched_show_task(struct task_struct *p, struct seq_file *m) | 381 | void proc_sched_show_task(struct task_struct *p, struct seq_file *m) |
382 | { | 382 | { |
383 | unsigned long nr_switches; | 383 | unsigned long nr_switches; |
384 | unsigned long flags; | ||
385 | int num_threads = 1; | ||
386 | |||
387 | if (lock_task_sighand(p, &flags)) { | ||
388 | num_threads = atomic_read(&p->signal->count); | ||
389 | unlock_task_sighand(p, &flags); | ||
390 | } | ||
391 | 384 | ||
392 | SEQ_printf(m, "%s (%d, #threads: %d)\n", p->comm, p->pid, num_threads); | 385 | SEQ_printf(m, "%s (%d, #threads: %d)\n", p->comm, p->pid, |
386 | get_nr_threads(p)); | ||
393 | SEQ_printf(m, | 387 | SEQ_printf(m, |
394 | "---------------------------------------------------------\n"); | 388 | "---------------------------------------------------------\n"); |
395 | #define __P(F) \ | 389 | #define __P(F) \ |