linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
@ 2009-07-26 17:35 Jack Lau
  2009-07-26 20:40 ` Pavel Roskin
  0 siblings, 1 reply; 11+ messages in thread
From: Jack Lau @ 2009-07-26 17:35 UTC (permalink / raw)
  To: linux-wireless

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


Dear all
 
This is my very first post on a public mailing list where I am not into programming.  I just set up and configure Linux but have very little experience with programing except BASIC and shell scripting.
 
I have recently assembled a Linux server and router (no GUI) where I am using an Atheros AR9160 controller (Sparklan WMIA-268N) as an access point.  I am using Ubuntu 9.04 jaunty release but using hostapd 0.69 from the upcoming 9.10 karmic release because the one that comes with jaunty does not support nl80211.
 
The problem is that I am constantly getting kernel panics, each time of the same error kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
 
I have tried many compat-wireless releases including 2.6.31-rc*, daily builds and many kernels including 2.6.31-* all to no avail, even the latest one doesn't fix the problem.  The one which I have took screenshots is from kernel 2.6.28-13 with compat-wireless 2.6.30 installed.
 
My easiest way to reproduce the problem is to surf the web using my Windows notebook, turn wifi off using the button so that it is suddenly disconnected without de-authenticating, turning wifi back on and then surfing the web and this kernel panic comes just about every time.  The notebook is fitted with an Intel 4965AGN in 802.11n mode where I have used both XP and Vista.
 
I enclose screenshots of 3 occurrences, the last occurrence with the options nosmp noacpi acpi=off noapic just to see if it solves the problem but it didn't.  Most frustratingly, I hate it when I am the only person experiencing it because searching Google yields nothing with this error.
 
Jack
_________________________________________________________________
Celebrate a decade of Messenger with free winks, emoticons, display pics, and more.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

[-- Attachment #2: panic1.jpg --]
[-- Type: image/pjpeg, Size: 175218 bytes --]

[-- Attachment #3: panic2.jpg --]
[-- Type: image/pjpeg, Size: 170778 bytes --]

[-- Attachment #4: panic3.jpg --]
[-- Type: image/pjpeg, Size: 184062 bytes --]

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

* Re: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-26 17:35 kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211] Jack Lau
@ 2009-07-26 20:40 ` Pavel Roskin
  2009-07-28 21:21   ` Jack Lau
  2009-08-02 17:26   ` Jack Lau
  0 siblings, 2 replies; 11+ messages in thread
From: Pavel Roskin @ 2009-07-26 20:40 UTC (permalink / raw)
  To: Jack Lau; +Cc: linux-wireless

On Sun, 2009-07-26 at 17:35 +0000, Jack Lau wrote:
>  
> This is my very first post on a public mailing list where I am not
> into programming.  I just set up and configure Linux but have very
> little experience with programing except BASIC and shell scripting.
>  
> I have recently assembled a Linux server and router (no GUI) where I
> am using an Atheros AR9160 controller (Sparklan WMIA-268N) as an
> access point.  I am using Ubuntu 9.04 jaunty release but using hostapd
> 0.69 from the upcoming 9.10 karmic release because the one that comes
> with jaunty does not support nl80211.
>  
> The problem is that I am constantly getting kernel panics, each time
> of the same error kernel panic ieee80211_agg_splice_packets+0x3d/0xc0
> [mac80211]

You can find where it happens if you kernel is compiled with the debug
information (CONFIG_DEBUG_INFO in .config).  Load the mac80211 module in
gdb:

gdb /lib/modules/`uname -r`/kernel/net/mac80211/mac80211.ko

On the gdb prompt, run:

l *(ieee80211_agg_splice_packets+0x3d)

Actually, ieee80211_agg_splice_packets is a short function.  Perhaps you
could add debug print statements to find possible errors.  For instance,
local->hw is used.  It would crash if local is NULL.  So you add before
that place:

printk("local = %p\n", local);

Likewise, check sta, sta->ampdu_mlme.tid_tx[tid] and local->pending.  Or
just print the line numbers.  You will see which printk is run last
before the crash.

> I enclose screenshots of 3 occurrences, the last occurrence with the
> options nosmp noacpi acpi=off noapic just to see if it solves the
> problem but it didn't.  Most frustratingly, I hate it when I am the
> only person experiencing it because searching Google yields nothing
> with this error.

Chances are it's because 802.11n is not used much with ath9k in AP mode.

-- 
Regards,
Pavel Roskin

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-26 20:40 ` Pavel Roskin
@ 2009-07-28 21:21   ` Jack Lau
  2009-07-28 22:48     ` Pavel Roskin
  2009-08-02 17:26   ` Jack Lau
  1 sibling, 1 reply; 11+ messages in thread
From: Jack Lau @ 2009-07-28 21:21 UTC (permalink / raw)
  To: linux-wireless




----------------------------------------
> From: jackelectronics@hotmail.com
> To: proski@gnu.org
> Subject: RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
> Date: Tue, 28 Jul 2009 20:34:07 +0000
>
>
> Dear Pavel
>
> I have tried your suggestion and I am getting absolutely nowhere with it.
>
> I have enabled debugging in config.mk and installed it. The kernel already has debugging enabled as I have examined the source from Ubuntu.
>
> When I load the gdb command, I just get no debugging symbols found and with the l command I just get no symbol file now.
>
> I know this may sound really simple to you but I have so little experience with programming and please don't leave me on my own to try and sort the problem out.
>
> Remember, I only install and configure Linux because it is free and lots to learn from but I really don't do programming.
>
> Regards
>
>
> Jack
>
> ----------------------------------------
>> Subject: Re: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
>> From: proski@gnu.org
>> To: jackelectronics@hotmail.com
>> CC: linux-wireless@vger.kernel.org
>> Date: Sun, 26 Jul 2009 16:40:16 -0400
>>
>> On Sun, 2009-07-26 at 17:35 +0000, Jack Lau wrote:
>>>
>>> This is my very first post on a public mailing list where I am not
>>> into programming. I just set up and configure Linux but have very
>>> little experience with programing except BASIC and shell scripting.
>>>
>>> I have recently assembled a Linux server and router (no GUI) where I
>>> am using an Atheros AR9160 controller (Sparklan WMIA-268N) as an
>>> access point. I am using Ubuntu 9.04 jaunty release but using hostapd
>>> 0.69 from the upcoming 9.10 karmic release because the one that comes
>>> with jaunty does not support nl80211.
>>>
>>> The problem is that I am constantly getting kernel panics, each time
>>> of the same error kernel panic ieee80211_agg_splice_packets+0x3d/0xc0
>>> [mac80211]
>>
>> You can find where it happens if you kernel is compiled with the debug
>> information (CONFIG_DEBUG_INFO in .config). Load the mac80211 module in
>> gdb:
>>
>> gdb /lib/modules/`uname -r`/kernel/net/mac80211/mac80211.ko
>>
>> On the gdb prompt, run:
>>
>> l *(ieee80211_agg_splice_packets+0x3d)
>>
>> Actually, ieee80211_agg_splice_packets is a short function. Perhaps you
>> could add debug print statements to find possible errors. For instance,
>> local->hw is used. It would crash if local is NULL. So you add before
>> that place:
>>
>> printk("local = %p\n", local);
>>
>> Likewise, check sta, sta->ampdu_mlme.tid_tx[tid] and local->pending. Or
>> just print the line numbers. You will see which printk is run last
>> before the crash.
>>
>>> I enclose screenshots of 3 occurrences, the last occurrence with the
>>> options nosmp noacpi acpi=off noapic just to see if it solves the
>>> problem but it didn't. Most frustratingly, I hate it when I am the
>>> only person experiencing it because searching Google yields nothing
>>> with this error.
>>
>> Chances are it's because 802.11n is not used much with ath9k in AP mode.
>>
>> --
>> Regards,
>> Pavel Roskin
> _________________________________________________________________
> With Windows Live, you can organise, edit, and share your photos.
> http://clk.atdmt.com/UKM/go/134665338/direct/01/
_________________________________________________________________
Windows Live Messenger: Celebrate 10 amazing years with free winks and emoticons.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 21:21   ` Jack Lau
@ 2009-07-28 22:48     ` Pavel Roskin
  2009-07-30 22:48       ` Jack Lau
                         ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Pavel Roskin @ 2009-07-28 22:48 UTC (permalink / raw)
  To: Jack Lau; +Cc: linux-wireless

On Tue, 2009-07-28 at 21:21 +0000, Jack Lau wrote:

> > I have enabled debugging in config.mk and installed it.

I didn't suggest that.  I think it's irrelevant.  Only the setting
in .config is relevant.

If you are using compat-wireless, I suggest that you try the current
kernel from wireless-testing.  It was quite unstable a few days ago, but
it should be cleaned up by now.  Since you are using the AP mode, you'll
need this patch, it's still not applied as of now:

http://marc.info/?l=linux-wireless&m=124871936602667&w=2

compat-wireless is great if everything is working, but if something is
broken, the first suspicion is that compat-wireless doesn't backport
something correctly.

>  The kernel already has debugging enabled as I have examined the
> source from Ubuntu.

Please be specific what you found and where.  I don't have Ubuntu
around, but others could correct you if you are looking in a wrong
place.

> > When I load the gdb command, I just get no debugging symbols found
> and with the l command I just get no symbol file now.

Please don't rephrase tell the error messages, especially if you don't
understand them fully.  I cannot see from your words why there are no
debugging symbols.

Also please don't top-post, as it makes it harder to quote the
discussion in a reasonable way.

-- 
Regards,
Pavel Roskin

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 22:48     ` Pavel Roskin
@ 2009-07-30 22:48       ` Jack Lau
  2009-07-31 14:26       ` Jack Lau
                         ` (4 subsequent siblings)
  5 siblings, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-07-30 22:48 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless


Pavel,
 
I have downloaded wireless-testing via git, compiled it and installed it which includes the below patch.
The git version was v2.6.31-rc4-29204-g6b3a8c9 (30/07/2009).
Unfortunately, I am still getting this very annoying crash.
 
Regards,
 
 
Jack

----------------------------------------
> Subject: RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
> From: proski@gnu.org
> To: jackelectronics@hotmail.com
> CC: linux-wireless@vger.kernel.org
> Date: Tue, 28 Jul 2009 18:48:58 -0400
>
> On Tue, 2009-07-28 at 21:21 +0000, Jack Lau wrote:
>
>>> I have enabled debugging in config.mk and installed it.
>
> I didn't suggest that. I think it's irrelevant. Only the setting
> in .config is relevant.
>
> If you are using compat-wireless, I suggest that you try the current
> kernel from wireless-testing. It was quite unstable a few days ago, but
> it should be cleaned up by now. Since you are using the AP mode, you'll
> need this patch, it's still not applied as of now:
>
> http://marc.info/?l=linux-wireless&m=124871936602667&w=2
>
> compat-wireless is great if everything is working, but if something is
> broken, the first suspicion is that compat-wireless doesn't backport
> something correctly.
>
>> The kernel already has debugging enabled as I have examined the
>> source from Ubuntu.
>
> Please be specific what you found and where. I don't have Ubuntu
> around, but others could correct you if you are looking in a wrong
> place.
>
>>> When I load the gdb command, I just get no debugging symbols found
>> and with the l command I just get no symbol file now.
>
> Please don't rephrase tell the error messages, especially if you don't
> understand them fully. I cannot see from your words why there are no
> debugging symbols.
>
> Also please don't top-post, as it makes it harder to quote the
> discussion in a reasonable way.
>
> --
> Regards,
> Pavel Roskin
_________________________________________________________________
Share your memories online with anyone you want.
http://clk.atdmt.com/UKM/go/134665338/direct/01/

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 22:48     ` Pavel Roskin
  2009-07-30 22:48       ` Jack Lau
@ 2009-07-31 14:26       ` Jack Lau
       [not found]       ` <SNT102-W3823D5AFC70CB052684837BD110@phx.gbl>
                         ` (3 subsequent siblings)
  5 siblings, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-07-31 14:26 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless


Dear Pavel,
 
As a follow-up to yesterday's email that I have sent, I have also tried a different Linux distribution (Arch Linux), 64-bit instead of 32-bit and on a different machine dedicated for this test.
 
I am still getting this crash!
 
Regards,
 
 
 
Jack

----------------------------------------
> Subject: RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
> From: proski@gnu.org
> To: jackelectronics@hotmail.com
> CC: linux-wireless@vger.kernel.org
> Date: Tue, 28 Jul 2009 18:48:58 -0400
>
> On Tue, 2009-07-28 at 21:21 +0000, Jack Lau wrote:
>
>>> I have enabled debugging in config.mk and installed it.
>
> I didn't suggest that. I think it's irrelevant. Only the setting
> in .config is relevant.
>
> If you are using compat-wireless, I suggest that you try the current
> kernel from wireless-testing. It was quite unstable a few days ago, but
> it should be cleaned up by now. Since you are using the AP mode, you'll
> need this patch, it's still not applied as of now:
>
> http://marc.info/?l=linux-wireless&m=124871936602667&w=2
>
> compat-wireless is great if everything is working, but if something is
> broken, the first suspicion is that compat-wireless doesn't backport
> something correctly.
>
>> The kernel already has debugging enabled as I have examined the
>> source from Ubuntu.
>
> Please be specific what you found and where. I don't have Ubuntu
> around, but others could correct you if you are looking in a wrong
> place.
>
>>> When I load the gdb command, I just get no debugging symbols found
>> and with the l command I just get no symbol file now.
>
> Please don't rephrase tell the error messages, especially if you don't
> understand them fully. I cannot see from your words why there are no
> debugging symbols.
>
> Also please don't top-post, as it makes it harder to quote the
> discussion in a reasonable way.
>
> --
> Regards,
> Pavel Roskin
_________________________________________________________________
Celebrate a decade of Messenger with free winks, emoticons, display pics, and more.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
       [not found]       ` <SNT102-W3823D5AFC70CB052684837BD110@phx.gbl>
@ 2009-08-02  4:18         ` Pavel Roskin
  0 siblings, 0 replies; 11+ messages in thread
From: Pavel Roskin @ 2009-08-02  4:18 UTC (permalink / raw)
  To: Jack Lau; +Cc: linux-wireless

On Sat, 2009-08-01 at 10:03 +0000, Jack Lau wrote:
> Dear Pavel
>  
> I have now taken the time to gather as many logs as possible.

...

> > Also please don't top-post, as it makes it harder to quote the
> > discussion in a reasonable way.

Please read what you are quoting.  Until then, it makes no sense for me
to participate in this thread.

-- 
Regards,
Pavel Roskin

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 22:48     ` Pavel Roskin
                         ` (2 preceding siblings ...)
       [not found]       ` <SNT102-W3823D5AFC70CB052684837BD110@phx.gbl>
@ 2009-08-02 12:55       ` Jack Lau
  2009-08-02 12:57       ` Jack Lau
  2009-08-05 19:23       ` Jack Lau
  5 siblings, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-08-02 12:55 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless



Pavel

> If you are using compat-wireless, I suggest that you try the current
> kernel from wireless-testing. It was quite unstable a few days ago, but
> it should be cleaned up by now. Since you are using the AP mode, you'll
> need this patch, it's still not applied as of now:
>
> http://marc.info/?l=linux-wireless&m=124871936602667&w=2
>
> compat-wireless is great if everything is working, but if something is
> broken, the first suspicion is that compat-wireless doesn't backport
> something correctly.

I have downloaded v2.6.31-rc4-29204-g6b3a8c9 and compiled it with debugging options mac80211 and ath9k enabled.

> You can find where it happens if you kernel is compiled with the debug
> information (CONFIG_DEBUG_INFO in .config). Load the mac80211 module in
> gdb:
>
> gdb /lib/modules/`uname -r`/kernel/net/mac80211/mac80211.ko
>
> On the gdb prompt, run:
>
> l *(ieee80211_agg_splice_packets+0x3d)

I have compiled the above kernel with debug enabled and the symbols are now present and shows me the lines of code concerned.

> Actually, ieee80211_agg_splice_packets is a short function. Perhaps you
> could add debug print statements to find possible errors. For instance,
> local->hw is used. It would crash if local is NULL. So you add before
> that place:
>
> printk("local = %p\n", local);

I have inserted the above printk just above and now prints out on kernel messages.

> Likewise, check sta, sta->ampdu_mlme.tid_tx[tid] and local->pending. Or
> just print the line numbers. You will see which printk is run last
> before the crash.

I am not too sure what you mean by your first sentence. I have added just the one printk line as above.

I now enclose log files of kernel messages from the start of the boot sessions right to the crash.

Also, for some strange reason, the system does not crash when I do a killall on hostapd (I have set it automatically load on startup) and then reload it as detailed on the second log enclosed. This did not use to happen with earlier pre-compiled kernels packages from Ubuntu such as linux-image-2.6.31-4-generic and linux-image-2.6.28-14 where it used to crash all the time.

Regards


Jack
_________________________________________________________________
Windows Live Messenger: Thanks for 10 great years—enjoy free winks and emoticons.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 22:48     ` Pavel Roskin
                         ` (3 preceding siblings ...)
  2009-08-02 12:55       ` Jack Lau
@ 2009-08-02 12:57       ` Jack Lau
  2009-08-05 19:23       ` Jack Lau
  5 siblings, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-08-02 12:57 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless

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


Pavel
 
> I now enclose log files of kernel messages from the start of the boot sessions right to the crash.

I have realised that the log files were not attached so I am reattaching them.
 
Regards
 
 
 
Jack
_________________________________________________________________

Upgrade to Internet Explorer 8 Optimised for MSN.  

http://extras.uk.msn.com/internet-explorer-8/?ocid=T010MSN07A0716U

[-- Attachment #2: debug-1.txt --]
[-- Type: text/plain, Size: 48535 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31-rc4-wl (root@DV051) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #7 SMP Sun Aug 2 12:58:30 BST 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  BIOS-e820: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.3 present.
[    0.000000] last_pfn = 0x7f688 max_arch_pfn = 0x100000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 00000000000a0000 (usable)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  modified: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  modified: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  modified: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  modified: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  modified: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] RAMDISK: 35017000 - 37fef121
[    0.000000] Allocated new RAMDISK: 0088b000 - 03863121
[    0.000000] Move RAMDISK from 0000000035017000 - 0000000037fef120 to 0088b000 - 03863120
[    0.000000] ACPI: RSDP 000fec00 00014 (v00 DELL  )
[    0.000000] ACPI: RSDT 000fcc50 0003C (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: FACP 000fcc8c 00074 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: DSDT fffc56f3 02D5F (v01   DELL    dt_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: FACS 7f688c00 00040
[    0.000000] ACPI: SSDT fffc858f 000BA (v01   DELL    st_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: APIC 000fcd00 00092 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 000fcd92 00028 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 000fcdba 0003E (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: HPET 000fcdf8 00038 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] 1150MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00008000 - 0000ef00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 0000886718]    TEXT DATA BSS ==> [0000100000 - 0000886718]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [0000887000 - 000088a1d0]              BRK ==> [0000887000 - 000088a1d0]
[    0.000000]   #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #7 [000088b000 - 0003863121]      NEW RAMDISK ==> [000088b000 - 0003863121]
[    0.000000]   #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007f688
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000002
[    0.000000]     0: 0x00000006 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007f688
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages at c485e000, static data 30076 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517686
[    0.000000] Kernel command line: root=UUID=a8de6ccd-1498-4938-9f76-b696cf4edbf6 ro vga=775 
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 10437280 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f688)
[    0.000000] Memory: 2001640k/2087456k available (4486k kernel code, 84516k reserved, 2020k data, 536k init, 1178152k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc0766000 - 0xc07ec000   ( 536 kB)
[    0.000000]       .data : 0xc0561b7f - 0xc075af68   (2020 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0561b7f   (4486 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] NR_IRQS:512
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.331 MHz processor.
[    0.000028] Console: colour dummy device 80x25
[    0.000032] console [tty0] enabled
[    0.000436] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.000445] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.66 BogoMIPS (lpj=11969324)
[    0.000470] Security Framework initialized
[    0.000478] SELinux:  Disabled at boot.
[    0.000488] Mount-cache hash table entries: 512
[    0.000650] Initializing cgroup subsys ns
[    0.000657] Initializing cgroup subsys cpuacct
[    0.000665] Initializing cgroup subsys memory
[    0.000674] Initializing cgroup subsys freezer
[    0.000697] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.000703] CPU: L2 cache: 1024K
[    0.000708] CPU: Physical Processor ID: 0
[    0.000712] CPU: Processor Core ID: 0
[    0.000717] using mwait in idle threads.
[    0.000731] Checking 'hlt' instruction... OK.
[    0.017905] ACPI: Core revision 20090521
[    0.065096] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.104792] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.108001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 5985.00 BogoMIPS (lpj=11970015)
[    0.004000] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.192403] CPU1: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.192454] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.196046] Brought up 2 CPUs
[    0.196055] Total of 2 processors activated (11969.66 BogoMIPS).
[    0.196450] Booting paravirtualized kernel on bare hardware
[    0.196713] regulator: core version 0.5
[    0.196743] Time: 13:10:15  Date: 08/02/09
[    0.196803] NET: Registered protocol family 16
[    0.196964] EISA bus registered
[    0.196978] ACPI: bus type pci registered
[    0.197056] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.197063] PCI: MCFG area at e0000000 reserved in E820
[    0.197068] PCI: Using MMCONFIG for extended config space
[    0.197072] PCI: Using configuration type 1 for base access
[    0.198380] bio: create slab <bio-0> at 0
[    0.220923] ACPI: BIOS _OSI(Linux) query ignored
[    0.231724] ACPI: Interpreter enabled
[    0.231735] ACPI: (supports S0 S1 S3 S4 S5)
[    0.231772] ACPI: Using IOAPIC for interrupt routing
[    0.274787] ACPI: No dock devices found.
[    0.278503] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.278768] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.278776] pci 0000:00:1b.0: PME# disabled
[    0.278847] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.278855] pci 0000:00:1c.0: PME# disabled
[    0.278926] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.278933] pci 0000:00:1c.1: PME# disabled
[    0.279277] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.279284] pci 0000:00:1d.7: PME# disabled
[    0.279408] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
[    0.279416] pci 0000:00:1f.0: quirk: region 0880-08bf claimed by ICH6 GPIO
[    0.279422] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0c00-0c7f
[    0.279429] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 00e0-00ef
[    0.279600] pci 0000:00:1f.2: PME# supported from D3hot
[    0.279607] pci 0000:00:1f.2: PME# disabled
[    0.279894] pci 0000:03:02.0: PME# supported from D0 D3hot
[    0.279902] pci 0000:03:02.0: PME# disabled
[    0.280020] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280027] pci 0000:03:08.0: PME# disabled
[    0.280070] pci 0000:00:1e.0: transparent bridge
[    0.671267] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.671618] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.672105] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.672449] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.672800] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.673148] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.673492] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.673839] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.674119] SCSI subsystem initialized
[    0.674309] usbcore: registered new interface driver usbfs
[    0.674336] usbcore: registered new interface driver hub
[    0.674378] usbcore: registered new device driver usb
[    0.674544] ACPI: WMI: Mapper loaded
[    0.674549] PCI: Using ACPI for IRQ routing
[    0.674737] Bluetooth: Core ver 2.15
[    0.674783] NET: Registered protocol family 31
[    0.674788] Bluetooth: HCI device and connection manager initialized
[    0.674794] Bluetooth: HCI socket layer initialized
[    0.674799] NET: Registered protocol family 8
[    0.674803] NET: Registered protocol family 20
[    0.674820] NetLabel: Initializing
[    0.674824] NetLabel:  domain hash size = 128
[    0.674827] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.674846] NetLabel:  unlabeled traffic allowed by default
[    0.674888] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.674898] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.681973] pnp: PnP ACPI init
[    0.682000] ACPI: bus type pnp registered
[    0.688404] pnp 00:01: io resource (0x800-0x85f) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.688414] pnp 00:01: io resource (0x860-0x8ff) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.709544] pnp: PnP ACPI: found 9 devices
[    0.709550] ACPI: ACPI bus type pnp unregistered
[    0.709557] PnPBIOS: Disabled by ACPI PNP
[    0.709573] system 00:01: ioport range 0xc00-0xc7f has been reserved
[    0.709589] system 00:07: iomem range 0x0-0x9ffff could not be reserved
[    0.709596] system 00:07: iomem range 0x100000-0xffffff could not be reserved
[    0.709603] system 00:07: iomem range 0x1000000-0x7f688bff could not be reserved
[    0.709610] system 00:07: iomem range 0xc0000-0xfffff could not be reserved
[    0.709616] system 00:07: iomem range 0xfec00000-0xfecfffff could not be reserved
[    0.709623] system 00:07: iomem range 0xfee00000-0xfeefffff has been reserved
[    0.709629] system 00:07: iomem range 0xfed20000-0xfed9ffff has been reserved
[    0.709635] system 00:07: iomem range 0xffb00000-0xffbfffff has been reserved
[    0.709641] system 00:07: iomem range 0xffc00000-0xffffffff has been reserved
[    0.709651] system 00:08: ioport range 0x100-0x1fe could not be reserved
[    0.709657] system 00:08: ioport range 0x200-0x277 has been reserved
[    0.709662] system 00:08: ioport range 0x280-0x2e7 has been reserved
[    0.709668] system 00:08: ioport range 0x2e8-0x2ef has been reserved
[    0.709673] system 00:08: ioport range 0x2f0-0x2f7 has been reserved
[    0.709679] system 00:08: ioport range 0x2f8-0x2ff has been reserved
[    0.709685] system 00:08: ioport range 0x300-0x377 could not be reserved
[    0.709691] system 00:08: ioport range 0x380-0x3bb has been reserved
[    0.709696] system 00:08: ioport range 0x3c0-0x3e7 has been reserved
[    0.709702] system 00:08: ioport range 0x3f6-0x3f7 could not be reserved
[    0.709707] system 00:08: ioport range 0x400-0x4cf has been reserved
[    0.709713] system 00:08: ioport range 0x4d2-0x57f has been reserved
[    0.709719] system 00:08: ioport range 0x580-0x677 has been reserved
[    0.709724] system 00:08: ioport range 0x680-0x777 has been reserved
[    0.709730] system 00:08: ioport range 0x780-0x7bb has been reserved
[    0.709735] system 00:08: ioport range 0x7c0-0x7ff has been reserved
[    0.709741] system 00:08: ioport range 0x8e0-0x8ff has been reserved
[    0.709746] system 00:08: ioport range 0x900-0x9fe has been reserved
[    0.709752] system 00:08: ioport range 0xa00-0xafe has been reserved
[    0.709758] system 00:08: ioport range 0xb00-0xbfe has been reserved
[    0.709763] system 00:08: ioport range 0xc80-0xcaf has been reserved
[    0.709769] system 00:08: ioport range 0xcb0-0xcbf has been reserved
[    0.709774] system 00:08: ioport range 0xcc0-0xcf7 has been reserved
[    0.709780] system 00:08: ioport range 0xd00-0xdfe has been reserved
[    0.709786] system 00:08: ioport range 0xe00-0xefe has been reserved
[    0.709791] system 00:08: ioport range 0xf00-0xffe has been reserved
[    0.709797] system 00:08: ioport range 0x2000-0x20fe has been reserved
[    0.709803] system 00:08: ioport range 0x2100-0x21fe has been reserved
[    0.709809] system 00:08: ioport range 0x2200-0x22fe has been reserved
[    0.709814] system 00:08: ioport range 0x2300-0x23fe has been reserved
[    0.709820] system 00:08: ioport range 0x2400-0x24fe has been reserved
[    0.709826] system 00:08: ioport range 0x2500-0x25fe has been reserved
[    0.709832] system 00:08: ioport range 0x2600-0x26fe has been reserved
[    0.709838] system 00:08: ioport range 0x2700-0x27fe has been reserved
[    0.709844] system 00:08: ioport range 0x2800-0x28fe has been reserved
[    0.709849] system 00:08: ioport range 0x2900-0x29fe has been reserved
[    0.709855] system 00:08: ioport range 0x2a00-0x2afe has been reserved
[    0.709861] system 00:08: ioport range 0x2b00-0x2bfe has been reserved
[    0.709867] system 00:08: ioport range 0x2c00-0x2cfe has been reserved
[    0.709873] system 00:08: ioport range 0x2d00-0x2dfe has been reserved
[    0.709879] system 00:08: ioport range 0x2e00-0x2efe has been reserved
[    0.709885] system 00:08: ioport range 0x2f00-0x2ffe has been reserved
[    0.709891] system 00:08: ioport range 0x5000-0x50fe has been reserved
[    0.709897] system 00:08: ioport range 0x5100-0x51fe has been reserved
[    0.709903] system 00:08: ioport range 0x5200-0x52fe has been reserved
[    0.709909] system 00:08: ioport range 0x5300-0x53fe has been reserved
[    0.709915] system 00:08: ioport range 0x5400-0x54fe has been reserved
[    0.709921] system 00:08: ioport range 0x5500-0x55fe has been reserved
[    0.709927] system 00:08: ioport range 0x5600-0x56fe has been reserved
[    0.709934] system 00:08: ioport range 0x5700-0x57fe has been reserved
[    0.709940] system 00:08: ioport range 0x5800-0x58fe has been reserved
[    0.709946] system 00:08: ioport range 0x5900-0x59fe has been reserved
[    0.709952] system 00:08: ioport range 0x5a00-0x5afe has been reserved
[    0.709958] system 00:08: ioport range 0x5b00-0x5bfe has been reserved
[    0.709964] system 00:08: ioport range 0x5c00-0x5cfe has been reserved
[    0.709970] system 00:08: ioport range 0x5d00-0x5dfe has been reserved
[    0.709976] system 00:08: ioport range 0x5e00-0x5efe has been reserved
[    0.709982] system 00:08: ioport range 0x5f00-0x5ffe has been reserved
[    0.709988] system 00:08: ioport range 0x6000-0x60fe has been reserved
[    0.709995] system 00:08: ioport range 0x6100-0x61fe has been reserved
[    0.710001] system 00:08: ioport range 0x6200-0x62fe has been reserved
[    0.710007] system 00:08: ioport range 0x6300-0x63fe has been reserved
[    0.710013] system 00:08: ioport range 0x6400-0x64fe has been reserved
[    0.710019] system 00:08: ioport range 0x6500-0x65fe has been reserved
[    0.710025] system 00:08: ioport range 0x6600-0x66fe has been reserved
[    0.710032] system 00:08: ioport range 0x6700-0x67fe has been reserved
[    0.710038] system 00:08: ioport range 0x6800-0x68fe has been reserved
[    0.710044] system 00:08: ioport range 0x6900-0x69fe has been reserved
[    0.710051] system 00:08: ioport range 0x6a00-0x6afe has been reserved
[    0.710057] system 00:08: ioport range 0x6b00-0x6bfe has been reserved
[    0.710063] system 00:08: ioport range 0x6c00-0x6cfe has been reserved
[    0.710070] system 00:08: ioport range 0x6d00-0x6dfe has been reserved
[    0.710076] system 00:08: ioport range 0x6e00-0x6efe has been reserved
[    0.710083] system 00:08: ioport range 0x6f00-0x6ffe has been reserved
[    0.710089] system 00:08: ioport range 0xa000-0xa0fe has been reserved
[    0.710096] system 00:08: ioport range 0xa100-0xa1fe has been reserved
[    0.710102] system 00:08: ioport range 0xa200-0xa2fe has been reserved
[    0.710109] system 00:08: ioport range 0xa300-0xa3fe has been reserved
[    0.710115] system 00:08: ioport range 0xa400-0xa4fe has been reserved
[    0.710122] system 00:08: ioport range 0xa500-0xa5fe has been reserved
[    0.710128] system 00:08: ioport range 0xa600-0xa6fe has been reserved
[    0.710135] system 00:08: ioport range 0xa700-0xa7fe has been reserved
[    0.710142] system 00:08: ioport range 0xa800-0xa8fe has been reserved
[    0.710148] system 00:08: ioport range 0xa900-0xa9fe has been reserved
[    0.710155] system 00:08: ioport range 0xaa00-0xaafe has been reserved
[    0.710162] system 00:08: ioport range 0xab00-0xabfe has been reserved
[    0.710168] system 00:08: ioport range 0xac00-0xacfe has been reserved
[    0.710175] system 00:08: ioport range 0xad00-0xadfe has been reserved
[    0.710182] system 00:08: ioport range 0xae00-0xaefe has been reserved
[    0.710188] system 00:08: ioport range 0xaf00-0xaffe has been reserved
[    0.710195] system 00:08: iomem range 0xe0000000-0xefffffff has been reserved
[    0.710201] system 00:08: iomem range 0xfeda0000-0xfedacfff has been reserved
[    0.744931] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.744937] pci 0000:00:1c.0:   IO window: disabled
[    0.744945] pci 0000:00:1c.0:   MEM window: 0xdfe00000-0xdfefffff
[    0.744952] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.744959] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
[    0.744963] pci 0000:00:1c.1:   IO window: disabled
[    0.744971] pci 0000:00:1c.1:   MEM window: 0xdfd00000-0xdfdfffff
[    0.744977] pci 0000:00:1c.1:   PREFETCH window: disabled
[    0.744985] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
[    0.744991] pci 0000:00:1e.0:   IO window: 0xd000-0xdfff
[    0.744998] pci 0000:00:1e.0:   MEM window: 0xdfc00000-0xdfcfffff
[    0.745005] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.745024] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.745044] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.745138] NET: Registered protocol family 2
[    0.745280] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.745689] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.746052] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.746333] TCP: Hash tables configured (established 131072 bind 65536)
[    0.746338] TCP reno registered
[    0.746494] NET: Registered protocol family 1
[    0.746582] Trying to unpack rootfs image as initramfs...
[    2.325730] Freeing initrd memory: 48992k freed
[    2.352844] Simple Boot Flag at 0x7a set to 0x1
[    2.352978] cpufreq-nforce2: No nForce2 chipset.
[    2.353020] Scanning for low memory corruption every 60 seconds
[    2.353172] audit: initializing netlink socket (disabled)
[    2.353192] type=2000 audit(1249218617.352:1): initialized
[    2.361583] highmem bounce pool size: 64 pages
[    2.361594] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    2.363379] VFS: Disk quotas dquot_6.5.2
[    2.363459] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.364253] fuse init (API version 7.12)
[    2.364369] msgmni has been set to 1705
[    2.364652] alg: No test for stdrng (krng)
[    2.364673] io scheduler noop registered
[    2.364681] io scheduler anticipatory registered
[    2.364686] io scheduler deadline registered
[    2.364748] io scheduler cfq registered (default)
[    2.364869] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    2.365282] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.365358] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.365572] uvesafb: failed to execute /sbin/v86d
[    2.365578] uvesafb: make sure that the v86d helper is installed and executable
[    2.365585] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2)
[    2.365590] uvesafb: vbe_init() failed with -22
[    2.365598] uvesafb: probe of uvesafb.0 failed with error -22
[    2.365675] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 2560k, total 7872k
[    2.365683] vesafb: mode is 1280x1024x8, linelength=1280, pages=5
[    2.365688] vesafb: scrolling: redraw
[    2.365693] vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
[    2.379473] Console: switching to colour frame buffer device 160x64
[    2.392664] fb0: VESA VGA frame buffer device
[    2.392900] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.393028] ACPI: Power Button [PWRF]
[    2.393152] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.393292] ACPI: Power Button [VBTN]
[    2.393819] processor LNXCPU:00: registered as cooling_device0
[    2.393966] processor LNXCPU:01: registered as cooling_device1
[    2.429970] isapnp: Scanning for PnP cards...
[    2.739838] isapnp: No Plug & Play device found
[    2.741332] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.741594] Platform driver 'serial8250' needs updating - please use dev_pm_ops
[    2.743104] brd: module loaded
[    2.743724] loop: module loaded
[    2.743871] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    2.744091] ahci 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
[    2.744307] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 4 ports 1.5 Gbps 0xf impl IDE mode
[    2.744443] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part 
[    2.744914] scsi0 : ahci
[    2.745072] scsi1 : ahci
[    2.745178] scsi2 : ahci
[    2.745287] scsi3 : ahci
[    2.745370] ata1: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 20
[    2.745478] ata2: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3bd80 irq 20
[    2.745575] ata3: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be00 irq 20
[    2.745698] ata4: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be80 irq 20
[    2.745887] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.746103] scsi4 : ata_piix
[    2.746261] scsi5 : ata_piix
[    2.746373] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.746491] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.747514] Fixed MDIO Bus: probed
[    2.747567] PPP generic driver version 2.4.2
[    2.747752] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.747889] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.748028] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.748157] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.752173] ehci_hcd 0000:00:1d.7: debug port 1
[    2.752279] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    2.768278] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.772412] usb usb1: configuration #1 chosen from 1 choice
[    2.776506] hub 1-0:1.0: USB hub found
[    2.780531] hub 1-0:1.0: 8 ports detected
[    2.784566] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.788582] uhci_hcd: USB Universal Host Controller Interface driver
[    2.792645] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.796799] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.800906] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.805079] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    2.809235] usb usb2: configuration #1 chosen from 1 choice
[    2.813353] hub 2-0:1.0: USB hub found
[    2.817433] hub 2-0:1.0: 2 ports detected
[    2.821558] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[    2.825694] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.829787] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.833875] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    2.837942] usb usb3: configuration #1 chosen from 1 choice
[    2.841933] hub 3-0:1.0: USB hub found
[    2.845980] hub 3-0:1.0: 2 ports detected
[    2.849962] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.853950] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.857887] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.861779] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.865786] usb usb4: configuration #1 chosen from 1 choice
[    2.869751] hub 4-0:1.0: USB hub found
[    2.873578] hub 4-0:1.0: 2 ports detected
[    2.877408] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[    2.881321] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.885159] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.888895] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.892721] usb usb5: configuration #1 chosen from 1 choice
[    2.896500] hub 5-0:1.0: USB hub found
[    2.900303] hub 5-0:1.0: 2 ports detected
[    2.904238] PNP: No PS/2 controller found. Probing ports directly.
[    2.908028] Platform driver 'i8042' needs updating - please use dev_pm_ops
[    2.912416] ata5.00: ATAPI: HL-DT-STDVD+-RW GSA-H21N, B109, max UDMA/33
[    2.917366] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.921242] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.925094] mice: PS/2 mouse device common for all mice
[    2.928868] rtc_cmos 00:05: RTC can wake from S4
[    2.932547] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.936232] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    2.936473] ata5.00: configured for UDMA/33
[    2.943777] device-mapper: uevent: version 1.0.3
[    2.947574] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.951610] device-mapper: multipath: version 1.1.0 loaded
[    2.955438] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.959391] EISA: Probing bus 0 at eisa.0
[    2.963259] EISA: Cannot allocate resource for mainboard
[    2.967206] Cannot allocate resource for EISA slot 2
[    2.971103] Cannot allocate resource for EISA slot 5
[    2.974906] Cannot allocate resource for EISA slot 6
[    2.978726] EISA: Detected 0 cards.
[    2.982596] cpuidle: using governor ladder
[    2.986438] cpuidle: using governor menu
[    2.990788] TCP cubic registered
[    2.994623] NET: Registered protocol family 10
[    2.998880] lo: Disabled Privacy Extensions
[    3.002995] NET: Registered protocol family 17
[    3.006668] Bluetooth: L2CAP ver 2.13
[    3.010315] Bluetooth: L2CAP socket layer initialized
[    3.014017] Bluetooth: SCO (Voice Link) ver 0.6
[    3.017665] Bluetooth: SCO socket layer initialized
[    3.021305] Bluetooth: RFCOMM socket layer initialized
[    3.024909] Bluetooth: RFCOMM TTY layer initialized
[    3.028514] Bluetooth: RFCOMM ver 1.11
[    3.032115] Using IPI No-Shortcut mode
[    3.035772] registered taskstats version 1
[    3.039494]   Magic number: 5:156:179
[    3.043336] rtc_cmos 00:05: setting system clock to 2009-08-02 13:10:18 UTC (1249218618)
[    3.046927] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.050588] EDD information not available.
[    3.068038] ata4: SATA link down (SStatus 0 SControl 300)
[    3.071630] ata3: SATA link down (SStatus 0 SControl 300)
[    3.075206] ata2: SATA link down (SStatus 0 SControl 300)
[    3.096050] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.228409] usb 1-1: configuration #1 chosen from 1 choice
[    3.232116] hub 1-1:1.0: USB hub found
[    3.235706] hub 1-1:1.0: 4 ports detected
[    3.468035] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.510086] ata1.00: ATA-7: ST3160812AS, 3.ADH, max UDMA/133
[    3.513660] ata1.00: 312500000 sectors, multi 8: LBA48 NCQ (depth 31/32)
[    3.517475] usb 1-1.1: new low speed USB device using ehci_hcd and address 3
[    3.568419] ata1.00: configured for UDMA/133
[    3.588151] scsi 0:0:0:0: Direct-Access     ATA      ST3160812AS      3.AD PQ: 0 ANSI: 5
[    3.592050] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.595797] sd 0:0:0:0: [sda] 312500000 512-byte logical blocks: (160 GB/149 GiB)
[    3.599623] sd 0:0:0:0: [sda] Write Protect is off
[    3.603403] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.607278] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GSA-H21N B109 PQ: 0 ANSI: 5
[    3.607727]  sda:sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[    3.620129] Uniform CD-ROM driver Revision: 3.20
[    3.623994] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.627719]  sda1 sda2 sda3
[    3.631843] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.635583] Freeing unused kernel memory: 536k freed
[    3.639756] Write protecting the kernel text: 4488k
[    3.643584] Write protecting the kernel read-only data: 1660k
[    3.646428] usb 1-1.1: configuration #1 chosen from 1 choice
[    3.732262] usb 1-1.2: new full speed USB device using ehci_hcd and address 4
[    3.829382] usb 1-1.2: configuration #1 chosen from 1 choice
[    3.834017] hub 1-1.2:1.0: USB hub found
[    3.837997] hub 1-1.2:1.0: 3 ports detected
[    3.890286] Platform driver 'floppy' needs updating - please use dev_pm_ops
[    3.890376] Floppy drive(s): fd0 is 1.44M
[    3.906214] FDC 0 is a post-1991 82077
[    3.970998] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    3.975486] e100: Copyright(c) 1999-2006 Intel Corporation
[    3.980276] e100 0000:03:08.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    4.010345] e100 0000:03:08.0: PME# disabled
[    4.032181] usbcore: registered new interface driver hiddev
[    4.043267] input: Microsoft Corporation Microsoft ® Laser Mouse 6000 as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.1/1-1.1:1.0/input/input3
[    4.048205] generic-usb 0003:045E:00F0.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Corporation Microsoft ® Laser Mouse 6000] on usb-0000:00:1d.7-1.1/input0
[    4.112157] usb 1-1.2.1: new full speed USB device using ehci_hcd and address 5
[    4.152334] usbcore: registered new interface driver usbhid
[    4.157473] usbhid: v2.6:USB HID core driver
[    4.193884] e100: eth0: e100_probe: addr 0xdfcef000, irq 20, MAC addr 00:16:76:af:c1:00
[    4.209669] usb 1-1.2.1: configuration #1 chosen from 1 choice
[    4.216552] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.0/input/input4
[    4.222175] generic-usb 0003:413C:2010.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input0
[    4.229910] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.1/input/input5
[    4.235781] generic-usb 0003:413C:2010.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input1
[    4.559045] EXT4-fs (sda3): barriers enabled
[    4.572845] kjournald2 starting: pid 685, dev sda3:8, commit interval 5 seconds
[    4.578070] EXT4-fs (sda3): delayed allocation enabled
[    4.583310] EXT4-fs: file extents enabled
[    4.590576] EXT4-fs: mballoc enabled
[    4.595632] EXT4-fs (sda3): mounted filesystem with ordered data mode
[    5.843104] udev: starting version 141
[    6.325828] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    6.421474] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    6.653480] intel_rng: Firmware space is locked read-only. If you can't or
[    6.653484] intel_rng: don't want to disable this in firmware setup, and if
[    6.653486] intel_rng: you are certain that your system has a functional
[    6.653488] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    6.780959] Linux agpgart interface v0.103
[    7.009265] cfg80211: Calling CRDA to update world regulatory domain
[    7.067228] agpgart-intel 0000:00:00.0: Intel 915G Chipset
[    7.073297] agpgart-intel 0000:00:00.0: detected 7932K stolen memory
[    7.081610] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    7.208521] iTCO_vendor_support: vendor-support=0
[    7.270911] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[    7.276428] iTCO_wdt: failed to reset NO_REBOOT flag, reboot disabled by hardware
[    7.282053] iTCO_wdt: No card detected
[    7.360186] cfg80211: World regulatory domain updated:
[    7.365222] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.370146] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.375180] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.380418] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.385645] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.390556] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.591959] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    7.671307] ath9k 0000:03:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.298761] Registered led device: ath9k-phy0::radio
[    9.303859] Registered led device: ath9k-phy0::assoc
[    9.308813] Registered led device: ath9k-phy0::tx
[    9.313734] cfg80211: Calling CRDA for country: AT
[    9.314017] Registered led device: ath9k-phy0::rx
[    9.314037] phy0: Atheros AR9160 MAC/BB Rev:0 AR5133 RF Rev:b0: mem=0xf8540000, irq=18
[    9.335290] cfg80211: Regulatory domain changed to country: AT
[    9.340672] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    9.346201] 	(2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.351139] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.355977] 	(5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.360453] 	(5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[    9.517982] lp: driver loaded but no devices found
[    9.547401] netconsole: local port 6969
[    9.551675] netconsole: local IP 192.168.1.2
[    9.555645] netconsole: interface eth0
[    9.559524] netconsole: remote port 514
[    9.563203] netconsole: remote IP 192.168.1.1
[    9.566836] netconsole: remote ethernet address ba:98:76:54:32:10
[    9.570533] netconsole: device eth0 not up yet, forcing it
[    9.589782] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   11.816145] e100: eth0 NIC Link is Up 100 Mbps Full Duplex
[   11.819879] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   11.832307] console [netcon0] enabled
[   13.764449] netconsole: network logging started
[   14.104549] EXT4-fs (sda3): internal journal on sda3:8
[   14.850346] Bridge firewalling registered
[   14.863896] device eth0 entered promiscuous mode
[   14.870867] device wlan0 entered promiscuous mode
[   14.885365] phy0: device now idle
[   14.896492] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   14.917841] br0: port 1(eth0) entering learning state
[   23.764015] eth0: no IPv6 routers present
[   25.700047] br0: no IPv6 routers present
[   29.920049] br0: port 1(eth0) entering forwarding state
[   36.435633] ath9k: DMA failed to stop in 10 ms AR_CR=0x00000024 AR_DIAG_SW=0x40000020
[   36.445132] br0: port 2(wlan0) entering disabled state
[   36.454655] phy0: device no longer idle - in use
[   36.504228] br0: port 2(wlan0) entering learning state
[   36.591455] padlock: VIA PadLock not detected.
[   45.993219] phy0: Allocated STA 01:23:45:67:89:ba
[   45.993327] phy0: Inserted STA 01:23:45:67:89:ba
[   46.656022] wlan0: no IPv6 routers present
[   49.096378] phy0: Removed STA 01:23:45:67:89:ba
[   49.108036] phy0: Destroyed STA 01:23:45:67:89:ba
[   49.132857] phy0: Allocated STA 01:23:45:67:89:ba
[   49.132949] phy0: Inserted STA 01:23:45:67:89:ba
[   51.504017] br0: port 2(wlan0) entering forwarding state
[   52.236307] phy0: Removed STA 01:23:45:67:89:ba
[   52.248034] phy0: Destroyed STA 01:23:45:67:89:ba
[   52.272892] phy0: Allocated STA 01:23:45:67:89:ba
[   52.272976] phy0: Inserted STA 01:23:45:67:89:ba
[   54.490970] Open BA session requested for 01:23:45:67:89:ba tid 0
[   54.491090] activated addBA response timer on tid 0
[   54.492216] switched off addBA timer for tid 0 
[   54.492282] Aggregation is on for tid 0 
[   54.492339] local f705c1c0
[   61.878552] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 39
[   61.878663] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   61.878766] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   61.878866] local f705c1c0
[   61.990986] Open BA session requested for 01:23:45:67:89:ba tid 0
[   61.991080] activated addBA response timer on tid 0
[   61.992235] switched off addBA timer for tid 0 
[   61.992315] Aggregation is on for tid 0 
[   61.992372] local f705c1c0
[   62.707228] Rx A-MPDU request on tid 0 result 0
[   70.656023] rx session timer expired on tid 0
[   70.656109] Rx BA session stop requested for 01:23:45:67:89:ba tid 0
[   77.866291] phy0: Allocated STA 01:23:45:67:89:ba
[   77.866398] phy0: Destroyed STA 01:23:45:67:89:ba
[   79.075131] Rx A-MPDU request on tid 0 result 0
[   79.847494] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   79.847595] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   79.847724] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   79.847826] local f705c1c0
[   79.848302] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   79.848420] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   79.848541] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   79.848636] local f705c1c0
[   79.848694] BUG: unable to handle kernel NULL pointer dereference at 00000030
[   79.848827] IP: [<f84cbcd3>] ieee80211_agg_splice_packets+0x53/0xd0 [mac80211]
[   79.848951] *pde = 00000000 
[   79.849003] Oops: 0000 [#1] SMP 
[   79.849071] last sysfs file: /sys/module/aes_generic/initstate
[   79.849170] Modules linked in: aes_i586 aes_generic video output bridge stp netconsole lp parport arc4 ecb snd_hda_codec_idt ath9k snd_hda_intel mac80211 snd_hda_codec led_class snd_pcm snd_timer ath iTCO_wdt iTCO_vendor_support snd intel_agp cfg80211 soundcore snd_page_alloc agpgart psmouse dcdbas pcspkr serio_raw joydev e100 mii usbhid floppy
[   79.849918] 
[   79.849948] Pid: 2137, comm: dd Not tainted (2.6.31-rc4-wl #7) Dell DV051                   
[   79.850071] EIP: 0060:[<f84cbcd3>] EFLAGS: 00010286 CPU: 0
[   79.850159] EIP is at ieee80211_agg_splice_packets+0x53/0xd0 [mac80211]
[   79.850248] EAX: 00000030 EBX: 0000004c ECX: 00000003 EDX: 00000000
[   79.850335] ESI: 00000000 EDI: c2520000 EBP: c334fdc4 ESP: c334fda0
[   79.850420]  DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0068
[   79.850513] Process dd (pid: 2137, ti=c334e000 task=c317b1c0 task.ti=c334e000)
[   79.850635] Stack:
[   79.850666]  f84ef34a f705c1c0 00000002 f705c1c0 c2520000 c334fdc4 c3485320 c2520000
[   79.850840] <0> f705c1c0 c334fdf0 f84cbf3b f84f0454 c3485320 00000000 f705c744 c2520020
[   79.851023] <0> 00000000 c3485300 f705c1c0 f705c290 c334fe18 f84c7e3e c334fe18 f865dcc2
[   79.851215] Call Trace:
[   79.852014]  [<f84cbf3b>] ? ieee80211_stop_tx_ba_cb+0xab/0x150 [mac80211]
[   79.852014]  [<f84c7e3e>] ? ieee80211_tasklet_handler+0xce/0x110 [mac80211]
[   79.852014]  [<f865dcc2>] ? ath9k_tasklet+0x62/0x110 [ath9k]
[   79.852014]  [<c01422e8>] ? tasklet_action+0x58/0xc0
[   79.852014]  [<c0143062>] ? __do_softirq+0xc2/0x190
[   79.852014]  [<c01877b8>] ? handle_IRQ_event+0x58/0x140
[   79.852014]  [<c0141d26>] ? current_fs_time+0x16/0x20
[   79.852014]  [<c011a9ce>] ? ack_apic_level+0x7e/0x270
[   79.852014]  [<c014316d>] ? do_softirq+0x3d/0x40
[   79.852014]  [<c01432b5>] ? irq_exit+0x65/0x90
[   79.852014]  [<c01048bf>] ? do_IRQ+0x4f/0xc0
[   79.852014]  [<c0103709>] ? common_interrupt+0x29/0x30
[   79.852014]  [<c013e6f9>] ? do_syslog+0x339/0x410
[   79.852014]  [<c01048bf>] ? do_IRQ+0x4f/0xc0
[   79.852014]  [<c0153dc0>] ? autoremove_wake_function+0x0/0x50
[   79.852014]  [<c02230f0>] ? kmsg_read+0x0/0x60
[   79.852014]  [<c0223115>] ? kmsg_read+0x25/0x60
[   79.852014]  [<c02199ea>] ? proc_reg_read+0x5a/0x80
[   79.852014]  [<c01d8cc9>] ? vfs_read+0x99/0x190
[   79.852014]  [<c0219990>] ? proc_reg_read+0x0/0x80
[   79.852014]  [<c01d8e7d>] ? sys_read+0x3d/0x70
[   79.852014]  [<c0102ffc>] ? sysenter_do_call+0x12/0x28
[   79.852014] Code: 04 24 4a f3 4e f8 89 44 24 04 e8 b1 eb 08 c8 8b 45 e8 89 da 89 5d e4 b9 03 00 00 00 8d 5e 4c e8 34 2f 01 00 8b 54 9f 0c 8d 42 30 <39> 42 30 74 60 8b 4d e8 83 c1 64 89 c8 89 4d ec e8 88 13 09 c8 
[   79.852014] EIP: [<f84cbcd3>] ieee80211_agg_splice_packets+0x53/0xd0 [mac80211] SS:ESP 0068:c334fda0
[   79.852014] CR2: 0000000000000030
[   79.970844] ---[ end trace 56d8a890e70d466e ]---
[   79.975376] Kernel panic - not syncing: Fatal exception in interrupt
[   79.979999] Pid: 2137, comm: dd Tainted: G      D    2.6.31-rc4-wl #7
[   79.984572] Call Trace:
[   79.989128]  [<c055a880>] ? printk+0x18/0x20
[   79.993716]  [<c055a7b0>] panic+0x43/0xfb
[   79.998143]  [<c055dff1>] oops_end+0xc1/0xd0
[   80.002597]  [<c0121e56>] no_context+0xb6/0x150
[   80.007062]  [<c0121f30>] __bad_area_nosemaphore+0x40/0x190
[   80.011558]  [<c048f70a>] ? netpoll_send_udp+0x1da/0x1f0
[   80.015928]  [<f85a02ca>] ? write_msg+0xda/0xf0 [netconsole]
[   80.020380]  [<f85a01f0>] ? write_msg+0x0/0xf0 [netconsole]
[   80.024796]  [<c013d562>] ? __call_console_drivers+0x62/0x80
[   80.029230]  [<c015876b>] ? up+0x2b/0x40
[   80.033569]  [<c013da81>] ? release_console_sem+0x191/0x1d0
[   80.037886]  [<c0122092>] bad_area_nosemaphore+0x12/0x20
[   80.042241]  [<c055f56c>] do_page_fault+0x24c/0x2f0
[   80.046576]  [<c055f320>] ? do_page_fault+0x0/0x2f0
[   80.050884]  [<c055d4c6>] error_code+0x66/0x70
[   80.055115]  [<f84d007b>] ? ieee80211_set_disassoc+0x18b/0x190 [mac80211]
[   80.059384]  [<c055f320>] ? do_page_fault+0x0/0x2f0
[   80.063625]  [<f84cbcd3>] ? ieee80211_agg_splice_packets+0x53/0xd0 [mac80211]
[   80.067883]  [<f84cbf3b>] ieee80211_stop_tx_ba_cb+0xab/0x150 [mac80211]
[   80.071937]  [<f84c7e3e>] ieee80211_tasklet_handler+0xce/0x110 [mac80211]
[   80.075894]  [<f865dcc2>] ? ath9k_tasklet+0x62/0x110 [ath9k]
[   80.079894]  [<c01422e8>] tasklet_action+0x58/0xc0
[   80.083913]  [<c0143062>] __do_softirq+0xc2/0x190
[   80.087823]  [<c01877b8>] ? handle_IRQ_event+0x58/0x140
[   80.091693]  [<c0141d26>] ? current_fs_time+0x16/0x20
[   80.095558]  [<c011a9ce>] ? ack_apic_level+0x7e/0x270
[   80.099368]  [<c014316d>] do_softirq+0x3d/0x40
[   80.103149]  [<c01432b5>] irq_exit+0x65/0x90
[   80.106927]  [<c01048bf>] do_IRQ+0x4f/0xc0
[   80.110638]  [<c0103709>] common_interrupt+0x29/0x30
[   80.114365]  [<c013e6f9>] ? do_syslog+0x339/0x410
[   80.117999]  [<c01048bf>] ? do_IRQ+0x4f/0xc0
[   80.121601]  [<c0153dc0>] ? autoremove_wake_function+0x0/0x50
[   80.125181]  [<c02230f0>] ? kmsg_read+0x0/0x60
[   80.128727]  [<c0223115>] kmsg_read+0x25/0x60
[   80.132326]  [<c02199ea>] proc_reg_read+0x5a/0x80
[   80.135809]  [<c01d8cc9>] vfs_read+0x99/0x190
[   80.139286]  [<c0219990>] ? proc_reg_read+0x0/0x80
[   80.142786]  [<c01d8e7d>] sys_read+0x3d/0x70
[   80.146307]  [<c0102ffc>] sysenter_do_call+0x12/0x28

[-- Attachment #3: debug-2.txt --]
[-- Type: text/plain, Size: 50927 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31-rc4-wl (root@DV051) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #7 SMP Sun Aug 2 12:58:30 BST 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  BIOS-e820: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.3 present.
[    0.000000] last_pfn = 0x7f688 max_arch_pfn = 0x100000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 00000000000a0000 (usable)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  modified: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  modified: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  modified: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  modified: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  modified: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] RAMDISK: 35017000 - 37fef121
[    0.000000] Allocated new RAMDISK: 0088b000 - 03863121
[    0.000000] Move RAMDISK from 0000000035017000 - 0000000037fef120 to 0088b000 - 03863120
[    0.000000] ACPI: RSDP 000fec00 00014 (v00 DELL  )
[    0.000000] ACPI: RSDT 000fcc50 0003C (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: FACP 000fcc8c 00074 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: DSDT fffc56f3 02D5F (v01   DELL    dt_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: FACS 7f688c00 00040
[    0.000000] ACPI: SSDT fffc858f 000BA (v01   DELL    st_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: APIC 000fcd00 00092 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 000fcd92 00028 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 000fcdba 0003E (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: HPET 000fcdf8 00038 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] 1150MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00008000 - 0000ef00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 0000886718]    TEXT DATA BSS ==> [0000100000 - 0000886718]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [0000887000 - 000088a1d0]              BRK ==> [0000887000 - 000088a1d0]
[    0.000000]   #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #7 [000088b000 - 0003863121]      NEW RAMDISK ==> [000088b000 - 0003863121]
[    0.000000]   #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007f688
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000002
[    0.000000]     0: 0x00000006 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007f688
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages at c485e000, static data 30076 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517686
[    0.000000] Kernel command line: root=UUID=a8de6ccd-1498-4938-9f76-b696cf4edbf6 ro vga=775 
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 10437280 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f688)
[    0.000000] Memory: 2001640k/2087456k available (4486k kernel code, 84516k reserved, 2020k data, 536k init, 1178152k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc0766000 - 0xc07ec000   ( 536 kB)
[    0.000000]       .data : 0xc0561b7f - 0xc075af68   (2020 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0561b7f   (4486 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] NR_IRQS:512
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.139 MHz processor.
[    0.000028] Console: colour dummy device 80x25
[    0.000033] console [tty0] enabled
[    0.000437] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.000446] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.27 BogoMIPS (lpj=11968556)
[    0.000471] Security Framework initialized
[    0.000479] SELinux:  Disabled at boot.
[    0.000489] Mount-cache hash table entries: 512
[    0.000651] Initializing cgroup subsys ns
[    0.000658] Initializing cgroup subsys cpuacct
[    0.000665] Initializing cgroup subsys memory
[    0.000674] Initializing cgroup subsys freezer
[    0.000697] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.000703] CPU: L2 cache: 1024K
[    0.000708] CPU: Physical Processor ID: 0
[    0.000712] CPU: Processor Core ID: 0
[    0.000717] using mwait in idle threads.
[    0.000731] Checking 'hlt' instruction... OK.
[    0.017903] ACPI: Core revision 20090521
[    0.065165] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.104857] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.108001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 5985.03 BogoMIPS (lpj=11970075)
[    0.004000] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.192403] CPU1: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.192454] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.196046] Brought up 2 CPUs
[    0.196055] Total of 2 processors activated (11969.31 BogoMIPS).
[    0.196450] Booting paravirtualized kernel on bare hardware
[    0.196711] regulator: core version 0.5
[    0.196741] Time: 13:22:35  Date: 08/02/09
[    0.196802] NET: Registered protocol family 16
[    0.196963] EISA bus registered
[    0.196978] ACPI: bus type pci registered
[    0.197054] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.197062] PCI: MCFG area at e0000000 reserved in E820
[    0.197066] PCI: Using MMCONFIG for extended config space
[    0.197070] PCI: Using configuration type 1 for base access
[    0.198375] bio: create slab <bio-0> at 0
[    0.220207] ACPI: BIOS _OSI(Linux) query ignored
[    0.231263] ACPI: Interpreter enabled
[    0.231276] ACPI: (supports S0 S1 S3 S4 S5)
[    0.231313] ACPI: Using IOAPIC for interrupt routing
[    0.274109] ACPI: No dock devices found.
[    0.277954] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.278222] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.278230] pci 0000:00:1b.0: PME# disabled
[    0.278301] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.278309] pci 0000:00:1c.0: PME# disabled
[    0.278380] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.278387] pci 0000:00:1c.1: PME# disabled
[    0.278732] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.278739] pci 0000:00:1d.7: PME# disabled
[    0.278862] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
[    0.278870] pci 0000:00:1f.0: quirk: region 0880-08bf claimed by ICH6 GPIO
[    0.278877] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0c00-0c7f
[    0.278884] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 00e0-00ef
[    0.279055] pci 0000:00:1f.2: PME# supported from D3hot
[    0.279062] pci 0000:00:1f.2: PME# disabled
[    0.279350] pci 0000:03:02.0: PME# supported from D0 D3hot
[    0.279357] pci 0000:03:02.0: PME# disabled
[    0.279466] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.279475] pci 0000:03:08.0: PME# disabled
[    0.279518] pci 0000:00:1e.0: transparent bridge
[    0.670375] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.670726] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.671073] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.671416] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.671770] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.672124] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.672469] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.672817] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.673102] SCSI subsystem initialized
[    0.673635] usbcore: registered new interface driver usbfs
[    0.673635] usbcore: registered new interface driver hub
[    0.673635] usbcore: registered new device driver usb
[    0.673635] ACPI: WMI: Mapper loaded
[    0.673635] PCI: Using ACPI for IRQ routing
[    0.673635] Bluetooth: Core ver 2.15
[    0.673635] NET: Registered protocol family 31
[    0.673635] Bluetooth: HCI device and connection manager initialized
[    0.673635] Bluetooth: HCI socket layer initialized
[    0.673635] NET: Registered protocol family 8
[    0.673635] NET: Registered protocol family 20
[    0.673635] NetLabel: Initializing
[    0.673635] NetLabel:  domain hash size = 128
[    0.673635] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.673635] NetLabel:  unlabeled traffic allowed by default
[    0.673635] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.673635] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.681982] pnp: PnP ACPI init
[    0.682008] ACPI: bus type pnp registered
[    0.688380] pnp 00:01: io resource (0x800-0x85f) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.688390] pnp 00:01: io resource (0x860-0x8ff) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.709524] pnp: PnP ACPI: found 9 devices
[    0.709530] ACPI: ACPI bus type pnp unregistered
[    0.709537] PnPBIOS: Disabled by ACPI PNP
[    0.709553] system 00:01: ioport range 0xc00-0xc7f has been reserved
[    0.709568] system 00:07: iomem range 0x0-0x9ffff could not be reserved
[    0.709574] system 00:07: iomem range 0x100000-0xffffff could not be reserved
[    0.709581] system 00:07: iomem range 0x1000000-0x7f688bff could not be reserved
[    0.709587] system 00:07: iomem range 0xc0000-0xfffff could not be reserved
[    0.709594] system 00:07: iomem range 0xfec00000-0xfecfffff could not be reserved
[    0.709601] system 00:07: iomem range 0xfee00000-0xfeefffff has been reserved
[    0.709607] system 00:07: iomem range 0xfed20000-0xfed9ffff has been reserved
[    0.709613] system 00:07: iomem range 0xffb00000-0xffbfffff has been reserved
[    0.709619] system 00:07: iomem range 0xffc00000-0xffffffff has been reserved
[    0.709629] system 00:08: ioport range 0x100-0x1fe could not be reserved
[    0.709636] system 00:08: ioport range 0x200-0x277 has been reserved
[    0.709641] system 00:08: ioport range 0x280-0x2e7 has been reserved
[    0.709647] system 00:08: ioport range 0x2e8-0x2ef has been reserved
[    0.709653] system 00:08: ioport range 0x2f0-0x2f7 has been reserved
[    0.709658] system 00:08: ioport range 0x2f8-0x2ff has been reserved
[    0.709664] system 00:08: ioport range 0x300-0x377 could not be reserved
[    0.709670] system 00:08: ioport range 0x380-0x3bb has been reserved
[    0.709676] system 00:08: ioport range 0x3c0-0x3e7 has been reserved
[    0.709681] system 00:08: ioport range 0x3f6-0x3f7 could not be reserved
[    0.709687] system 00:08: ioport range 0x400-0x4cf has been reserved
[    0.709693] system 00:08: ioport range 0x4d2-0x57f has been reserved
[    0.709699] system 00:08: ioport range 0x580-0x677 has been reserved
[    0.709704] system 00:08: ioport range 0x680-0x777 has been reserved
[    0.709710] system 00:08: ioport range 0x780-0x7bb has been reserved
[    0.709716] system 00:08: ioport range 0x7c0-0x7ff has been reserved
[    0.709721] system 00:08: ioport range 0x8e0-0x8ff has been reserved
[    0.709727] system 00:08: ioport range 0x900-0x9fe has been reserved
[    0.709733] system 00:08: ioport range 0xa00-0xafe has been reserved
[    0.709738] system 00:08: ioport range 0xb00-0xbfe has been reserved
[    0.709744] system 00:08: ioport range 0xc80-0xcaf has been reserved
[    0.709750] system 00:08: ioport range 0xcb0-0xcbf has been reserved
[    0.709756] system 00:08: ioport range 0xcc0-0xcf7 has been reserved
[    0.709762] system 00:08: ioport range 0xd00-0xdfe has been reserved
[    0.709767] system 00:08: ioport range 0xe00-0xefe has been reserved
[    0.709773] system 00:08: ioport range 0xf00-0xffe has been reserved
[    0.709779] system 00:08: ioport range 0x2000-0x20fe has been reserved
[    0.709785] system 00:08: ioport range 0x2100-0x21fe has been reserved
[    0.709791] system 00:08: ioport range 0x2200-0x22fe has been reserved
[    0.709797] system 00:08: ioport range 0x2300-0x23fe has been reserved
[    0.709803] system 00:08: ioport range 0x2400-0x24fe has been reserved
[    0.709809] system 00:08: ioport range 0x2500-0x25fe has been reserved
[    0.709815] system 00:08: ioport range 0x2600-0x26fe has been reserved
[    0.709821] system 00:08: ioport range 0x2700-0x27fe has been reserved
[    0.709827] system 00:08: ioport range 0x2800-0x28fe has been reserved
[    0.709833] system 00:08: ioport range 0x2900-0x29fe has been reserved
[    0.709839] system 00:08: ioport range 0x2a00-0x2afe has been reserved
[    0.709845] system 00:08: ioport range 0x2b00-0x2bfe has been reserved
[    0.709851] system 00:08: ioport range 0x2c00-0x2cfe has been reserved
[    0.709857] system 00:08: ioport range 0x2d00-0x2dfe has been reserved
[    0.709863] system 00:08: ioport range 0x2e00-0x2efe has been reserved
[    0.709869] system 00:08: ioport range 0x2f00-0x2ffe has been reserved
[    0.709875] system 00:08: ioport range 0x5000-0x50fe has been reserved
[    0.709881] system 00:08: ioport range 0x5100-0x51fe has been reserved
[    0.709888] system 00:08: ioport range 0x5200-0x52fe has been reserved
[    0.709894] system 00:08: ioport range 0x5300-0x53fe has been reserved
[    0.709900] system 00:08: ioport range 0x5400-0x54fe has been reserved
[    0.709906] system 00:08: ioport range 0x5500-0x55fe has been reserved
[    0.709912] system 00:08: ioport range 0x5600-0x56fe has been reserved
[    0.709918] system 00:08: ioport range 0x5700-0x57fe has been reserved
[    0.709925] system 00:08: ioport range 0x5800-0x58fe has been reserved
[    0.709931] system 00:08: ioport range 0x5900-0x59fe has been reserved
[    0.709937] system 00:08: ioport range 0x5a00-0x5afe has been reserved
[    0.709943] system 00:08: ioport range 0x5b00-0x5bfe has been reserved
[    0.709950] system 00:08: ioport range 0x5c00-0x5cfe has been reserved
[    0.709956] system 00:08: ioport range 0x5d00-0x5dfe has been reserved
[    0.709962] system 00:08: ioport range 0x5e00-0x5efe has been reserved
[    0.709969] system 00:08: ioport range 0x5f00-0x5ffe has been reserved
[    0.709975] system 00:08: ioport range 0x6000-0x60fe has been reserved
[    0.709981] system 00:08: ioport range 0x6100-0x61fe has been reserved
[    0.709987] system 00:08: ioport range 0x6200-0x62fe has been reserved
[    0.709993] system 00:08: ioport range 0x6300-0x63fe has been reserved
[    0.710000] system 00:08: ioport range 0x6400-0x64fe has been reserved
[    0.710006] system 00:08: ioport range 0x6500-0x65fe has been reserved
[    0.710012] system 00:08: ioport range 0x6600-0x66fe has been reserved
[    0.710019] system 00:08: ioport range 0x6700-0x67fe has been reserved
[    0.710025] system 00:08: ioport range 0x6800-0x68fe has been reserved
[    0.710032] system 00:08: ioport range 0x6900-0x69fe has been reserved
[    0.710038] system 00:08: ioport range 0x6a00-0x6afe has been reserved
[    0.710044] system 00:08: ioport range 0x6b00-0x6bfe has been reserved
[    0.710051] system 00:08: ioport range 0x6c00-0x6cfe has been reserved
[    0.710057] system 00:08: ioport range 0x6d00-0x6dfe has been reserved
[    0.710064] system 00:08: ioport range 0x6e00-0x6efe has been reserved
[    0.710070] system 00:08: ioport range 0x6f00-0x6ffe has been reserved
[    0.710077] system 00:08: ioport range 0xa000-0xa0fe has been reserved
[    0.710084] system 00:08: ioport range 0xa100-0xa1fe has been reserved
[    0.710090] system 00:08: ioport range 0xa200-0xa2fe has been reserved
[    0.710097] system 00:08: ioport range 0xa300-0xa3fe has been reserved
[    0.710108] system 00:08: ioport range 0xa400-0xa4fe has been reserved
[    0.710116] system 00:08: ioport range 0xa500-0xa5fe has been reserved
[    0.710123] system 00:08: ioport range 0xa600-0xa6fe has been reserved
[    0.710130] system 00:08: ioport range 0xa700-0xa7fe has been reserved
[    0.710137] system 00:08: ioport range 0xa800-0xa8fe has been reserved
[    0.710143] system 00:08: ioport range 0xa900-0xa9fe has been reserved
[    0.710150] system 00:08: ioport range 0xaa00-0xaafe has been reserved
[    0.710157] system 00:08: ioport range 0xab00-0xabfe has been reserved
[    0.710163] system 00:08: ioport range 0xac00-0xacfe has been reserved
[    0.710170] system 00:08: ioport range 0xad00-0xadfe has been reserved
[    0.710179] system 00:08: ioport range 0xae00-0xaefe has been reserved
[    0.710187] system 00:08: ioport range 0xaf00-0xaffe has been reserved
[    0.710194] system 00:08: iomem range 0xe0000000-0xefffffff has been reserved
[    0.710200] system 00:08: iomem range 0xfeda0000-0xfedacfff has been reserved
[    0.744942] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.744948] pci 0000:00:1c.0:   IO window: disabled
[    0.744957] pci 0000:00:1c.0:   MEM window: 0xdfe00000-0xdfefffff
[    0.744964] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.744971] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
[    0.744975] pci 0000:00:1c.1:   IO window: disabled
[    0.744983] pci 0000:00:1c.1:   MEM window: 0xdfd00000-0xdfdfffff
[    0.744990] pci 0000:00:1c.1:   PREFETCH window: disabled
[    0.744997] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
[    0.745003] pci 0000:00:1e.0:   IO window: 0xd000-0xdfff
[    0.745011] pci 0000:00:1e.0:   MEM window: 0xdfc00000-0xdfcfffff
[    0.745017] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.745037] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.745057] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.745151] NET: Registered protocol family 2
[    0.745295] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.745709] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.746082] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.746357] TCP: Hash tables configured (established 131072 bind 65536)
[    0.746362] TCP reno registered
[    0.746514] NET: Registered protocol family 1
[    0.746602] Trying to unpack rootfs image as initramfs...
[    2.324015] Freeing initrd memory: 48992k freed
[    2.351165] Simple Boot Flag at 0x7a set to 0x1
[    2.351304] cpufreq-nforce2: No nForce2 chipset.
[    2.351346] Scanning for low memory corruption every 60 seconds
[    2.351497] audit: initializing netlink socket (disabled)
[    2.351517] type=2000 audit(1249219357.348:1): initialized
[    2.359887] highmem bounce pool size: 64 pages
[    2.359898] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    2.361711] VFS: Disk quotas dquot_6.5.2
[    2.361792] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.362556] fuse init (API version 7.12)
[    2.362669] msgmni has been set to 1705
[    2.362949] alg: No test for stdrng (krng)
[    2.362971] io scheduler noop registered
[    2.362977] io scheduler anticipatory registered
[    2.362982] io scheduler deadline registered
[    2.363043] io scheduler cfq registered (default)
[    2.363166] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    2.363577] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.363655] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.363853] uvesafb: failed to execute /sbin/v86d
[    2.363862] uvesafb: make sure that the v86d helper is installed and executable
[    2.363870] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2)
[    2.363875] uvesafb: vbe_init() failed with -22
[    2.363883] uvesafb: probe of uvesafb.0 failed with error -22
[    2.363961] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 2560k, total 7872k
[    2.363968] vesafb: mode is 1280x1024x8, linelength=1280, pages=5
[    2.363973] vesafb: scrolling: redraw
[    2.363978] vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
[    2.377666] Console: switching to colour frame buffer device 160x64
[    2.391121] fb0: VESA VGA frame buffer device
[    2.391348] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.391476] ACPI: Power Button [PWRF]
[    2.391599] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.391710] ACPI: Power Button [VBTN]
[    2.392252] processor LNXCPU:00: registered as cooling_device0
[    2.392402] processor LNXCPU:01: registered as cooling_device1
[    2.428472] isapnp: Scanning for PnP cards...
[    2.738368] isapnp: No Plug & Play device found
[    2.739854] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.740138] Platform driver 'serial8250' needs updating - please use dev_pm_ops
[    2.741614] brd: module loaded
[    2.742241] loop: module loaded
[    2.742377] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    2.742592] ahci 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
[    2.742775] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 4 ports 1.5 Gbps 0xf impl IDE mode
[    2.742913] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part 
[    2.743390] scsi0 : ahci
[    2.743541] scsi1 : ahci
[    2.743648] scsi2 : ahci
[    2.743767] scsi3 : ahci
[    2.743860] ata1: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 20
[    2.743968] ata2: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3bd80 irq 20
[    2.744104] ata3: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be00 irq 20
[    2.744202] ata4: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be80 irq 20
[    2.744426] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.744679] scsi4 : ata_piix
[    2.744798] scsi5 : ata_piix
[    2.744892] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.744985] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.745986] Fixed MDIO Bus: probed
[    2.746040] PPP generic driver version 2.4.2
[    2.746230] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.746342] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.746451] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.746596] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.750632] ehci_hcd 0000:00:1d.7: debug port 1
[    2.750732] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    2.764038] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.768269] usb usb1: configuration #1 chosen from 1 choice
[    2.772329] hub 1-0:1.0: USB hub found
[    2.776351] hub 1-0:1.0: 8 ports detected
[    2.780437] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.784517] uhci_hcd: USB Universal Host Controller Interface driver
[    2.788598] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.792723] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.796847] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.801002] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    2.805163] usb usb2: configuration #1 chosen from 1 choice
[    2.809310] hub 2-0:1.0: USB hub found
[    2.813357] hub 2-0:1.0: 2 ports detected
[    2.817456] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[    2.821562] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.825640] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.829673] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    2.833767] usb usb3: configuration #1 chosen from 1 choice
[    2.837778] hub 3-0:1.0: USB hub found
[    2.841799] hub 3-0:1.0: 2 ports detected
[    2.845820] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.849852] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.853719] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.857624] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.861602] usb usb4: configuration #1 chosen from 1 choice
[    2.865545] hub 4-0:1.0: USB hub found
[    2.869452] hub 4-0:1.0: 2 ports detected
[    2.873359] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[    2.877202] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.881051] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.884869] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.888647] usb usb5: configuration #1 chosen from 1 choice
[    2.892474] hub 5-0:1.0: USB hub found
[    2.896236] hub 5-0:1.0: 2 ports detected
[    2.900099] PNP: No PS/2 controller found. Probing ports directly.
[    2.904007] Platform driver 'i8042' needs updating - please use dev_pm_ops
[    2.908679] ata5.00: ATAPI: HL-DT-STDVD+-RW GSA-H21N, B109, max UDMA/33
[    2.910346] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.910361] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.910749] mice: PS/2 mouse device common for all mice
[    2.911114] rtc_cmos 00:05: RTC can wake from S4
[    2.911240] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.911275] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    2.911605] device-mapper: uevent: version 1.0.3
[    2.911861] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.912054] device-mapper: multipath: version 1.1.0 loaded
[    2.912068] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.912427] EISA: Probing bus 0 at eisa.0
[    2.912433] EISA: Cannot allocate resource for mainboard
[    2.912444] Cannot allocate resource for EISA slot 2
[    2.912468] Cannot allocate resource for EISA slot 5
[    2.912482] Cannot allocate resource for EISA slot 6
[    2.912505] EISA: Detected 0 cards.
[    2.913029] cpuidle: using governor ladder
[    2.913043] cpuidle: using governor menu
[    2.914346] TCP cubic registered
[    2.914828] NET: Registered protocol family 10
[    2.916129] lo: Disabled Privacy Extensions
[    2.917256] NET: Registered protocol family 17
[    2.917291] Bluetooth: L2CAP ver 2.13
[    2.917296] Bluetooth: L2CAP socket layer initialized
[    2.917305] Bluetooth: SCO (Voice Link) ver 0.6
[    2.917309] Bluetooth: SCO socket layer initialized
[    2.917402] Bluetooth: RFCOMM socket layer initialized
[    2.917418] Bluetooth: RFCOMM TTY layer initialized
[    2.917432] Bluetooth: RFCOMM ver 1.11
[    3.024052] Using IPI No-Shortcut mode
[    3.027729] registered taskstats version 1
[    3.031364]   Magic number: 5:362:381
[    3.035054] rtc_cmos 00:05: setting system clock to 2009-08-02 13:22:38 UTC (1249219358)
[    3.038607] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.042225] EDD information not available.
[    3.044617] ata5.00: configured for UDMA/33
[    3.132032] ata2: SATA link down (SStatus 0 SControl 300)
[    3.132039] ata3: SATA link down (SStatus 0 SControl 300)
[    3.132108] ata4: SATA link down (SStatus 0 SControl 300)
[    3.132150] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.276394] usb 1-1: configuration #1 chosen from 1 choice
[    3.280114] hub 1-1:1.0: USB hub found
[    3.283698] hub 1-1:1.0: 4 ports detected
[    3.536063] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.556115] usb 1-1.1: new low speed USB device using ehci_hcd and address 3
[    3.584165] ata1.00: ATA-7: ST3160812AS, 3.ADH, max UDMA/133
[    3.587772] ata1.00: 312500000 sectors, multi 8: LBA48 NCQ (depth 31/32)
[    3.642504] ata1.00: configured for UDMA/133
[    3.660154] scsi 0:0:0:0: Direct-Access     ATA      ST3160812AS      3.AD PQ: 0 ANSI: 5
[    3.663972] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.667687] sd 0:0:0:0: [sda] 312500000 512-byte logical blocks: (160 GB/149 GiB)
[    3.669283] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GSA-H21N B109 PQ: 0 ANSI: 5
[    3.674922] sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[    3.674928] Uniform CD-ROM driver Revision: 3.20
[    3.675556] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.686513] sd 0:0:0:0: [sda] Write Protect is off
[    3.690312] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.694332]  sda:
[    3.699943] usb 1-1.1: configuration #1 chosen from 1 choice
[    3.715501]  sda1 sda2 sda3
[    3.719495] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.723189] Freeing unused kernel memory: 536k freed
[    3.727269] Write protecting the kernel text: 4488k
[    3.730950] Write protecting the kernel read-only data: 1660k
[    3.788145] usb 1-1.2: new full speed USB device using ehci_hcd and address 4
[    3.893263] usb 1-1.2: configuration #1 chosen from 1 choice
[    3.898058] hub 1-1.2:1.0: USB hub found
[    3.898140] hub 1-1.2:1.0: 3 ports detected
[    3.984344] Platform driver 'floppy' needs updating - please use dev_pm_ops
[    3.988816] Floppy drive(s): fd0 is 1.44M
[    4.014194] FDC 0 is a post-1991 82077
[    4.044556] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    4.045119] usbcore: registered new interface driver hiddev
[    4.051190] input: Microsoft Corporation Microsoft ® Laser Mouse 6000 as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.1/1-1.1:1.0/input/input3
[    4.051445] generic-usb 0003:045E:00F0.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Corporation Microsoft ® Laser Mouse 6000] on usb-0000:00:1d.7-1.1/input0
[    4.051491] usbcore: registered new interface driver usbhid
[    4.051507] usbhid: v2.6:USB HID core driver
[    4.077271] e100: Copyright(c) 1999-2006 Intel Corporation
[    4.088921] e100 0000:03:08.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    4.119418] e100 0000:03:08.0: PME# disabled
[    4.200321] usb 1-1.2.1: new full speed USB device using ehci_hcd and address 5
[    4.251313] e100: eth0: e100_probe: addr 0xdfcef000, irq 20, MAC addr 00:16:76:af:c1:00
[    4.306348] usb 1-1.2.1: configuration #1 chosen from 1 choice
[    4.313171] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.0/input/input4
[    4.318869] generic-usb 0003:413C:2010.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input0
[    4.326599] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.1/input/input5
[    4.332283] generic-usb 0003:413C:2010.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input1
[    4.764636] EXT4-fs (sda3): INFO: recovery required on readonly filesystem
[    4.769820] EXT4-fs (sda3): write access will be enabled during recovery
[    4.783139] EXT4-fs (sda3): barriers enabled
[    4.826204] kjournald2 starting: pid 693, dev sda3:8, commit interval 5 seconds
[    4.826216] EXT4-fs (sda3): delayed allocation enabled
[    4.826223] EXT4-fs: file extents enabled
[    4.829422] EXT4-fs: mballoc enabled
[    4.829462] EXT4-fs (sda3): recovery complete
[    4.832923] EXT4-fs (sda3): mounted filesystem with ordered data mode
[    6.150586] udev: starting version 141
[    6.841173] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    6.933644] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    7.007965] Linux agpgart interface v0.103
[    7.027158] intel_rng: Firmware space is locked read-only. If you can't or
[    7.027162] intel_rng: don't want to disable this in firmware setup, and if
[    7.027164] intel_rng: you are certain that your system has a functional
[    7.027166] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    7.567898] cfg80211: Calling CRDA to update world regulatory domain
[    7.583452] agpgart-intel 0000:00:00.0: Intel 915G Chipset
[    7.589796] agpgart-intel 0000:00:00.0: detected 7932K stolen memory
[    7.599733] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    7.716049] iTCO_vendor_support: vendor-support=0
[    7.761764] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[    7.767307] iTCO_wdt: failed to reset NO_REBOOT flag, reboot disabled by hardware
[    7.773110] iTCO_wdt: No card detected
[    7.916381] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    7.959326] cfg80211: World regulatory domain updated:
[    7.964351] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.969464] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.974593] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.979595] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.984583] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.989418] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.221461] ath9k 0000:03:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.873095] Registered led device: ath9k-phy0::radio
[    9.878151] Registered led device: ath9k-phy0::assoc
[    9.882971] Registered led device: ath9k-phy0::tx
[    9.887617] cfg80211: Calling CRDA for country: AT
[    9.888297] Registered led device: ath9k-phy0::rx
[    9.888318] phy0: Atheros AR9160 MAC/BB Rev:0 AR5133 RF Rev:b0: mem=0xf8540000, irq=18
[    9.908258] cfg80211: Regulatory domain changed to country: AT
[    9.913253] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    9.918487] 	(2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.923490] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.927963] 	(5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.932697] 	(5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[   10.117273] lp: driver loaded but no devices found
[   10.146703] netconsole: local port 6969
[   10.150739] netconsole: local IP 192.168.1.2
[   10.154553] netconsole: interface eth0
[   10.158378] netconsole: remote port 514
[   10.162043] netconsole: remote IP 192.168.1.1
[   10.165678] netconsole: remote ethernet address ba:98:76:54:32:10
[   10.169316] netconsole: device eth0 not up yet, forcing it
[   10.189783] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   12.816145] e100: eth0 NIC Link is Up 100 Mbps Full Duplex
[   12.819923] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   12.832312] console [netcon0] enabled
[   14.776122] netconsole: network logging started
[   15.119720] EXT4-fs (sda3): internal journal on sda3:8
[   15.775156] Bridge firewalling registered
[   15.788669] device eth0 entered promiscuous mode
[   15.795539] device wlan0 entered promiscuous mode
[   15.820290] phy0: device now idle
[   15.828082] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.845814] br0: port 1(eth0) entering learning state
[   24.780019] eth0: no IPv6 routers present
[   26.200016] br0: no IPv6 routers present
[   30.848037] br0: port 1(eth0) entering forwarding state
[   37.470528] br0: port 2(wlan0) entering disabled state
[   37.483344] phy0: device no longer idle - in use
[   37.532229] br0: port 2(wlan0) entering learning state
[   37.651090] padlock: VIA PadLock not detected.
[   45.516294] phy0: device now idle
[   45.518871] br0: port 2(wlan0) entering disabled state
[   53.263909] phy0: device no longer idle - in use
[   53.296473] br0: port 2(wlan0) entering learning state
[   57.767906] phy0: Allocated STA 00:21:5c:07:99:f9
[   57.771686] phy0: Inserted STA 00:21:5c:07:99:f9
[   61.007746] phy0: Removed STA 00:21:5c:07:99:f9
[   61.032034] phy0: Destroyed STA 00:21:5c:07:99:f9
[   61.200330] phy0: Allocated STA 00:21:5c:07:99:f9
[   61.205229] phy0: Inserted STA 00:21:5c:07:99:f9
[   63.592015] wlan0: no IPv6 routers present
[   64.452836] phy0: Removed STA 00:21:5c:07:99:f9
[   64.472035] phy0: Destroyed STA 00:21:5c:07:99:f9
[   64.639316] phy0: Allocated STA 00:21:5c:07:99:f9
[   64.644101] phy0: Inserted STA 00:21:5c:07:99:f9
[   67.891312] phy0: Removed STA 00:21:5c:07:99:f9
[   67.912035] phy0: Destroyed STA 00:21:5c:07:99:f9
[   68.079853] phy0: Allocated STA 00:21:5c:07:99:f9
[   68.084805] phy0: Inserted STA 00:21:5c:07:99:f9
[   68.296025] br0: port 2(wlan0) entering forwarding state
[   69.496237] Open BA session requested for 00:21:5c:07:99:f9 tid 0
[   69.500833] activated addBA response timer on tid 0
[   69.505559] switched off addBA timer for tid 0 
[   69.510167] Aggregation is on for tid 0 
[   69.514777] local c2c441c0
[   76.890404] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 39
[   76.894370] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   76.894370] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   76.894370] local c2c441c0
[   77.556818] Open BA session requested for 00:21:5c:07:99:f9 tid 0
[   77.560790] activated addBA response timer on tid 0
[   77.560790] switched off addBA timer for tid 0 
[   77.560790] Aggregation is on for tid 0 
[   77.560790] local c2c441c0
[   77.894612] Rx A-MPDU request on tid 0 result 0
[   84.020025] rx session timer expired on tid 0
[   84.024123] Rx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   91.271958] phy0: Allocated STA 00:21:5c:07:99:f9
[   91.275305] phy0: Destroyed STA 00:21:5c:07:99:f9
[   97.959097] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.963065] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.963065] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.963065] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.963065] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.963065] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.984416] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.988280] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.988280] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.988280] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.988280] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.988280] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.988280] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.988280] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   97.988280] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   97.988280] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   98.031954] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   98.036680] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   98.041207] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[   98.045889] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   98.050587] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[   98.055309] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.059891] local c2c441c0
[   98.064398] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.069065] unexpected callback to A-MPDU stop
[   98.073657] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.078301] unexpected callback to A-MPDU stop
[   98.082845] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.087412] unexpected callback to A-MPDU stop
[   98.091879] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.096415] unexpected callback to A-MPDU stop
[   98.100959] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.105609] unexpected callback to A-MPDU stop
[   98.110154] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.114752] unexpected callback to A-MPDU stop
[   98.119350] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.124011] unexpected callback to A-MPDU stop
[   98.128628] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.133298] unexpected callback to A-MPDU stop
[   98.137969] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.142737] unexpected callback to A-MPDU stop
[   98.147537] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[   98.152298] unexpected callback to A-MPDU stop
[   98.157166] Open BA session requested for 00:21:5c:07:99:f9 tid 0
[   98.161889] activated addBA response timer on tid 0
[   98.166562] switched off addBA timer for tid 0 
[   98.171375] Aggregation is on for tid 0 
[   98.175891] local c2c441c0
[   98.196184] Rx A-MPDU request on tid 0 result 0
[  106.052034] rx session timer expired on tid 0
[  106.055846] Rx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  113.321189] phy0: Allocated STA 00:21:5c:07:99:f9
[  113.324625] phy0: Destroyed STA 00:21:5c:07:99:f9
[  116.339414] __ratelimit: 1 callbacks suppressed
[  116.343383] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.343383] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.343383] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.359256] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.364359] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.369344] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.374400] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.379416] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.384387] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389494] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389511] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389522] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389606] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389612] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389632] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389641] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389659] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389665] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389682] delba from 00:21:5c:07:99:f9 (recipient) tid 0 reason code 38
[  116.389687] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389733] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389778] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389812] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389836] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.389868] Tx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  116.390049] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390056] local c2c441c0
[  116.390065] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390069] unexpected callback to A-MPDU stop
[  116.390073] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390076] unexpected callback to A-MPDU stop
[  116.390081] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390084] unexpected callback to A-MPDU stop
[  116.390090] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390094] unexpected callback to A-MPDU stop
[  116.390099] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390104] unexpected callback to A-MPDU stop
[  116.390111] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390118] unexpected callback to A-MPDU stop
[  116.390123] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390126] unexpected callback to A-MPDU stop
[  116.390135] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390141] unexpected callback to A-MPDU stop
[  116.390152] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390156] unexpected callback to A-MPDU stop
[  116.390162] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390167] unexpected callback to A-MPDU stop
[  116.390174] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390178] unexpected callback to A-MPDU stop
[  116.390183] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390186] unexpected callback to A-MPDU stop
[  116.390194] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390198] unexpected callback to A-MPDU stop
[  116.390205] Stopping Tx BA session for 00:21:5c:07:99:f9 tid 0
[  116.390209] unexpected callback to A-MPDU stop
[  116.390448] Open BA session requested for 00:21:5c:07:99:f9 tid 0
[  116.390489] activated addBA response timer on tid 0
[  116.391762] switched off addBA timer for tid 0 
[  116.391769] Aggregation is on for tid 0 
[  116.391773] local c2c441c0
[  116.643733] Rx A-MPDU request on tid 0 result 0
[  125.940034] rx session timer expired on tid 0
[  125.943528] Rx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  133.284886] phy0: Allocated STA 00:21:5c:07:99:f9
[  133.288361] phy0: Destroyed STA 00:21:5c:07:99:f9
[  138.633160] Rx A-MPDU request on tid 0 result 0
[  153.453679] __ratelimit: 5 callbacks suppressed
[  153.457647] delba from 00:21:5c:07:99:f9 (initiator) tid 0 reason code 39
[  153.457647] Rx BA session stop requested for 00:21:5c:07:99:f9 tid 0
[  157.445437] phy0: Removed STA 00:21:5c:07:99:f9
[  157.472032] phy0: Destroyed STA 00:21:5c:07:99:f9
[  157.632045] phy0: device now idle
[  157.639056] br0: port 2(wlan0) entering disabled state

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-26 20:40 ` Pavel Roskin
  2009-07-28 21:21   ` Jack Lau
@ 2009-08-02 17:26   ` Jack Lau
  1 sibling, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-08-02 17:26 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless

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



> Actually, ieee80211_agg_splice_packets is a short function. Perhaps you
> could add debug print statements to find possible errors. For instance,
> local->hw is used. It would crash if local is NULL. So you add before
> that place:
>
> printk("local = %p\n", local);
>
> Likewise, check sta, sta->ampdu_mlme.tid_tx[tid] and local->pending. Or
> just print the line numbers. You will see which printk is run last
> before the crash.

I have now also added the following just under the ieee80211_agg_splice_packets:

 printk("local %p\n", local);
 printk("sta %p\n", sta);
 printk("sta->ampdu_mlme.tid_tx %p\n", sta->ampdu_mlme.tid_tx);
 printk("local->pending %p\n", local->pending);

And also:
 
 printk("ieee80211_agg_splice_packets(%p, %p, %d) from ieee80211_agg_tx_operational\n", local, sta, tid);
 
just before the function is called under ieee80211_agg_tx_operational
 
and
 
 printk("ieee80211_agg_splice_packets(%p, %p, %d) from ieee80211_stop_tx_ba_session\n", local, sta, tid);
 
just before the function is called under ieee80211_stop_tx_ba_session
 
I now enclose two new logs, the 3rd one where it crashes when I load hostapd during startup and the 4th one where I killall on hostapd and then restart it.
 
> It would crash if local is NULL.
 
I have not seen a NULL value on local.
 
Please correct me on anything if I am wrong.
_________________________________________________________________
Windows Live Messenger: Thanks for 10 great years—enjoy free winks and emoticons.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

[-- Attachment #2: debug-3.txt --]
[-- Type: text/plain, Size: 48847 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31-rc4-wl (root@DV051) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #11 SMP Sun Aug 2 17:53:23 BST 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  BIOS-e820: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.3 present.
[    0.000000] last_pfn = 0x7f688 max_arch_pfn = 0x100000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 00000000000a0000 (usable)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  modified: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  modified: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  modified: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  modified: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  modified: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] RAMDISK: 35017000 - 37fef121
[    0.000000] Allocated new RAMDISK: 0088b000 - 03863121
[    0.000000] Move RAMDISK from 0000000035017000 - 0000000037fef120 to 0088b000 - 03863120
[    0.000000] ACPI: RSDP 000fec00 00014 (v00 DELL  )
[    0.000000] ACPI: RSDT 000fcc50 0003C (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: FACP 000fcc8c 00074 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: DSDT fffc56f3 02D5F (v01   DELL    dt_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: FACS 7f688c00 00040
[    0.000000] ACPI: SSDT fffc858f 000BA (v01   DELL    st_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: APIC 000fcd00 00092 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 000fcd92 00028 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 000fcdba 0003E (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: HPET 000fcdf8 00038 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] 1150MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00008000 - 0000ef00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 0000886718]    TEXT DATA BSS ==> [0000100000 - 0000886718]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [0000887000 - 000088a1d0]              BRK ==> [0000887000 - 000088a1d0]
[    0.000000]   #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #7 [000088b000 - 0003863121]      NEW RAMDISK ==> [000088b000 - 0003863121]
[    0.000000]   #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007f688
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000002
[    0.000000]     0: 0x00000006 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007f688
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages at c485e000, static data 30076 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517686
[    0.000000] Kernel command line: root=UUID=a8de6ccd-1498-4938-9f76-b696cf4edbf6 ro vga=775 
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 10437280 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f688)
[    0.000000] Memory: 2001640k/2087456k available (4486k kernel code, 84516k reserved, 2020k data, 536k init, 1178152k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc0766000 - 0xc07ec000   ( 536 kB)
[    0.000000]       .data : 0xc0561b7f - 0xc075af68   (2020 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0561b7f   (4486 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] NR_IRQS:512
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.308 MHz processor.
[    0.000028] Console: colour dummy device 80x25
[    0.000032] console [tty0] enabled
[    0.000436] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.000445] Calibrating delay loop (skipped), value calculated using timer frequency.. 5984.61 BogoMIPS (lpj=11969232)
[    0.000470] Security Framework initialized
[    0.000478] SELinux:  Disabled at boot.
[    0.000488] Mount-cache hash table entries: 512
[    0.000652] Initializing cgroup subsys ns
[    0.000659] Initializing cgroup subsys cpuacct
[    0.000666] Initializing cgroup subsys memory
[    0.000675] Initializing cgroup subsys freezer
[    0.000698] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.000704] CPU: L2 cache: 1024K
[    0.000709] CPU: Physical Processor ID: 0
[    0.000713] CPU: Processor Core ID: 0
[    0.000718] using mwait in idle threads.
[    0.000732] Checking 'hlt' instruction... OK.
[    0.017903] ACPI: Core revision 20090521
[    0.065015] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.104713] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.108001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 5985.00 BogoMIPS (lpj=11970019)
[    0.004000] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.192403] CPU1: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.192453] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.196046] Brought up 2 CPUs
[    0.196054] Total of 2 processors activated (11969.62 BogoMIPS).
[    0.196449] Booting paravirtualized kernel on bare hardware
[    0.196715] regulator: core version 0.5
[    0.196744] Time: 17:56:08  Date: 08/02/09
[    0.196806] NET: Registered protocol family 16
[    0.196966] EISA bus registered
[    0.196981] ACPI: bus type pci registered
[    0.197058] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.197065] PCI: MCFG area at e0000000 reserved in E820
[    0.197070] PCI: Using MMCONFIG for extended config space
[    0.197074] PCI: Using configuration type 1 for base access
[    0.198381] bio: create slab <bio-0> at 0
[    0.220928] ACPI: BIOS _OSI(Linux) query ignored
[    0.231725] ACPI: Interpreter enabled
[    0.231736] ACPI: (supports S0 S1 S3 S4 S5)
[    0.231773] ACPI: Using IOAPIC for interrupt routing
[    0.274473] ACPI: No dock devices found.
[    0.278468] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.278733] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.278741] pci 0000:00:1b.0: PME# disabled
[    0.278812] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.278820] pci 0000:00:1c.0: PME# disabled
[    0.278890] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.278897] pci 0000:00:1c.1: PME# disabled
[    0.279241] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.279249] pci 0000:00:1d.7: PME# disabled
[    0.279372] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
[    0.279380] pci 0000:00:1f.0: quirk: region 0880-08bf claimed by ICH6 GPIO
[    0.279387] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0c00-0c7f
[    0.279394] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 00e0-00ef
[    0.279564] pci 0000:00:1f.2: PME# supported from D3hot
[    0.279571] pci 0000:00:1f.2: PME# disabled
[    0.279861] pci 0000:03:02.0: PME# supported from D0 D3hot
[    0.279868] pci 0000:03:02.0: PME# disabled
[    0.279978] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.279985] pci 0000:03:08.0: PME# disabled
[    0.280035] pci 0000:00:1e.0: transparent bridge
[    0.671189] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.671537] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.671884] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.672233] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.672587] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.672934] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.673278] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.673625] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.673908] SCSI subsystem initialized
[    0.674100] usbcore: registered new interface driver usbfs
[    0.674127] usbcore: registered new interface driver hub
[    0.674169] usbcore: registered new device driver usb
[    0.674336] ACPI: WMI: Mapper loaded
[    0.674342] PCI: Using ACPI for IRQ routing
[    0.674529] Bluetooth: Core ver 2.15
[    0.674575] NET: Registered protocol family 31
[    0.674580] Bluetooth: HCI device and connection manager initialized
[    0.674585] Bluetooth: HCI socket layer initialized
[    0.674590] NET: Registered protocol family 8
[    0.674594] NET: Registered protocol family 20
[    0.674611] NetLabel: Initializing
[    0.674615] NetLabel:  domain hash size = 128
[    0.674619] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.674637] NetLabel:  unlabeled traffic allowed by default
[    0.674679] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.674689] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.681971] pnp: PnP ACPI init
[    0.681998] ACPI: bus type pnp registered
[    0.688398] pnp 00:01: io resource (0x800-0x85f) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.688408] pnp 00:01: io resource (0x860-0x8ff) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.709533] pnp: PnP ACPI: found 9 devices
[    0.709539] ACPI: ACPI bus type pnp unregistered
[    0.709546] PnPBIOS: Disabled by ACPI PNP
[    0.709562] system 00:01: ioport range 0xc00-0xc7f has been reserved
[    0.709576] system 00:07: iomem range 0x0-0x9ffff could not be reserved
[    0.709583] system 00:07: iomem range 0x100000-0xffffff could not be reserved
[    0.709589] system 00:07: iomem range 0x1000000-0x7f688bff could not be reserved
[    0.709596] system 00:07: iomem range 0xc0000-0xfffff could not be reserved
[    0.709602] system 00:07: iomem range 0xfec00000-0xfecfffff could not be reserved
[    0.709609] system 00:07: iomem range 0xfee00000-0xfeefffff has been reserved
[    0.709615] system 00:07: iomem range 0xfed20000-0xfed9ffff has been reserved
[    0.709621] system 00:07: iomem range 0xffb00000-0xffbfffff has been reserved
[    0.709627] system 00:07: iomem range 0xffc00000-0xffffffff has been reserved
[    0.709637] system 00:08: ioport range 0x100-0x1fe could not be reserved
[    0.709643] system 00:08: ioport range 0x200-0x277 has been reserved
[    0.709649] system 00:08: ioport range 0x280-0x2e7 has been reserved
[    0.709654] system 00:08: ioport range 0x2e8-0x2ef has been reserved
[    0.709660] system 00:08: ioport range 0x2f0-0x2f7 has been reserved
[    0.709665] system 00:08: ioport range 0x2f8-0x2ff has been reserved
[    0.709671] system 00:08: ioport range 0x300-0x377 could not be reserved
[    0.709677] system 00:08: ioport range 0x380-0x3bb has been reserved
[    0.709682] system 00:08: ioport range 0x3c0-0x3e7 has been reserved
[    0.709688] system 00:08: ioport range 0x3f6-0x3f7 could not be reserved
[    0.709694] system 00:08: ioport range 0x400-0x4cf has been reserved
[    0.709699] system 00:08: ioport range 0x4d2-0x57f has been reserved
[    0.709705] system 00:08: ioport range 0x580-0x677 has been reserved
[    0.709711] system 00:08: ioport range 0x680-0x777 has been reserved
[    0.709716] system 00:08: ioport range 0x780-0x7bb has been reserved
[    0.709722] system 00:08: ioport range 0x7c0-0x7ff has been reserved
[    0.709727] system 00:08: ioport range 0x8e0-0x8ff has been reserved
[    0.709733] system 00:08: ioport range 0x900-0x9fe has been reserved
[    0.709739] system 00:08: ioport range 0xa00-0xafe has been reserved
[    0.709744] system 00:08: ioport range 0xb00-0xbfe has been reserved
[    0.709750] system 00:08: ioport range 0xc80-0xcaf has been reserved
[    0.709756] system 00:08: ioport range 0xcb0-0xcbf has been reserved
[    0.709761] system 00:08: ioport range 0xcc0-0xcf7 has been reserved
[    0.709767] system 00:08: ioport range 0xd00-0xdfe has been reserved
[    0.709773] system 00:08: ioport range 0xe00-0xefe has been reserved
[    0.709778] system 00:08: ioport range 0xf00-0xffe has been reserved
[    0.709784] system 00:08: ioport range 0x2000-0x20fe has been reserved
[    0.709790] system 00:08: ioport range 0x2100-0x21fe has been reserved
[    0.709796] system 00:08: ioport range 0x2200-0x22fe has been reserved
[    0.709802] system 00:08: ioport range 0x2300-0x23fe has been reserved
[    0.709807] system 00:08: ioport range 0x2400-0x24fe has been reserved
[    0.709813] system 00:08: ioport range 0x2500-0x25fe has been reserved
[    0.709819] system 00:08: ioport range 0x2600-0x26fe has been reserved
[    0.709825] system 00:08: ioport range 0x2700-0x27fe has been reserved
[    0.709831] system 00:08: ioport range 0x2800-0x28fe has been reserved
[    0.709837] system 00:08: ioport range 0x2900-0x29fe has been reserved
[    0.709843] system 00:08: ioport range 0x2a00-0x2afe has been reserved
[    0.709849] system 00:08: ioport range 0x2b00-0x2bfe has been reserved
[    0.709854] system 00:08: ioport range 0x2c00-0x2cfe has been reserved
[    0.709860] system 00:08: ioport range 0x2d00-0x2dfe has been reserved
[    0.709866] system 00:08: ioport range 0x2e00-0x2efe has been reserved
[    0.709872] system 00:08: ioport range 0x2f00-0x2ffe has been reserved
[    0.709878] system 00:08: ioport range 0x5000-0x50fe has been reserved
[    0.709884] system 00:08: ioport range 0x5100-0x51fe has been reserved
[    0.709890] system 00:08: ioport range 0x5200-0x52fe has been reserved
[    0.709896] system 00:08: ioport range 0x5300-0x53fe has been reserved
[    0.709903] system 00:08: ioport range 0x5400-0x54fe has been reserved
[    0.709909] system 00:08: ioport range 0x5500-0x55fe has been reserved
[    0.709915] system 00:08: ioport range 0x5600-0x56fe has been reserved
[    0.709921] system 00:08: ioport range 0x5700-0x57fe has been reserved
[    0.709927] system 00:08: ioport range 0x5800-0x58fe has been reserved
[    0.709933] system 00:08: ioport range 0x5900-0x59fe has been reserved
[    0.709939] system 00:08: ioport range 0x5a00-0x5afe has been reserved
[    0.709945] system 00:08: ioport range 0x5b00-0x5bfe has been reserved
[    0.709951] system 00:08: ioport range 0x5c00-0x5cfe has been reserved
[    0.709957] system 00:08: ioport range 0x5d00-0x5dfe has been reserved
[    0.709963] system 00:08: ioport range 0x5e00-0x5efe has been reserved
[    0.709969] system 00:08: ioport range 0x5f00-0x5ffe has been reserved
[    0.709976] system 00:08: ioport range 0x6000-0x60fe has been reserved
[    0.709982] system 00:08: ioport range 0x6100-0x61fe has been reserved
[    0.709988] system 00:08: ioport range 0x6200-0x62fe has been reserved
[    0.709994] system 00:08: ioport range 0x6300-0x63fe has been reserved
[    0.710000] system 00:08: ioport range 0x6400-0x64fe has been reserved
[    0.710006] system 00:08: ioport range 0x6500-0x65fe has been reserved
[    0.710013] system 00:08: ioport range 0x6600-0x66fe has been reserved
[    0.710019] system 00:08: ioport range 0x6700-0x67fe has been reserved
[    0.710025] system 00:08: ioport range 0x6800-0x68fe has been reserved
[    0.710032] system 00:08: ioport range 0x6900-0x69fe has been reserved
[    0.710038] system 00:08: ioport range 0x6a00-0x6afe has been reserved
[    0.710044] system 00:08: ioport range 0x6b00-0x6bfe has been reserved
[    0.710051] system 00:08: ioport range 0x6c00-0x6cfe has been reserved
[    0.710057] system 00:08: ioport range 0x6d00-0x6dfe has been reserved
[    0.710064] system 00:08: ioport range 0x6e00-0x6efe has been reserved
[    0.710070] system 00:08: ioport range 0x6f00-0x6ffe has been reserved
[    0.710076] system 00:08: ioport range 0xa000-0xa0fe has been reserved
[    0.710083] system 00:08: ioport range 0xa100-0xa1fe has been reserved
[    0.710089] system 00:08: ioport range 0xa200-0xa2fe has been reserved
[    0.710096] system 00:08: ioport range 0xa300-0xa3fe has been reserved
[    0.710102] system 00:08: ioport range 0xa400-0xa4fe has been reserved
[    0.710109] system 00:08: ioport range 0xa500-0xa5fe has been reserved
[    0.710115] system 00:08: ioport range 0xa600-0xa6fe has been reserved
[    0.710122] system 00:08: ioport range 0xa700-0xa7fe has been reserved
[    0.710129] system 00:08: ioport range 0xa800-0xa8fe has been reserved
[    0.710135] system 00:08: ioport range 0xa900-0xa9fe has been reserved
[    0.710142] system 00:08: ioport range 0xaa00-0xaafe has been reserved
[    0.710149] system 00:08: ioport range 0xab00-0xabfe has been reserved
[    0.710155] system 00:08: ioport range 0xac00-0xacfe has been reserved
[    0.710162] system 00:08: ioport range 0xad00-0xadfe has been reserved
[    0.710169] system 00:08: ioport range 0xae00-0xaefe has been reserved
[    0.710176] system 00:08: ioport range 0xaf00-0xaffe has been reserved
[    0.710183] system 00:08: iomem range 0xe0000000-0xefffffff has been reserved
[    0.710189] system 00:08: iomem range 0xfeda0000-0xfedacfff has been reserved
[    0.744920] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.744926] pci 0000:00:1c.0:   IO window: disabled
[    0.744934] pci 0000:00:1c.0:   MEM window: 0xdfe00000-0xdfefffff
[    0.744941] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.744948] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
[    0.744953] pci 0000:00:1c.1:   IO window: disabled
[    0.744960] pci 0000:00:1c.1:   MEM window: 0xdfd00000-0xdfdfffff
[    0.744967] pci 0000:00:1c.1:   PREFETCH window: disabled
[    0.744974] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
[    0.744980] pci 0000:00:1e.0:   IO window: 0xd000-0xdfff
[    0.744988] pci 0000:00:1e.0:   MEM window: 0xdfc00000-0xdfcfffff
[    0.744994] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.745014] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.745033] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.745126] NET: Registered protocol family 2
[    0.745268] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.745688] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.746051] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.746334] TCP: Hash tables configured (established 131072 bind 65536)
[    0.746339] TCP reno registered
[    0.746496] NET: Registered protocol family 1
[    0.746584] Trying to unpack rootfs image as initramfs...
[    2.325664] Freeing initrd memory: 48992k freed
[    2.352764] Simple Boot Flag at 0x7a set to 0x1
[    2.352897] cpufreq-nforce2: No nForce2 chipset.
[    2.352940] Scanning for low memory corruption every 60 seconds
[    2.353092] audit: initializing netlink socket (disabled)
[    2.353112] type=2000 audit(1249235770.352:1): initialized
[    2.361495] highmem bounce pool size: 64 pages
[    2.361506] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    2.363299] VFS: Disk quotas dquot_6.5.2
[    2.363381] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.364168] fuse init (API version 7.12)
[    2.364287] msgmni has been set to 1705
[    2.364571] alg: No test for stdrng (krng)
[    2.364592] io scheduler noop registered
[    2.364600] io scheduler anticipatory registered
[    2.364605] io scheduler deadline registered
[    2.364667] io scheduler cfq registered (default)
[    2.364788] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    2.365200] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.365277] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.365492] uvesafb: failed to execute /sbin/v86d
[    2.365497] uvesafb: make sure that the v86d helper is installed and executable
[    2.365504] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2)
[    2.365510] uvesafb: vbe_init() failed with -22
[    2.365517] uvesafb: probe of uvesafb.0 failed with error -22
[    2.365595] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 2560k, total 7872k
[    2.365603] vesafb: mode is 1280x1024x8, linelength=1280, pages=5
[    2.365607] vesafb: scrolling: redraw
[    2.365612] vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
[    2.379198] Console: switching to colour frame buffer device 160x64
[    2.392610] fb0: VESA VGA frame buffer device
[    2.392845] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.392946] ACPI: Power Button [PWRF]
[    2.393070] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.393210] ACPI: Power Button [VBTN]
[    2.393735] processor LNXCPU:00: registered as cooling_device0
[    2.393881] processor LNXCPU:01: registered as cooling_device1
[    2.429884] isapnp: Scanning for PnP cards...
[    2.739739] isapnp: No Plug & Play device found
[    2.741230] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.741492] Platform driver 'serial8250' needs updating - please use dev_pm_ops
[    2.742982] brd: module loaded
[    2.743590] loop: module loaded
[    2.743736] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    2.743950] ahci 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
[    2.744155] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 4 ports 1.5 Gbps 0xf impl IDE mode
[    2.744303] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part 
[    2.744774] scsi0 : ahci
[    2.744932] scsi1 : ahci
[    2.745048] scsi2 : ahci
[    2.745157] scsi3 : ahci
[    2.745240] ata1: SATA max UDMA/133 irq_stat 0x00400040, connection status changed irq 20
[    2.745349] ata2: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3bd80 irq 20
[    2.745446] ata3: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be00 irq 20
[    2.745569] ata4: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be80 irq 20
[    2.745758] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.745973] scsi4 : ata_piix
[    2.746138] scsi5 : ata_piix
[    2.746250] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.746368] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.747388] Fixed MDIO Bus: probed
[    2.747453] PPP generic driver version 2.4.2
[    2.747654] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.747767] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.747878] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.748008] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.752049] ehci_hcd 0000:00:1d.7: debug port 1
[    2.752131] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    2.764278] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.768419] usb usb1: configuration #1 chosen from 1 choice
[    2.772464] hub 1-0:1.0: USB hub found
[    2.776505] hub 1-0:1.0: 8 ports detected
[    2.780576] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.784642] uhci_hcd: USB Universal Host Controller Interface driver
[    2.788765] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.793038] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.797241] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.801365] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    2.805602] usb usb2: configuration #1 chosen from 1 choice
[    2.809823] hub 2-0:1.0: USB hub found
[    2.813937] hub 2-0:1.0: 2 ports detected
[    2.818062] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[    2.822236] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.826281] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.830346] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    2.834328] usb usb3: configuration #1 chosen from 1 choice
[    2.838348] hub 3-0:1.0: USB hub found
[    2.842332] hub 3-0:1.0: 2 ports detected
[    2.846300] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.850302] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.854219] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.858187] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.862260] usb usb4: configuration #1 chosen from 1 choice
[    2.866117] hub 4-0:1.0: USB hub found
[    2.869965] hub 4-0:1.0: 2 ports detected
[    2.873830] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[    2.877682] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.881520] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.885331] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.889185] usb usb5: configuration #1 chosen from 1 choice
[    2.893009] hub 5-0:1.0: USB hub found
[    2.896744] hub 5-0:1.0: 2 ports detected
[    2.900604] PNP: No PS/2 controller found. Probing ports directly.
[    2.904445] Platform driver 'i8042' needs updating - please use dev_pm_ops
[    2.908860] ata5.00: ATAPI: HL-DT-STDVD+-RW GSA-H21N, B109, max UDMA/33
[    2.913769] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.917623] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.921533] mice: PS/2 mouse device common for all mice
[    2.925290] rtc_cmos 00:05: RTC can wake from S4
[    2.928947] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.932361] ata5.00: configured for UDMA/33
[    2.936323] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    2.940179] device-mapper: uevent: version 1.0.3
[    2.944028] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.948055] device-mapper: multipath: version 1.1.0 loaded
[    2.951934] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.955904] EISA: Probing bus 0 at eisa.0
[    2.959791] EISA: Cannot allocate resource for mainboard
[    2.963731] Cannot allocate resource for EISA slot 2
[    2.967630] Cannot allocate resource for EISA slot 5
[    2.971438] Cannot allocate resource for EISA slot 6
[    2.975311] EISA: Detected 0 cards.
[    2.979241] cpuidle: using governor ladder
[    2.983100] cpuidle: using governor menu
[    2.987527] TCP cubic registered
[    2.991451] NET: Registered protocol family 10
[    2.995748] lo: Disabled Privacy Extensions
[    2.999823] NET: Registered protocol family 17
[    3.003583] Bluetooth: L2CAP ver 2.13
[    3.007245] Bluetooth: L2CAP socket layer initialized
[    3.010879] Bluetooth: SCO (Voice Link) ver 0.6
[    3.014571] Bluetooth: SCO socket layer initialized
[    3.018238] Bluetooth: RFCOMM socket layer initialized
[    3.021909] Bluetooth: RFCOMM TTY layer initialized
[    3.025568] Bluetooth: RFCOMM ver 1.11
[    3.029283] Using IPI No-Shortcut mode
[    3.032992] registered taskstats version 1
[    3.037002]   Magic number: 5:854:945
[    3.040556] tty tty2: hash matches
[    3.044140] rtc_cmos 00:05: setting system clock to 2009-08-02 17:56:11 UTC (1249235771)
[    3.047747] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.051424] EDD information not available.
[    3.068038] ata4: SATA link down (SStatus 0 SControl 300)
[    3.071655] ata3: SATA link down (SStatus 0 SControl 300)
[    3.075287] ata2: SATA link down (SStatus 0 SControl 300)
[    3.092042] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.224502] usb 1-1: configuration #1 chosen from 1 choice
[    3.228210] hub 1-1:1.0: USB hub found
[    3.231676] hub 1-1:1.0: 4 ports detected
[    3.468035] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.504080] usb 1-1.1: new low speed USB device using ehci_hcd and address 3
[    3.511455] ata1.00: ATA-7: ST3160812AS, 3.ADH, max UDMA/133
[    3.515020] ata1.00: 312500000 sectors, multi 8: LBA48 NCQ (depth 31/32)
[    3.569789] ata1.00: configured for UDMA/133
[    3.588151] scsi 0:0:0:0: Direct-Access     ATA      ST3160812AS      3.AD PQ: 0 ANSI: 5
[    3.591957] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.595638] sd 0:0:0:0: [sda] 312500000 512-byte logical blocks: (160 GB/149 GiB)
[    3.599416] sd 0:0:0:0: [sda] Write Protect is off
[    3.603162] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.606911] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GSA-H21N B109 PQ: 0 ANSI: 5
[    3.607357]  sda:sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[    3.619650] Uniform CD-ROM driver Revision: 3.20
[    3.623544] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.627408]  sda1 sda2 sda3
[    3.631628] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.635440] Freeing unused kernel memory: 536k freed
[    3.639627] Write protecting the kernel text: 4488k
[    3.643446] Write protecting the kernel read-only data: 1660k
[    3.644789] usb 1-1.1: configuration #1 chosen from 1 choice
[    3.732227] usb 1-1.2: new full speed USB device using ehci_hcd and address 4
[    3.829403] usb 1-1.2: configuration #1 chosen from 1 choice
[    3.833741] hub 1-1.2:1.0: USB hub found
[    3.838213] hub 1-1.2:1.0: 3 ports detected
[    3.915969] Platform driver 'floppy' needs updating - please use dev_pm_ops
[    3.920439] Floppy drive(s): fd0 is 1.44M
[    3.942715] FDC 0 is a post-1991 82077
[    3.953909] usbcore: registered new interface driver hiddev
[    3.968559] input: Microsoft Corporation Microsoft ® Laser Mouse 6000 as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.1/1-1.1:1.0/input/input3
[    3.973372] generic-usb 0003:045E:00F0.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Corporation Microsoft ® Laser Mouse 6000] on usb-0000:00:1d.7-1.1/input0
[    3.982982] usbcore: registered new interface driver usbhid
[    3.989809] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    3.994863] e100: Copyright(c) 1999-2006 Intel Corporation
[    4.000326] usbhid: v2.6:USB HID core driver
[    4.007263] e100 0000:03:08.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    4.037532] e100 0000:03:08.0: PME# disabled
[    4.112248] usb 1-1.2.1: new full speed USB device using ehci_hcd and address 5
[    4.197684] e100: eth0: e100_probe: addr 0xdfcef000, irq 20, MAC addr 00:16:76:af:c1:00
[    4.209273] usb 1-1.2.1: configuration #1 chosen from 1 choice
[    4.216144] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.0/input/input4
[    4.221828] generic-usb 0003:413C:2010.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input0
[    4.229619] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.1/input/input5
[    4.235518] generic-usb 0003:413C:2010.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input1
[    4.677045] EXT4-fs (sda3): barriers enabled
[    4.690850] kjournald2 starting: pid 698, dev sda3:8, commit interval 5 seconds
[    4.695957] EXT4-fs (sda3): delayed allocation enabled
[    4.701255] EXT4-fs: file extents enabled
[    4.708451] EXT4-fs: mballoc enabled
[    4.713603] EXT4-fs (sda3): mounted filesystem with ordered data mode
[    5.961107] udev: starting version 141
[    6.502824] Linux agpgart interface v0.103
[    6.599161] agpgart-intel 0000:00:00.0: Intel 915G Chipset
[    6.604578] agpgart-intel 0000:00:00.0: detected 7932K stolen memory
[    6.612021] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    6.637672] intel_rng: Firmware space is locked read-only. If you can't or
[    6.637676] intel_rng: don't want to disable this in firmware setup, and if
[    6.637678] intel_rng: you are certain that your system has a functional
[    6.637681] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    6.720326] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    7.240870] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    7.332997] cfg80211: Calling CRDA to update world regulatory domain
[    7.486899] iTCO_vendor_support: vendor-support=0
[    7.522854] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[    7.528295] iTCO_wdt: failed to reset NO_REBOOT flag, reboot disabled by hardware
[    7.533996] iTCO_wdt: No card detected
[    7.646592] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    7.736452] cfg80211: World regulatory domain updated:
[    7.741408] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.746411] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.751420] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.756695] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.761647] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.766731] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.966460] ath9k 0000:03:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.582071] Registered led device: ath9k-phy0::radio
[    9.587091] Registered led device: ath9k-phy0::assoc
[    9.592051] cfg80211: Calling CRDA for country: AT
[    9.592388] Registered led device: ath9k-phy0::tx
[    9.592651] Registered led device: ath9k-phy0::rx
[    9.592672] phy0: Atheros AR9160 MAC/BB Rev:0 AR5133 RF Rev:b0: mem=0xf96e0000, irq=18
[    9.618424] cfg80211: Regulatory domain changed to country: AT
[    9.623407] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    9.628573] 	(2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.633332] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.638089] 	(5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.642662] 	(5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[    9.825190] lp: driver loaded but no devices found
[    9.857838] netconsole: local port 6969
[    9.862134] netconsole: local IP 192.168.1.2
[    9.866002] netconsole: interface eth0
[    9.869880] netconsole: remote port 514
[    9.873451] netconsole: remote IP 192.168.1.1
[    9.877098] netconsole: remote ethernet address ba:98:76:54:32:10
[    9.880665] netconsole: device eth0 not up yet, forcing it
[    9.901780] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   11.816154] e100: eth0 NIC Link is Up 100 Mbps Full Duplex
[   11.819856] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   11.832306] console [netcon0] enabled
[   13.769784] netconsole: network logging started
[   14.104659] EXT4-fs (sda3): internal journal on sda3:8
[   14.811410] Bridge firewalling registered
[   14.825088] device eth0 entered promiscuous mode
[   14.832098] device wlan0 entered promiscuous mode
[   14.856044] phy0: device now idle
[   14.863907] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   14.881585] br0: port 1(eth0) entering learning state
[   23.768016] eth0: no IPv6 routers present
[   25.644015] br0: no IPv6 routers present
[   29.884017] br0: port 1(eth0) entering forwarding state
[   34.447633] ath9k: DMA failed to stop in 10 ms AR_CR=0x00000024 AR_DIAG_SW=0x40000020
[   34.456853] br0: port 2(wlan0) entering disabled state
[   34.466302] phy0: device no longer idle - in use
[   34.516227] br0: port 2(wlan0) entering learning state
[   34.616979] padlock: VIA PadLock not detected.
[   36.062991] phy0: Allocated STA 01:23:45:67:89:ba
[   36.066563] phy0: Inserted STA 01:23:45:67:89:ba
[   39.174003] phy0: Removed STA 01:23:45:67:89:ba
[   39.184035] phy0: Destroyed STA 01:23:45:67:89:ba
[   39.209702] phy0: Allocated STA 01:23:45:67:89:ba
[   39.209805] phy0: Inserted STA 01:23:45:67:89:ba
[   42.313580] phy0: Removed STA 01:23:45:67:89:ba
[   42.324036] phy0: Destroyed STA 01:23:45:67:89:ba
[   42.349432] phy0: Allocated STA 01:23:45:67:89:ba
[   42.349517] phy0: Inserted STA 01:23:45:67:89:ba
[   44.808013] wlan0: no IPv6 routers present
[   45.452426] phy0: Removed STA 01:23:45:67:89:ba
[   45.464037] phy0: Destroyed STA 01:23:45:67:89:ba
[   45.487097] phy0: Allocated STA 01:23:45:67:89:ba
[   45.487187] phy0: Inserted STA 01:23:45:67:89:ba
[   48.591033] phy0: Removed STA 01:23:45:67:89:ba
[   48.600074] phy0: Destroyed STA 01:23:45:67:89:ba
[   48.625559] phy0: Allocated STA 01:23:45:67:89:ba
[   48.625645] phy0: Inserted STA 01:23:45:67:89:ba
[   49.516025] br0: port 2(wlan0) entering forwarding state
[   51.195770] Open BA session requested for 01:23:45:67:89:ba tid 0
[   51.195891] activated addBA response timer on tid 0
[   51.196860] switched off addBA timer for tid 0 
[   51.196935] Aggregation is on for tid 0 
[   51.197004] ieee80211_agg_splice_packets(c324e1c0, c24b8000, 0) from ieee80211_agg_tx_operational
[   51.197153] local c324e1c0
[   51.197194] sta c24b8000
[   51.197240] sta->ampdu_mlme.tid_tx c24b813c
[   51.197313] local->pending c324e6f0
[   53.872281] Rx A-MPDU request on tid 0 result 0
[   59.548031] rx session timer expired on tid 0
[   59.548118] Rx BA session stop requested for 01:23:45:67:89:ba tid 0
[   66.742842] phy0: Allocated STA 01:23:45:67:89:ba
[   66.742938] phy0: Destroyed STA 01:23:45:67:89:ba
[   71.373661] Rx A-MPDU request on tid 0 result 0
[   72.459819] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   72.459942] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   72.460063] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   72.460150] ieee80211_agg_splice_packets(c324e1c0, c24b8000, 0) from ieee80211_stop_tx_ba_session
[   72.460290] local c324e1c0
[   72.460333] sta c24b8000
[   72.460379] sta->ampdu_mlme.tid_tx c24b813c
[   72.460446] local->pending c324e6f0
[   72.460653] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   72.460770] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   72.460873] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   72.460968] ieee80211_agg_splice_packets(c324e1c0, c24b8000, 0) from ieee80211_stop_tx_ba_session
[   72.461116] local c324e1c0
[   72.461164] sta c24b8000
[   72.461208] sta->ampdu_mlme.tid_tx c24b813c
[   72.461280] local->pending c324e6f0
[   72.461352] BUG: unable to handle kernel NULL pointer dereference at 00000030
[   72.461482] IP: [<f931bd0b>] ieee80211_agg_splice_packets+0x8b/0x100 [mac80211]
[   72.461624] *pde = 00000000 
[   72.461684] Oops: 0000 [#1] SMP 
[   72.461754] last sysfs file: /sys/module/aes_generic/initstate
[   72.461854] Modules linked in: aes_i586 aes_generic video output bridge stp netconsole lp parport arc4 ecb ath9k mac80211 snd_hda_codec_idt led_class ath snd_hda_intel snd_hda_codec iTCO_wdt iTCO_vendor_support snd_pcm cfg80211 psmouse dcdbas snd_timer snd soundcore snd_page_alloc pcspkr intel_agp agpgart serio_raw joydev e100 mii usbhid floppy
[   72.462605] 
[   72.462636] Pid: 2147, comm: dd Not tainted (2.6.31-rc4-wl #11) Dell DV051                   
[   72.462749] EIP: 0060:[<f931bd0b>] EFLAGS: 00010296 CPU: 0
[   72.462839] EIP is at ieee80211_agg_splice_packets+0x8b/0x100 [mac80211]
[   72.462932] EAX: 00000030 EBX: 0000004c ECX: 00000003 EDX: 00000000
[   72.463030] ESI: c24b8000 EDI: 00000000 EBP: c2471e0c ESP: c2471de8
[   72.463137]  DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0068
[   72.464548] Process dd (pid: 2147, ti=c2470000 task=c302eff0 task.ti=c2470000)
[   72.464548] Stack:
[   72.464548]  f933f3b7 c324e6f0 00000002 c324e1c0 c324e1c0 c2471e0c c3348720 c24b8000
[   72.464548] <0> c324e1c0 c2471e3c f931bfa4 f934053c c324e1c0 c24b8000 00000000 c324e744
[   72.464548] <0> c24b8020 00000000 c3348700 c324e1c0 c324e290 c2471e64 f9317e3e f706bb74
[   72.464548] Call Trace:
[   72.464548]  [<f931bfa4>] ? ieee80211_stop_tx_ba_cb+0xe4/0x160 [mac80211]
[   72.464548]  [<f9317e3e>] ? ieee80211_tasklet_handler+0xce/0x110 [mac80211]
[   72.464548]  [<c048019c>] ? net_rx_action+0x18c/0x1e0
[   72.464548]  [<c01422e8>] ? tasklet_action+0x58/0xc0
[   72.464548]  [<c0143062>] ? __do_softirq+0xc2/0x190
[   72.464548]  [<c01877b8>] ? handle_IRQ_event+0x58/0x140
[   72.464548]  [<c011a9ce>] ? ack_apic_level+0x7e/0x270
[   72.464548]  [<c014316d>] ? do_softirq+0x3d/0x40
[   72.464548]  [<c01432b5>] ? irq_exit+0x65/0x90
[   72.464548]  [<c01048bf>] ? do_IRQ+0x4f/0xc0
[   72.464548]  [<c02b9cb7>] ? cap_syslog+0x17/0x30
[   72.464548]  [<c02ba58c>] ? security_syslog+0xc/0x10
[   72.464548]  [<c0103709>] ? common_interrupt+0x29/0x30
[   72.464548]  [<c02bad1f>] ? security_file_permission+0xf/0x20
[   72.464548]  [<c01d8574>] ? rw_verify_area+0x54/0xd0
[   72.464548]  [<c01d8a26>] ? vfs_write+0x76/0x190
[   72.464548]  [<c0219990>] ? proc_reg_read+0x0/0x80
[   72.464548]  [<c01d8bfd>] ? sys_write+0x3d/0x70
[   72.464548]  [<c0102ffc>] ? sysenter_do_call+0x12/0x28
[   72.464548] Code: 44 24 04 c7 04 24 b7 f3 33 f9 e8 79 eb 23 c7 8b 45 e8 89 da 89 5d e4 b9 03 00 00 00 8d 5f 4c e8 4c 2f 01 00 8b 54 9e 0c 8d 42 30 <39> 42 30 74 60 8b 4d e8 83 c1 64 89 c8 89 4d ec e8 50 13 24 c7 
[   72.464548] EIP: [<f931bd0b>] ieee80211_agg_splice_packets+0x8b/0x100 [mac80211] SS:ESP 0068:c2471de8
[   72.464548] CR2: 0000000000000030
[   72.598231] ---[ end trace 1b39feb8197eb727 ]---
[   72.602873] Kernel panic - not syncing: Fatal exception in interrupt
[   72.607564] Pid: 2147, comm: dd Tainted: G      D    2.6.31-rc4-wl #11
[   72.612357] Call Trace:
[   72.617021]  [<c055a880>] ? printk+0x18/0x20
[   72.621593]  [<c055a7b0>] panic+0x43/0xfb
[   72.626168]  [<c055dff1>] oops_end+0xc1/0xd0
[   72.630710]  [<c0121e56>] no_context+0xb6/0x150
[   72.635153]  [<c0121f30>] __bad_area_nosemaphore+0x40/0x190
[   72.639665]  [<c048f70a>] ? netpoll_send_udp+0x1da/0x1f0
[   72.644217]  [<f98082ca>] ? write_msg+0xda/0xf0 [netconsole]
[   72.648765]  [<f98081f0>] ? write_msg+0x0/0xf0 [netconsole]
[   72.653268]  [<c013d562>] ? __call_console_drivers+0x62/0x80
[   72.657811]  [<c015876b>] ? up+0x2b/0x40
[   72.662207]  [<c013da81>] ? release_console_sem+0x191/0x1d0
[   72.666585]  [<c0122092>] bad_area_nosemaphore+0x12/0x20
[   72.670951]  [<c055f56c>] do_page_fault+0x24c/0x2f0
[   72.675346]  [<c055f320>] ? do_page_fault+0x0/0x2f0
[   72.679592]  [<c055d4c6>] error_code+0x66/0x70
[   72.683959]  [<f932007b>] ? ieee80211_set_disassoc+0x13b/0x190 [mac80211]
[   72.688348]  [<c055f320>] ? do_page_fault+0x0/0x2f0
[   72.692635]  [<f931bd0b>] ? ieee80211_agg_splice_packets+0x8b/0x100 [mac80211]
[   72.697018]  [<f931bfa4>] ieee80211_stop_tx_ba_cb+0xe4/0x160 [mac80211]
[   72.701447]  [<f9317e3e>] ieee80211_tasklet_handler+0xce/0x110 [mac80211]
[   72.705832]  [<c048019c>] ? net_rx_action+0x18c/0x1e0
[   72.710110]  [<c01422e8>] tasklet_action+0x58/0xc0
[   72.714227]  [<c0143062>] __do_softirq+0xc2/0x190
[   72.718246]  [<c01877b8>] ? handle_IRQ_event+0x58/0x140
[   72.722275]  [<c011a9ce>] ? ack_apic_level+0x7e/0x270
[   72.726223]  [<c014316d>] do_softirq+0x3d/0x40
[   72.730211]  [<c01432b5>] irq_exit+0x65/0x90
[   72.734093]  [<c01048bf>] do_IRQ+0x4f/0xc0
[   72.738019]  [<c02b9cb7>] ? cap_syslog+0x17/0x30
[   72.741862]  [<c02ba58c>] ? security_syslog+0xc/0x10
[   72.745700]  [<c0103709>] common_interrupt+0x29/0x30
[   72.749478]  [<c02bad1f>] ? security_file_permission+0xf/0x20
[   72.753309]  [<c01d8574>] rw_verify_area+0x54/0xd0
[   72.757047]  [<c01d8a26>] vfs_write+0x76/0x190
[   72.760760]  [<c0219990>] ? proc_reg_read+0x0/0x80
[   72.764420]  [<c01d8bfd>] sys_write+0x3d/0x70
[   72.767992]  [<c0102ffc>] sysenter_do_call+0x12/0x28

[-- Attachment #3: debug-4.txt --]
[-- Type: text/plain, Size: 51729 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.31-rc4-wl (root@DV051) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #11 SMP Sun Aug 2 17:53:23 BST 2009
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 00000000000a0000 (usable)
[    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  BIOS-e820: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  BIOS-e820: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  BIOS-e820: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  BIOS-e820: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  BIOS-e820: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  BIOS-e820: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] DMI 2.3 present.
[    0.000000] last_pfn = 0x7f688 max_arch_pfn = 0x100000
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000002000 (usable)
[    0.000000]  modified: 0000000000002000 - 0000000000006000 (reserved)
[    0.000000]  modified: 0000000000006000 - 00000000000a0000 (usable)
[    0.000000]  modified: 00000000000f0000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 000000007f688c00 (usable)
[    0.000000]  modified: 000000007f688c00 - 000000007f68ac00 (ACPI NVS)
[    0.000000]  modified: 000000007f68ac00 - 000000007f68cc00 (ACPI data)
[    0.000000]  modified: 000000007f68cc00 - 0000000080000000 (reserved)
[    0.000000]  modified: 00000000e0000000 - 00000000f0000000 (reserved)
[    0.000000]  modified: 00000000fec00000 - 00000000fed00400 (reserved)
[    0.000000]  modified: 00000000fed20000 - 00000000feda0000 (reserved)
[    0.000000]  modified: 00000000fee00000 - 00000000fef00000 (reserved)
[    0.000000]  modified: 00000000ffb00000 - 0000000100000000 (reserved)
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000] RAMDISK: 35017000 - 37fef121
[    0.000000] Allocated new RAMDISK: 0088b000 - 03863121
[    0.000000] Move RAMDISK from 0000000035017000 - 0000000037fef120 to 0088b000 - 03863120
[    0.000000] ACPI: RSDP 000fec00 00014 (v00 DELL  )
[    0.000000] ACPI: RSDT 000fcc50 0003C (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: FACP 000fcc8c 00074 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: DSDT fffc56f3 02D5F (v01   DELL    dt_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: FACS 7f688c00 00040
[    0.000000] ACPI: SSDT fffc858f 000BA (v01   DELL    st_ex 00001000 MSFT 0100000D)
[    0.000000] ACPI: APIC 000fcd00 00092 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: BOOT 000fcd92 00028 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: MCFG 000fcdba 0003E (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] ACPI: HPET 000fcdf8 00038 (v01 DELL    DV051   00000007 ASL  00000061)
[    0.000000] 1150MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000]   node 0 low ram: 00000000 - 377fe000
[    0.000000]   node 0 bootmap 00008000 - 0000ef00
[    0.000000] (9 early reservations) ==> bootmem [0000000000 - 00377fe000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000001000 - 0000002000]    EX TRAMPOLINE ==> [0000001000 - 0000002000]
[    0.000000]   #2 [0000006000 - 0000007000]       TRAMPOLINE ==> [0000006000 - 0000007000]
[    0.000000]   #3 [0000100000 - 0000886718]    TEXT DATA BSS ==> [0000100000 - 0000886718]
[    0.000000]   #4 [000009fc00 - 0000100000]    BIOS reserved ==> [000009fc00 - 0000100000]
[    0.000000]   #5 [0000887000 - 000088a1d0]              BRK ==> [0000887000 - 000088a1d0]
[    0.000000]   #6 [0000007000 - 0000008000]          PGTABLE ==> [0000007000 - 0000008000]
[    0.000000]   #7 [000088b000 - 0003863121]      NEW RAMDISK ==> [000088b000 - 0003863121]
[    0.000000]   #8 [0000008000 - 000000f000]          BOOTMAP ==> [0000008000 - 000000f000]
[    0.000000] found SMP MP-table at [c00fe710] fe710
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000000 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x0007f688
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[3] active PFN ranges
[    0.000000]     0: 0x00000000 -> 0x00000002
[    0.000000]     0: 0x00000006 -> 0x000000a0
[    0.000000]     0: 0x00000100 -> 0x0007f688
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x02] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x07] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x03] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high level lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 8, version 32, 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] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] SMP: Allowing 8 CPUs, 6 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 0000000000002000 - 0000000000006000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
[    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at 80000000 (gap: 80000000:60000000)
[    0.000000] NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 13 pages at c485e000, static data 30076 bytes
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 517686
[    0.000000] Kernel command line: root=UUID=a8de6ccd-1498-4938-9f76-b696cf4edbf6 ro vga=775 
[    0.000000] PID hash table entries: 4096 (order: 12, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 10437280 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f688)
[    0.000000] Memory: 2001640k/2087456k available (4486k kernel code, 84516k reserved, 2020k data, 536k init, 1178152k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff1d000 - 0xfffff000   ( 904 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc0766000 - 0xc07ec000   ( 536 kB)
[    0.000000]       .data : 0xc0561b7f - 0xc075af68   (2020 kB)
[    0.000000]       .text : 0xc0100000 - 0xc0561b7f   (4486 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=128, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] NR_IRQS:512
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2992.735 MHz processor.
[    0.000029] Console: colour dummy device 80x25
[    0.000033] console [tty0] enabled
[    0.000437] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.000446] Calibrating delay loop (skipped), value calculated using timer frequency.. 5985.47 BogoMIPS (lpj=11970940)
[    0.000471] Security Framework initialized
[    0.000479] SELinux:  Disabled at boot.
[    0.000490] Mount-cache hash table entries: 512
[    0.000650] Initializing cgroup subsys ns
[    0.000657] Initializing cgroup subsys cpuacct
[    0.000664] Initializing cgroup subsys memory
[    0.000673] Initializing cgroup subsys freezer
[    0.000696] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.000702] CPU: L2 cache: 1024K
[    0.000707] CPU: Physical Processor ID: 0
[    0.000711] CPU: Processor Core ID: 0
[    0.000716] using mwait in idle threads.
[    0.000730] Checking 'hlt' instruction... OK.
[    0.017905] ACPI: Core revision 20090521
[    0.065077] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.104778] CPU0: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.108001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 5985.04 BogoMIPS (lpj=11970090)
[    0.004000] CPU: Trace cache: 12K uops, L1 D cache: 16K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.192403] CPU1: Intel(R) Pentium(R) 4 CPU 3.00GHz stepping 09
[    0.192454] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.196046] Brought up 2 CPUs
[    0.196054] Total of 2 processors activated (11970.51 BogoMIPS).
[    0.196452] Booting paravirtualized kernel on bare hardware
[    0.196716] regulator: core version 0.5
[    0.196746] Time: 18:01:52  Date: 08/02/09
[    0.196807] NET: Registered protocol family 16
[    0.196969] EISA bus registered
[    0.196983] ACPI: bus type pci registered
[    0.197060] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.197067] PCI: MCFG area at e0000000 reserved in E820
[    0.197071] PCI: Using MMCONFIG for extended config space
[    0.197076] PCI: Using configuration type 1 for base access
[    0.198382] bio: create slab <bio-0> at 0
[    0.220927] ACPI: BIOS _OSI(Linux) query ignored
[    0.231732] ACPI: Interpreter enabled
[    0.231744] ACPI: (supports S0 S1 S3 S4 S5)
[    0.231781] ACPI: Using IOAPIC for interrupt routing
[    0.274781] ACPI: No dock devices found.
[    0.278498] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.278763] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.278771] pci 0000:00:1b.0: PME# disabled
[    0.278843] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.278850] pci 0000:00:1c.0: PME# disabled
[    0.278921] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.278928] pci 0000:00:1c.1: PME# disabled
[    0.279273] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.279280] pci 0000:00:1d.7: PME# disabled
[    0.279404] pci 0000:00:1f.0: quirk: region 0800-087f claimed by ICH6 ACPI/GPIO/TCO
[    0.279412] pci 0000:00:1f.0: quirk: region 0880-08bf claimed by ICH6 GPIO
[    0.279419] pci 0000:00:1f.0: LPC Generic IO decode 1 PIO at 0c00-0c7f
[    0.279426] pci 0000:00:1f.0: LPC Generic IO decode 2 PIO at 00e0-00ef
[    0.279597] pci 0000:00:1f.2: PME# supported from D3hot
[    0.279604] pci 0000:00:1f.2: PME# disabled
[    0.279892] pci 0000:03:02.0: PME# supported from D0 D3hot
[    0.279899] pci 0000:03:02.0: PME# disabled
[    0.280014] pci 0000:03:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.280022] pci 0000:03:08.0: PME# disabled
[    0.280065] pci 0000:00:1e.0: transparent bridge
[    0.671269] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 15)
[    0.671620] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.672113] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 *4 5 6 7 9 10 11 12 15)
[    0.672456] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 15) *0, disabled.
[    0.672808] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 *10 11 12 15)
[    0.673155] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 15)
[    0.673499] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 7 9 10 11 12 15)
[    0.673847] ACPI: PCI Interrupt Link [LNKH] (IRQs *3 4 5 6 7 9 10 11 12 15)
[    0.674130] SCSI subsystem initialized
[    0.674322] usbcore: registered new interface driver usbfs
[    0.674349] usbcore: registered new interface driver hub
[    0.674391] usbcore: registered new device driver usb
[    0.674562] ACPI: WMI: Mapper loaded
[    0.674567] PCI: Using ACPI for IRQ routing
[    0.674755] Bluetooth: Core ver 2.15
[    0.674800] NET: Registered protocol family 31
[    0.674805] Bluetooth: HCI device and connection manager initialized
[    0.674811] Bluetooth: HCI socket layer initialized
[    0.674816] NET: Registered protocol family 8
[    0.674821] NET: Registered protocol family 20
[    0.674838] NetLabel: Initializing
[    0.674843] NetLabel:  domain hash size = 128
[    0.674846] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.674864] NetLabel:  unlabeled traffic allowed by default
[    0.674906] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.674916] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.681971] pnp: PnP ACPI init
[    0.681998] ACPI: bus type pnp registered
[    0.688401] pnp 00:01: io resource (0x800-0x85f) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.688411] pnp 00:01: io resource (0x860-0x8ff) overlaps 0000:00:1f.0 BAR 7 (0x800-0x87f), disabling
[    0.709549] pnp: PnP ACPI: found 9 devices
[    0.709555] ACPI: ACPI bus type pnp unregistered
[    0.709562] PnPBIOS: Disabled by ACPI PNP
[    0.709578] system 00:01: ioport range 0xc00-0xc7f has been reserved
[    0.709592] system 00:07: iomem range 0x0-0x9ffff could not be reserved
[    0.709599] system 00:07: iomem range 0x100000-0xffffff could not be reserved
[    0.709605] system 00:07: iomem range 0x1000000-0x7f688bff could not be reserved
[    0.709612] system 00:07: iomem range 0xc0000-0xfffff could not be reserved
[    0.709618] system 00:07: iomem range 0xfec00000-0xfecfffff could not be reserved
[    0.709625] system 00:07: iomem range 0xfee00000-0xfeefffff has been reserved
[    0.709631] system 00:07: iomem range 0xfed20000-0xfed9ffff has been reserved
[    0.709637] system 00:07: iomem range 0xffb00000-0xffbfffff has been reserved
[    0.709643] system 00:07: iomem range 0xffc00000-0xffffffff has been reserved
[    0.709653] system 00:08: ioport range 0x100-0x1fe could not be reserved
[    0.709659] system 00:08: ioport range 0x200-0x277 has been reserved
[    0.709665] system 00:08: ioport range 0x280-0x2e7 has been reserved
[    0.709670] system 00:08: ioport range 0x2e8-0x2ef has been reserved
[    0.709676] system 00:08: ioport range 0x2f0-0x2f7 has been reserved
[    0.709681] system 00:08: ioport range 0x2f8-0x2ff has been reserved
[    0.709687] system 00:08: ioport range 0x300-0x377 could not be reserved
[    0.709693] system 00:08: ioport range 0x380-0x3bb has been reserved
[    0.709698] system 00:08: ioport range 0x3c0-0x3e7 has been reserved
[    0.709704] system 00:08: ioport range 0x3f6-0x3f7 could not be reserved
[    0.709710] system 00:08: ioport range 0x400-0x4cf has been reserved
[    0.709716] system 00:08: ioport range 0x4d2-0x57f has been reserved
[    0.709721] system 00:08: ioport range 0x580-0x677 has been reserved
[    0.709727] system 00:08: ioport range 0x680-0x777 has been reserved
[    0.709732] system 00:08: ioport range 0x780-0x7bb has been reserved
[    0.709738] system 00:08: ioport range 0x7c0-0x7ff has been reserved
[    0.709744] system 00:08: ioport range 0x8e0-0x8ff has been reserved
[    0.709749] system 00:08: ioport range 0x900-0x9fe has been reserved
[    0.709755] system 00:08: ioport range 0xa00-0xafe has been reserved
[    0.709761] system 00:08: ioport range 0xb00-0xbfe has been reserved
[    0.709766] system 00:08: ioport range 0xc80-0xcaf has been reserved
[    0.709772] system 00:08: ioport range 0xcb0-0xcbf has been reserved
[    0.709778] system 00:08: ioport range 0xcc0-0xcf7 has been reserved
[    0.709783] system 00:08: ioport range 0xd00-0xdfe has been reserved
[    0.709789] system 00:08: ioport range 0xe00-0xefe has been reserved
[    0.709795] system 00:08: ioport range 0xf00-0xffe has been reserved
[    0.709801] system 00:08: ioport range 0x2000-0x20fe has been reserved
[    0.709806] system 00:08: ioport range 0x2100-0x21fe has been reserved
[    0.709812] system 00:08: ioport range 0x2200-0x22fe has been reserved
[    0.709818] system 00:08: ioport range 0x2300-0x23fe has been reserved
[    0.709824] system 00:08: ioport range 0x2400-0x24fe has been reserved
[    0.709830] system 00:08: ioport range 0x2500-0x25fe has been reserved
[    0.709836] system 00:08: ioport range 0x2600-0x26fe has been reserved
[    0.709842] system 00:08: ioport range 0x2700-0x27fe has been reserved
[    0.709848] system 00:08: ioport range 0x2800-0x28fe has been reserved
[    0.709854] system 00:08: ioport range 0x2900-0x29fe has been reserved
[    0.709860] system 00:08: ioport range 0x2a00-0x2afe has been reserved
[    0.709865] system 00:08: ioport range 0x2b00-0x2bfe has been reserved
[    0.709871] system 00:08: ioport range 0x2c00-0x2cfe has been reserved
[    0.709877] system 00:08: ioport range 0x2d00-0x2dfe has been reserved
[    0.709883] system 00:08: ioport range 0x2e00-0x2efe has been reserved
[    0.709889] system 00:08: ioport range 0x2f00-0x2ffe has been reserved
[    0.709896] system 00:08: ioport range 0x5000-0x50fe has been reserved
[    0.709902] system 00:08: ioport range 0x5100-0x51fe has been reserved
[    0.709908] system 00:08: ioport range 0x5200-0x52fe has been reserved
[    0.709914] system 00:08: ioport range 0x5300-0x53fe has been reserved
[    0.709920] system 00:08: ioport range 0x5400-0x54fe has been reserved
[    0.709926] system 00:08: ioport range 0x5500-0x55fe has been reserved
[    0.709932] system 00:08: ioport range 0x5600-0x56fe has been reserved
[    0.709938] system 00:08: ioport range 0x5700-0x57fe has been reserved
[    0.709944] system 00:08: ioport range 0x5800-0x58fe has been reserved
[    0.709950] system 00:08: ioport range 0x5900-0x59fe has been reserved
[    0.709956] system 00:08: ioport range 0x5a00-0x5afe has been reserved
[    0.709962] system 00:08: ioport range 0x5b00-0x5bfe has been reserved
[    0.709968] system 00:08: ioport range 0x5c00-0x5cfe has been reserved
[    0.709974] system 00:08: ioport range 0x5d00-0x5dfe has been reserved
[    0.709980] system 00:08: ioport range 0x5e00-0x5efe has been reserved
[    0.709987] system 00:08: ioport range 0x5f00-0x5ffe has been reserved
[    0.709993] system 00:08: ioport range 0x6000-0x60fe has been reserved
[    0.709999] system 00:08: ioport range 0x6100-0x61fe has been reserved
[    0.710005] system 00:08: ioport range 0x6200-0x62fe has been reserved
[    0.710011] system 00:08: ioport range 0x6300-0x63fe has been reserved
[    0.710017] system 00:08: ioport range 0x6400-0x64fe has been reserved
[    0.710024] system 00:08: ioport range 0x6500-0x65fe has been reserved
[    0.710030] system 00:08: ioport range 0x6600-0x66fe has been reserved
[    0.710036] system 00:08: ioport range 0x6700-0x67fe has been reserved
[    0.710043] system 00:08: ioport range 0x6800-0x68fe has been reserved
[    0.710049] system 00:08: ioport range 0x6900-0x69fe has been reserved
[    0.710056] system 00:08: ioport range 0x6a00-0x6afe has been reserved
[    0.710062] system 00:08: ioport range 0x6b00-0x6bfe has been reserved
[    0.710068] system 00:08: ioport range 0x6c00-0x6cfe has been reserved
[    0.710075] system 00:08: ioport range 0x6d00-0x6dfe has been reserved
[    0.710081] system 00:08: ioport range 0x6e00-0x6efe has been reserved
[    0.710088] system 00:08: ioport range 0x6f00-0x6ffe has been reserved
[    0.710094] system 00:08: ioport range 0xa000-0xa0fe has been reserved
[    0.710101] system 00:08: ioport range 0xa100-0xa1fe has been reserved
[    0.710107] system 00:08: ioport range 0xa200-0xa2fe has been reserved
[    0.710114] system 00:08: ioport range 0xa300-0xa3fe has been reserved
[    0.710120] system 00:08: ioport range 0xa400-0xa4fe has been reserved
[    0.710127] system 00:08: ioport range 0xa500-0xa5fe has been reserved
[    0.710134] system 00:08: ioport range 0xa600-0xa6fe has been reserved
[    0.710140] system 00:08: ioport range 0xa700-0xa7fe has been reserved
[    0.710147] system 00:08: ioport range 0xa800-0xa8fe has been reserved
[    0.710154] system 00:08: ioport range 0xa900-0xa9fe has been reserved
[    0.710160] system 00:08: ioport range 0xaa00-0xaafe has been reserved
[    0.710167] system 00:08: ioport range 0xab00-0xabfe has been reserved
[    0.710174] system 00:08: ioport range 0xac00-0xacfe has been reserved
[    0.710181] system 00:08: ioport range 0xad00-0xadfe has been reserved
[    0.710188] system 00:08: ioport range 0xae00-0xaefe has been reserved
[    0.710195] system 00:08: ioport range 0xaf00-0xaffe has been reserved
[    0.710201] system 00:08: iomem range 0xe0000000-0xefffffff has been reserved
[    0.710207] system 00:08: iomem range 0xfeda0000-0xfedacfff has been reserved
[    0.744932] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:01
[    0.744938] pci 0000:00:1c.0:   IO window: disabled
[    0.744946] pci 0000:00:1c.0:   MEM window: 0xdfe00000-0xdfefffff
[    0.744953] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.744960] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:02
[    0.744965] pci 0000:00:1c.1:   IO window: disabled
[    0.744972] pci 0000:00:1c.1:   MEM window: 0xdfd00000-0xdfdfffff
[    0.744979] pci 0000:00:1c.1:   PREFETCH window: disabled
[    0.744986] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:03
[    0.744992] pci 0000:00:1e.0:   IO window: 0xd000-0xdfff
[    0.745000] pci 0000:00:1e.0:   MEM window: 0xdfc00000-0xdfcfffff
[    0.745007] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.745026] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.745045] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.745138] NET: Registered protocol family 2
[    0.745279] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.745687] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.746051] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.746332] TCP: Hash tables configured (established 131072 bind 65536)
[    0.746337] TCP reno registered
[    0.746492] NET: Registered protocol family 1
[    0.746579] Trying to unpack rootfs image as initramfs...
[    2.324847] Freeing initrd memory: 48992k freed
[    2.351914] Simple Boot Flag at 0x7a set to 0x1
[    2.352061] cpufreq-nforce2: No nForce2 chipset.
[    2.352103] Scanning for low memory corruption every 60 seconds
[    2.352254] audit: initializing netlink socket (disabled)
[    2.352277] type=2000 audit(1249236114.352:1): initialized
[    2.360658] highmem bounce pool size: 64 pages
[    2.360669] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    2.362458] VFS: Disk quotas dquot_6.5.2
[    2.362541] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    2.363314] fuse init (API version 7.12)
[    2.363427] msgmni has been set to 1705
[    2.363708] alg: No test for stdrng (krng)
[    2.363729] io scheduler noop registered
[    2.363737] io scheduler anticipatory registered
[    2.363743] io scheduler deadline registered
[    2.363805] io scheduler cfq registered (default)
[    2.363927] pci 0000:03:08.0: Firmware left e100 interrupts enabled; disabling
[    2.364357] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.364434] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.364648] uvesafb: failed to execute /sbin/v86d
[    2.364653] uvesafb: make sure that the v86d helper is installed and executable
[    2.364660] uvesafb: Getting VBE info block failed (eax=0x4f00, err=-2)
[    2.364666] uvesafb: vbe_init() failed with -22
[    2.364673] uvesafb: probe of uvesafb.0 failed with error -22
[    2.364751] vesafb: framebuffer at 0xc0000000, mapped to 0xf8080000, using 2560k, total 7872k
[    2.364758] vesafb: mode is 1280x1024x8, linelength=1280, pages=5
[    2.364763] vesafb: scrolling: redraw
[    2.364768] vesafb: Pseudocolor: size=8:8:8:8, shift=0:0:0:0
[    2.378245] Console: switching to colour frame buffer device 160x64
[    2.391677] fb0: VESA VGA frame buffer device
[    2.391918] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    2.392046] ACPI: Power Button [PWRF]
[    2.392172] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1
[    2.392295] ACPI: Power Button [VBTN]
[    2.392823] processor LNXCPU:00: registered as cooling_device0
[    2.392949] processor LNXCPU:01: registered as cooling_device1
[    2.428946] isapnp: Scanning for PnP cards...
[    2.738833] isapnp: No Plug & Play device found
[    2.740313] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.740552] Platform driver 'serial8250' needs updating - please use dev_pm_ops
[    2.742038] brd: module loaded
[    2.742657] loop: module loaded
[    2.742804] input: Macintosh mouse button emulation as /devices/virtual/input/input2
[    2.743019] ahci 0000:00:1f.2: PCI INT C -> GSI 20 (level, low) -> IRQ 20
[    2.743200] ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 4 ports 1.5 Gbps 0xf impl IDE mode
[    2.743310] ahci 0000:00:1f.2: flags: 64bit ncq pm led slum part 
[    2.743785] scsi0 : ahci
[    2.743945] scsi1 : ahci
[    2.744066] scsi2 : ahci
[    2.744176] scsi3 : ahci
[    2.744274] ata1: SATA max UDMA/133 irq_stat 0x04400040, connection status changed irq 20
[    2.744382] ata2: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3bd80 irq 20
[    2.744479] ata3: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be00 irq 20
[    2.744575] ata4: SATA max UDMA/133 abar m1024@0xdff3bc00 port 0xdff3be80 irq 20
[    2.744781] ata_piix 0000:00:1f.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    2.745021] scsi4 : ata_piix
[    2.745139] scsi5 : ata_piix
[    2.745236] ata5: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    2.745354] ata6: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    2.746382] Fixed MDIO Bus: probed
[    2.746434] PPP generic driver version 2.4.2
[    2.746621] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.746757] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.746867] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.747014] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.751012] ehci_hcd 0000:00:1d.7: debug port 1
[    2.751095] ehci_hcd 0000:00:1d.7: irq 21, io mem 0xffa80800
[    2.764276] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.768504] usb usb1: configuration #1 chosen from 1 choice
[    2.772516] hub 1-0:1.0: USB hub found
[    2.776504] hub 1-0:1.0: 8 ports detected
[    2.780565] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.784642] uhci_hcd: USB Universal Host Controller Interface driver
[    2.788681] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    2.792874] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.797009] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.801120] uhci_hcd 0000:00:1d.0: irq 21, io base 0x0000ff80
[    2.805307] usb usb2: configuration #1 chosen from 1 choice
[    2.809423] hub 2-0:1.0: USB hub found
[    2.813472] hub 2-0:1.0: 2 ports detected
[    2.817551] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 22 (level, low) -> IRQ 22
[    2.821715] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.825857] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.829882] uhci_hcd 0000:00:1d.1: irq 22, io base 0x0000ff60
[    2.834028] usb usb3: configuration #1 chosen from 1 choice
[    2.838070] hub 3-0:1.0: USB hub found
[    2.842075] hub 3-0:1.0: 2 ports detected
[    2.845993] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.849894] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.853844] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.857852] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000ff40
[    2.861836] usb usb4: configuration #1 chosen from 1 choice
[    2.865713] hub 4-0:1.0: USB hub found
[    2.869577] hub 4-0:1.0: 2 ports detected
[    2.873473] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
[    2.877365] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.881231] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.884976] uhci_hcd 0000:00:1d.3: irq 23, io base 0x0000ff20
[    2.888820] usb usb5: configuration #1 chosen from 1 choice
[    2.892682] hub 5-0:1.0: USB hub found
[    2.896411] hub 5-0:1.0: 2 ports detected
[    2.900287] PNP: No PS/2 controller found. Probing ports directly.
[    2.904130] Platform driver 'i8042' needs updating - please use dev_pm_ops
[    2.910396] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.914475] ata5.00: ATAPI: HL-DT-STDVD+-RW GSA-H21N, B109, max UDMA/33
[    2.916293] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.916650] mice: PS/2 mouse device common for all mice
[    2.916975] rtc_cmos 00:05: RTC can wake from S4
[    2.917073] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    2.917116] rtc0: alarms up to one day, 242 bytes nvram, hpet irqs
[    2.917450] device-mapper: uevent: version 1.0.3
[    2.917670] device-mapper: ioctl: 4.15.0-ioctl (2009-04-01) initialised: dm-devel@redhat.com
[    2.917871] device-mapper: multipath: version 1.1.0 loaded
[    2.917879] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.918272] EISA: Probing bus 0 at eisa.0
[    2.918278] EISA: Cannot allocate resource for mainboard
[    2.918329] Cannot allocate resource for EISA slot 2
[    2.918407] Cannot allocate resource for EISA slot 5
[    2.918417] Cannot allocate resource for EISA slot 6
[    2.918477] EISA: Detected 0 cards.
[    2.918816] cpuidle: using governor ladder
[    2.918820] cpuidle: using governor menu
[    2.920179] TCP cubic registered
[    2.920669] NET: Registered protocol family 10
[    2.921946] lo: Disabled Privacy Extensions
[    2.922949] NET: Registered protocol family 17
[    2.923004] Bluetooth: L2CAP ver 2.13
[    2.923008] Bluetooth: L2CAP socket layer initialized
[    2.923013] Bluetooth: SCO (Voice Link) ver 0.6
[    2.923017] Bluetooth: SCO socket layer initialized
[    2.923102] Bluetooth: RFCOMM socket layer initialized
[    2.923111] Bluetooth: RFCOMM TTY layer initialized
[    2.923114] Bluetooth: RFCOMM ver 1.11
[    3.026783] Using IPI No-Shortcut mode
[    3.030639] registered taskstats version 1
[    3.034396]   Magic number: 5:33:38
[    3.037947] bdi 7:3: hash matches
[    3.040358] ata5.00: configured for UDMA/33
[    3.045083] rtc_cmos 00:05: setting system clock to 2009-08-02 18:01:55 UTC (1249236115)
[    3.048701] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    3.052327] EDD information not available.
[    3.132034] ata4: SATA link down (SStatus 0 SControl 300)
[    3.132039] ata3: SATA link down (SStatus 0 SControl 300)
[    3.140276] ata2: SATA link down (SStatus 0 SControl 300)
[    3.143815] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    3.276392] usb 1-1: configuration #1 chosen from 1 choice
[    3.279973] hub 1-1:1.0: USB hub found
[    3.283565] hub 1-1:1.0: 4 ports detected
[    3.536064] ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.556177] usb 1-1.1: new low speed USB device using ehci_hcd and address 3
[    3.578689] ata1.00: ATA-7: ST3160812AS, 3.ADH, max UDMA/133
[    3.582278] ata1.00: 312500000 sectors, multi 8: LBA48 NCQ (depth 31/32)
[    3.637017] ata1.00: configured for UDMA/133
[    3.656143] scsi 0:0:0:0: Direct-Access     ATA      ST3160812AS      3.AD PQ: 0 ANSI: 5
[    3.659909] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.663553] sd 0:0:0:0: [sda] 312500000 512-byte logical blocks: (160 GB/149 GiB)
[    3.667395] sd 0:0:0:0: [sda] Write Protect is off
[    3.671144] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.674987] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GSA-H21N B109 PQ: 0 ANSI: 5
[    3.675408]  sda:sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray
[    3.687925] Uniform CD-ROM driver Revision: 3.20
[    3.691817] usb 1-1.1: configuration #1 chosen from 1 choice
[    3.695683]  sda1 sda2 sda3
[    3.696762] sr 4:0:0:0: Attached scsi generic sg1 type 5
[    3.703919] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.707772] Freeing unused kernel memory: 536k freed
[    3.711987] Write protecting the kernel text: 4488k
[    3.715784] Write protecting the kernel read-only data: 1660k
[    3.772408] usb 1-1.2: new full speed USB device using ehci_hcd and address 4
[    3.869268] usb 1-1.2: configuration #1 chosen from 1 choice
[    3.873915] hub 1-1.2:1.0: USB hub found
[    3.877887] hub 1-1.2:1.0: 3 ports detected
[    3.963010] Platform driver 'floppy' needs updating - please use dev_pm_ops
[    3.967369] Floppy drive(s): fd0 is 1.44M
[    3.986224] FDC 0 is a post-1991 82077
[    4.022899] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[    4.027263] e100: Copyright(c) 1999-2006 Intel Corporation
[    4.031689] e100 0000:03:08.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    4.073008] e100 0000:03:08.0: PME# disabled
[    4.113125] usbcore: registered new interface driver hiddev
[    4.122373] input: Microsoft Corporation Microsoft ® Laser Mouse 6000 as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.1/1-1.1:1.0/input/input3
[    4.127394] generic-usb 0003:045E:00F0.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Corporation Microsoft ® Laser Mouse 6000] on usb-0000:00:1d.7-1.1/input0
[    4.152634] usb 1-1.2.1: new full speed USB device using ehci_hcd and address 5
[    4.170469] usbcore: registered new interface driver usbhid
[    4.175757] usbhid: v2.6:USB HID core driver
[    4.240176] e100: eth0: e100_probe: addr 0xdfcef000, irq 20, MAC addr 00:16:76:af:c1:00
[    4.261385] usb 1-1.2.1: configuration #1 chosen from 1 choice
[    4.268427] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.0/input/input4
[    4.274057] generic-usb 0003:413C:2010.0002: input,hidraw1: USB HID v1.10 Keyboard [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input0
[    4.281630] input: Dell Dell USB Keyboard as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1.2/1-1.2.1/1-1.2.1:1.1/input/input5
[    4.287584] generic-usb 0003:413C:2010.0003: input,hidraw2: USB HID v1.10 Device [Dell Dell USB Keyboard] on usb-0000:00:1d.7-1.2.1/input1
[    4.783880] EXT4-fs (sda3): INFO: recovery required on readonly filesystem
[    4.789052] EXT4-fs (sda3): write access will be enabled during recovery
[    4.802413] EXT4-fs (sda3): barriers enabled
[    4.835374] kjournald2 starting: pid 697, dev sda3:8, commit interval 5 seconds
[    4.840310] EXT4-fs (sda3): delayed allocation enabled
[    4.840325] EXT4-fs: file extents enabled
[    4.843403] EXT4-fs: mballoc enabled
[    4.843457] EXT4-fs (sda3): recovery complete
[    4.861498] EXT4-fs (sda3): mounted filesystem with ordered data mode
[    6.186225] udev: starting version 141
[    6.562656] input: PC Speaker as /devices/platform/pcspkr/input/input6
[    6.752965] Linux agpgart interface v0.103
[    6.874451] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[    7.062605] intel_rng: Firmware space is locked read-only. If you can't or
[    7.062609] intel_rng: don't want to disable this in firmware setup, and if
[    7.062611] intel_rng: you are certain that your system has a functional
[    7.062613] intel_rng: RNG, try using the 'no_fwh_detect' option.
[    7.240584] agpgart-intel 0000:00:00.0: Intel 915G Chipset
[    7.246575] agpgart-intel 0000:00:00.0: detected 7932K stolen memory
[    7.254456] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xc0000000
[    7.492061] cfg80211: Calling CRDA to update world regulatory domain
[    7.678480] iTCO_vendor_support: vendor-support=0
[    7.756149] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[    7.761705] iTCO_wdt: failed to reset NO_REBOOT flag, reboot disabled by hardware
[    7.767300] iTCO_wdt: No card detected
[    7.878007] cfg80211: World regulatory domain updated:
[    7.882909] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.887938] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.893002] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.898001] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.903352] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.908494] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.112813] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    8.189994] ath9k 0000:03:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.806711] Registered led device: ath9k-phy0::radio
[    9.811707] Registered led device: ath9k-phy0::assoc
[    9.816599] cfg80211: Calling CRDA for country: AT
[    9.816921] Registered led device: ath9k-phy0::tx
[    9.817220] Registered led device: ath9k-phy0::rx
[    9.817239] phy0: Atheros AR9160 MAC/BB Rev:0 AR5133 RF Rev:b0: mem=0xf8540000, irq=18
[    9.842995] cfg80211: Regulatory domain changed to country: AT
[    9.848125] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    9.853285] 	(2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.858361] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.862841] 	(5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm)
[    9.867622] 	(5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm)
[   10.033107] lp: driver loaded but no devices found
[   10.065798] netconsole: local port 6969
[   10.069779] netconsole: local IP 192.168.1.2
[   10.073488] netconsole: interface eth0
[   10.077326] netconsole: remote port 514
[   10.080975] netconsole: remote IP 192.168.1.1
[   10.084602] netconsole: remote ethernet address ba:98:76:54:32:10
[   10.088260] netconsole: device eth0 not up yet, forcing it
[   10.109782] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   12.816143] e100: eth0 NIC Link is Up 100 Mbps Full Duplex
[   12.819915] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   12.832307] console [netcon0] enabled
[   14.782317] netconsole: network logging started
[   15.129509] EXT4-fs (sda3): internal journal on sda3:8
[   15.768450] Bridge firewalling registered
[   15.782025] device eth0 entered promiscuous mode
[   15.788885] device wlan0 entered promiscuous mode
[   15.801718] phy0: device now idle
[   15.812502] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   15.833865] br0: port 1(eth0) entering learning state
[   24.780006] eth0: no IPv6 routers present
[   26.620017] br0: no IPv6 routers present
[   30.836022] br0: port 1(eth0) entering forwarding state
[   36.423635] ath9k: DMA failed to stop in 10 ms AR_CR=0x00000024 AR_DIAG_SW=0x40000020
[   36.433049] br0: port 2(wlan0) entering disabled state
[   36.442647] phy0: device no longer idle - in use
[   36.492230] br0: port 2(wlan0) entering learning state
[   36.595967] padlock: VIA PadLock not detected.
[   43.320293] phy0: device now idle
[   43.322897] br0: port 2(wlan0) entering disabled state
[   54.470358] phy0: device no longer idle - in use
[   54.520466] br0: port 2(wlan0) entering learning state
[   60.766054] phy0: Allocated STA 01:23:45:67:89:ba
[   60.769848] phy0: Inserted STA 01:23:45:67:89:ba
[   64.005793] phy0: Removed STA 01:23:45:67:89:ba
[   64.024036] phy0: Destroyed STA 01:23:45:67:89:ba
[   64.193150] phy0: Allocated STA 01:23:45:67:89:ba
[   64.197948] phy0: Inserted STA 01:23:45:67:89:ba
[   65.512013] wlan0: no IPv6 routers present
[   67.445932] phy0: Removed STA 01:23:45:67:89:ba
[   67.464042] phy0: Destroyed STA 01:23:45:67:89:ba
[   67.632564] phy0: Allocated STA 01:23:45:67:89:ba
[   67.637326] phy0: Inserted STA 01:23:45:67:89:ba
[   69.520022] br0: port 2(wlan0) entering forwarding state
[   70.037113] Open BA session requested for 01:23:45:67:89:ba tid 0
[   70.041083] activated addBA response timer on tid 0
[   70.041083] switched off addBA timer for tid 0 
[   70.051447] Aggregation is on for tid 0 
[   70.056035] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_agg_tx_operational
[   70.060859] local f705c1c0
[   70.065585] sta c253c000
[   70.070349] sta->ampdu_mlme.tid_tx c253c13c
[   70.075043] local->pending f705c6f0
[   74.066314] Rx A-MPDU request on tid 0 result 0
[   77.948605] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 39
[   77.952573] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   77.952573] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   77.952573] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[   77.952573] local f705c1c0
[   77.952573] sta c253c000
[   77.977032] sta->ampdu_mlme.tid_tx c253c13c
[   77.981757] local->pending f705c6f0
[   77.991002] Open BA session requested for 01:23:45:67:89:ba tid 0
[   77.994972] activated addBA response timer on tid 0
[   77.994972] switched off addBA timer for tid 0 
[   77.994972] Aggregation is on for tid 0 
[   77.994972] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_agg_tx_operational
[   77.994972] local f705c1c0
[   77.994972] sta c253c000
[   77.994972] sta->ampdu_mlme.tid_tx c253c13c
[   77.994972] local->pending f705c6f0
[   85.296022] rx session timer expired on tid 0
[   85.299906] Rx BA session stop requested for 01:23:45:67:89:ba tid 0
[   92.576765] phy0: Allocated STA 01:23:45:67:89:ba
[   92.580162] phy0: Destroyed STA 01:23:45:67:89:ba
[   93.409489] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.413458] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.413458] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.472884] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.477362] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.481909] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.486488] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.491051] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 38
[   93.495746] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.500505] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.505134] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.509569] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[   93.514149] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.518552] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[   93.523052] local f705c1c0
[   93.527546] sta c253c000
[   93.532069] sta->ampdu_mlme.tid_tx c253c13c
[   93.536554] local->pending f705c6f0
[   93.541039] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.545573] unexpected callback to A-MPDU stop
[   93.549923] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.554380] unexpected callback to A-MPDU stop
[   93.558812] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.563355] unexpected callback to A-MPDU stop
[   93.567818] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.572298] unexpected callback to A-MPDU stop
[   93.576815] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.581353] unexpected callback to A-MPDU stop
[   93.585947] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.590622] unexpected callback to A-MPDU stop
[   93.595246] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.599861] unexpected callback to A-MPDU stop
[   93.604342] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.608843] unexpected callback to A-MPDU stop
[   93.613286] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.617775] unexpected callback to A-MPDU stop
[   93.622267] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.626728] unexpected callback to A-MPDU stop
[   93.631097] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.635621] unexpected callback to A-MPDU stop
[   93.640163] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[   93.644787] unexpected callback to A-MPDU stop
[   93.650825] Open BA session requested for 01:23:45:67:89:ba tid 0
[   93.655376] activated addBA response timer on tid 0
[   93.659917] switched off addBA timer for tid 0 
[   93.664375] Aggregation is on for tid 0 
[   93.668711] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_agg_tx_operational
[   93.673296] local f705c1c0
[   93.677873] sta c253c000
[   93.682387] sta->ampdu_mlme.tid_tx c253c13c
[   93.686913] local->pending f705c6f0
[   93.698352] Rx A-MPDU request on tid 0 result 0
[  108.252712] __ratelimit: 3 callbacks suppressed
[  108.256680] delba from 01:23:45:67:89:ba (recipient) tid 0 reason code 39
[  108.256680] Tx BA session stop requested for 01:23:45:67:89:ba tid 0
[  108.256680] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[  108.256680] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[  108.256680] local f705c1c0
[  108.256680] sta c253c000
[  108.256680] sta->ampdu_mlme.tid_tx c253c13c
[  108.256680] local->pending f705c6f0
[  114.949322] Open BA session requested for 01:23:45:67:89:ba tid 0
[  114.953084] activated addBA response timer on tid 0
[  115.948040] addBA response timer expired on tid 0
[  115.951767] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[  115.955536] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[  115.959379] local f705c1c0
[  115.963115] sta c253c000
[  115.966794] sta->ampdu_mlme.tid_tx c253c13c
[  115.970475] local->pending f705c6f0
[  115.980804] Open BA session requested for 01:23:45:67:89:ba tid 0
[  115.980835] activated addBA response timer on tid 0
[  116.372018] rx session timer expired on tid 0
[  116.375654] Rx BA session stop requested for 01:23:45:67:89:ba tid 0
[  116.980017] addBA response timer expired on tid 0
[  116.983667] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[  116.987287] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[  116.991074] local f705c1c0
[  116.994636] sta c253c000
[  116.998224] sta->ampdu_mlme.tid_tx c253c13c
[  117.001736] local->pending f705c6f0
[  117.010846] Open BA session requested for 01:23:45:67:89:ba tid 0
[  117.010866] activated addBA response timer on tid 0
[  118.008013] addBA response timer expired on tid 0
[  118.011549] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[  118.015227] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[  118.019009] local f705c1c0
[  118.022679] sta c253c000
[  118.026299] sta->ampdu_mlme.tid_tx c253c13c
[  118.029948] local->pending f705c6f0
[  118.099980] Open BA session requested for 01:23:45:67:89:ba tid 0
[  118.103581] activated addBA response timer on tid 0
[  119.096031] addBA response timer expired on tid 0
[  119.099629] Stopping Tx BA session for 01:23:45:67:89:ba tid 0
[  119.103222] ieee80211_agg_splice_packets(f705c1c0, c253c000, 0) from ieee80211_stop_tx_ba_session
[  119.106930] local f705c1c0
[  119.110544] sta c253c000
[  119.114123] sta->ampdu_mlme.tid_tx c253c13c
[  119.117773] local->pending f705c6f0
[  119.129294] Open BA session requested for 01:23:45:67:89:ba tid 0
[  119.135618] Open BA session requested for 01:23:45:67:89:ba tid 0
[  119.139371] Open BA session requested for 01:23:45:67:89:ba tid 0
[  121.460911] Open BA session requested for 01:23:45:67:89:ba tid 0
[  121.470949] Open BA session requested for 01:23:45:67:89:ba tid 0
[  121.530515] Open BA session requested for 01:23:45:67:89:ba tid 0
[  121.550783] Open BA session requested for 01:23:45:67:89:ba tid 0
[  123.101047] Open BA session requested for 01:23:45:67:89:ba tid 0
[  123.628106] phy0: Allocated STA 01:23:45:67:89:ba
[  123.631504] phy0: Destroyed STA 01:23:45:67:89:ba
[  124.093655] Open BA session requested for 01:23:45:67:89:ba tid 0
[  125.059878] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.182777] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.198614] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.206834] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.211276] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.215474] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.268438] Open BA session requested for 01:23:45:67:89:ba tid 0
[  127.478466] Open BA session requested for 01:23:45:67:89:ba tid 0
[  128.173354] Open BA session requested for 01:23:45:67:89:ba tid 0
[  128.183333] Open BA session requested for 01:23:45:67:89:ba tid 0
[  128.243337] Open BA session requested for 01:23:45:67:89:ba tid 0
[  128.263334] Open BA session requested for 01:23:45:67:89:ba tid 0
[  128.555132] Open BA session requested for 01:23:45:67:89:ba tid 0
[  129.902104] Rx A-MPDU request on tid 0 result 0

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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
  2009-07-28 22:48     ` Pavel Roskin
                         ` (4 preceding siblings ...)
  2009-08-02 12:57       ` Jack Lau
@ 2009-08-05 19:23       ` Jack Lau
  5 siblings, 0 replies; 11+ messages in thread
From: Jack Lau @ 2009-08-05 19:23 UTC (permalink / raw)
  To: linux-wireless


Dear all
 
As a follow-up, I have tried the latest wireless-testing.git: v2.6.31-rc5-30113-gf1aa58f and the crash still persists.
 
I have also opened a new Bugzilla bug at http://bugzilla.kernel.org/show_bug.cgi?id=13922
 
Jack
_________________________________________________________________
Windows Live Messenger: Happy 10-Year Anniversary—get free winks and emoticons.
http://clk.atdmt.com/UKM/go/157562755/direct/01/

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

end of thread, other threads:[~2009-08-05 19:23 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-26 17:35 kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211] Jack Lau
2009-07-26 20:40 ` Pavel Roskin
2009-07-28 21:21   ` Jack Lau
2009-07-28 22:48     ` Pavel Roskin
2009-07-30 22:48       ` Jack Lau
2009-07-31 14:26       ` Jack Lau
     [not found]       ` <SNT102-W3823D5AFC70CB052684837BD110@phx.gbl>
2009-08-02  4:18         ` Pavel Roskin
2009-08-02 12:55       ` Jack Lau
2009-08-02 12:57       ` Jack Lau
2009-08-05 19:23       ` Jack Lau
2009-08-02 17:26   ` Jack Lau

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