The patch titled
sched: correct output of show_state()
has been added to the -mm tree. Its filename is
sched-correct-output-of-show_state.patch
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
------------------------------------------------------
Subject: sched: correct output of show_state()
From: Chris Caputo <[EMAIL PROTECTED]>
At present show_state prints a header the does not match the output of
show_task, as follows:
-
sibling
task PC pid father child younger older
init S 00000000 0 1 0 2 (NOTLB)
-
This patch corrects the output of show_state so that the header is
aligned with the data, ala:
-
free sibling
task PC stack pid father child younger older
init S 00000000 0 1 0 2 (NOTLB)
-
Signed-off-by: Chris Caputo <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
kernel/sched.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff -puN kernel/sched.c~sched-correct-output-of-show_state kernel/sched.c
--- a/kernel/sched.c~sched-correct-output-of-show_state
+++ a/kernel/sched.c
@@ -4810,12 +4810,12 @@ void show_state(void)
#if (BITS_PER_LONG == 32)
printk("\n"
- " sibling\n");
- printk(" task PC pid father child younger older\n");
+ " free
sibling\n");
+ printk(" task PC stack pid father child younger
older\n");
#else
printk("\n"
- "
sibling\n");
- printk(" task PC pid father child younger
older\n");
+ " free
sibling\n");
+ printk(" task PC stack pid father child
younger older\n");
#endif
read_lock(&tasklist_lock);
do_each_thread(g, p) {
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
sched-correct-output-of-show_state.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html