linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* X86_32: Got a kernel panic when poweroff
@ 2011-04-04 19:39 wanlong.gao
  2011-04-04 20:07 ` Eric Dumazet
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: wanlong.gao @ 2011-04-04 19:39 UTC (permalink / raw)
  To: linux-kernel

Hi , all
When I did poweroff or reboot .
It got a kernel panic .
I just have several pictures about these panic .
I tried to fix it , but I can't do .

Here are the pictures .
http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_1.jpg
http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_2.png
http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_3.png
http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_4.png
http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_5.png

Thanks ,goot night .


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: X86_32: Got a kernel panic when poweroff
  2011-04-04 19:39 X86_32: Got a kernel panic when poweroff wanlong.gao
@ 2011-04-04 20:07 ` Eric Dumazet
  2011-04-04 20:39 ` Shaun Ruffell
  2011-04-05  5:41 ` wanlong.gao
  2 siblings, 0 replies; 6+ messages in thread
From: Eric Dumazet @ 2011-04-04 20:07 UTC (permalink / raw)
  To: wanlong.gao; +Cc: linux-kernel, Rafael J. Wysocki, Thomas Gleixner, Ingo Molnar

Le mardi 05 avril 2011 à 03:39 +0800, wanlong.gao a écrit :
> Hi , all
> When I did poweroff or reboot .
> It got a kernel panic .
> I just have several pictures about these panic .
> I tried to fix it , but I can't do .
> 
> Here are the pictures .
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_1.jpg
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_2.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_3.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_4.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_5.png
> 
> Thanks ,goot night .
> 

A module called register_syscore_ops(), and was unloaded without calling
unregister_syscore_ops()

Hmm... maybe arch/x86/kernel/microcode_core.c ?

Try reverting f3c6ea1b06c71b43f751b36bd9




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: X86_32: Got a kernel panic when poweroff
  2011-04-04 19:39 X86_32: Got a kernel panic when poweroff wanlong.gao
  2011-04-04 20:07 ` Eric Dumazet
@ 2011-04-04 20:39 ` Shaun Ruffell
  2011-04-05  5:41 ` wanlong.gao
  2 siblings, 0 replies; 6+ messages in thread
From: Shaun Ruffell @ 2011-04-04 20:39 UTC (permalink / raw)
  To: wanlong.gao; +Cc: linux-kernel

On 04/04/2011 02:39 PM, wanlong.gao wrote:
> Hi , all
> When I did poweroff or reboot .
> It got a kernel panic .
> I just have several pictures about these panic .
> I tried to fix it , but I can't do .
> 
> Here are the pictures .
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_1.jpg
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_2.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_3.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_4.png
> http://images.cnblogs.com/cnblogs_com/linuxkernel/291984/r_5.png
> 

I was running into something similar myself and my issue was resolved in
commit 4ac5fc6a3e4d90120f292526bcaa5ee182a7411b from this morning.

Here is a link to the commit:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4ac5fc6a3e4d90120f292526bcaa5ee182a7411b

-- 
Shaun Ruffell
Digium, Inc. | Linux Kernel Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: www.digium.com & www.asterisk.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: X86_32: Got a kernel panic when poweroff
  2011-04-04 19:39 X86_32: Got a kernel panic when poweroff wanlong.gao
  2011-04-04 20:07 ` Eric Dumazet
  2011-04-04 20:39 ` Shaun Ruffell
@ 2011-04-05  5:41 ` wanlong.gao
  2011-04-05  6:02   ` Eric Dumazet
  2 siblings, 1 reply; 6+ messages in thread
From: wanlong.gao @ 2011-04-05  5:41 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: linux-kernel, Rafael J. Wysocki, Thomas Gleixner, Ingo Molnar

I pulled the linus' tree ,then it goes well .
The issue is seems like you said ,unregister the syscore_ops
But , can you tell me how did you know that ?

Thanks


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: X86_32: Got a kernel panic when poweroff
  2011-04-05  5:41 ` wanlong.gao
@ 2011-04-05  6:02   ` Eric Dumazet
  2011-04-05  6:45     ` wanlong.gao
  0 siblings, 1 reply; 6+ messages in thread
From: Eric Dumazet @ 2011-04-05  6:02 UTC (permalink / raw)
  To: wanlong.gao; +Cc: linux-kernel, Rafael J. Wysocki, Thomas Gleixner, Ingo Molnar

Le mardi 05 avril 2011 à 13:41 +0800, wanlong.gao a écrit :
> I pulled the linus' tree ,then it goes well .
> The issue is seems like you said ,unregister the syscore_ops
> But , can you tell me how did you know that ?

I analysed your crash and came to this conclusion.

(My local linux-2.6 copy did not had the fix, like yours)




^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: Re: X86_32: Got a kernel panic when poweroff
  2011-04-05  6:02   ` Eric Dumazet
@ 2011-04-05  6:45     ` wanlong.gao
  0 siblings, 0 replies; 6+ messages in thread
From: wanlong.gao @ 2011-04-05  6:45 UTC (permalink / raw)
  To: Eric Dumazet
  Cc: linux-kernel, Rafael J. Wysocki, Thomas Gleixner, Ingo Molnar

It fixed now .
Just pull your tree .
cheers.
Thanks


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-04-05  6:45 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-04 19:39 X86_32: Got a kernel panic when poweroff wanlong.gao
2011-04-04 20:07 ` Eric Dumazet
2011-04-04 20:39 ` Shaun Ruffell
2011-04-05  5:41 ` wanlong.gao
2011-04-05  6:02   ` Eric Dumazet
2011-04-05  6:45     ` wanlong.gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).