linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [Bug #14626] oops on boot starting udev
       [not found] ` <xXQGFmujPl.A.fpF.zSdALB@chimera>
@ 2009-11-17  1:14   ` Greg KH
  2009-11-17  2:04     ` Dmitry Torokhov
  0 siblings, 1 reply; 13+ messages in thread
From: Greg KH @ 2009-11-17  1:14 UTC (permalink / raw)
  To: Rafael J. Wysocki, linux-input-u79uwXL29TY76Z2rM5mHXA
  Cc: Linux Kernel Mailing List, Kernel Testers List, Soeren Sonnenburg

On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> This message has been generated automatically as a part of a report
> of recent regressions.
> 
> The following bug entry is on the current list of known regressions
> from 2.6.31.  Please verify if it still should be listed and let me know
> (either way).
> 
> 
> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> Subject		: oops on boot starting udev
> Submitter	: Soeren Sonnenburg <sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
> Date		: 2009-11-14 10:16 (3 days old)
> References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4

This looks like an input core problem, as the evdev module was just
loaded and died.

Any input developers have any ideas?

thanks,

greg k-h

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-17  1:14   ` [Bug #14626] oops on boot starting udev Greg KH
@ 2009-11-17  2:04     ` Dmitry Torokhov
  2009-11-17  2:59       ` Soeren Sonnenburg
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Torokhov @ 2009-11-17  2:04 UTC (permalink / raw)
  To: Greg KH
  Cc: Rafael J. Wysocki, linux-input, Linux Kernel Mailing List,
	Kernel Testers List, Soeren Sonnenburg

On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part of a report
> > of recent regressions.
> > 
> > The following bug entry is on the current list of known regressions
> > from 2.6.31.  Please verify if it still should be listed and let me know
> > (either way).
> > 
> > 
> > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > Subject		: oops on boot starting udev
> > Submitter	: Soeren Sonnenburg <sonne@debian.org>
> > Date		: 2009-11-14 10:16 (3 days old)
> > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> 
> This looks like an input core problem, as the evdev module was just
> loaded and died.
> 
> Any input developers have any ideas?
> 


Hmm, evdev does:

	dev_set_name(&evdev->dev, "event%d", minor);

Not sure how it can go wrong...

-- 
Dmitry

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-17  2:04     ` Dmitry Torokhov
@ 2009-11-17  2:59       ` Soeren Sonnenburg
  2009-11-17  4:01         ` Dmitry Torokhov
  0 siblings, 1 reply; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-17  2:59 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > This message has been generated automatically as a part of a report
> > > of recent regressions.
> > > 
> > > The following bug entry is on the current list of known regressions
> > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > (either way).
> > > 
> > > 
> > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > Subject		: oops on boot starting udev
> > > Submitter	: Soeren Sonnenburg <sonne@debian.org>
> > > Date		: 2009-11-14 10:16 (3 days old)
> > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > 
> > This looks like an input core problem, as the evdev module was just
> > loaded and died.
> > 
> > Any input developers have any ideas?
> > 
> 
> 
> Hmm, evdev does:
> 
> 	dev_set_name(&evdev->dev, "event%d", minor);
> 
> Not sure how it can go wrong...

Anything I should/could do to narrow it down a bit (apart from
bisecting?).

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-17  2:59       ` Soeren Sonnenburg
@ 2009-11-17  4:01         ` Dmitry Torokhov
       [not found]           ` <20091117040104.GA5792-WlK9ik9hQGAhIp7JRqBPierSzoNAToWh@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Dmitry Torokhov @ 2009-11-17  4:01 UTC (permalink / raw)
  To: Soeren Sonnenburg
  Cc: Greg KH, Rafael J. Wysocki, linux-input-u79uwXL29TY76Z2rM5mHXA,
	Linux Kernel Mailing List, Kernel Testers List

On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > This message has been generated automatically as a part of a report
> > > > of recent regressions.
> > > > 
> > > > The following bug entry is on the current list of known regressions
> > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > (either way).
> > > > 
> > > > 
> > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > Subject		: oops on boot starting udev
> > > > Submitter	: Soeren Sonnenburg <sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
> > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > 
> > > This looks like an input core problem, as the evdev module was just
> > > loaded and died.
> > > 
> > > Any input developers have any ideas?
> > > 
> > 
> > 
> > Hmm, evdev does:
> > 
> > 	dev_set_name(&evdev->dev, "event%d", minor);
> > 
> > Not sure how it can go wrong...
> 
> Anything I should/could do to narrow it down a bit (apart from
> bisecting?).
> 

Umm, I looked through the changes between -rc6 and 7 but nothing jumped
out at me... You don't happen to have any local changes in your tree?

-- 
Dmitry

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

* Re: [Bug #14626] oops on boot starting udev
       [not found]           ` <20091117040104.GA5792-WlK9ik9hQGAhIp7JRqBPierSzoNAToWh@public.gmane.org>
@ 2009-11-17  4:06             ` Soeren Sonnenburg
  2009-11-19  2:59               ` Dmitry Torokhov
  0 siblings, 1 reply; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-17  4:06 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Greg KH, Rafael J. Wysocki, linux-input-u79uwXL29TY76Z2rM5mHXA,
	Linux Kernel Mailing List, Kernel Testers List

[-- Attachment #1: Type: text/plain, Size: 1818 bytes --]

On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> > On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > > This message has been generated automatically as a part of a report
> > > > > of recent regressions.
> > > > > 
> > > > > The following bug entry is on the current list of known regressions
> > > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > > (either way).
> > > > > 
> > > > > 
> > > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > > Subject		: oops on boot starting udev
> > > > > Submitter	: Soeren Sonnenburg <sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
> > > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > > 
> > > > This looks like an input core problem, as the evdev module was just
> > > > loaded and died.
> > > > 
> > > > Any input developers have any ideas?
> > > > 
> > > 
> > > 
> > > Hmm, evdev does:
> > > 
> > > 	dev_set_name(&evdev->dev, "event%d", minor);
> > > 
> > > Not sure how it can go wrong...
> > 
> > Anything I should/could do to narrow it down a bit (apart from
> > bisecting?).
> > 
> 
> Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> out at me... You don't happen to have any local changes in your tree?

Well only the mouse button #1 emulation - though I don't see what could
go wrong there.

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-17  4:06             ` Soeren Sonnenburg
@ 2009-11-19  2:59               ` Dmitry Torokhov
  2009-11-21  6:21                 ` Soeren Sonnenburg
  2009-11-21  8:56                 ` Soeren Sonnenburg
  0 siblings, 2 replies; 13+ messages in thread
From: Dmitry Torokhov @ 2009-11-19  2:59 UTC (permalink / raw)
  To: Soeren Sonnenburg
  Cc: Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
> On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> > On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> > > On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > > > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > > > This message has been generated automatically as a part of a report
> > > > > > of recent regressions.
> > > > > > 
> > > > > > The following bug entry is on the current list of known regressions
> > > > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > > > (either way).
> > > > > > 
> > > > > > 
> > > > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > > > Subject		: oops on boot starting udev
> > > > > > Submitter	: Soeren Sonnenburg <sonne@debian.org>
> > > > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > > > 
> > > > > This looks like an input core problem, as the evdev module was just
> > > > > loaded and died.
> > > > > 
> > > > > Any input developers have any ideas?
> > > > > 
> > > > 
> > > > 
> > > > Hmm, evdev does:
> > > > 
> > > > 	dev_set_name(&evdev->dev, "event%d", minor);
> > > > 
> > > > Not sure how it can go wrong...
> > > 
> > > Anything I should/could do to narrow it down a bit (apart from
> > > bisecting?).
> > > 
> > 
> > Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> > out at me... You don't happen to have any local changes in your tree?
> 
> Well only the mouse button #1 emulation - though I don't see what could
> go wrong there.
> 

I have been looking through the changes and I really don't see anything
suspicious. I am also not hittign this oops on any of my boxes. Any
chance you could bisect?

Thanks.

-- 
Dmitry

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-19  2:59               ` Dmitry Torokhov
@ 2009-11-21  6:21                 ` Soeren Sonnenburg
  2009-11-21  8:56                 ` Soeren Sonnenburg
  1 sibling, 0 replies; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-21  6:21 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
> > On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> > > On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> > > > On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > > > > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > > > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > > > > This message has been generated automatically as a part of a report
> > > > > > > of recent regressions.
> > > > > > > 
> > > > > > > The following bug entry is on the current list of known regressions
> > > > > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > > > > (either way).
> > > > > > > 
> > > > > > > 
> > > > > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > > > > Subject		: oops on boot starting udev
> > > > > > > Submitter	: Soeren Sonnenburg <sonne@debian.org>
> > > > > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > > > > 
> > > > > > This looks like an input core problem, as the evdev module was just
> > > > > > loaded and died.
> > > > > > 
> > > > > > Any input developers have any ideas?
> > > > > > 
> > > > > 
> > > > > 
> > > > > Hmm, evdev does:
> > > > > 
> > > > > 	dev_set_name(&evdev->dev, "event%d", minor);
> > > > > 
> > > > > Not sure how it can go wrong...
> > > > 
> > > > Anything I should/could do to narrow it down a bit (apart from
> > > > bisecting?).
> > > > 
> > > 
> > > Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> > > out at me... You don't happen to have any local changes in your tree?
> > 
> > Well only the mouse button #1 emulation - though I don't see what could
> > go wrong there.
> > 
> 
> I have been looking through the changes and I really don't see anything
> suspicious. I am also not hittign this oops on any of my boxes. Any
> chance you could bisect?

I cannot promise whether I find the time to do this :/ One thing I
noticed is that applesmc seems to freak out every now and then on boot
(after the oopses). Only on this macbook pro.

Soeren

PS: I don't have this oops on a desktop machine either.
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-19  2:59               ` Dmitry Torokhov
  2009-11-21  6:21                 ` Soeren Sonnenburg
@ 2009-11-21  8:56                 ` Soeren Sonnenburg
  2009-11-21  9:30                   ` Justin P. Mattock
  2009-11-21  9:35                   ` [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev) Soeren Sonnenburg
  1 sibling, 2 replies; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-21  8:56 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

[-- Attachment #1: Type: text/plain, Size: 2639 bytes --]

On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
> > On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> > > On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> > > > On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > > > > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > > > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > > > > This message has been generated automatically as a part of a report
> > > > > > > of recent regressions.
> > > > > > > 
> > > > > > > The following bug entry is on the current list of known regressions
> > > > > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > > > > (either way).
> > > > > > > 
> > > > > > > 
> > > > > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > > > > Subject		: oops on boot starting udev
> > > > > > > Submitter	: Soeren Sonnenburg <sonne@debian.org>
> > > > > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > > > > 
> > > > > > This looks like an input core problem, as the evdev module was just
> > > > > > loaded and died.
> > > > > > 
> > > > > > Any input developers have any ideas?
> > > > > > 
> > > > > 
> > > > > 
> > > > > Hmm, evdev does:
> > > > > 
> > > > > 	dev_set_name(&evdev->dev, "event%d", minor);
> > > > > 
> > > > > Not sure how it can go wrong...
> > > > 
> > > > Anything I should/could do to narrow it down a bit (apart from
> > > > bisecting?).
> > > > 
> > > 
> > > Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> > > out at me... You don't happen to have any local changes in your tree?
> > 
> > Well only the mouse button #1 emulation - though I don't see what could
> > go wrong there.
> > 
> 
> I have been looking through the changes and I really don't see anything
> suspicious. I am also not hittign this oops on any of my boxes. Any
> chance you could bisect?
> 
> Thanks.

Alright so I tried to do a bisect when I noticed that building a knwon
to work -rc5 did no longer work either. Thought it might be a gcc
problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
Then I recognized that it crashes on loading basically *any* module,
tried tun and applesmc. Attaching the crashes...

I am starting to run out of ideas...

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

[-- Attachment #2: oops-applesmc --]
[-- Type: text/plain, Size: 53317 bytes --]

[    0.000000] Linux version 2.6.32-rc3-debug (sonne@no) (gcc version 4.4.2 (Debian 4.4.2-3) ) #24 SMP PREEMPT Sat Nov 21 09:23:52 CET 2009
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc3-debug root=/dev/sda3 ro usbcore.autosuspend=1 init=/bin/bash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000ae72b000 (usable)
[    0.000000]  BIOS-e820: 00000000ae72b000 - 00000000ae92c000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000ae92c000 - 00000000bf097000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bf097000 - 00000000bf099000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bf099000 - 00000000bf09b000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bf09b000 - 00000000bf09d000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bf09d000 - 00000000bfeb7000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfeb7000 - 00000000bfec6000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfec6000 - 00000000bfecd000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfecd000 - 00000000bfed6000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfed6000 - 00000000bfed7000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfed7000 - 00000000bfedf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfedf000 - 00000000bfef9000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfef9000 - 00000000bfeff000 (reserved)
[    0.000000]  BIOS-e820: 00000000bfeff000 - 00000000bff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e7400000 - 00000000e7401000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 disabled
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 100000000 mask FC0000000 write-back
[    0.000000]   4 base 0BFF00000 mask FFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 1, base: 0GB, range: 2GB, type WB
[    0.000000] reg 2, base: 2GB, range: 1GB, type WB
[    0.000000] reg 3, base: 4GB, range: 1GB, type WB
[    0.000000] reg 4, base: 3071MB, range: 1MB, type UC
[    0.000000] total RAM coverred: 4095M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 4  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3071MB, range: 1MB, type UC
[    0.000000] reg 3, base: 4GB, range: 1GB, type WB
[    0.000000] e820 update range: 00000000bff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xae72b max_arch_pfn = 0x400000000
[    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000ae72b000 (usable)
[    0.000000]  modified: 00000000ae72b000 - 00000000ae92c000 (ACPI NVS)
[    0.000000]  modified: 00000000ae92c000 - 00000000bf097000 (ACPI data)
[    0.000000]  modified: 00000000bf097000 - 00000000bf099000 (ACPI NVS)
[    0.000000]  modified: 00000000bf099000 - 00000000bf09b000 (ACPI data)
[    0.000000]  modified: 00000000bf09b000 - 00000000bf09d000 (ACPI NVS)
[    0.000000]  modified: 00000000bf09d000 - 00000000bfeb7000 (ACPI data)
[    0.000000]  modified: 00000000bfeb7000 - 00000000bfec6000 (ACPI NVS)
[    0.000000]  modified: 00000000bfec6000 - 00000000bfecd000 (ACPI data)
[    0.000000]  modified: 00000000bfecd000 - 00000000bfed6000 (ACPI NVS)
[    0.000000]  modified: 00000000bfed6000 - 00000000bfed7000 (ACPI data)
[    0.000000]  modified: 00000000bfed7000 - 00000000bfedf000 (ACPI NVS)
[    0.000000]  modified: 00000000bfedf000 - 00000000bfef9000 (ACPI data)
[    0.000000]  modified: 00000000bfef9000 - 00000000bfeff000 (reserved)
[    0.000000]  modified: 00000000bfeff000 - 00000000bff00000 (ACPI data)
[    0.000000]  modified: 00000000e7400000 - 00000000e7401000 (reserved)
[    0.000000]  modified: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000ffc00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-00000000ae72b000
[    0.000000]  0000000000 - 00ae600000 page 2M
[    0.000000]  00ae600000 - 00ae72b000 page 4k
[    0.000000] kernel direct mapping tables up to ae72b000 @ 8000-d000
[    0.000000] init_memory_mapping: 0000000100000000-0000000140000000
[    0.000000]  0100000000 - 0140000000 page 2M
[    0.000000] kernel direct mapping tables up to 140000000 @ b000-11000
[    0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
[    0.000000] ACPI: XSDT 00000000bfeee1c0 0007C (v01 APPLE   Apple00 000000AC      01000013)
[    0.000000] ACPI: FACP 00000000bfeec000 000F4 (v04 APPLE   Apple00 000000AC Loki 0000005F)
[    0.000000] ACPI: DSDT 00000000bfec6000 06238 (v01 APPLE  MacBookP 00050003 INTL 20061109)
[    0.000000] ACPI: FACS 00000000bfecd000 00040
[    0.000000] ACPI: HPET 00000000bfeeb000 00038 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 00000000bfeea000 00068 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 00000000bfee9000 00068 (v02 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: MCFG 00000000bfee8000 0003C (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ASF! 00000000bfee7000 000A5 (v32 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SBST 00000000bfee6000 00030 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ECDT 00000000bfee5000 00053 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SSDT 00000000bfee1000 004DC (v01  APPLE    CpuPm 00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bfee4000 000A5 (v01 SataRe  SataPri 00001000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bfee3000 0009F (v01 SataRe  SataSec 00001000 INTL 20061109)
[    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
[    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] (7 early reservations) ==> bootmem [0000000000 - 0140000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #2 [0001000000 - 000183acac]    TEXT DATA BSS ==> [0001000000 - 000183acac]
[    0.000000]   #3 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #4 [000183b000 - 000183b201]              BRK ==> [000183b000 - 000183b201]
[    0.000000]   #5 [0000008000 - 000000b000]          PGTABLE ==> [0000008000 - 000000b000]
[    0.000000]   #6 [000000b000 - 000000c000]          PGTABLE ==> [000000b000 - 000000c000]
[    0.000000]  [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880028600000-ffff88002bbfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00140000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000ae72b
[    0.000000]     0: 0x00100000 -> 0x00140000
[    0.000000] On node 0 totalpages: 976581
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 103 pages reserved
[    0.000000]   DMA zone: 3835 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 696163 pages, LIFO batch:31
[    0.000000]   Normal zone: 3584 pages used for memmap
[    0.000000]   Normal zone: 258560 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000ae72b000 - 00000000ae92c000
[    0.000000] PM: Registered nosave memory: 00000000ae92c000 - 00000000bf097000
[    0.000000] PM: Registered nosave memory: 00000000bf097000 - 00000000bf099000
[    0.000000] PM: Registered nosave memory: 00000000bf099000 - 00000000bf09b000
[    0.000000] PM: Registered nosave memory: 00000000bf09b000 - 00000000bf09d000
[    0.000000] PM: Registered nosave memory: 00000000bf09d000 - 00000000bfeb7000
[    0.000000] PM: Registered nosave memory: 00000000bfeb7000 - 00000000bfec6000
[    0.000000] PM: Registered nosave memory: 00000000bfec6000 - 00000000bfecd000
[    0.000000] PM: Registered nosave memory: 00000000bfecd000 - 00000000bfed6000
[    0.000000] PM: Registered nosave memory: 00000000bfed6000 - 00000000bfed7000
[    0.000000] PM: Registered nosave memory: 00000000bfed7000 - 00000000bfedf000
[    0.000000] PM: Registered nosave memory: 00000000bfedf000 - 00000000bfef9000
[    0.000000] PM: Registered nosave memory: 00000000bfef9000 - 00000000bfeff000
[    0.000000] PM: Registered nosave memory: 00000000bfeff000 - 00000000bff00000
[    0.000000] PM: Registered nosave memory: 00000000bff00000 - 00000000e7400000
[    0.000000] PM: Registered nosave memory: 00000000e7400000 - 00000000e7401000
[    0.000000] PM: Registered nosave memory: 00000000e7401000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffc00000
[    0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at bff00000 (gap: bff00000:27500000)
[    0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff880028200000 s84056 r8192 d22440 u1048576
[    0.000000] pcpu-alloc: s84056 r8192 d22440 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 958558
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc3-debug root=/dev/sda3 ro usbcore.autosuspend=1 init=/bin/bash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.000000] Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000
[    0.000000] software IO TLB at phys 0x20000000 - 0x24000000
[    0.000000] Memory: 3769132k/5242880k available (4714k kernel code, 1336556k absent, 136292k reserved, 2553k data, 468k init)
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:320
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.000000] Fast TSC calibration failed
[    0.000000] TSC: PIT calibration matches HPET. 2 loops
[    0.000000] Detected 3051.339 MHz processor.
[    0.010005] Calibrating delay loop (skipped), value calculated using timer frequency.. 6105.95 BogoMIPS (lpj=10171130)
[    0.010423] Mount-cache hash table entries: 256
[    0.010730] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.013530] CPU: L2 cache: 6144K
[    0.013728] CPU: Physical Processor ID: 0
[    0.013926] CPU: Processor Core ID: 0
[    0.014123] mce: CPU supports 6 MCE banks
[    0.014325] CPU0: Thermal monitoring enabled (TM2)
[    0.014526] using mwait in idle threads.
[    0.014697] Performance Events: Core2 events, Intel PMU driver.
[    0.015178] ... version:                2
[    0.015355] ... bit width:              40
[    0.015553] ... generic registers:      2
[    0.015750] ... value mask:             000000ffffffffff
[    0.016145] ... max period:             000000007fffffff
[    0.016312] ... fixed-purpose events:   3
[    0.016488] ... event mask:             0000000700000003
[    0.016681] ACPI: Core revision 20090903
[    0.026145] Setting APIC routing to flat
[    0.026666] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.060140] CPU0: Intel(R) Core(TM)2 Duo CPU     T9900  @ 3.06GHz stepping 0a
[    0.063333] Booting processor 1 APIC 0x1 ip 0x6000
[    5.106224] Not responding.
[    5.106479] Brought up 1 CPUs
[    5.106660] Total of 1 processors activated (6105.95 BogoMIPS).
[    5.106934] CPU0 attaching NULL sched-domain.
[    5.110168] Apple MacBookPro5 series board detected. Selecting PCI-method for reboots.
[    5.110637] regulator: core version 0.5
[    5.110918] NET: Registered protocol family 16
[    5.111399] ACPI: bus type pci registered
[    5.111907] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 255
[    5.112116] PCI: MCFG area at f0000000 reserved in E820
[    5.112335] PCI: updated MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
[    5.114513] PCI: Using MMCONFIG at f0000000 - f3ffffff
[    5.114729] PCI: Using configuration type 1 for base access
[    5.120000] bio: create slab <bio-0> at 0
[    5.124088] ACPI: EC: EC description table is found, configuring boot EC
[    5.125010] ACPI: BIOS _OSI(Linux) query ignored
[    5.127102] ACPI: Interpreter enabled
[    5.127325] ACPI: (supports S0 S3 S4 S5)
[    5.128108] ACPI: Using IOAPIC for interrupt routing
[    5.143791] ACPI: EC: GPE = 0x3f, I/O: command/status = 0x66, data = 0x62
[    5.144319] ACPI: No dock devices found.
[    5.144757] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    5.146674] pci 0000:00:03.0: reg 10 io port: [0x3000-0x30ff]
[    5.146812] pci 0000:00:03.2: reg 10 io port: [0x3180-0x31bf]
[    5.146829] pci 0000:00:03.2: reg 20 io port: [0x3140-0x317f]
[    5.146835] pci 0000:00:03.2: reg 24 io port: [0x3100-0x313f]
[    5.146865] pci 0000:00:03.2: PME# supported from D3hot D3cold
[    5.147100] pci 0000:00:03.2: PME# disabled
[    5.147555] pci 0000:00:03.5: reg 10 32bit mmio: [0xe7400000-0xe747ffff]
[    5.147687] pci 0000:00:04.0: reg 10 32bit mmio: [0xe7488000-0xe7488fff]
[    5.160009] pci 0000:00:04.0: supports D1 D2
[    5.160011] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.160240] pci 0000:00:04.0: PME# disabled
[    5.160496] pci 0000:00:04.1: reg 10 32bit mmio: [0xe7489200-0xe74892ff]
[    5.160552] pci 0000:00:04.1: supports D1 D2
[    5.160554] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
[    5.160780] pci 0000:00:04.1: PME# disabled
[    5.161046] pci 0000:00:06.0: reg 10 32bit mmio: [0xe7487000-0xe7487fff]
[    5.161092] pci 0000:00:06.0: supports D1 D2
[    5.161093] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.161325] pci 0000:00:06.0: PME# disabled
[    5.161591] pci 0000:00:06.1: reg 10 32bit mmio: [0xe7489100-0xe74891ff]
[    5.161648] pci 0000:00:06.1: supports D1 D2
[    5.161649] pci 0000:00:06.1: PME# supported from D0 D1 D2 D3hot D3cold
[    5.161873] pci 0000:00:06.1: PME# disabled
[    5.162136] pci 0000:00:08.0: reg 10 32bit mmio: [0xe7480000-0xe7483fff]
[    5.162177] pci 0000:00:08.0: PME# supported from D3hot D3cold
[    5.162392] pci 0000:00:08.0: PME# disabled
[    5.162693] pci 0000:00:0a.0: reg 10 32bit mmio: [0xe7486000-0xe7486fff]
[    5.162698] pci 0000:00:0a.0: reg 14 io port: [0x31e0-0x31e7]
[    5.162701] pci 0000:00:0a.0: reg 18 32bit mmio: [0xe7489000-0xe74890ff]
[    5.162705] pci 0000:00:0a.0: reg 1c 32bit mmio: [0xe7489300-0xe748930f]
[    5.162736] pci 0000:00:0a.0: supports D1 D2
[    5.162737] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.162963] pci 0000:00:0a.0: PME# disabled
[    5.163220] pci 0000:00:0b.0: reg 10 io port: [0x31d8-0x31df]
[    5.163224] pci 0000:00:0b.0: reg 14 io port: [0x31ec-0x31ef]
[    5.163228] pci 0000:00:0b.0: reg 18 io port: [0x31d0-0x31d7]
[    5.163232] pci 0000:00:0b.0: reg 1c io port: [0x31e8-0x31eb]
[    5.163235] pci 0000:00:0b.0: reg 20 io port: [0x31c0-0x31cf]
[    5.163239] pci 0000:00:0b.0: reg 24 32bit mmio: [0xe7484000-0xe7485fff]
[    5.163573] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.163812] pci 0000:00:0c.0: PME# disabled
[    5.164387] pci 0000:00:15.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.164616] pci 0000:00:15.0: PME# disabled
[    5.165165] pci 0000:00:16.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.165402] pci 0000:00:16.0: PME# disabled
[    5.165731] pci 0000:00:09.0: transparent bridge
[    5.165942] pci 0000:00:09.0: bridge 32bit mmio: [0xe7300000-0xe73fffff]
[    5.166112] pci 0000:02:00.0: reg 10 32bit mmio: [0xe4000000-0xe4ffffff]
[    5.166176] pci 0000:02:00.0: reg 14 64bit mmio pref: [0xc0000000-0xcfffffff]
[    5.166241] pci 0000:02:00.0: reg 1c 64bit mmio: [0xe2000000-0xe3ffffff]
[    5.166272] pci 0000:02:00.0: reg 24 io port: [0x2000-0x207f]
[    5.166304] pci 0000:02:00.0: reg 30 32bit mmio pref: [0xe5000000-0xe507ffff]
[    5.166639] pci 0000:00:0c.0: bridge io port: [0x2000-0x2fff]
[    5.166648] pci 0000:00:0c.0: bridge 32bit mmio: [0xe2000000-0xe50fffff]
[    5.166671] pci 0000:00:0c.0: bridge 64bit mmio pref: [0xc0000000-0xcfffffff]
[    5.166902] pci 0000:04:00.0: reg 10 64bit mmio: [0xe7200000-0xe7203fff]
[    5.166983] pci 0000:04:00.0: supports D1 D2
[    5.166984] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    5.167220] pci 0000:04:00.0: PME# disabled
[    5.167544] pci 0000:00:15.0: bridge 32bit mmio: [0xe7200000-0xe72fffff]
[    5.167631] pci 0000:05:00.0: reg 10 64bit mmio: [0xe7100000-0xe7100fff]
[    5.167709] pci 0000:05:00.0: supports D1 D2
[    5.167711] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    5.167941] pci 0000:05:00.0: PME# disabled
[    5.168260] pci 0000:00:16.0: bridge 32bit mmio: [0xe7100000-0xe71fffff]
[    5.168333] pci_bus 0000:00: on NUMA node 0
[    5.168336] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    5.215737] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 10 11 14 15) *0, disabled.
[    5.217555] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 10 11 14 15) *0, disabled.
[    5.219421] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 10 11 14 15) *0, disabled.
[    5.221269] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 10 11 14 15) *0, disabled.
[    5.223139] ACPI: PCI Interrupt Link [Z003] (IRQs 16 17 18 19 20 21 22 23) *11
[    5.225211] ACPI: PCI Interrupt Link [Z004] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.227261] ACPI: PCI Interrupt Link [Z005] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.229387] ACPI: PCI Interrupt Link [Z006] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.231548] ACPI: PCI Interrupt Link [Z007] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.233722] ACPI: PCI Interrupt Link [Z008] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.235757] ACPI: PCI Interrupt Link [Z009] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.237822] ACPI: PCI Interrupt Link [Z00A] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.240053] ACPI: PCI Interrupt Link [Z00B] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.242184] ACPI: PCI Interrupt Link [Z00C] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.244327] ACPI: PCI Interrupt Link [Z00D] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.246477] ACPI: PCI Interrupt Link [Z00E] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.248486] ACPI: PCI Interrupt Link [Z00F] (IRQs 16 17 18 19 20 21 22 23) *10
[    5.253505] ACPI: PCI Interrupt Link [Z00G] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.255466] ACPI: PCI Interrupt Link [Z00H] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.257583] ACPI: PCI Interrupt Link [Z00I] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.259578] ACPI: PCI Interrupt Link [Z00J] (IRQs 16 17 18 19 20 21 22 23) *7
[    5.261408] ACPI: PCI Interrupt Link [Z00K] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.263432] ACPI: PCI Interrupt Link [Z00L] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.265364] ACPI: PCI Interrupt Link [Z00M] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.267215] ACPI: PCI Interrupt Link [Z00N] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.269247] ACPI: PCI Interrupt Link [Z00O] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.271278] ACPI: PCI Interrupt Link [Z00P] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.273337] ACPI: PCI Interrupt Link [Z00Q] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.275360] ACPI: PCI Interrupt Link [Z00R] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.277163] ACPI: PCI Interrupt Link [Z00S] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.279201] ACPI: PCI Interrupt Link [Z00T] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.281219] ACPI: PCI Interrupt Link [Z00U] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.283205] ACPI: PCI Interrupt Link [LSMB] (IRQs 16 17 18 19 20 21 22 23) *15
[    5.285092] ACPI: PCI Interrupt Link [LUS0] (IRQs 16 17 18 19 20 21 22 23) *11
[    5.287031] ACPI: PCI Interrupt Link [LUS2] (IRQs 16 17 18 19 20 21 22 23) *10
[    5.288916] ACPI: PCI Interrupt Link [LMAC] (IRQs 16 17 18 19 20 21 22 23) *14
[    5.290818] ACPI: PCI Interrupt Link [LAZA] (IRQs 16 17 18 19 20 21 22 23) *15
[    5.292713] ACPI: PCI Interrupt Link [LGPU] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.294656] ACPI: PCI Interrupt Link [LPID] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.296676] ACPI: PCI Interrupt Link [LSI0] (IRQs 16 17 18 19 20 21 22 23) *11
[    5.298517] ACPI: PCI Interrupt Link [LSI1] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    5.300360] ACPI: PCI Interrupt Link [Z000] (IRQs 16 17 18 19 20 21 22 23) *7
[    5.302165] ACPI: PCI Interrupt Link [Z001] (IRQs 16 17 18 19 20 21 22 23) *5
[    5.303965] ACPI: PCI Interrupt Link [LPMU] (IRQs 16 17 18 19 20 21 22 23) *14
[    5.305800] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[    5.306040] vgaarb: loaded
[    5.306331] SCSI subsystem initialized
[    5.310008] libata version 3.00 loaded.
[    5.310058] usbcore: registered new interface driver usbfs
[    5.310281] usbcore: registered new interface driver hub
[    5.310458] usbcore: registered new device driver usb
[    5.310772] PCI: Using ACPI for IRQ routing
[    5.311355] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31, 31
[    5.312224] hpet0: 4 comparators, 64-bit 25.000000 MHz counter
[    5.316678] Switching to clocksource tsc
[    5.321165] Slow work thread pool: Starting up
[    5.321362] Slow work thread pool: Ready
[    5.321563] FS-Cache: Loaded
[    5.321783] CacheFiles: Loaded
[    5.321986] pnp: PnP ACPI init
[    5.322186] ACPI: bus type pnp registered
[    5.323323] Switched to high resolution mode on CPU 0
[    5.329595] pnp: PnP ACPI: found 9 devices
[    5.329794] ACPI: ACPI bus type pnp unregistered
[    5.329995] system 00:01: iomem range 0xf0000000-0xf3ffffff has been reserved
[    5.333561] system 00:04: iomem range 0xfed00000-0xfed003ff has been reserved
[    5.333766] system 00:06: ioport range 0x400-0x47f has been reserved
[    5.333968] system 00:06: ioport range 0x480-0x4ff has been reserved
[    5.334141] system 00:06: ioport range 0x500-0x57f has been reserved
[    5.334348] system 00:06: ioport range 0x580-0x5ff has been reserved
[    5.334551] system 00:06: ioport range 0x800-0x87f has been reserved
[    5.334753] system 00:06: ioport range 0x880-0x8ff has been reserved
[    5.334954] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[    5.335128] system 00:06: ioport range 0x295-0x296 has been reserved
[    5.341267] pci 0000:00:09.0: PCI bridge, secondary bus 0000:01
[    5.341467] pci 0000:00:09.0:   IO window: disabled
[    5.341669] pci 0000:00:09.0:   MEM window: 0xe7300000-0xe73fffff
[    5.341849] pci 0000:00:09.0:   PREFETCH window: disabled
[    5.342045] pci 0000:00:0c.0: PCI bridge, secondary bus 0000:02
[    5.342250] pci 0000:00:0c.0:   IO window: 0x2000-0x2fff
[    5.342457] pci 0000:00:0c.0:   MEM window: 0xe2000000-0xe50fffff
[    5.342663] pci 0000:00:0c.0:   PREFETCH window: 0x000000c0000000-0x000000cfffffff
[    5.342936] pci 0000:00:15.0: PCI bridge, secondary bus 0000:04
[    5.343081] pci 0000:00:15.0:   IO window: disabled
[    5.343288] pci 0000:00:15.0:   MEM window: 0xe7200000-0xe72fffff
[    5.343480] pci 0000:00:15.0:   PREFETCH window: disabled
[    5.343656] pci 0000:00:16.0: PCI bridge, secondary bus 0000:05
[    5.343856] pci 0000:00:16.0:   IO window: disabled
[    5.344063] pci 0000:00:16.0:   MEM window: 0xe7100000-0xe71fffff
[    5.344269] pci 0000:00:16.0:   PREFETCH window: disabled
[    5.344476] pci 0000:00:09.0: enabling device (0000 -> 0002)
[    5.344679] pci 0000:00:09.0: setting latency timer to 64
[    5.344959] ACPI: PCI Interrupt Link [Z003] enabled at IRQ 23
[    5.345144] pci 0000:00:0c.0: PCI INT A -> Link[Z003] -> GSI 23 (level, low) -> IRQ 23
[    5.345407] pci 0000:00:0c.0: setting latency timer to 64
[    5.345681] ACPI: PCI Interrupt Link [Z00F] enabled at IRQ 22
[    5.345883] pci 0000:00:15.0: PCI INT A -> Link[Z00F] -> GSI 22 (level, low) -> IRQ 22
[    5.346146] pci 0000:00:15.0: setting latency timer to 64
[    5.346416] ACPI: PCI Interrupt Link [Z00J] enabled at IRQ 21
[    5.346617] pci 0000:00:16.0: PCI INT A -> Link[Z00J] -> GSI 21 (level, low) -> IRQ 21
[    5.346866] pci 0000:00:16.0: setting latency timer to 64
[    5.346871] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    5.346873] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    5.346874] pci_bus 0000:01: resource 1 mem: [0xe7300000-0xe73fffff]
[    5.346876] pci_bus 0000:01: resource 3 io:  [0x00-0xffff]
[    5.346877] pci_bus 0000:01: resource 4 mem: [0x000000-0xffffffffffffffff]
[    5.346879] pci_bus 0000:02: resource 0 io:  [0x2000-0x2fff]
[    5.346880] pci_bus 0000:02: resource 1 mem: [0xe2000000-0xe50fffff]
[    5.346882] pci_bus 0000:02: resource 2 pref mem [0xc0000000-0xcfffffff]
[    5.346883] pci_bus 0000:04: resource 1 mem: [0xe7200000-0xe72fffff]
[    5.346885] pci_bus 0000:05: resource 1 mem: [0xe7100000-0xe71fffff]
[    5.346903] NET: Registered protocol family 2
[    5.347159] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    5.347927] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[    5.349951] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    5.350644] TCP: Hash tables configured (established 262144 bind 65536)
[    5.350846] TCP reno registered
[    5.351107] NET: Registered protocol family 1
[    5.351802] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
[    5.352026] Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    5.352288] Scanning for low memory corruption every 60 seconds
[    5.352596] Intel AES-NI instructions are not detected.
[    5.356777] VFS: Disk quotas dquot_6.5.2
[    5.357022] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    5.357707] ROMFS MTD (C) 2007 Red Hat, Inc.
[    5.357922] msgmni has been set to 7363
[    5.360017] alg: No test for cipher_null (cipher_null-generic)
[    5.360200] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[    5.360405] alg: No test for digest_null (digest_null-generic)
[    5.360590] alg: No test for compress_null (compress_null-generic)
[    5.361246] alg: No test for fcrypt (fcrypt-generic)
[    5.362630] alg: No test for stdrng (krng)
[    5.366097] alg: No test for ghash (ghash-generic)
[    5.366354] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    5.366588] io scheduler noop registered
[    5.366806] io scheduler cfq registered (default)
[    5.367184] pci 0000:02:00.0: Boot video device
[    5.367461] pcieport-driver 0000:00:0c.0: irq 24 for MSI/MSI-X
[    5.367480] pcieport-driver 0000:00:0c.0: setting latency timer to 64
[    5.367845] pcieport-driver 0000:00:15.0: irq 25 for MSI/MSI-X
[    5.367863] pcieport-driver 0000:00:15.0: setting latency timer to 64
[    5.368225] pcieport-driver 0000:00:16.0: irq 26 for MSI/MSI-X
[    5.368243] pcieport-driver 0000:00:16.0: setting latency timer to 64
[    5.368690] ACPI: AC Adapter [ADP1] (on-line)
[    5.368985] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    5.369293] ACPI: Lid Switch [LID0]
[    5.369532] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    5.369794] ACPI: Power Button [PWRB]
[    5.370043] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    5.370305] ACPI: Sleep Button [SLPB]
[    5.370539] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    5.370783] ACPI: Power Button [PWRF]
[    5.371671] ACPI: SSDT 00000000bfec5a98 002FE (v01  APPLE  Cpu0Ist 00003000 INTL 20061109)
[    5.372472] ACPI: SSDT 00000000bfec3c18 002AD (v01  APPLE  Cpu0Cst 00003001 INTL 20061109)
[    5.373362] Monitor-Mwait will be used to enter C-1 state
[    5.376672] Monitor-Mwait will be used to enter C-2 state
[    5.380005] Monitor-Mwait will be used to enter C-3 state
[    5.380008] Marking TSC unstable due to TSC halts in idle
[    5.380264] Switching to clocksource hpet
[    5.380478] processor LNXCPU:00: registered as cooling_device0
[    5.391200] Linux agpgart interface v0.103
[    5.391435] [drm] Initialized drm 1.1.0 20060810
[    5.393797] brd: module loaded
[    5.395278] loop: module loaded
[    5.395712] input: Macintosh mouse button emulation as /devices/virtual/input/input4
[    5.396403] ahci 0000:00:0b.0: version 3.0
[    5.396691] ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 20
[    5.396942] ahci 0000:00:0b.0: PCI INT A -> Link[LSI0] -> GSI 20 (level, low) -> IRQ 20
[    5.397277] ahci 0000:00:0b.0: irq 27 for MSI/MSI-X
[    5.397310] ahci 0000:00:0b.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3 impl IDE mode
[    5.397574] ahci 0000:00:0b.0: flags: 64bit ncq sntf pm led pmp pio slum part 
[    5.397835] ahci 0000:00:0b.0: setting latency timer to 64
[    5.397990] scsi0 : ahci
[    5.398462] scsi1 : ahci
[    5.398723] scsi2 : ahci
[    5.399068] scsi3 : ahci
[    5.399323] scsi4 : ahci
[    5.399560] scsi5 : ahci
[    5.399857] ata1: SATA max UDMA/133 abar m8192@0xe7484000 port 0xe7484100 irq 27
[    5.400146] ata2: SATA max UDMA/133 abar m8192@0xe7484000 port 0xe7484180 irq 27
[    5.400407] ata3: DUMMY
[    5.400602] ata4: DUMMY
[    5.400798] ata5: DUMMY
[    5.400993] ata6: DUMMY
[    5.401539] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    5.402063] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 19
[    5.402265] ehci_hcd 0000:00:04.1: PCI INT B -> Link[LUS2] -> GSI 19 (level, low) -> IRQ 19
[    5.402532] ehci_hcd 0000:00:04.1: setting latency timer to 64
[    5.402534] ehci_hcd 0000:00:04.1: EHCI Host Controller
[    5.402737] ehci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 1
[    5.403016] ehci_hcd 0000:00:04.1: debug port 1
[    5.403221] ehci_hcd 0000:00:04.1: cache line size of 32 is not supported
[    5.403231] ehci_hcd 0000:00:04.1: irq 19, io mem 0xe7489200
[    5.413344] ehci_hcd 0000:00:04.1: USB 2.0 started, EHCI 1.00
[    5.413566] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    5.413767] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.414023] usb usb1: Product: EHCI Host Controller
[    5.414222] usb usb1: Manufacturer: Linux 2.6.32-rc3-debug ehci_hcd
[    5.414401] usb usb1: SerialNumber: 0000:00:04.1
[    5.414724] usb usb1: configuration #1 chosen from 1 choice
[    5.415114] hub 1-0:1.0: USB hub found
[    5.415316] hub 1-0:1.0: 7 ports detected
[    5.415861] ACPI: PCI Interrupt Link [Z001] enabled at IRQ 18
[    5.416063] ehci_hcd 0000:00:06.1: PCI INT B -> Link[Z001] -> GSI 18 (level, low) -> IRQ 18
[    5.416320] ehci_hcd 0000:00:06.1: setting latency timer to 64
[    5.416322] ehci_hcd 0000:00:06.1: EHCI Host Controller
[    5.416523] ehci_hcd 0000:00:06.1: new USB bus registered, assigned bus number 2
[    5.416817] ehci_hcd 0000:00:06.1: debug port 1
[    5.417022] ehci_hcd 0000:00:06.1: cache line size of 32 is not supported
[    5.417032] ehci_hcd 0000:00:06.1: irq 18, io mem 0xe7489100
[    5.426753] ehci_hcd 0000:00:06.1: USB 2.0 started, EHCI 1.00
[    5.427109] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    5.427310] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.427567] usb usb2: Product: EHCI Host Controller
[    5.427739] usb usb2: Manufacturer: Linux 2.6.32-rc3-debug ehci_hcd
[    5.427928] usb usb2: SerialNumber: 0000:00:06.1
[    5.428263] usb usb2: configuration #1 chosen from 1 choice
[    5.428555] hub 2-0:1.0: USB hub found
[    5.428778] hub 2-0:1.0: 5 ports detected
[    5.429051] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    5.429524] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 17
[    5.429727] ohci_hcd 0000:00:04.0: PCI INT A -> Link[LUS0] -> GSI 17 (level, low) -> IRQ 17
[    5.430054] ohci_hcd 0000:00:04.0: setting latency timer to 64
[    5.430056] ohci_hcd 0000:00:04.0: OHCI Host Controller
[    5.430258] ohci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 3
[    5.430532] ohci_hcd 0000:00:04.0: irq 17, io mem 0xe7488000
[    5.456453] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132)
[    5.456994] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 10 (20090903/nsrepair-132)
[    5.457536] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 11 (20090903/nsrepair-132)
[    5.458057] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132)
[    5.481312] ACPI: Battery Slot [BAT0] (battery present)
[    5.485352] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    5.485553] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.485810] usb usb3: Product: OHCI Host Controller
[    5.486010] usb usb3: Manufacturer: Linux 2.6.32-rc3-debug ohci_hcd
[    5.486211] usb usb3: SerialNumber: 0000:00:04.0
[    5.486511] usb usb3: configuration #1 chosen from 1 choice
[    5.486916] hub 3-0:1.0: USB hub found
[    5.487169] hub 3-0:1.0: 7 ports detected
[    5.487666] ACPI: PCI Interrupt Link [Z000] enabled at IRQ 16
[    5.487864] ohci_hcd 0000:00:06.0: PCI INT A -> Link[Z000] -> GSI 16 (level, low) -> IRQ 16
[    5.488132] ohci_hcd 0000:00:06.0: setting latency timer to 64
[    5.488134] ohci_hcd 0000:00:06.0: OHCI Host Controller
[    5.488336] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 4
[    5.491975] ohci_hcd 0000:00:06.0: irq 16, io mem 0xe7487000
[    5.545355] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    5.545557] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.545774] usb usb4: Product: OHCI Host Controller
[    5.545957] usb usb4: Manufacturer: Linux 2.6.32-rc3-debug ohci_hcd
[    5.546158] usb usb4: SerialNumber: 0000:00:06.0
[    5.546368] usb usb4: configuration #1 chosen from 1 choice
[    5.546598] hub 4-0:1.0: USB hub found
[    5.546814] hub 4-0:1.0: 5 ports detected
[    5.547087] usbcore: registered new interface driver libusual
[    5.547373] PNP: No PS/2 controller found. Probing ports directly.
[    5.548432] i8042.c: No controller found.
[    5.548705] mice: PS/2 mouse device common for all mice
[    5.548964] i2c i2c-0: nForce2 SMBus adapter at 0x3140
[    5.549171] i2c i2c-1: nForce2 SMBus adapter at 0x3100
[    5.549550] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    5.549928] cpuidle: using governor ladder
[    5.550279] cpuidle: using governor menu
[    5.551082] usbcore: registered new interface driver hiddev
[    5.551306] usbcore: registered new interface driver usbhid
[    5.551505] usbhid: v2.6:USB HID core driver
[    5.551899] TCP cubic registered
[    5.552239] NET: Registered protocol family 10
[    5.552721] lo: Disabled Privacy Extensions
[    5.553088] Mobile IPv6
[    5.553285] NET: Registered protocol family 17
[    5.553496] NET: Registered protocol family 15
[    5.554166] PM: Resume from disk failed.
[    5.720042] usb 1-4: new high speed USB device using ehci_hcd and address 2
[    5.850738] usb 1-4: New USB device found, idVendor=05ac, idProduct=8507
[    5.850923] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    5.851127] usb 1-4: Product: Built-in iSight
[    5.851329] usb 1-4: Manufacturer: Apple Inc.
[    5.851530] usb 1-4: SerialNumber: 8H98400GG8DD3A1A
[    5.851811] usb 1-4: configuration #1 chosen from 1 choice
[    5.883375] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    5.883591] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    5.883970] ata1.00: ATA-8: APPLE SSD TS256A, AGAB0202, max UDMA/100
[    5.884175] ata1.00: 490234752 sectors, multi 16: LBA48 
[    5.884582] ata1.00: configured for UDMA/100
[    5.889248] ata2.00: ATAPI: HL-DT-ST DVDRW  GS23N, SB00, max UDMA/133, ATAPI AN
[    5.894697] ata2.00: configured for UDMA/133
[    5.896803] scsi 0:0:0:0: Direct-Access     ATA      APPLE SSD TS256A AGAB PQ: 0 ANSI: 5
[    5.897295] sd 0:0:0:0: [sda] 490234752 512-byte logical blocks: (251 GB/233 GiB)
[    5.897608] sd 0:0:0:0: [sda] Write Protect is off
[    5.897811] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    5.897839] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    5.898229]  sda:
[    5.898450] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    5.900172]  sda1 sda2 sda3 sda4 sda5
[    5.901493] sd 0:0:0:0: [sda] Attached SCSI disk
[    5.909738] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVDRW  GS23N     SB00 PQ: 0 ANSI: 5
[    5.921235] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    5.921442] Uniform CD-ROM driver Revision: 3.20
[    5.921739] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    5.921838] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    5.924708] EXT3-fs: mounted filesystem with writeback data mode.
[    5.924909] VFS: Mounted root (ext3 filesystem) readonly on device 8:3.
[    5.925127] Freeing unused kernel memory: 468k freed
[    5.925507] kjournald starting.  Commit interval 5 seconds
[    6.223376] usb 2-5: new high speed USB device using ehci_hcd and address 3
[    6.352024] usb 2-5: New USB device found, idVendor=05ac, idProduct=8403
[    6.352202] usb 2-5: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    6.352409] usb 2-5: Product: Card Reader
[    6.352608] usb 2-5: Manufacturer: Apple
[    6.352808] usb 2-5: SerialNumber: 000000009833
[    6.353521] usb 2-5: configuration #1 chosen from 1 choice
[    6.367222] Initializing USB Mass Storage driver...
[    6.367512] scsi6 : SCSI emulation for USB Mass Storage devices
[    6.367853] usb-storage: device found at 3
[    6.367856] usb-storage: waiting for device to settle before scanning
[    6.367870] usbcore: registered new interface driver usb-storage
[    6.368064] USB Mass Storage support registered.
[    6.633374] usb 4-1: new full speed USB device using ohci_hcd and address 2
[    6.835384] usb 4-1: New USB device found, idVendor=0a5c, idProduct=4500
[    6.835584] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    6.835756] usb 4-1: Product: BRCM2046 Hub
[    6.835934] usb 4-1: Manufacturer: Apple Inc.
[    6.836210] usb 4-1: configuration #1 chosen from 1 choice
[    6.838430] hub 4-1:1.0: USB hub found
[    6.841381] hub 4-1:1.0: 3 ports detected
[    7.133374] usb 3-5: new low speed USB device using ohci_hcd and address 2
[    7.328381] usb 3-5: New USB device found, idVendor=05ac, idProduct=8242
[    7.328586] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.328770] usb 3-5: Product: IR Receiver
[    7.328969] usb 3-5: Manufacturer: Apple Computer, Inc.
[    7.329248] usb 3-5: configuration #1 chosen from 1 choice
[    7.347510] apple 0003:05AC:8242.0001: hiddev96,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:04.0-5/input0
[    7.626708] usb 3-6: new full speed USB device using ohci_hcd and address 3
[    7.831382] usb 3-6: New USB device found, idVendor=05ac, idProduct=0237
[    7.831586] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    7.831791] usb 3-6: Product: Apple Internal Keyboard / Trackpad
[    7.831967] usb 3-6: Manufacturer: Apple Inc.
[    7.832232] usb 3-6: configuration #1 chosen from 1 choice
[    7.846097] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:04.0/usb3/3-6/3-6:1.0/input/input5
[    7.846409] apple 0003:05AC:0237.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input0
[    8.347429] apple 0003:05AC:0237.0003: hidraw2: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input1
[    8.421383] usb 4-1.1: new full speed USB device using ohci_hcd and address 3
[    8.535383] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8217
[    8.535585] usb 4-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.535821] usb 4-1.1: Product: Bluetooth USB Host Controller
[    8.535997] usb 4-1.1: Manufacturer: Apple Inc.
[    8.536197] usb 4-1.1: SerialNumber: 002608DA9686
[    8.536462] usb 4-1.1: configuration #1 chosen from 1 choice
[   11.367163] usb-storage: device scan complete
[   11.368541] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[   11.369339] sd 6:0:0:0: Attached scsi generic sg2 type 0
[   11.370777] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[   37.837014] EXT3 FS on sda3, internal journal
[   50.057853] applesmc:  - Model  accelerometer
[   50.058039] applesmc:  - Model  light sensors and backlight
[   50.058235] applesmc:  - Model with 20 temperature sensors
[   50.091594] applesmc: wait status failed: 5 != 0
[   50.176418] applesmc: wait status failed: 5 != 0
[   50.263085] applesmc: wait status failed: 5 != 0
[   50.349750] applesmc: wait status failed: 5 != 0
[   50.436416] applesmc: wait status failed: 5 != 0
[   50.523083] applesmc: wait status failed: 5 != 0
[   50.609751] applesmc: wait status failed: 5 != 0
[   50.696417] applesmc: wait status failed: 5 != 0
[   50.783083] applesmc: wait status failed: 5 != 0
[   50.869750] applesmc: wait status failed: 5 != 0
[   50.956417] applesmc: wait status failed: 5 != 0
[   51.043083] applesmc: wait status failed: 5 != 0
[   51.129751] applesmc: wait status failed: 5 != 0
[   51.216417] applesmc: wait status failed: 5 != 0
[   51.303083] applesmc: wait status failed: 5 != 0
[   51.389753] applesmc: wait status failed: 5 != 0
[   51.476416] applesmc: wait status failed: 5 != 0
[   51.563084] applesmc: wait status failed: 5 != 0
[   51.649751] applesmc: wait status failed: 5 != 0
[   51.736416] applesmc: wait status failed: 5 != 0
[   51.823083] applesmc: wait status failed: 5 != 0
[   51.909751] applesmc: wait status failed: 5 != 0
[   51.996417] applesmc: wait status failed: 5 != 0
[   52.083084] applesmc: wait status failed: 5 != 0
[   52.169749] applesmc: wait status failed: 5 != 0
[   52.256416] applesmc: wait status failed: 5 != 0
[   52.343083] applesmc: wait status failed: 5 != 0
[   52.433084] applesmc: wait status failed: 5 != 0
[   52.519751] applesmc: wait status failed: 5 != 0
[   52.606416] applesmc: wait status failed: 5 != 0
[   52.693083] applesmc: wait status failed: 5 != 0
[   52.779750] applesmc: wait status failed: 5 != 0
[   52.866417] applesmc: wait status failed: 5 != 0
[   52.953215] applesmc: wait status failed: 5 != 0
[   53.039749] applesmc: wait status failed: 5 != 0
[   53.126416] applesmc: wait status failed: 5 != 0
[   53.213084] applesmc: wait status failed: 5 != 0
[   53.299750] applesmc: wait status failed: 5 != 0
[   53.386420] applesmc: wait status failed: 5 != 0
[   53.473083] applesmc: wait status failed: 5 != 0
[   53.559750] applesmc: wait status failed: 5 != 0
[   53.646416] applesmc: wait status failed: 5 != 0
[   53.733200] applesmc: wait status failed: 5 != 0
[   53.819749] applesmc: wait status failed: 5 != 0
[   53.906416] applesmc: wait status failed: 5 != 0
[   53.993083] applesmc: wait status failed: 5 != 0
[   54.079750] applesmc: wait status failed: 5 != 0
[   54.166417] applesmc: wait status failed: 5 != 0
[   54.253082] applesmc: wait status failed: 5 != 0
[   54.339749] applesmc: wait status failed: 5 != 0
[   54.426417] applesmc: wait status failed: 5 != 0
[   54.513083] applesmc: wait status failed: 5 != 0
[   54.599750] applesmc: wait status failed: 5 != 0
[   54.686395] applesmc: wait status failed: 5 != 0
[   54.773082] applesmc: wait status failed: 5 != 0
[   54.859749] applesmc: wait status failed: 5 != 0
[   54.946416] applesmc: wait status failed: 5 != 0
[   55.033083] applesmc: wait status failed: 5 != 0
[   55.119750] applesmc: wait status failed: 5 != 0
[   55.206417] applesmc: wait status failed: 5 != 0
[   55.293082] applesmc: wait status failed: 5 != 0
[   55.379823] applesmc: wait status failed: 5 != 0
[   55.466417] applesmc: wait status failed: 5 != 0
[   55.553083] applesmc: wait status failed: 5 != 0
[   55.639750] applesmc: wait status failed: 5 != 0
[   55.726415] applesmc: wait status failed: 5 != 0
[   55.813082] applesmc: wait status failed: 5 != 0
[   55.899749] applesmc: wait status failed: 5 != 0
[   55.986416] applesmc: wait status failed: 5 != 0
[   56.069386] applesmc: wait status failed: 5 != 0
[   56.156415] applesmc: wait status failed: 5 != 0
[   56.243213] applesmc: wait status failed: 5 != 0
[   56.329749] applesmc: wait status failed: 5 != 0
[   56.416419] applesmc: wait status failed: 5 != 0
[   56.503083] applesmc: wait status failed: 5 != 0
[   56.589750] applesmc: wait status failed: 5 != 0
[   56.676415] applesmc: wait status failed: 5 != 0
[   56.763082] applesmc: wait status failed: 5 != 0
[   56.849750] applesmc: wait status failed: 5 != 0
[   56.936416] applesmc: wait status failed: 5 != 0
[   57.023083] applesmc: wait status failed: 5 != 0
[   57.109748] applesmc: wait status failed: 5 != 0
[   57.196415] applesmc: wait status failed: 5 != 0
[   57.283082] applesmc: wait status failed: 5 != 0
[   57.369749] applesmc: wait status failed: 5 != 0
[   57.456416] applesmc: wait status failed: 5 != 0
[   57.543083] applesmc: wait status failed: 5 != 0
[   57.629749] applesmc: wait status failed: 5 != 0
[   57.716416] applesmc: wait status failed: 5 != 0
[   57.803083] applesmc: wait status failed: 5 != 0
[   57.889750] applesmc: wait status failed: 5 != 0
[   57.976416] applesmc: wait status failed: 5 != 0
[   58.063084] applesmc: wait status failed: 5 != 0
[   58.149749] applesmc: wait status failed: 5 != 0
[   58.236415] applesmc: wait status failed: 5 != 0
[   58.323212] applesmc: wait status failed: 5 != 0
[   58.409750] applesmc: wait status failed: 5 != 0
[   58.496417] applesmc: wait status failed: 5 != 0
[   58.583082] applesmc: wait status failed: 5 != 0
[   58.669749] applesmc: wait status failed: 5 != 0
[   58.723366] applesmc: failed to init the device
[   58.723551] ------------[ cut here ]------------
[   58.723754] WARNING: at fs/sysfs/dir.c:487 sysfs_add_one+0xc5/0x160()
[   58.723957] Hardware name: MacBookPro5,3
[   58.724159] sysfs: cannot create duplicate filename '/devices/platform/\x01 ÿÿÿÿ&¡\x01 ÿÿÿÿ0¡\x01 ÿÿÿÿh¡\x01 ÿÿÿÿÉ¥\x01 ÿÿÿÿÓ¥\x01 ÿÿÿÿXŠ\x01 ÿÿÿÿŠ\x01 ÿÿÿÿÜŠ\x01 ÿÿÿÿáŠ\x01 ÿÿÿÿüŸ\x01 ÿÿÿÿ›¢\x01 ÿÿÿÿ­¢\x01 ÿÿÿÿh£\x01 ÿÿÿÿw£\x01 ÿÿÿÿn¢\x01 ÿÿÿÿs¢\x01 ÿÿÿÿ‘¢\x01 ÿÿÿÿ\a¥\x01 ÿÿÿÿ׊\x01 ÿÿÿÿîŸ\x01 ÿÿÿÿæŠ\x01 ÿÿÿÿ\x01 \x01 ÿÿÿÿ.768/'
[   58.724561] Modules linked in: applesmc(+) input_polldev usb_storage
[   58.725288] Pid: 857, comm: modprobe Not tainted 2.6.32-rc3-debug #24
[   58.725469] Call Trace:
[   58.725673]  [<ffffffff810527f8>] warn_slowpath_common+0x78/0xb0
[   58.725856]  [<ffffffff8105288c>] warn_slowpath_fmt+0x3c/0x40
[   58.726061]  [<ffffffff811567e5>] sysfs_add_one+0xc5/0x160
[   58.726237]  [<ffffffff81155f2d>] sysfs_add_file_mode+0x5d/0xa0
[   58.726442]  [<ffffffff81158781>] internal_create_group+0xc1/0x1a0
[   58.726648]  [<ffffffffa0020000>] ? applesmc_init+0x0/0x57a [applesmc]
[   58.726865]  [<ffffffff8115888e>] sysfs_create_group+0xe/0x10
[   58.727071]  [<ffffffffa00200d2>] applesmc_init+0xd2/0x57a [applesmc]
[   58.727279]  [<ffffffff81074a09>] ? up_read+0x9/0x10
[   58.727462]  [<ffffffff810755f0>] ? __blocking_notifier_call_chain+0x60/0x80
[   58.727669]  [<ffffffffa0020000>] ? applesmc_init+0x0/0x57a [applesmc]
[   58.727877]  [<ffffffff81009047>] do_one_initcall+0x37/0x190
[   58.728055]  [<ffffffff8108a7b6>] sys_init_module+0xd6/0x250
[   58.728258]  [<ffffffff8100b3ab>] system_call_fastpath+0x16/0x1b
[   58.728445] ---[ end trace 384ac166dab39815 ]---
[   58.728700] applesmc: driver init failed (ret=-17)!

[-- Attachment #3: oops-tun --]
[-- Type: text/plain, Size: 52461 bytes --]

[    0.000000] Linux version 2.6.32-rc3-debug (sonne@no) (gcc version 4.4.2 (Debian 4.4.2-3) ) #24 SMP PREEMPT Sat Nov 21 09:23:52 CET 2009
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc3-debug root=/dev/sda3 ro usbcore.autosuspend=1 init=/bin/bash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009fc00 (usable)
[    0.000000]  BIOS-e820: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000ae72b000 (usable)
[    0.000000]  BIOS-e820: 00000000ae72b000 - 00000000ae92c000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000ae92c000 - 00000000bf097000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bf097000 - 00000000bf099000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bf099000 - 00000000bf09b000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bf09b000 - 00000000bf09d000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bf09d000 - 00000000bfeb7000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfeb7000 - 00000000bfec6000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfec6000 - 00000000bfecd000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfecd000 - 00000000bfed6000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfed6000 - 00000000bfed7000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfed7000 - 00000000bfedf000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfedf000 - 00000000bfef9000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfef9000 - 00000000bfeff000 (reserved)
[    0.000000]  BIOS-e820: 00000000bfeff000 - 00000000bff00000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000e7400000 - 00000000e7401000 (reserved)
[    0.000000]  BIOS-e820: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffc00000 - 0000000100000000 (reserved)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] DMI 2.4 present.
[    0.000000] last_pfn = 0x140000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 disabled
[    0.000000]   1 base 000000000 mask F80000000 write-back
[    0.000000]   2 base 080000000 mask FC0000000 write-back
[    0.000000]   3 base 100000000 mask FC0000000 write-back
[    0.000000]   4 base 0BFF00000 mask FFFF00000 uncachable
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] original variable MTRRs
[    0.000000] reg 1, base: 0GB, range: 2GB, type WB
[    0.000000] reg 2, base: 2GB, range: 1GB, type WB
[    0.000000] reg 3, base: 4GB, range: 1GB, type WB
[    0.000000] reg 4, base: 3071MB, range: 1MB, type UC
[    0.000000] total RAM coverred: 4095M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 4  	lose cover RAM: 0G
[    0.000000] New variable MTRRs
[    0.000000] reg 0, base: 0GB, range: 2GB, type WB
[    0.000000] reg 1, base: 2GB, range: 1GB, type WB
[    0.000000] reg 2, base: 3071MB, range: 1MB, type UC
[    0.000000] reg 3, base: 4GB, range: 1GB, type WB
[    0.000000] e820 update range: 00000000bff00000 - 0000000100000000 (usable) ==> (reserved)
[    0.000000] last_pfn = 0xae72b max_arch_pfn = 0x400000000
[    0.000000] e820 update range: 0000000000001000 - 0000000000006000 (usable) ==> (reserved)
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000001000 (usable)
[    0.000000]  modified: 0000000000001000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 000000000009fc00 (usable)
[    0.000000]  modified: 000000000009fc00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000e0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000ae72b000 (usable)
[    0.000000]  modified: 00000000ae72b000 - 00000000ae92c000 (ACPI NVS)
[    0.000000]  modified: 00000000ae92c000 - 00000000bf097000 (ACPI data)
[    0.000000]  modified: 00000000bf097000 - 00000000bf099000 (ACPI NVS)
[    0.000000]  modified: 00000000bf099000 - 00000000bf09b000 (ACPI data)
[    0.000000]  modified: 00000000bf09b000 - 00000000bf09d000 (ACPI NVS)
[    0.000000]  modified: 00000000bf09d000 - 00000000bfeb7000 (ACPI data)
[    0.000000]  modified: 00000000bfeb7000 - 00000000bfec6000 (ACPI NVS)
[    0.000000]  modified: 00000000bfec6000 - 00000000bfecd000 (ACPI data)
[    0.000000]  modified: 00000000bfecd000 - 00000000bfed6000 (ACPI NVS)
[    0.000000]  modified: 00000000bfed6000 - 00000000bfed7000 (ACPI data)
[    0.000000]  modified: 00000000bfed7000 - 00000000bfedf000 (ACPI NVS)
[    0.000000]  modified: 00000000bfedf000 - 00000000bfef9000 (ACPI data)
[    0.000000]  modified: 00000000bfef9000 - 00000000bfeff000 (reserved)
[    0.000000]  modified: 00000000bfeff000 - 00000000bff00000 (ACPI data)
[    0.000000]  modified: 00000000e7400000 - 00000000e7401000 (reserved)
[    0.000000]  modified: 00000000f0000000 - 00000000f4000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fec01000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fee01000 (reserved)
[    0.000000]  modified: 00000000ffc00000 - 0000000100000000 (reserved)
[    0.000000]  modified: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] initial memory mapped : 0 - 20000000
[    0.000000] init_memory_mapping: 0000000000000000-00000000ae72b000
[    0.000000]  0000000000 - 00ae600000 page 2M
[    0.000000]  00ae600000 - 00ae72b000 page 4k
[    0.000000] kernel direct mapping tables up to ae72b000 @ 8000-d000
[    0.000000] init_memory_mapping: 0000000100000000-0000000140000000
[    0.000000]  0100000000 - 0140000000 page 2M
[    0.000000] kernel direct mapping tables up to 140000000 @ b000-11000
[    0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 APPLE )
[    0.000000] ACPI: XSDT 00000000bfeee1c0 0007C (v01 APPLE   Apple00 000000AC      01000013)
[    0.000000] ACPI: FACP 00000000bfeec000 000F4 (v04 APPLE   Apple00 000000AC Loki 0000005F)
[    0.000000] ACPI: DSDT 00000000bfec6000 06238 (v01 APPLE  MacBookP 00050003 INTL 20061109)
[    0.000000] ACPI: FACS 00000000bfecd000 00040
[    0.000000] ACPI: HPET 00000000bfeeb000 00038 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 00000000bfeea000 00068 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: APIC 00000000bfee9000 00068 (v02 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: MCFG 00000000bfee8000 0003C (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ASF! 00000000bfee7000 000A5 (v32 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SBST 00000000bfee6000 00030 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: ECDT 00000000bfee5000 00053 (v01 APPLE   Apple00 00000001 Loki 0000005F)
[    0.000000] ACPI: SSDT 00000000bfee1000 004DC (v01  APPLE    CpuPm 00003000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bfee4000 000A5 (v01 SataRe  SataPri 00001000 INTL 20061109)
[    0.000000] ACPI: SSDT 00000000bfee3000 0009F (v01 SataRe  SataSec 00001000 INTL 20061109)
[    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
[    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] (7 early reservations) ==> bootmem [0000000000 - 0140000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #2 [0001000000 - 000183acac]    TEXT DATA BSS ==> [0001000000 - 000183acac]
[    0.000000]   #3 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #4 [000183b000 - 000183b201]              BRK ==> [000183b000 - 000183b201]
[    0.000000]   #5 [0000008000 - 000000b000]          PGTABLE ==> [0000008000 - 000000b000]
[    0.000000]   #6 [000000b000 - 000000c000]          PGTABLE ==> [000000b000 - 000000c000]
[    0.000000]  [ffffea0000000000-ffffea00045fffff] PMD -> [ffff880028600000-ffff88002bbfffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00140000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[4] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000001
[    0.000000]     0: 0x00000006 -> 0x0000009f
[    0.000000]     0: 0x00000100 -> 0x000ae72b
[    0.000000]     0: 0x00100000 -> 0x00140000
[    0.000000] On node 0 totalpages: 976581
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 103 pages reserved
[    0.000000]   DMA zone: 3835 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 696163 pages, LIFO batch:31
[    0.000000]   Normal zone: 3584 pages used for memmap
[    0.000000]   Normal zone: 258560 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 1, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 24
[    0.000000] PM: Registered nosave memory: 0000000000001000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[    0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000ae72b000 - 00000000ae92c000
[    0.000000] PM: Registered nosave memory: 00000000ae92c000 - 00000000bf097000
[    0.000000] PM: Registered nosave memory: 00000000bf097000 - 00000000bf099000
[    0.000000] PM: Registered nosave memory: 00000000bf099000 - 00000000bf09b000
[    0.000000] PM: Registered nosave memory: 00000000bf09b000 - 00000000bf09d000
[    0.000000] PM: Registered nosave memory: 00000000bf09d000 - 00000000bfeb7000
[    0.000000] PM: Registered nosave memory: 00000000bfeb7000 - 00000000bfec6000
[    0.000000] PM: Registered nosave memory: 00000000bfec6000 - 00000000bfecd000
[    0.000000] PM: Registered nosave memory: 00000000bfecd000 - 00000000bfed6000
[    0.000000] PM: Registered nosave memory: 00000000bfed6000 - 00000000bfed7000
[    0.000000] PM: Registered nosave memory: 00000000bfed7000 - 00000000bfedf000
[    0.000000] PM: Registered nosave memory: 00000000bfedf000 - 00000000bfef9000
[    0.000000] PM: Registered nosave memory: 00000000bfef9000 - 00000000bfeff000
[    0.000000] PM: Registered nosave memory: 00000000bfeff000 - 00000000bff00000
[    0.000000] PM: Registered nosave memory: 00000000bff00000 - 00000000e7400000
[    0.000000] PM: Registered nosave memory: 00000000e7400000 - 00000000e7401000
[    0.000000] PM: Registered nosave memory: 00000000e7401000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffc00000
[    0.000000] PM: Registered nosave memory: 00000000ffc00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at bff00000 (gap: bff00000:27500000)
[    0.000000] NR_CPUS:2 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff880028200000 s84056 r8192 d22440 u1048576
[    0.000000] pcpu-alloc: s84056 r8192 d22440 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 958558
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.32-rc3-debug root=/dev/sda3 ro usbcore.autosuspend=1 init=/bin/bash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.000000] Placing 64MB software IO TLB between ffff880020000000 - ffff880024000000
[    0.000000] software IO TLB at phys 0x20000000 - 0x24000000
[    0.000000] Memory: 3769132k/5242880k available (4714k kernel code, 1336556k absent, 136292k reserved, 2553k data, 468k init)
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] NR_IRQS:320
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 3051.255 MHz processor.
[    0.003339] Calibrating delay loop (skipped), value calculated using timer frequency.. 6104.78 BogoMIPS (lpj=10170850)
[    0.003756] Mount-cache hash table entries: 256
[    0.004065] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004369] CPU: L2 cache: 6144K
[    0.004555] CPU: Physical Processor ID: 0
[    0.004753] CPU: Processor Core ID: 0
[    0.004939] mce: CPU supports 6 MCE banks
[    0.005141] CPU0: Thermal monitoring enabled (TM2)
[    0.005340] using mwait in idle threads.
[    0.005538] Performance Events: Core2 events, Intel PMU driver.
[    0.006670] ... version:                2
[    0.006868] ... bit width:              40
[    0.007065] ... generic registers:      2
[    0.007258] ... value mask:             000000ffffffffff
[    0.007423] ... max period:             000000007fffffff
[    0.007620] ... fixed-purpose events:   3
[    0.007817] ... event mask:             0000000700000003
[    0.008028] ACPI: Core revision 20090903
[    0.017610] Setting APIC routing to flat
[    0.018189] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.051367] CPU0: Intel(R) Core(TM)2 Duo CPU     T9900  @ 3.06GHz stepping 0a
[    0.053333] Booting processor 1 APIC 0x1 ip 0x6000
[    0.006666] Initializing CPU#1
[    0.006666] Calibrating delay using timer specific routine.. 6105.84 BogoMIPS (lpj=10170955)
[    0.006666] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.006666] CPU: L2 cache: 6144K
[    0.006666] CPU: Physical Processor ID: 0
[    0.006666] CPU: Processor Core ID: 1
[    0.006666] mce: CPU supports 6 MCE banks
[    0.006666] CPU1: Thermal monitoring enabled (TM2)
[    0.143363] CPU1: Intel(R) Core(TM)2 Duo CPU     T9900  @ 3.06GHz stepping 0a
[    0.145482] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.146690] Brought up 2 CPUs
[    0.146864] Total of 2 processors activated (12209.62 BogoMIPS).
[    0.150009] CPU0 attaching sched-domain:
[    0.150012]  domain 0: span 0-1 level MC
[    0.150014]   groups: 0 1
[    0.150018] CPU1 attaching sched-domain:
[    0.150019]  domain 0: span 0-1 level MC
[    0.150021]   groups: 1 0
[    0.156853] Apple MacBookPro5 series board detected. Selecting PCI-method for reboots.
[    0.157280] regulator: core version 0.5
[    0.157523] NET: Registered protocol family 16
[    0.158196] ACPI: bus type pci registered
[    0.158692] PCI: MCFG configuration 0: base f0000000 segment 0 buses 0 - 255
[    0.158884] PCI: MCFG area at f0000000 reserved in E820
[    0.159078] PCI: updated MCFG configuration 0: base f0000000 segment 0 buses 0 - 63
[    0.161181] PCI: Using MMCONFIG at f0000000 - f3ffffff
[    0.161380] PCI: Using configuration type 1 for base access
[    0.170081] bio: create slab <bio-0> at 0
[    0.177460] ACPI: EC: EC description table is found, configuring boot EC
[    0.180241] ACPI: BIOS _OSI(Linux) query ignored
[    0.180873] ACPI: Interpreter enabled
[    0.181072] ACPI: (supports S0 S3 S4 S5)
[    0.181816] ACPI: Using IOAPIC for interrupt routing
[    0.197061] ACPI: EC: GPE = 0x3f, I/O: command/status = 0x66, data = 0x62
[    0.197560] ACPI: No dock devices found.
[    0.197969] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.198397] pci 0000:00:03.0: reg 10 io port: [0x3000-0x30ff]
[    0.198485] pci 0000:00:03.2: reg 10 io port: [0x3180-0x31bf]
[    0.198496] pci 0000:00:03.2: reg 20 io port: [0x3140-0x317f]
[    0.198500] pci 0000:00:03.2: reg 24 io port: [0x3100-0x313f]
[    0.198520] pci 0000:00:03.2: PME# supported from D3hot D3cold
[    0.198723] pci 0000:00:03.2: PME# disabled
[    0.199057] pci 0000:00:03.5: reg 10 32bit mmio: [0xe7400000-0xe747ffff]
[    0.199141] pci 0000:00:04.0: reg 10 32bit mmio: [0xe7488000-0xe7488fff]
[    0.210026] pci 0000:00:04.0: supports D1 D2
[    0.210028] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.210230] pci 0000:00:04.0: PME# disabled
[    0.210450] pci 0000:00:04.1: reg 10 32bit mmio: [0xe7489200-0xe74892ff]
[    0.210488] pci 0000:00:04.1: supports D1 D2
[    0.210489] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.210691] pci 0000:00:04.1: PME# disabled
[    0.210916] pci 0000:00:06.0: reg 10 32bit mmio: [0xe7487000-0xe7487fff]
[    0.210944] pci 0000:00:06.0: supports D1 D2
[    0.210946] pci 0000:00:06.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.211148] pci 0000:00:06.0: PME# disabled
[    0.211367] pci 0000:00:06.1: reg 10 32bit mmio: [0xe7489100-0xe74891ff]
[    0.211403] pci 0000:00:06.1: supports D1 D2
[    0.211405] pci 0000:00:06.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.211606] pci 0000:00:06.1: PME# disabled
[    0.211830] pci 0000:00:08.0: reg 10 32bit mmio: [0xe7480000-0xe7483fff]
[    0.211855] pci 0000:00:08.0: PME# supported from D3hot D3cold
[    0.212038] pci 0000:00:08.0: PME# disabled
[    0.212284] pci 0000:00:0a.0: reg 10 32bit mmio: [0xe7486000-0xe7486fff]
[    0.212288] pci 0000:00:0a.0: reg 14 io port: [0x31e0-0x31e7]
[    0.212291] pci 0000:00:0a.0: reg 18 32bit mmio: [0xe7489000-0xe74890ff]
[    0.212294] pci 0000:00:0a.0: reg 1c 32bit mmio: [0xe7489300-0xe748930f]
[    0.212314] pci 0000:00:0a.0: supports D1 D2
[    0.212315] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.212518] pci 0000:00:0a.0: PME# disabled
[    0.212713] pci 0000:00:0b.0: reg 10 io port: [0x31d8-0x31df]
[    0.212717] pci 0000:00:0b.0: reg 14 io port: [0x31ec-0x31ef]
[    0.212720] pci 0000:00:0b.0: reg 18 io port: [0x31d0-0x31d7]
[    0.212723] pci 0000:00:0b.0: reg 1c io port: [0x31e8-0x31eb]
[    0.212726] pci 0000:00:0b.0: reg 20 io port: [0x31c0-0x31cf]
[    0.212729] pci 0000:00:0b.0: reg 24 32bit mmio: [0xe7484000-0xe7485fff]
[    0.212958] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.213164] pci 0000:00:0c.0: PME# disabled
[    0.213582] pci 0000:00:15.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.213788] pci 0000:00:15.0: PME# disabled
[    0.214225] pci 0000:00:16.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.214431] pci 0000:00:16.0: PME# disabled
[    0.214704] pci 0000:00:09.0: transparent bridge
[    0.214905] pci 0000:00:09.0: bridge 32bit mmio: [0xe7300000-0xe73fffff]
[    0.214948] pci 0000:02:00.0: reg 10 32bit mmio: [0xe4000000-0xe4ffffff]
[    0.214962] pci 0000:02:00.0: reg 14 64bit mmio pref: [0xc0000000-0xcfffffff]
[    0.214977] pci 0000:02:00.0: reg 1c 64bit mmio: [0xe2000000-0xe3ffffff]
[    0.214987] pci 0000:02:00.0: reg 24 io port: [0x2000-0x207f]
[    0.214998] pci 0000:02:00.0: reg 30 32bit mmio pref: [0xe5000000-0xe507ffff]
[    0.215082] pci 0000:00:0c.0: bridge io port: [0x2000-0x2fff]
[    0.215089] pci 0000:00:0c.0: bridge 32bit mmio: [0xe2000000-0xe50fffff]
[    0.215102] pci 0000:00:0c.0: bridge 64bit mmio pref: [0xc0000000-0xcfffffff]
[    0.215309] pci 0000:04:00.0: reg 10 64bit mmio: [0xe7200000-0xe7203fff]
[    0.215362] pci 0000:04:00.0: supports D1 D2
[    0.215363] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.215565] pci 0000:04:00.0: PME# disabled
[    0.215827] pci 0000:00:15.0: bridge 32bit mmio: [0xe7200000-0xe72fffff]
[    0.215888] pci 0000:05:00.0: reg 10 64bit mmio: [0xe7100000-0xe7100fff]
[    0.215940] pci 0000:05:00.0: supports D1 D2
[    0.215941] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.216144] pci 0000:05:00.0: PME# disabled
[    0.216387] pci 0000:00:16.0: bridge 32bit mmio: [0xe7100000-0xe71fffff]
[    0.216439] pci_bus 0000:00: on NUMA node 0
[    0.216442] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.263431] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 10 11 14 15) *0, disabled.
[    0.265189] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 10 11 14 15) *0, disabled.
[    0.266848] ACPI: PCI Interrupt Link [LNK3] (IRQs 5 7 10 11 14 15) *0, disabled.
[    0.268540] ACPI: PCI Interrupt Link [LNK4] (IRQs 5 7 10 11 14 15) *0, disabled.
[    0.270188] ACPI: PCI Interrupt Link [Z003] (IRQs 16 17 18 19 20 21 22 23) *11
[    0.272045] ACPI: PCI Interrupt Link [Z004] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.274132] ACPI: PCI Interrupt Link [Z005] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.276170] ACPI: PCI Interrupt Link [Z006] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.278027] ACPI: PCI Interrupt Link [Z007] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.280062] ACPI: PCI Interrupt Link [Z008] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.282041] ACPI: PCI Interrupt Link [Z009] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.284020] ACPI: PCI Interrupt Link [Z00A] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.285928] ACPI: PCI Interrupt Link [Z00B] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.287844] ACPI: PCI Interrupt Link [Z00C] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.289829] ACPI: PCI Interrupt Link [Z00D] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.291786] ACPI: PCI Interrupt Link [Z00E] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.293687] ACPI: PCI Interrupt Link [Z00F] (IRQs 16 17 18 19 20 21 22 23) *10
[    0.295544] ACPI: PCI Interrupt Link [Z00G] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.297598] ACPI: PCI Interrupt Link [Z00H] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.299610] ACPI: PCI Interrupt Link [Z00I] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.301516] ACPI: PCI Interrupt Link [Z00J] (IRQs 16 17 18 19 20 21 22 23) *7
[    0.303386] ACPI: PCI Interrupt Link [Z00K] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.305358] ACPI: PCI Interrupt Link [Z00L] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.307355] ACPI: PCI Interrupt Link [Z00M] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.309313] ACPI: PCI Interrupt Link [Z00N] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.311332] ACPI: PCI Interrupt Link [Z00O] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.313338] ACPI: PCI Interrupt Link [Z00P] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.315301] ACPI: PCI Interrupt Link [Z00Q] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.317214] ACPI: PCI Interrupt Link [Z00R] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.319207] ACPI: PCI Interrupt Link [Z00S] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.321011] ACPI: PCI Interrupt Link [Z00T] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.322976] ACPI: PCI Interrupt Link [Z00U] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.324915] ACPI: PCI Interrupt Link [LSMB] (IRQs 16 17 18 19 20 21 22 23) *15
[    0.326850] ACPI: PCI Interrupt Link [LUS0] (IRQs 16 17 18 19 20 21 22 23) *11
[    0.328694] ACPI: PCI Interrupt Link [LUS2] (IRQs 16 17 18 19 20 21 22 23) *10
[    0.330562] ACPI: PCI Interrupt Link [LMAC] (IRQs 16 17 18 19 20 21 22 23) *14
[    0.332378] ACPI: PCI Interrupt Link [LAZA] (IRQs 16 17 18 19 20 21 22 23) *15
[    0.334283] ACPI: PCI Interrupt Link [LGPU] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.336292] ACPI: PCI Interrupt Link [LPID] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.338270] ACPI: PCI Interrupt Link [LSI0] (IRQs 16 17 18 19 20 21 22 23) *11
[    0.340179] ACPI: PCI Interrupt Link [LSI1] (IRQs 16 17 18 19 20 21 22 23) *0, disabled.
[    0.342187] ACPI: PCI Interrupt Link [Z000] (IRQs 16 17 18 19 20 21 22 23) *7
[    0.343954] ACPI: PCI Interrupt Link [Z001] (IRQs 16 17 18 19 20 21 22 23) *5
[    0.345764] ACPI: PCI Interrupt Link [LPMU] (IRQs 16 17 18 19 20 21 22 23) *14
[    0.347582] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.347844] vgaarb: loaded
[    0.348134] SCSI subsystem initialized
[    0.353344] libata version 3.00 loaded.
[    0.353398] usbcore: registered new interface driver usbfs
[    0.353619] usbcore: registered new interface driver hub
[    0.353847] usbcore: registered new device driver usb
[    0.354163] PCI: Using ACPI for IRQ routing
[    0.354741] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31, 31
[    0.355586] hpet0: 4 comparators, 64-bit 25.000000 MHz counter
[    0.360005] Switching to clocksource tsc
[    0.371094] Slow work thread pool: Starting up
[    0.371315] Slow work thread pool: Ready
[    0.371518] FS-Cache: Loaded
[    0.371743] CacheFiles: Loaded
[    0.371944] pnp: PnP ACPI init
[    0.372143] ACPI: bus type pnp registered
[    0.377592] pnp: PnP ACPI: found 9 devices
[    0.377789] ACPI: ACPI bus type pnp unregistered
[    0.377993] system 00:01: iomem range 0xf0000000-0xf3ffffff has been reserved
[    0.378198] system 00:04: iomem range 0xfed00000-0xfed003ff has been reserved
[    0.378402] system 00:06: ioport range 0x400-0x47f has been reserved
[    0.378604] system 00:06: ioport range 0x480-0x4ff has been reserved
[    0.378805] system 00:06: ioport range 0x500-0x57f has been reserved
[    0.379007] system 00:06: ioport range 0x580-0x5ff has been reserved
[    0.379208] system 00:06: ioport range 0x800-0x87f has been reserved
[    0.379408] system 00:06: ioport range 0x880-0x8ff has been reserved
[    0.379594] system 00:06: ioport range 0x4d0-0x4d1 has been reserved
[    0.379796] system 00:06: ioport range 0x295-0x296 has been reserved
[    0.385091] pci 0000:00:09.0: PCI bridge, secondary bus 0000:01
[    0.385291] pci 0000:00:09.0:   IO window: disabled
[    0.385464] pci 0000:00:09.0:   MEM window: 0xe7300000-0xe73fffff
[    0.385665] pci 0000:00:09.0:   PREFETCH window: disabled
[    0.385865] pci 0000:00:0c.0: PCI bridge, secondary bus 0000:02
[    0.386035] pci 0000:00:0c.0:   IO window: 0x2000-0x2fff
[    0.386243] pci 0000:00:0c.0:   MEM window: 0xe2000000-0xe50fffff
[    0.386438] pci 0000:00:0c.0:   PREFETCH window: 0x000000c0000000-0x000000cfffffff
[    0.386717] pci 0000:00:15.0: PCI bridge, secondary bus 0000:04
[    0.386917] pci 0000:00:15.0:   IO window: disabled
[    0.387123] pci 0000:00:15.0:   MEM window: 0xe7200000-0xe72fffff
[    0.387323] pci 0000:00:15.0:   PREFETCH window: disabled
[    0.387499] pci 0000:00:16.0: PCI bridge, secondary bus 0000:05
[    0.387699] pci 0000:00:16.0:   IO window: disabled
[    0.387905] pci 0000:00:16.0:   MEM window: 0xe7100000-0xe71fffff
[    0.388110] pci 0000:00:16.0:   PREFETCH window: disabled
[    0.388317] pci 0000:00:09.0: enabling device (0000 -> 0002)
[    0.388520] pci 0000:00:09.0: setting latency timer to 64
[    0.388891] ACPI: PCI Interrupt Link [Z003] enabled at IRQ 23
[    0.389114] pci 0000:00:0c.0: PCI INT A -> Link[Z003] -> GSI 23 (level, low) -> IRQ 23
[    0.389427] pci 0000:00:0c.0: setting latency timer to 64
[    0.389904] ACPI: PCI Interrupt Link [Z00F] enabled at IRQ 22
[    0.390102] pci 0000:00:15.0: PCI INT A -> Link[Z00F] -> GSI 22 (level, low) -> IRQ 22
[    0.390369] pci 0000:00:15.0: setting latency timer to 64
[    0.390784] ACPI: PCI Interrupt Link [Z00J] enabled at IRQ 21
[    0.390985] pci 0000:00:16.0: PCI INT A -> Link[Z00J] -> GSI 21 (level, low) -> IRQ 21
[    0.391251] pci 0000:00:16.0: setting latency timer to 64
[    0.391256] pci_bus 0000:00: resource 0 io:  [0x00-0xffff]
[    0.391258] pci_bus 0000:00: resource 1 mem: [0x000000-0xffffffffffffffff]
[    0.391259] pci_bus 0000:01: resource 1 mem: [0xe7300000-0xe73fffff]
[    0.391261] pci_bus 0000:01: resource 3 io:  [0x00-0xffff]
[    0.391262] pci_bus 0000:01: resource 4 mem: [0x000000-0xffffffffffffffff]
[    0.391264] pci_bus 0000:02: resource 0 io:  [0x2000-0x2fff]
[    0.391265] pci_bus 0000:02: resource 1 mem: [0xe2000000-0xe50fffff]
[    0.391267] pci_bus 0000:02: resource 2 pref mem [0xc0000000-0xcfffffff]
[    0.391268] pci_bus 0000:04: resource 1 mem: [0xe7200000-0xe72fffff]
[    0.391270] pci_bus 0000:05: resource 1 mem: [0xe7100000-0xe71fffff]
[    0.391287] NET: Registered protocol family 2
[    0.391538] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.392183] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[    0.393822] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.394484] TCP: Hash tables configured (established 262144 bind 65536)
[    0.394685] TCP reno registered
[    0.394935] NET: Registered protocol family 1
[    0.396111] microcode: CPU0 sig=0x1067a, pf=0x80, revision=0xa07
[    0.396321] microcode: CPU1 sig=0x1067a, pf=0x80, revision=0xa07
[    0.396541] Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    0.396794] Scanning for low memory corruption every 60 seconds
[    0.397123] Intel AES-NI instructions are not detected.
[    0.405841] VFS: Disk quotas dquot_6.5.2
[    0.406087] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.406752] ROMFS MTD (C) 2007 Red Hat, Inc.
[    0.406986] msgmni has been set to 7363
[    0.415839] alg: No test for cipher_null (cipher_null-generic)
[    0.416027] alg: No test for ecb(cipher_null) (ecb-cipher_null)
[    0.416241] alg: No test for digest_null (digest_null-generic)
[    0.416454] alg: No test for compress_null (compress_null-generic)
[    0.417124] alg: No test for fcrypt (fcrypt-generic)
[    0.418531] alg: No test for stdrng (krng)
[    0.421983] alg: No test for ghash (ghash-generic)
[    0.422244] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 254)
[    0.422530] io scheduler noop registered
[    0.422734] io scheduler cfq registered (default)
[    0.423111] pci 0000:02:00.0: Boot video device
[    0.423388] pcieport-driver 0000:00:0c.0: irq 24 for MSI/MSI-X
[    0.423408] pcieport-driver 0000:00:0c.0: setting latency timer to 64
[    0.423771] pcieport-driver 0000:00:15.0: irq 25 for MSI/MSI-X
[    0.423790] pcieport-driver 0000:00:15.0: setting latency timer to 64
[    0.424151] pcieport-driver 0000:00:16.0: irq 26 for MSI/MSI-X
[    0.424169] pcieport-driver 0000:00:16.0: setting latency timer to 64
[    0.424567] ACPI: AC Adapter [ADP1] (on-line)
[    0.424866] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[    0.425170] ACPI: Lid Switch [LID0]
[    0.425408] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.425669] ACPI: Power Button [PWRB]
[    0.425909] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    0.426143] ACPI: Sleep Button [SLPB]
[    0.426376] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    0.426636] ACPI: Power Button [PWRF]
[    0.427524] ACPI: SSDT 00000000bfec5a98 002FE (v01  APPLE  Cpu0Ist 00003000 INTL 20061109)
[    0.428326] ACPI: SSDT 00000000bfec3c18 002AD (v01  APPLE  Cpu0Cst 00003001 INTL 20061109)
[    0.429136] Monitor-Mwait will be used to enter C-1 state
[    0.429149] Monitor-Mwait will be used to enter C-2 state
[    0.429170] Monitor-Mwait will be used to enter C-3 state
[    0.429175] Marking TSC unstable due to TSC halts in idle
[    0.429410] Switching to clocksource hpet
[    0.429443] processor LNXCPU:00: registered as cooling_device0
[    0.429816] ACPI: SSDT 00000000bfec4f18 000C8 (v01  APPLE  Cpu1Ist 00003000 INTL 20061109)
[    0.430588] ACPI: SSDT 00000000bfec3f18 00085 (v01  APPLE  Cpu1Cst 00003000 INTL 20061109)
[    0.432503] Switched to high resolution mode on CPU 1
[    0.432515] Switched to high resolution mode on CPU 0
[    0.440902] processor LNXCPU:01: registered as cooling_device1
[    0.453989] Linux agpgart interface v0.103
[    0.454300] [drm] Initialized drm 1.1.0 20060810
[    0.455964] brd: module loaded
[    0.456822] loop: module loaded
[    0.457113] input: Macintosh mouse button emulation as /devices/virtual/input/input4
[    0.457646] ahci 0000:00:0b.0: version 3.0
[    0.457923] ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 20
[    0.458127] ahci 0000:00:0b.0: PCI INT A -> Link[LSI0] -> GSI 20 (level, low) -> IRQ 20
[    0.458465] ahci 0000:00:0b.0: irq 27 for MSI/MSI-X
[    0.458518] ahci 0000:00:0b.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3 impl IDE mode
[    0.458780] ahci 0000:00:0b.0: flags: 64bit ncq sntf pm led pmp pio slum part 
[    0.459008] ahci 0000:00:0b.0: setting latency timer to 64
[    0.459178] scsi0 : ahci
[    0.459576] scsi1 : ahci
[    0.459837] scsi2 : ahci
[    0.460183] scsi3 : ahci
[    0.460534] scsi4 : ahci
[    0.460852] scsi5 : ahci
[    0.461176] ata1: SATA max UDMA/133 abar m8192@0xe7484000 port 0xe7484100 irq 27
[    0.461486] ata2: SATA max UDMA/133 abar m8192@0xe7484000 port 0xe7484180 irq 27
[    0.461745] ata3: DUMMY
[    0.461940] ata4: DUMMY
[    0.462136] ata5: DUMMY
[    0.462309] ata6: DUMMY
[    0.462747] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.463222] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 19
[    0.463601] ehci_hcd 0000:00:04.1: PCI INT B -> Link[LUS2] -> GSI 19 (level, low) -> IRQ 19
[    0.463867] ehci_hcd 0000:00:04.1: setting latency timer to 64
[    0.463869] ehci_hcd 0000:00:04.1: EHCI Host Controller
[    0.464071] ehci_hcd 0000:00:04.1: new USB bus registered, assigned bus number 1
[    0.464539] ehci_hcd 0000:00:04.1: debug port 1
[    0.464744] ehci_hcd 0000:00:04.1: cache line size of 32 is not supported
[    0.464754] ehci_hcd 0000:00:04.1: irq 19, io mem 0xe7489200
[    0.473357] ehci_hcd 0000:00:04.1: USB 2.0 started, EHCI 1.00
[    0.473712] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.473913] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.474169] usb usb1: Product: EHCI Host Controller
[    0.474422] usb usb1: Manufacturer: Linux 2.6.32-rc3-debug ehci_hcd
[    0.474668] usb usb1: SerialNumber: 0000:00:04.1
[    0.474912] usb usb1: configuration #1 chosen from 1 choice
[    0.475147] hub 1-0:1.0: USB hub found
[    0.475348] hub 1-0:1.0: 7 ports detected
[    0.475962] ACPI: PCI Interrupt Link [Z001] enabled at IRQ 18
[    0.476214] ehci_hcd 0000:00:06.1: PCI INT B -> Link[Z001] -> GSI 18 (level, low) -> IRQ 18
[    0.476441] ehci_hcd 0000:00:06.1: setting latency timer to 64
[    0.476443] ehci_hcd 0000:00:06.1: EHCI Host Controller
[    0.476646] ehci_hcd 0000:00:06.1: new USB bus registered, assigned bus number 2
[    0.476938] ehci_hcd 0000:00:06.1: debug port 1
[    0.477141] ehci_hcd 0000:00:06.1: cache line size of 32 is not supported
[    0.477151] ehci_hcd 0000:00:06.1: irq 18, io mem 0xe7489100
[    0.486690] ehci_hcd 0000:00:06.1: USB 2.0 started, EHCI 1.00
[    0.486996] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    0.487245] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.487500] usb usb2: Product: EHCI Host Controller
[    0.487701] usb usb2: Manufacturer: Linux 2.6.32-rc3-debug ehci_hcd
[    0.487936] usb usb2: SerialNumber: 0000:00:06.1
[    0.488226] usb usb2: configuration #1 chosen from 1 choice
[    0.488654] hub 2-0:1.0: USB hub found
[    0.488903] hub 2-0:1.0: 5 ports detected
[    0.489181] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.489626] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 17
[    0.489828] ohci_hcd 0000:00:04.0: PCI INT A -> Link[LUS0] -> GSI 17 (level, low) -> IRQ 17
[    0.490108] ohci_hcd 0000:00:04.0: setting latency timer to 64
[    0.490109] ohci_hcd 0000:00:04.0: OHCI Host Controller
[    0.490311] ohci_hcd 0000:00:04.0: new USB bus registered, assigned bus number 3
[    0.490584] ohci_hcd 0000:00:04.0: irq 17, io mem 0xe7488000
[    0.526875] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 9 (20090903/nsrepair-132)
[    0.527418] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 10 (20090903/nsrepair-132)
[    0.527961] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 11 (20090903/nsrepair-132)
[    0.528499] ACPI Warning for \_SB_.BAT0._BIF: Converted Buffer to expected String at index 12 (20090903/nsrepair-132)
[    0.545416] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    0.545618] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.545873] usb usb3: Product: OHCI Host Controller
[    0.546072] usb usb3: Manufacturer: Linux 2.6.32-rc3-debug ohci_hcd
[    0.546260] usb usb3: SerialNumber: 0000:00:04.0
[    0.546596] usb usb3: configuration #1 chosen from 1 choice
[    0.547003] hub 3-0:1.0: USB hub found
[    0.547238] hub 3-0:1.0: 7 ports detected
[    0.547794] ACPI: PCI Interrupt Link [Z000] enabled at IRQ 16
[    0.547996] ohci_hcd 0000:00:06.0: PCI INT A -> Link[Z000] -> GSI 16 (level, low) -> IRQ 16
[    0.548346] ohci_hcd 0000:00:06.0: setting latency timer to 64
[    0.548349] ohci_hcd 0000:00:06.0: OHCI Host Controller
[    0.548608] ohci_hcd 0000:00:06.0: new USB bus registered, assigned bus number 4
[    0.548934] ohci_hcd 0000:00:06.0: irq 16, io mem 0xe7487000
[    0.554536] ACPI: Battery Slot [BAT0] (battery present)
[    0.602851] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    0.603053] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.603307] usb usb4: Product: OHCI Host Controller
[    0.603506] usb usb4: Manufacturer: Linux 2.6.32-rc3-debug ohci_hcd
[    0.603679] usb usb4: SerialNumber: 0000:00:06.0
[    0.603903] usb usb4: configuration #1 chosen from 1 choice
[    0.604134] hub 4-0:1.0: USB hub found
[    0.604342] hub 4-0:1.0: 5 ports detected
[    0.604617] usbcore: registered new interface driver libusual
[    0.604908] PNP: No PS/2 controller found. Probing ports directly.
[    0.605954] i8042.c: No controller found.
[    0.606232] mice: PS/2 mouse device common for all mice
[    0.606495] i2c i2c-0: nForce2 SMBus adapter at 0x3140
[    0.606728] i2c i2c-1: nForce2 SMBus adapter at 0x3100
[    0.607213] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    0.607688] cpuidle: using governor ladder
[    0.608227] cpuidle: using governor menu
[    0.609961] usbcore: registered new interface driver hiddev
[    0.610225] usbcore: registered new interface driver usbhid
[    0.610424] usbhid: v2.6:USB HID core driver
[    0.610817] TCP cubic registered
[    0.611349] NET: Registered protocol family 10
[    0.611835] lo: Disabled Privacy Extensions
[    0.612224] Mobile IPv6
[    0.612420] NET: Registered protocol family 17
[    0.612619] NET: Registered protocol family 15
[    0.613598] PM: Resume from disk failed.
[    0.783480] usb 1-4: new high speed USB device using ehci_hcd and address 2
[    0.914587] usb 1-4: New USB device found, idVendor=05ac, idProduct=8507
[    0.914795] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    0.914999] usb 1-4: Product: Built-in iSight
[    0.915198] usb 1-4: Manufacturer: Apple Inc.
[    0.915398] usb 1-4: SerialNumber: 8H98400GG8DD3A1A
[    0.915737] usb 1-4: configuration #1 chosen from 1 choice
[    0.940158] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    0.940378] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    0.940576] ata1.00: ATA-8: APPLE SSD TS256A, AGAB0202, max UDMA/100
[    0.940580] ata1.00: 490234752 sectors, multi 16: LBA48 
[    0.940872] ata1.00: configured for UDMA/100
[    0.946824] ata2.00: ATAPI: HL-DT-ST DVDRW  GS23N, SB00, max UDMA/133, ATAPI AN
[    0.952363] ata2.00: configured for UDMA/133
[    0.953609] scsi 0:0:0:0: Direct-Access     ATA      APPLE SSD TS256A AGAB PQ: 0 ANSI: 5
[    0.954281] sd 0:0:0:0: [sda] 490234752 512-byte logical blocks: (251 GB/233 GiB)
[    0.954344] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.954793] sd 0:0:0:0: [sda] Write Protect is off
[    0.954978] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.955006] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.955411]  sda: sda1 sda2 sda3 sda4 sda5
[    0.959529] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.973423] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVDRW  GS23N     SB00 PQ: 0 ANSI: 5
[    0.985264] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
[    0.985472] Uniform CD-ROM driver Revision: 3.20
[    0.985954] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    0.986144] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    0.988619] EXT3-fs: INFO: recovery required on readonly filesystem.
[    0.988826] EXT3-fs: write access will be enabled during recovery.
[    0.993632] kjournald starting.  Commit interval 5 seconds
[    0.993668] EXT3-fs: recovery complete.
[    0.993911] EXT3-fs: mounted filesystem with writeback data mode.
[    0.993931] VFS: Mounted root (ext3 filesystem) readonly on device 8:3.
[    0.993952] Freeing unused kernel memory: 468k freed
[    1.290145] usb 2-5: new high speed USB device using ehci_hcd and address 3
[    1.419982] usb 2-5: New USB device found, idVendor=05ac, idProduct=8403
[    1.420208] usb 2-5: New USB device strings: Mfr=3, Product=4, SerialNumber=2
[    1.420422] usb 2-5: Product: Card Reader
[    1.420621] usb 2-5: Manufacturer: Apple
[    1.420819] usb 2-5: SerialNumber: 000000009833
[    1.421808] usb 2-5: configuration #1 chosen from 1 choice
[    1.437137] Initializing USB Mass Storage driver...
[    1.437519] scsi6 : SCSI emulation for USB Mass Storage devices
[    1.437967] usb-storage: device found at 3
[    1.437969] usb-storage: waiting for device to settle before scanning
[    1.437996] usbcore: registered new interface driver usb-storage
[    1.438200] USB Mass Storage support registered.
[    1.700137] usb 4-1: new full speed USB device using ohci_hcd and address 2
[    1.901968] usb 4-1: New USB device found, idVendor=0a5c, idProduct=4500
[    1.902173] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.902376] usb 4-1: Product: BRCM2046 Hub
[    1.902575] usb 4-1: Manufacturer: Apple Inc.
[    1.902921] usb 4-1: configuration #1 chosen from 1 choice
[    1.905010] hub 4-1:1.0: USB hub found
[    1.907962] hub 4-1:1.0: 3 ports detected
[    2.200145] usb 3-5: new low speed USB device using ohci_hcd and address 2
[    2.395535] usb 3-5: New USB device found, idVendor=05ac, idProduct=8242
[    2.395726] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.395929] usb 3-5: Product: IR Receiver
[    2.396123] usb 3-5: Manufacturer: Apple Computer, Inc.
[    2.396459] usb 3-5: configuration #1 chosen from 1 choice
[    2.414764] apple 0003:05AC:8242.0001: hiddev96,hidraw0: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:04.0-5/input0
[    2.693477] usb 3-6: new full speed USB device using ohci_hcd and address 3
[    2.897533] usb 3-6: New USB device found, idVendor=05ac, idProduct=0237
[    2.897739] usb 3-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.897943] usb 3-6: Product: Apple Internal Keyboard / Trackpad
[    2.898145] usb 3-6: Manufacturer: Apple Inc.
[    2.898490] usb 3-6: configuration #1 chosen from 1 choice
[    2.912334] input: Apple Inc. Apple Internal Keyboard / Trackpad as /devices/pci0000:00/0000:00:04.0/usb3/3-6/3-6:1.0/input/input5
[    2.912704] apple 0003:05AC:0237.0002: input,hidraw1: USB HID v1.11 Keyboard [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input0
[    3.412646] apple 0003:05AC:0237.0003: hidraw2: USB HID v1.11 Device [Apple Inc. Apple Internal Keyboard / Trackpad] on usb-0000:00:04.0-6/input1
[    3.484967] usb 4-1.1: new full speed USB device using ohci_hcd and address 3
[    3.601969] usb 4-1.1: New USB device found, idVendor=05ac, idProduct=8217
[    3.602177] usb 4-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.602435] usb 4-1.1: Product: Bluetooth USB Host Controller
[    3.602635] usb 4-1.1: Manufacturer: Apple Inc.
[    3.602835] usb 4-1.1: SerialNumber: 002608DA9686
[    3.603179] usb 4-1.1: configuration #1 chosen from 1 choice
[    6.437436] usb-storage: device scan complete
[    6.439909] scsi 6:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
[    6.441199] sd 6:0:0:0: Attached scsi generic sg2 type 0
[    6.442638] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[   58.357908] BUG: unable to handle kernel paging request at ffffffffa0015178
[   58.358358] IP: [<ffffffff8126d90e>] vsnprintf+0x5e/0x5e0
[   58.358703] PGD 1003067 PUD 1007063 PMD 13f3ac067 PTE 0
[   58.359453] Oops: 0000 [#1] PREEMPT SMP 
[   58.360003] last sysfs file: 
[   58.360003] CPU 0 
[   58.360003] Modules linked in: tun(+) usb_storage
[   58.360003] Pid: 895, comm: modprobe Not tainted 2.6.32-rc3-debug #24 MacBookPro5,3
[   58.360003] RIP: 0010:[<ffffffff8126d90e>]  [<ffffffff8126d90e>] vsnprintf+0x5e/0x5e0
[   58.360003] RSP: 0018:ffff88013e803d48  EFLAGS: 00010086
[   58.360003] RAX: 0000000000005c5c RBX: 0000000000000400 RCX: ffff88013e803ea8
[   58.360003] RDX: ffffffffa0015178 RSI: 0000000000000400 RDI: ffffffff817c8c60
[   58.360003] RBP: ffff88013e803dd8 R08: 0000000000000000 R09: 0000000000000000
[   58.360003] R10: ffff880028401740 R11: 0000000000000000 R12: ffffffffa0015178
[   58.360003] R13: ffffffffa0015178 R14: ffff88013e803ea8 R15: ffffffff817c9060
[   58.360003] FS:  00007f7b8d4c76f0(0000) GS:ffff880028200000(0000) knlGS:0000000000000000
[   58.360003] CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
[   58.360003] CR2: ffffffffa0015178 CR3: 000000013fbeb000 CR4: 00000000000406f0
[   58.360003] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[   58.360003] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
[   58.360003] Process modprobe (pid: 895, threadinfo ffff88013e802000, task ffff88013f925880)
[   58.360003] Stack:
[   58.360003]  00000000fffffff4 ffff88013e803dc8 ffff88013f9cbaa0 000000003e803dc8
[   58.360003] <0> ffff88013e803db8 ffffea00045f1ba0 0000000000000400 ffffffff817c8c60
[   58.360003] <0> 0000000000000000 0000000000000000 0000000000000000 ffffffff810bbe6a
[   58.360003] Call Trace:
[   58.360003]  [<ffffffff810bbe6a>] ? free_hot_page+0x2a/0x90
[   58.360003]  [<ffffffff8126dfa1>] vscnprintf+0x11/0x30
[   58.360003]  [<ffffffff81053291>] vprintk+0xb1/0x4f0
[   58.360003]  [<ffffffff810a769f>] ? trace_module_notify+0x3f/0x550
[   58.360003]  [<ffffffffa0017000>] ? tun_init+0x0/0x93 [tun]
[   58.360003]  [<ffffffff81494673>] printk+0x3c/0x41
[   58.360003]  [<ffffffffa0017025>] tun_init+0x25/0x93 [tun]
[   58.360003]  [<ffffffff81009047>] do_one_initcall+0x37/0x190
[   58.360003]  [<ffffffff8108a7b6>] sys_init_module+0xd6/0x250
[   58.360003]  [<ffffffff8100b3ab>] system_call_fastpath+0x16/0x1b
[   58.360003] Code: c7 45 c0 00 00 00 00 85 f6 0f 88 5f 05 00 00 4c 8b 7d a8 4c 03 7d a0 73 12 48 8b 45 a8 49 c7 c7 ff ff ff ff 48 f7 d0 48 89 45 a0 <41> 0f b6 45 00 8b 55 a8 48 8b 5d a8 89 55 9c 84 c0 74 76 0f 1f 
[   58.360003] RIP  [<ffffffff8126d90e>] vsnprintf+0x5e/0x5e0
[   58.360003]  RSP <ffff88013e803d48>
[   58.360003] CR2: ffffffffa0015178
[   58.360003] ---[ end trace 11656a28751a5869 ]---
[   58.360003] note: modprobe[895] exited with preempt_count 2
[   58.379243] BUG: scheduling while atomic: modprobe/895/0x10000003
[   58.379454] Modules linked in: tun(+) usb_storage
[   58.380051] Pid: 895, comm: modprobe Tainted: G      D    2.6.32-rc3-debug #24
[   58.380307] Call Trace:
[   58.380506]  [<ffffffff8104637c>] __schedule_bug+0x5c/0x70
[   58.380697]  [<ffffffff81495243>] thread_return+0x409/0x7e6
[   58.380901]  [<ffffffff8126b8c1>] ? number+0x2c1/0x2f0
[   58.381114]  [<ffffffff81047165>] __cond_resched+0x25/0x40
[   58.381300]  [<ffffffff8149570b>] _cond_resched+0x2b/0x40
[   58.381482]  [<ffffffff810d2657>] unmap_vmas+0x817/0x9b0
[   58.381668]  [<ffffffff810d77df>] exit_mmap+0xef/0x1c0
[   58.381871]  [<ffffffff8104fdcd>] mmput+0x2d/0xe0
[   58.382072]  [<ffffffff81054810>] exit_mm+0x100/0x140
[   58.382248]  [<ffffffff81091728>] ? acct_collect+0x158/0x1a0
[   58.382423]  [<ffffffff810567bc>] do_exit+0x65c/0x7d0
[   58.382625]  [<ffffffff81052ea8>] ? release_console_sem+0x1b8/0x210
[   58.382830]  [<ffffffff8100fa35>] oops_end+0x75/0xa0
[   58.383022]  [<ffffffff8102d25a>] no_context+0xea/0x250
[   58.383218]  [<ffffffff8102d4d5>] __bad_area_nosemaphore+0x115/0x1d0
[   58.383441]  [<ffffffff81156160>] ? sysfs_ilookup_test+0x0/0x20
[   58.383644]  [<ffffffff8102d59e>] bad_area_nosemaphore+0xe/0x10
[   58.383846]  [<ffffffff8102d95a>] do_page_fault+0x23a/0x2e0
[   58.384050]  [<ffffffff81497fdf>] page_fault+0x1f/0x30
[   58.384254]  [<ffffffff8126d90e>] ? vsnprintf+0x5e/0x5e0
[   58.384473]  [<ffffffff810bbe6a>] ? free_hot_page+0x2a/0x90
[   58.384676]  [<ffffffff8126dfa1>] vscnprintf+0x11/0x30
[   58.384879]  [<ffffffff81053291>] vprintk+0xb1/0x4f0
[   58.385058]  [<ffffffff810a769f>] ? trace_module_notify+0x3f/0x550
[   58.385241]  [<ffffffffa0017000>] ? tun_init+0x0/0x93 [tun]
[   58.385444]  [<ffffffff81494673>] printk+0x3c/0x41
[   58.385646]  [<ffffffffa0017025>] tun_init+0x25/0x93 [tun]
[   58.385849]  [<ffffffff81009047>] do_one_initcall+0x37/0x190
[   58.386051]  [<ffffffff8108a7b6>] sys_init_module+0xd6/0x250
[   58.386254]  [<ffffffff8100b3ab>] system_call_fastpath+0x16/0x1b
[  178.994918] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
[  178.995345] EXT3 FS on sda3, internal journal

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

* Re: [Bug #14626] oops on boot starting udev
  2009-11-21  8:56                 ` Soeren Sonnenburg
@ 2009-11-21  9:30                   ` Justin P. Mattock
  2009-11-21  9:35                   ` [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev) Soeren Sonnenburg
  1 sibling, 0 replies; 13+ messages in thread
From: Justin P. Mattock @ 2009-11-21  9:30 UTC (permalink / raw)
  To: Soeren Sonnenburg
  Cc: Dmitry Torokhov, Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

Soeren Sonnenburg wrote:
> On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
>    
>> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
>>      
>>> On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
>>>        
>>>> On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
>>>>          
>>>>> On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
>>>>>            
>>>>>> On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
>>>>>>              
>>>>>>> On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
>>>>>>>                
>>>>>>>> This message has been generated automatically as a part of a report
>>>>>>>> of recent regressions.
>>>>>>>>
>>>>>>>> The following bug entry is on the current list of known regressions
>>>>>>>> from 2.6.31.  Please verify if it still should be listed and let me know
>>>>>>>> (either way).
>>>>>>>>
>>>>>>>>
>>>>>>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
>>>>>>>> Subject		: oops on boot starting udev
>>>>>>>> Submitter	: Soeren Sonnenburg<sonne@debian.org>
>>>>>>>> Date		: 2009-11-14 10:16 (3 days old)
>>>>>>>> References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
>>>>>>>>                  
>>>>>>> This looks like an input core problem, as the evdev module was just
>>>>>>> loaded and died.
>>>>>>>
>>>>>>> Any input developers have any ideas?
>>>>>>>
>>>>>>>                
>>>>>> Hmm, evdev does:
>>>>>>
>>>>>> 	dev_set_name(&evdev->dev, "event%d", minor);
>>>>>>
>>>>>> Not sure how it can go wrong...
>>>>>>              
>>>>> Anything I should/could do to narrow it down a bit (apart from
>>>>> bisecting?).
>>>>>
>>>>>            
>>>> Umm, I looked through the changes between -rc6 and 7 but nothing jumped
>>>> out at me... You don't happen to have any local changes in your tree?
>>>>          
>>> Well only the mouse button #1 emulation - though I don't see what could
>>> go wrong there.
>>>
>>>        
>> I have been looking through the changes and I really don't see anything
>> suspicious. I am also not hittign this oops on any of my boxes. Any
>> chance you could bisect?
>>
>> Thanks.
>>      
>
> Alright so I tried to do a bisect when I noticed that building a knwon
> to work -rc5 did no longer work either. Thought it might be a gcc
> problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
> Then I recognized that it crashes on loading basically *any* module,
> tried tun and applesmc. Attaching the crashes...
>
> I am starting to run out of ideas...
>
> Soeren
>    
from what I remember wait status failed debug message was
removed from the kernel(but could be wrong).
could you maybe have some type of userspace thing going on
causing this? i.g. running the latest git(on a macbook)
  with a from scratch system with nothing of that sort,
or at least cant reproduce your error.

Justin P. Mattock

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

* [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev)
  2009-11-21  8:56                 ` Soeren Sonnenburg
  2009-11-21  9:30                   ` Justin P. Mattock
@ 2009-11-21  9:35                   ` Soeren Sonnenburg
  2009-11-21  9:58                     ` Justin P. Mattock
  1 sibling, 1 reply; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-21  9:35 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Greg KH, Rafael J. Wysocki, linux-input-u79uwXL29TY76Z2rM5mHXA,
	Linux Kernel Mailing List, Kernel Testers List

On Sat, 2009-11-21 at 09:56 +0100, Soeren Sonnenburg wrote:
> On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
> > On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
> > > On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> > > > On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> > > > > On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> > > > > > On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> > > > > > > On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> > > > > > > > This message has been generated automatically as a part of a report
> > > > > > > > of recent regressions.
> > > > > > > > 
> > > > > > > > The following bug entry is on the current list of known regressions
> > > > > > > > from 2.6.31.  Please verify if it still should be listed and let me know
> > > > > > > > (either way).
> > > > > > > > 
> > > > > > > > 
> > > > > > > > Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> > > > > > > > Subject		: oops on boot starting udev
> > > > > > > > Submitter	: Soeren Sonnenburg <sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
> > > > > > > > Date		: 2009-11-14 10:16 (3 days old)
> > > > > > > > References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> > > > > > > 
> > > > > > > This looks like an input core problem, as the evdev module was just
> > > > > > > loaded and died.
> > > > > > > 
> > > > > > > Any input developers have any ideas?
> > > > > > > 
> > > > > > 
> > > > > > 
> > > > > > Hmm, evdev does:
> > > > > > 
> > > > > > 	dev_set_name(&evdev->dev, "event%d", minor);
> > > > > > 
> > > > > > Not sure how it can go wrong...
> > > > > 
> > > > > Anything I should/could do to narrow it down a bit (apart from
> > > > > bisecting?).
> > > > > 
> > > > 
> > > > Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> > > > out at me... You don't happen to have any local changes in your tree?
> > > 
> > > Well only the mouse button #1 emulation - though I don't see what could
> > > go wrong there.
> > > 
> > 
> > I have been looking through the changes and I really don't see anything
> > suspicious. I am also not hittign this oops on any of my boxes. Any
> > chance you could bisect?
> > 
> > Thanks.
> 
> Alright so I tried to do a bisect when I noticed that building a knwon
> to work -rc5 did no longer work either. Thought it might be a gcc
> problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
> Then I recognized that it crashes on loading basically *any* module,
> tried tun and applesmc. Attaching the crashes...
> 
> I am starting to run out of ideas...

OK, I've found the culprit: binutils-gold

I build all kernels upto and including -rc6 with the old binutils and
since then have upgraded to binutils gold 2.20-4 which - in contrast to
the old binutils - uses --no-add-needed per default.

So I suspect it triggers an error(?) in the way how the kernel links
modules: It is now required to provide all needed libraries to the
linker when building the modules. I guess this problem could be worked
around by adding --add-needed to the LDFLAGS_MODULE ...

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

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

* Re: [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev)
  2009-11-21  9:35                   ` [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev) Soeren Sonnenburg
@ 2009-11-21  9:58                     ` Justin P. Mattock
       [not found]                       ` <4B07B9BA.2070607-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  0 siblings, 1 reply; 13+ messages in thread
From: Justin P. Mattock @ 2009-11-21  9:58 UTC (permalink / raw)
  To: Soeren Sonnenburg
  Cc: Dmitry Torokhov, Greg KH, Rafael J. Wysocki, linux-input,
	Linux Kernel Mailing List, Kernel Testers List

Soeren Sonnenburg wrote:
> On Sat, 2009-11-21 at 09:56 +0100, Soeren Sonnenburg wrote:
>    
>> On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
>>      
>>> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
>>>        
>>>> On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
>>>>          
>>>>> On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
>>>>>            
>>>>>> On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
>>>>>>              
>>>>>>> On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
>>>>>>>                
>>>>>>>> On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
>>>>>>>>                  
>>>>>>>>> This message has been generated automatically as a part of a report
>>>>>>>>> of recent regressions.
>>>>>>>>>
>>>>>>>>> The following bug entry is on the current list of known regressions
>>>>>>>>> from 2.6.31.  Please verify if it still should be listed and let me know
>>>>>>>>> (either way).
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
>>>>>>>>> Subject		: oops on boot starting udev
>>>>>>>>> Submitter	: Soeren Sonnenburg<sonne@debian.org>
>>>>>>>>> Date		: 2009-11-14 10:16 (3 days old)
>>>>>>>>> References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
>>>>>>>>>                    
>>>>>>>> This looks like an input core problem, as the evdev module was just
>>>>>>>> loaded and died.
>>>>>>>>
>>>>>>>> Any input developers have any ideas?
>>>>>>>>
>>>>>>>>                  
>>>>>>> Hmm, evdev does:
>>>>>>>
>>>>>>> 	dev_set_name(&evdev->dev, "event%d", minor);
>>>>>>>
>>>>>>> Not sure how it can go wrong...
>>>>>>>                
>>>>>> Anything I should/could do to narrow it down a bit (apart from
>>>>>> bisecting?).
>>>>>>
>>>>>>              
>>>>> Umm, I looked through the changes between -rc6 and 7 but nothing jumped
>>>>> out at me... You don't happen to have any local changes in your tree?
>>>>>            
>>>> Well only the mouse button #1 emulation - though I don't see what could
>>>> go wrong there.
>>>>
>>>>          
>>> I have been looking through the changes and I really don't see anything
>>> suspicious. I am also not hittign this oops on any of my boxes. Any
>>> chance you could bisect?
>>>
>>> Thanks.
>>>        
>> Alright so I tried to do a bisect when I noticed that building a knwon
>> to work -rc5 did no longer work either. Thought it might be a gcc
>> problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
>> Then I recognized that it crashes on loading basically *any* module,
>> tried tun and applesmc. Attaching the crashes...
>>
>> I am starting to run out of ideas...
>>      
>
> OK, I've found the culprit: binutils-gold
>
> I build all kernels upto and including -rc6 with the old binutils and
> since then have upgraded to binutils gold 2.20-4 which - in contrast to
> the old binutils - uses --no-add-needed per default.
>
> So I suspect it triggers an error(?) in the way how the kernel links
> modules: It is now required to provide all needed libraries to the
> linker when building the modules. I guess this problem could be worked
> around by adding --add-needed to the LDFLAGS_MODULE ...
>
> Soeren
>    
tough to say... some how your hitting
  __wait_status during your initial boot.

by looking at the comment(in applesmc.c):
__wait_status - Wait up to 32ms for the status port to get a certain value
  * (masked with 0x0f), returning zero if the value is obtained.

maybe your hitting a different value because of binutls.
(keep in mind I have the latest binutils running on the macbook,
but nothing switched to gold during compilation time)

Justin P. Mattock

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

* Re: [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev)
       [not found]                       ` <4B07B9BA.2070607-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2009-11-21 10:08                         ` Soeren Sonnenburg
  2009-11-21 10:29                           ` Justin P. Mattock
  0 siblings, 1 reply; 13+ messages in thread
From: Soeren Sonnenburg @ 2009-11-21 10:08 UTC (permalink / raw)
  To: Justin P. Mattock
  Cc: Dmitry Torokhov, Greg KH, Rafael J. Wysocki,
	linux-input-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List,
	Kernel Testers List

[-- Attachment #1: Type: text/plain, Size: 4478 bytes --]

On Sat, 2009-11-21 at 01:58 -0800, Justin P. Mattock wrote:
> Soeren Sonnenburg wrote:
> > On Sat, 2009-11-21 at 09:56 +0100, Soeren Sonnenburg wrote:
> >    
> >> On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
> >>      
> >>> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
> >>>        
> >>>> On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
> >>>>          
> >>>>> On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
> >>>>>            
> >>>>>> On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
> >>>>>>              
> >>>>>>> On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
> >>>>>>>                
> >>>>>>>> On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
> >>>>>>>>                  
> >>>>>>>>> This message has been generated automatically as a part of a report
> >>>>>>>>> of recent regressions.
> >>>>>>>>>
> >>>>>>>>> The following bug entry is on the current list of known regressions
> >>>>>>>>> from 2.6.31.  Please verify if it still should be listed and let me know
> >>>>>>>>> (either way).
> >>>>>>>>>
> >>>>>>>>>
> >>>>>>>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
> >>>>>>>>> Subject		: oops on boot starting udev
> >>>>>>>>> Submitter	: Soeren Sonnenburg<sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
> >>>>>>>>> Date		: 2009-11-14 10:16 (3 days old)
> >>>>>>>>> References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
> >>>>>>>>>                    
> >>>>>>>> This looks like an input core problem, as the evdev module was just
> >>>>>>>> loaded and died.
> >>>>>>>>
> >>>>>>>> Any input developers have any ideas?
> >>>>>>>>
> >>>>>>>>                  
> >>>>>>> Hmm, evdev does:
> >>>>>>>
> >>>>>>> 	dev_set_name(&evdev->dev, "event%d", minor);
> >>>>>>>
> >>>>>>> Not sure how it can go wrong...
> >>>>>>>                
> >>>>>> Anything I should/could do to narrow it down a bit (apart from
> >>>>>> bisecting?).
> >>>>>>
> >>>>>>              
> >>>>> Umm, I looked through the changes between -rc6 and 7 but nothing jumped
> >>>>> out at me... You don't happen to have any local changes in your tree?
> >>>>>            
> >>>> Well only the mouse button #1 emulation - though I don't see what could
> >>>> go wrong there.
> >>>>
> >>>>          
> >>> I have been looking through the changes and I really don't see anything
> >>> suspicious. I am also not hittign this oops on any of my boxes. Any
> >>> chance you could bisect?
> >>>
> >>> Thanks.
> >>>        
> >> Alright so I tried to do a bisect when I noticed that building a knwon
> >> to work -rc5 did no longer work either. Thought it might be a gcc
> >> problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
> >> Then I recognized that it crashes on loading basically *any* module,
> >> tried tun and applesmc. Attaching the crashes...
> >>
> >> I am starting to run out of ideas...
> >>      
> >
> > OK, I've found the culprit: binutils-gold
> >
> > I build all kernels upto and including -rc6 with the old binutils and
> > since then have upgraded to binutils gold 2.20-4 which - in contrast to
> > the old binutils - uses --no-add-needed per default.
> >
> > So I suspect it triggers an error(?) in the way how the kernel links
> > modules: It is now required to provide all needed libraries to the
> > linker when building the modules. I guess this problem could be worked
> > around by adding --add-needed to the LDFLAGS_MODULE ...
> >
> > Soeren
> >    
> tough to say... some how your hitting
>   __wait_status during your initial boot.
> 
> by looking at the comment(in applesmc.c):
> __wait_status - Wait up to 32ms for the status port to get a certain value
>   * (masked with 0x0f), returning zero if the value is obtained.
> 
> maybe your hitting a different value because of binutls.

It could be anything missing...

> (keep in mind I have the latest binutils running on the macbook,
> but nothing switched to gold during compilation time)

Note that everything works fine with the old binutils here too.You will
need binutils gold to see the problem and it is described here too

http://wiki.debian.org/qa.debian.org/FTBFS#A2009-11-02Packagesfailingbecausebinutils-gold.2BAC8-indirectlinking

Soeren
-- 
For the one fact about the future of which we can be certain is that it
will be utterly fantastic. -- Arthur C. Clarke, 1962

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev)
  2009-11-21 10:08                         ` Soeren Sonnenburg
@ 2009-11-21 10:29                           ` Justin P. Mattock
  0 siblings, 0 replies; 13+ messages in thread
From: Justin P. Mattock @ 2009-11-21 10:29 UTC (permalink / raw)
  To: Soeren Sonnenburg
  Cc: Dmitry Torokhov, Greg KH, Rafael J. Wysocki,
	linux-input-u79uwXL29TY76Z2rM5mHXA, Linux Kernel Mailing List,
	Kernel Testers List

Soeren Sonnenburg wrote:
> On Sat, 2009-11-21 at 01:58 -0800, Justin P. Mattock wrote:
>    
>> Soeren Sonnenburg wrote:
>>      
>>> On Sat, 2009-11-21 at 09:56 +0100, Soeren Sonnenburg wrote:
>>>
>>>        
>>>> On Wed, 2009-11-18 at 18:59 -0800, Dmitry Torokhov wrote:
>>>>
>>>>          
>>>>> On Tue, Nov 17, 2009 at 05:06:47AM +0100, Soeren Sonnenburg wrote:
>>>>>
>>>>>            
>>>>>> On Mon, 2009-11-16 at 20:01 -0800, Dmitry Torokhov wrote:
>>>>>>
>>>>>>              
>>>>>>> On Tue, Nov 17, 2009 at 03:59:03AM +0100, Soeren Sonnenburg wrote:
>>>>>>>
>>>>>>>                
>>>>>>>> On Mon, 2009-11-16 at 18:04 -0800, Dmitry Torokhov wrote:
>>>>>>>>
>>>>>>>>                  
>>>>>>>>> On Mon, Nov 16, 2009 at 05:14:55PM -0800, Greg KH wrote:
>>>>>>>>>
>>>>>>>>>                    
>>>>>>>>>> On Mon, Nov 16, 2009 at 11:37:48PM +0100, Rafael J. Wysocki wrote:
>>>>>>>>>>
>>>>>>>>>>                      
>>>>>>>>>>> This message has been generated automatically as a part of a report
>>>>>>>>>>> of recent regressions.
>>>>>>>>>>>
>>>>>>>>>>> The following bug entry is on the current list of known regressions
>>>>>>>>>>> from 2.6.31.  Please verify if it still should be listed and let me know
>>>>>>>>>>> (either way).
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> Bug-Entry	: http://bugzilla.kernel.org/show_bug.cgi?id=14626
>>>>>>>>>>> Subject		: oops on boot starting udev
>>>>>>>>>>> Submitter	: Soeren Sonnenburg<sonne-8fiUuRrzOP0dnm+yROfE0A@public.gmane.org>
>>>>>>>>>>> Date		: 2009-11-14 10:16 (3 days old)
>>>>>>>>>>> References	: http://marc.info/?l=linux-kernel&m=125819380206800&w=4
>>>>>>>>>>>
>>>>>>>>>>>                        
>>>>>>>>>> This looks like an input core problem, as the evdev module was just
>>>>>>>>>> loaded and died.
>>>>>>>>>>
>>>>>>>>>> Any input developers have any ideas?
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>                      
>>>>>>>>> Hmm, evdev does:
>>>>>>>>>
>>>>>>>>> 	dev_set_name(&evdev->dev, "event%d", minor);
>>>>>>>>>
>>>>>>>>> Not sure how it can go wrong...
>>>>>>>>>
>>>>>>>>>                    
>>>>>>>> Anything I should/could do to narrow it down a bit (apart from
>>>>>>>> bisecting?).
>>>>>>>>
>>>>>>>>
>>>>>>>>                  
>>>>>>> Umm, I looked through the changes between -rc6 and 7 but nothing jumped
>>>>>>> out at me... You don't happen to have any local changes in your tree?
>>>>>>>
>>>>>>>                
>>>>>> Well only the mouse button #1 emulation - though I don't see what could
>>>>>> go wrong there.
>>>>>>
>>>>>>
>>>>>>              
>>>>> I have been looking through the changes and I really don't see anything
>>>>> suspicious. I am also not hittign this oops on any of my boxes. Any
>>>>> chance you could bisect?
>>>>>
>>>>> Thanks.
>>>>>
>>>>>            
>>>> Alright so I tried to do a bisect when I noticed that building a knwon
>>>> to work -rc5 did no longer work either. Thought it might be a gcc
>>>> problem (gcc-4.3 here) so upgraded to 4.4 - same thing.
>>>> Then I recognized that it crashes on loading basically *any* module,
>>>> tried tun and applesmc. Attaching the crashes...
>>>>
>>>> I am starting to run out of ideas...
>>>>
>>>>          
>>> OK, I've found the culprit: binutils-gold
>>>
>>> I build all kernels upto and including -rc6 with the old binutils and
>>> since then have upgraded to binutils gold 2.20-4 which - in contrast to
>>> the old binutils - uses --no-add-needed per default.
>>>
>>> So I suspect it triggers an error(?) in the way how the kernel links
>>> modules: It is now required to provide all needed libraries to the
>>> linker when building the modules. I guess this problem could be worked
>>> around by adding --add-needed to the LDFLAGS_MODULE ...
>>>
>>> Soeren
>>>
>>>        
>> tough to say... some how your hitting
>>    __wait_status during your initial boot.
>>
>> by looking at the comment(in applesmc.c):
>> __wait_status - Wait up to 32ms for the status port to get a certain value
>>    * (masked with 0x0f), returning zero if the value is obtained.
>>
>> maybe your hitting a different value because of binutls.
>>      
>
> It could be anything missing...
>
>    
>> (keep in mind I have the latest binutils running on the macbook,
>> but nothing switched to gold during compilation time)
>>      
>
> Note that everything works fine with the old binutils here too.You will
> need binutils gold to see the problem and it is described here too
>
> http://wiki.debian.org/qa.debian.org/FTBFS#A2009-11-02Packagesfailingbecausebinutils-gold.2BAC8-indirectlinking
>
> Soeren
>    
Well I'd like to go into building
gcc with the switch of: --disable-multilib
but I cant because of the whole "gold factor"

maybe somebody else with this knowledge of(gold) gcc etc...
can assist you because I have no knowledge of that .
(I'll have to try building a system this way one day);

Justin P. Mattock

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

end of thread, other threads:[~2009-11-21 10:29 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <GUZt44bIwCE.A.vLF.pSdALB@chimera>
     [not found] ` <xXQGFmujPl.A.fpF.zSdALB@chimera>
2009-11-17  1:14   ` [Bug #14626] oops on boot starting udev Greg KH
2009-11-17  2:04     ` Dmitry Torokhov
2009-11-17  2:59       ` Soeren Sonnenburg
2009-11-17  4:01         ` Dmitry Torokhov
     [not found]           ` <20091117040104.GA5792-WlK9ik9hQGAhIp7JRqBPierSzoNAToWh@public.gmane.org>
2009-11-17  4:06             ` Soeren Sonnenburg
2009-11-19  2:59               ` Dmitry Torokhov
2009-11-21  6:21                 ` Soeren Sonnenburg
2009-11-21  8:56                 ` Soeren Sonnenburg
2009-11-21  9:30                   ` Justin P. Mattock
2009-11-21  9:35                   ` [SOLVED] kernel module loading does not work with binutils-gold (was Re: [Bug #14626] oops on boot starting udev) Soeren Sonnenburg
2009-11-21  9:58                     ` Justin P. Mattock
     [not found]                       ` <4B07B9BA.2070607-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2009-11-21 10:08                         ` Soeren Sonnenburg
2009-11-21 10:29                           ` Justin P. Mattock

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).