Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-21 Thread Andrew Morton
On Tue, 19 Feb 2008 09:36:34 +0100 Jens Axboe [EMAIL PROTECTED] wrote:

 But I think the radix 'scan over entire tree' is a bit fragile.

eek, it had better not be.  Was this an error in the caller?  Hope so.

 This
 patch adds a parallel hlist for ease of properly browsing the members,

Even though io_contexts are fairly uncommon, adding more stuff to a data
structure was a pretty sad alternative to fixing a bug in
radix_tree_gang_lookup(), or to fixing a bug in a caller of it.

IOW: what exactly went wrong here??
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-21 Thread Jens Axboe
On Thu, Feb 21 2008, Andrew Morton wrote:
 On Tue, 19 Feb 2008 09:36:34 +0100 Jens Axboe [EMAIL PROTECTED] wrote:
 
  But I think the radix 'scan over entire tree' is a bit fragile.
 
 eek, it had better not be.  Was this an error in the caller?  Hope so.

The cfq use of it, not the radix tree code! It juggled the keys and
wants to make sure that we see all users, modulo raced added ones (ok if
we see them, doesn't matter if we don't).

  This
  patch adds a parallel hlist for ease of properly browsing the members,
 
 Even though io_contexts are fairly uncommon, adding more stuff to a data
 structure was a pretty sad alternative to fixing a bug in
 radix_tree_gang_lookup(), or to fixing a bug in a caller of it.
 
 IOW: what exactly went wrong here??

I could not convince myself that the current code would always do the
right thing. We should not have been seeing -key == NULL entries in
there, it implied a double exit of that process. So I decided to fix it
by making the code a lot more readable (the patch in question deleted a
lot more than it added), at the cost of that hlist head + node.

-- 
Jens Axboe

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread KAMEZAWA Hiroyuki
On Sun, 17 Feb 2008 20:29:13 +0100
Jens Axboe [EMAIL PROTECTED] wrote:

 It's odd stuff. Could you perhaps try and add some printks to
 block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
 from radix_tree_gang_lookup() and the pointer value of cics[i] in the
 for() loop after the lookup?
 
I met the same issue on ia64/NUMA box.
seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was always '1'.

Attached patch works well for me, 
but I don't know much about cfq. please confirm. 

Regards,
-Kame

==
cics[]-key can be NULL.
In that case, cics[]-dead_key has key value.

Signed-off-by: KAMEZAWA Hiroyuki [EMAIL PROTECTED]

Index: linux-2.6.25-rc2/block/cfq-iosched.c
===
--- linux-2.6.25-rc2.orig/block/cfq-iosched.c
+++ linux-2.6.25-rc2/block/cfq-iosched.c
@@ -1171,7 +1171,11 @@ call_for_each_cic(struct io_context *ioc
break;
 
called += nr;
-   index = 1 + (unsigned long) cics[nr - 1]-key;
+
+   if (!cics[nr - 1]-key)
+   index = 1 + (unsigned long) cics[nr - 1]-dead_key;
+   else
+   index = 1 + (unsigned long) cics[nr - 1]-key;
 
for (i = 0; i  nr; i++)
func(ioc, cics[i]);

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread KAMEZAWA Hiroyuki
On Tue, 19 Feb 2008 09:36:34 +0100
Jens Axboe [EMAIL PROTECTED] wrote:

 On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
  On Sun, 17 Feb 2008 20:29:13 +0100
  Jens Axboe [EMAIL PROTECTED] wrote:
  
   It's odd stuff. Could you perhaps try and add some printks to
   block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
   from radix_tree_gang_lookup() and the pointer value of cics[i] in the
   for() loop after the lookup?
   
  I met the same issue on ia64/NUMA box.
  seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was
  always '1'.
 
 Why does it keep repeating then? If -key is NULL, the next lookup index
 should be 1UL.
 
when I inserted printk here
==
for (i = 0; i  nr; i++)
func(ioc, cics[i]);
printk(%d %lx\n, nr, index);
==
index was always 1 and  nr was always 32.

So, cics[31]-key was always NULL when index=1 is passed to 
radix_tree_gang_lookup().


 But I think the radix 'scan over entire tree' is a bit fragile. This
 patch adds a parallel hlist for ease of properly browsing the members,
 does that work for you? It compiles, but I haven't booted it here yet...
 
will try. please wait a bit.

Thanks,
-Kame

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread Jens Axboe
On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
 On Sun, 17 Feb 2008 20:29:13 +0100
 Jens Axboe [EMAIL PROTECTED] wrote:
 
  It's odd stuff. Could you perhaps try and add some printks to
  block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
  from radix_tree_gang_lookup() and the pointer value of cics[i] in the
  for() loop after the lookup?
  
 I met the same issue on ia64/NUMA box.
 seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was
 always '1'.

Why does it keep repeating then? If -key is NULL, the next lookup index
should be 1UL.

But I think the radix 'scan over entire tree' is a bit fragile. This
patch adds a parallel hlist for ease of properly browsing the members,
does that work for you? It compiles, but I haven't booted it here yet...

 Attached patch works well for me, but I don't know much about cfq.
 please confirm. 

It doesn't make a lot of sense, I'm afraid.

 block/blk-ioc.c   |   35 +++
 block/cfq-iosched.c   |   37 +++--
 include/linux/iocontext.h |2 ++
 3 files changed, 28 insertions(+), 46 deletions(-)

diff --git a/block/blk-ioc.c b/block/blk-ioc.c
index 80245dc..73c7002 100644
--- a/block/blk-ioc.c
+++ b/block/blk-ioc.c
@@ -17,17 +17,13 @@ static struct kmem_cache *iocontext_cachep;
 
 static void cfq_dtor(struct io_context *ioc)
 {
-   struct cfq_io_context *cic[1];
-   int r;
+   if (!hlist_empty(ioc-cic_list)) {
+   struct cfq_io_context *cic;
 
-   /*
-* We don't have a specific key to lookup with, so use the gang
-* lookup to just retrieve the first item stored. The cfq exit
-* function will iterate the full tree, so any member will do.
-*/
-   r = radix_tree_gang_lookup(ioc-radix_root, (void **) cic, 0, 1);
-   if (r  0)
-   cic[0]-dtor(ioc);
+   cic = list_entry(ioc-cic_list.first, struct cfq_io_context,
+   cic_list);
+   cic-dtor(ioc);
+   }
 }
 
 /*
@@ -57,18 +53,16 @@ EXPORT_SYMBOL(put_io_context);
 
 static void cfq_exit(struct io_context *ioc)
 {
-   struct cfq_io_context *cic[1];
-   int r;
-
rcu_read_lock();
-   /*
-* See comment for cfq_dtor()
-*/
-   r = radix_tree_gang_lookup(ioc-radix_root, (void **) cic, 0, 1);
-   rcu_read_unlock();
 
-   if (r  0)
-   cic[0]-exit(ioc);
+   if (!hlist_empty(ioc-cic_list)) {
+   struct cfq_io_context *cic;
+
+   cic = list_entry(ioc-cic_list.first, struct cfq_io_context,
+   cic_list);
+   cic-exit(ioc);
+   }
+   rcu_read_unlock();
 }
 
 /* Called by the exitting task */
@@ -105,6 +99,7 @@ struct io_context *alloc_io_context(gfp_t gfp_flags, int 
node)
ret-nr_batch_requests = 0; /* because this is 0 */
ret-aic = NULL;
INIT_RADIX_TREE(ret-radix_root, GFP_ATOMIC | __GFP_HIGH);
+   INIT_HLIST_HEAD(ret-cic_list);
ret-ioc_data = NULL;
}
 
diff --git a/block/cfq-iosched.c b/block/cfq-iosched.c
index ca198e6..62eda3f 100644
--- a/block/cfq-iosched.c
+++ b/block/cfq-iosched.c
@@ -1145,38 +1145,19 @@ static void cfq_put_queue(struct cfq_queue *cfqq)
 /*
  * Call func for each cic attached to this ioc. Returns number of cic's seen.
  */
-#define CIC_GANG_NR16
 static unsigned int
 call_for_each_cic(struct io_context *ioc,
  void (*func)(struct io_context *, struct cfq_io_context *))
 {
-   struct cfq_io_context *cics[CIC_GANG_NR];
-   unsigned long index = 0;
-   unsigned int called = 0;
-   int nr;
+   struct cfq_io_context *cic;
+   struct hlist_node *n;
+   int called = 0;
 
rcu_read_lock();
-
-   do {
-   int i;
-
-   /*
-* Perhaps there's a better way - this just gang lookups from
-* 0 to the end, restarting after each CIC_GANG_NR from the
-* last key + 1.
-*/
-   nr = radix_tree_gang_lookup(ioc-radix_root, (void **) cics,
-   index, CIC_GANG_NR);
-   if (!nr)
-   break;
-
-   called += nr;
-   index = 1 + (unsigned long) cics[nr - 1]-key;
-
-   for (i = 0; i  nr; i++)
-   func(ioc, cics[i]);
-   } while (nr == CIC_GANG_NR);
-
+   hlist_for_each_entry_rcu(cic, n, ioc-cic_list, cic_list) {
+   func(ioc, cic);
+   called++;
+   }
rcu_read_unlock();
 
return called;
@@ -1190,6 +1171,7 @@ static void cic_free_func(struct io_context *ioc, struct 
cfq_io_context *cic)
 
spin_lock_irqsave(ioc-lock, flags);
radix_tree_delete(ioc-radix_root, cic-dead_key);
+   

Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread KAMEZAWA Hiroyuki
On Tue, 19 Feb 2008 09:58:38 +0100
Jens Axboe [EMAIL PROTECTED] wrote:
  when I inserted printk here
  ==
  for (i = 0; i  nr; i++)
  func(ioc, cics[i]);
  printk(%d %lx\n, nr, index);
  ==
  index was always 1 and  nr was always 32.
  
  So, cics[31]-key was always NULL when index=1 is passed to
  radix_tree_gang_lookup().
 
 Hang on, it returned 32? It should not return more than 16, since that
 is what we have room for and asked for. 
sorry. Of course, it was 16 ;(

your patch works well. thank you.

-Kame

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread Jens Axboe
On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
 On Tue, 19 Feb 2008 09:58:38 +0100
 Jens Axboe [EMAIL PROTECTED] wrote:
   when I inserted printk here
   ==
 for (i = 0; i  nr; i++)
 func(ioc, cics[i]);
 printk(%d %lx\n, nr, index);
   ==
   index was always 1 and  nr was always 32.
   
   So, cics[31]-key was always NULL when index=1 is passed to
   radix_tree_gang_lookup().
  
  Hang on, it returned 32? It should not return more than 16, since that
  is what we have room for and asked for. 
 sorry. Of course, it was 16 ;(

I expected so, otherwise we would have had far more serious problems :-)

 your patch works well. thank you.

It's committed now and posted in the relevant bugzilla as well (#9948).

-- 
Jens Axboe

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread Jens Axboe
On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
 On Tue, 19 Feb 2008 09:36:34 +0100
 Jens Axboe [EMAIL PROTECTED] wrote:
 
  On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
   On Sun, 17 Feb 2008 20:29:13 +0100
   Jens Axboe [EMAIL PROTECTED] wrote:
   
It's odd stuff. Could you perhaps try and add some printks to
block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
from radix_tree_gang_lookup() and the pointer value of cics[i] in the
for() loop after the lookup?

   I met the same issue on ia64/NUMA box.
   seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was
   always '1'.
  
  Why does it keep repeating then? If -key is NULL, the next lookup index
  should be 1UL.
  
 when I inserted printk here
 ==
   for (i = 0; i  nr; i++)
   func(ioc, cics[i]);
   printk(%d %lx\n, nr, index);
 ==
 index was always 1 and  nr was always 32.
 
 So, cics[31]-key was always NULL when index=1 is passed to
 radix_tree_gang_lookup().

Hang on, it returned 32? It should not return more than 16, since that
is what we have room for and asked for. Using -dead_key when -key is
NULL is correct btw, since that is the correct location in the tree once
the process has exited. But that should not happen until AFTER the
func() call, so I still think the list patch is safer.

  But I think the radix 'scan over entire tree' is a bit fragile. This
  patch adds a parallel hlist for ease of properly browsing the
  members, does that work for you? It compiles, but I haven't booted
  it here yet...
  
 will try. please wait a bit.

It boots here, so at least it passes normal sanity tests. It should
solve your problem as well, hopefully.

-- 
Jens Axboe

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread Jens Axboe
On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
 On Tue, 19 Feb 2008 09:36:34 +0100
 Jens Axboe [EMAIL PROTECTED] wrote:
 
  On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
   On Sun, 17 Feb 2008 20:29:13 +0100
   Jens Axboe [EMAIL PROTECTED] wrote:
   
It's odd stuff. Could you perhaps try and add some printks to
block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
from radix_tree_gang_lookup() and the pointer value of cics[i] in the
for() loop after the lookup?

   I met the same issue on ia64/NUMA box.
   seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was
   always '1'.
  
  Why does it keep repeating then? If -key is NULL, the next lookup index
  should be 1UL.
  
  But I think the radix 'scan over entire tree' is a bit fragile. This
  patch adds a parallel hlist for ease of properly browsing the members,
  does that work for you? It compiles, but I haven't booted it here yet...
  
 Works well for me and my box booted !

Super, I'll get it upstream. Thanks for testing and debugging!

-- 
Jens Axboe

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-19 Thread KAMEZAWA Hiroyuki
On Tue, 19 Feb 2008 09:36:34 +0100
Jens Axboe [EMAIL PROTECTED] wrote:

 On Tue, Feb 19 2008, KAMEZAWA Hiroyuki wrote:
  On Sun, 17 Feb 2008 20:29:13 +0100
  Jens Axboe [EMAIL PROTECTED] wrote:
  
   It's odd stuff. Could you perhaps try and add some printks to
   block/cfq-iosched.c:call_for_each_cic(), like dumping the 'nr' return
   from radix_tree_gang_lookup() and the pointer value of cics[i] in the
   for() loop after the lookup?
   
  I met the same issue on ia64/NUMA box.
  seems cisc[]-key is NULL and index for radix_tree_gang_lookup() was
  always '1'.
 
 Why does it keep repeating then? If -key is NULL, the next lookup index
 should be 1UL.
 
 But I think the radix 'scan over entire tree' is a bit fragile. This
 patch adds a parallel hlist for ease of properly browsing the members,
 does that work for you? It compiles, but I haven't booted it here yet...
 
Works well for me and my box booted !

Thanks,
-Kame

___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


Re: [BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-17 Thread Rafael J. Wysocki
On Saturday, 16 of February 2008, Kamalesh Babulal wrote:
 Hi,

Hi,
 
 The softlockup is seen from 2.6.25-rc1-git{1,3} and is visible in the 
 2.6.24-rc2 kernel,
 While booting up with the 2.6.25-rc1-git{1,3} and 2.6.25-rc2 kernel(s) on the 
 powerbox

Can you update the Bugzilla entry at:
http://bugzilla.kernel.org/show_bug.cgi?id=9948
with the above information, please?

Rafael


 Loading st.ko module
 BUG: soft lockup - CPU#1 stuck for 61s! [insmod:379]
 NIP: c01b0620 LR: c01a5dcc CTR: 0040
 REGS: c0077caab8a0 TRAP: 0901   Not tainted  (2.6.25-rc2-autotest)
 MSR: 80009032 EE,ME,IR,DR  CR: 84004088  XER: 2000
 TASK = c0077cb450a0[379] 'insmod' THREAD: c0077caa8000 CPU: 1
 GPR00: c0077c9d4000 c0077caabb20 c0538a40 000b 
 GPR04: ffc0 c0077e0c 0036 000a 
 GPR08: 0040 c0077c9d4250 c000  
 GPR12: c0077c9d4230 c0481d00 
 NIP [c01b0620] .radix_tree_gang_lookup+0x100/0x1e4
 LR [c01a5dcc] .call_for_each_cic+0x50/0x10c
 Call Trace:
 [c0077caabb20] [c01a5e2c] .call_for_each_cic+0xb0/0x10c 
 (unreliable)
 [c0077caabc60] [c019dba4] .exit_io_context+0xf0/0x110
 [c0077caabcf0] [c0061e38] .do_exit+0x820/0x850
 [c0077caabda0] [c0061f34] .do_group_exit+0xcc/0xe8
 [c0077caabe30] [c000872c] syscall_exit+0x0/0x40
 Instruction dump:
 7d296214 39290018 e809 7caa2038 39290008 2fa0 409e0018 7caa4215 
 396b0001 418200cc 424000b8 4bdc 79691f24 7d296214 e9690018 2fab 
 INFO: task insmod:387 blocked for more than 120 seconds.
 echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
 insmodD 1000e144 12144   387  1
 Call Trace:
 [c0077cb97600] [c08fae80] 0xc08fae80 (unreliable)
 [c0077cb977d0] [c0010c7c] .__switch_to+0x11c/0x154
 [c0077cb97860] [c0344498] .schedule+0x5d0/0x6b0
 [c0077cb97950] [c03447d8] .schedule_timeout+0x3c/0xe8
 [c0077cb97a20] [c0343d34] .wait_for_common+0x150/0x22c
 [c0077cb97ae0] [c008ef00] .__stop_machine_run+0xbc/0xf0
 [c0077cb97bb0] [c008ef70] .stop_machine_run+0x3c/0x80
 [c0077cb97c50] [c00891f0] .sys_init_module+0x14e4/0x1af4
 [c0077cb97e30] [c000872c] syscall_exit+0x0/0x40
 -- 0:conmux-control -- time-stamp -- Feb/15/08 16:04:12 --
 INFO: task insmod:387 blocked for more than 120 seconds.
 echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
 insmodD 1000e144 12144   387  1
 Call Trace:
 [c0077cb97600] [c08fae80] 0xc08fae80 (unreliable)
 [c0077cb977d0] [c0010c7c] .__switch_to+0x11c/0x154
 [c0077cb97860] [c0344498] .schedule+0x5d0/0x6b0
 [c0077cb97950] [c03447d8] .schedule_timeout+0x3c/0xe8
 [c0077cb97a20] [c0343d34] .wait_for_common+0x150/0x22c
 [c0077cb97ae0] [c008ef00] .__stop_machine_run+0xbc/0xf0
 [c0077cb97bb0] [c008ef70] .stop_machine_run+0x3c/0x80
 [c0077cb97c50] [c00891f0] .sys_init_module+0x14e4/0x1af4
 [c0077cb97e30] [c000872c] syscall_exit+0x0/0x40
 -- 0:conmux-control -- time-stamp -- Feb/15/08 16:06:21 --



-- 
Premature optimization is the root of all evil. - Donald Knuth
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev


[BUG] Linux 2.6.25-rc2 - Regression from 2.6.24-rc1-git1 softlockup while bootup on powerpc

2008-02-15 Thread Kamalesh Babulal
Hi,

The softlockup is seen from 2.6.25-rc1-git{1,3} and is visible in the 
2.6.24-rc2 kernel,
While booting up with the 2.6.25-rc1-git{1,3} and 2.6.25-rc2 kernel(s) on the 
powerbox

Loading st.ko module
BUG: soft lockup - CPU#1 stuck for 61s! [insmod:379]
NIP: c01b0620 LR: c01a5dcc CTR: 0040
REGS: c0077caab8a0 TRAP: 0901   Not tainted  (2.6.25-rc2-autotest)
MSR: 80009032 EE,ME,IR,DR  CR: 84004088  XER: 2000
TASK = c0077cb450a0[379] 'insmod' THREAD: c0077caa8000 CPU: 1
GPR00: c0077c9d4000 c0077caabb20 c0538a40 000b 
GPR04: ffc0 c0077e0c 0036 000a 
GPR08: 0040 c0077c9d4250 c000  
GPR12: c0077c9d4230 c0481d00 
NIP [c01b0620] .radix_tree_gang_lookup+0x100/0x1e4
LR [c01a5dcc] .call_for_each_cic+0x50/0x10c
Call Trace:
[c0077caabb20] [c01a5e2c] .call_for_each_cic+0xb0/0x10c (unreliable)
[c0077caabc60] [c019dba4] .exit_io_context+0xf0/0x110
[c0077caabcf0] [c0061e38] .do_exit+0x820/0x850
[c0077caabda0] [c0061f34] .do_group_exit+0xcc/0xe8
[c0077caabe30] [c000872c] syscall_exit+0x0/0x40
Instruction dump:
7d296214 39290018 e809 7caa2038 39290008 2fa0 409e0018 7caa4215 
396b0001 418200cc 424000b8 4bdc 79691f24 7d296214 e9690018 2fab 
INFO: task insmod:387 blocked for more than 120 seconds.
echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
insmodD 1000e144 12144   387  1
Call Trace:
[c0077cb97600] [c08fae80] 0xc08fae80 (unreliable)
[c0077cb977d0] [c0010c7c] .__switch_to+0x11c/0x154
[c0077cb97860] [c0344498] .schedule+0x5d0/0x6b0
[c0077cb97950] [c03447d8] .schedule_timeout+0x3c/0xe8
[c0077cb97a20] [c0343d34] .wait_for_common+0x150/0x22c
[c0077cb97ae0] [c008ef00] .__stop_machine_run+0xbc/0xf0
[c0077cb97bb0] [c008ef70] .stop_machine_run+0x3c/0x80
[c0077cb97c50] [c00891f0] .sys_init_module+0x14e4/0x1af4
[c0077cb97e30] [c000872c] syscall_exit+0x0/0x40
-- 0:conmux-control -- time-stamp -- Feb/15/08 16:04:12 --
INFO: task insmod:387 blocked for more than 120 seconds.
echo 0  /proc/sys/kernel/hung_task_timeout_secs disables this message.
insmodD 1000e144 12144   387  1
Call Trace:
[c0077cb97600] [c08fae80] 0xc08fae80 (unreliable)
[c0077cb977d0] [c0010c7c] .__switch_to+0x11c/0x154
[c0077cb97860] [c0344498] .schedule+0x5d0/0x6b0
[c0077cb97950] [c03447d8] .schedule_timeout+0x3c/0xe8
[c0077cb97a20] [c0343d34] .wait_for_common+0x150/0x22c
[c0077cb97ae0] [c008ef00] .__stop_machine_run+0xbc/0xf0
[c0077cb97bb0] [c008ef70] .stop_machine_run+0x3c/0x80
[c0077cb97c50] [c00891f0] .sys_init_module+0x14e4/0x1af4
[c0077cb97e30] [c000872c] syscall_exit+0x0/0x40
-- 0:conmux-control -- time-stamp -- Feb/15/08 16:06:21 --
-- 
Thanks  Regards,
Kamalesh Babulal,
Linux Technology Center,
IBM, ISTL.
___
Linuxppc-dev mailing list
Linuxppc-dev@ozlabs.org
https://ozlabs.org/mailman/listinfo/linuxppc-dev