Linux wireless drivers development
 help / color / mirror / Atom feed
* Re: Regression since 2.6.31-rc3-wl
From: Johannes Berg @ 2009-08-02  7:46 UTC (permalink / raw)
  To: Larry Finger; +Cc: wireless, John Linville
In-Reply-To: <4A74F1E3.8050502@lwfinger.net>

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

Hi Larry,

On Sat, 2009-08-01 at 20:54 -0500, Larry Finger wrote:
> When I tested 2.6.31-rc4-wl on my old i386 laptop that uses ifup to
> control the network, wireless did not work. The problem was bisected
> to the following:

Thanks for taking the time to bisect the problem, can you be more
specific as to how the problem manifests itself? Are you using ifup to
configure an ad-hoc network?

Thanks,
johannes


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

^ permalink raw reply

* Re: [PATCH] Fix SPARC64 unaligned access in zd_mac_rx
From: Johannes Berg @ 2009-08-02  7:50 UTC (permalink / raw)
  To: Patrick Simmons; +Cc: David Miller, mb, linux-wireless, dsd, kune
In-Reply-To: <4A74EEB2.6040400@netscape.net>

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

On Sat, 2009-08-01 at 19:41 -0600, Patrick Simmons wrote:

> --- a/drivers/net/wireless/zd1211rw/zd_mac.c
> +++ b/drivers/net/wireless/zd1211rw/zd_mac.c
> @@ -694,7 +694,7 @@
>                          && !mac->pass_ctrl)
>                  return 0;
> 
> -       fc = *(__le16 *)buffer;
> +       fc = get_unaligned(buffer);

Now the code is completely incorrect -- you're now loading the lower 16
bits of the 'buffer' _pointer_ into the variable as an unaligned load.

It really needs to be

fc = get_unaligned((__le16 *)buffer);

I think.

johannes

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

^ permalink raw reply

* Re: [PATCH v2] ath5k: fix missing output in monitor mode after ifconfig up
From: Joerg Albert @ 2009-08-02  7:50 UTC (permalink / raw)
  To: Bob Copeland
  Cc: John W. Linville, ath5k-devel, Luis R. Rodriguez,
	linux-wireless@vger.kernel.org
In-Reply-To: <20090802032019.GA25339@hash.localnet>

Let ath5k_chan_set() always call ath5k_reset().
This fixes the bug that we don't
get any packets in monitor mode after:

ifconfig wlan0 down
iwconfig wlan0 mode monitor channel 1
ifconfig wlan0 up

but they arrive after

iwconfig wlan0 channel 2

Signed-off-by: Joerg Albert <jal2@gmx.de>
---
  drivers/net/wireless/ath/ath5k/base.c |   35 ++++++++++++++------------------
  1 files changed, 15 insertions(+), 20 deletions(-)

diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c
index 3a1c156..5d50285 100644
--- a/drivers/net/wireless/ath/ath5k/base.c
+++ b/drivers/net/wireless/ath/ath5k/base.c
@@ -1071,10 +1071,9 @@ ath5k_setup_bands(struct ieee80211_hw *hw)
  }

  /*
- * Set/change channels.  If the channel is really being changed,
- * it's done by reseting the chip.  To accomplish this we must
- * first cleanup any pending DMA, then restart stuff after a la
- * ath5k_init.
+ * Set/change channels. We always reset the chip.
+ * To accomplish this we must first cleanup any pending DMA,
+ * then restart stuff after a la  ath5k_init.
   *
   * Called with sc->lock.
   */
@@ -1084,19 +1083,13 @@ ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan)
         ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "(%u MHz) -> (%u MHz)\n",
                 sc->curchan->center_freq, chan->center_freq);

-       if (chan->center_freq != sc->curchan->center_freq ||
-               chan->hw_value != sc->curchan->hw_value) {
-
-               /*
-                * To switch channels clear any pending DMA operations;
-                * wait long enough for the RX fifo to drain, reset the
-                * hardware at the new frequency, and then re-enable
-                * the relevant bits of the h/w.
-                */
-               return ath5k_reset(sc, chan);
-       }
-
-       return 0;
+       /*
+        * To switch channels clear any pending DMA operations;
+        * wait long enough for the RX fifo to drain, reset the
+        * hardware at the new frequency, and then re-enable
+        * the relevant bits of the h/w.
+        */
+       return ath5k_reset(sc, chan);
  }

  static void
@@ -2811,9 +2804,11 @@ ath5k_config(struct ieee80211_hw *hw, u32 changed)

         mutex_lock(&sc->lock);

-       ret = ath5k_chan_set(sc, conf->channel);
-       if (ret < 0)
-               goto unlock;
+       if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
+               ret = ath5k_chan_set(sc, conf->channel);
+               if (ret < 0)
+                       goto unlock;
+       }

         if ((changed & IEEE80211_CONF_CHANGE_POWER) &&
         (sc->power_level != conf->power_level)) {
-- 
1.6.0.4


^ permalink raw reply related

* Re: [PATCH 1/2] input: Add KEY_RFKILL_ALL
From: Johannes Berg @ 2009-08-02  7:55 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: Marcel Holtmann, linux-input, linux-wireless, dmitry.torokhov
In-Reply-To: <20090801222537.GA24262@srcf.ucam.org>

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

On Sat, 2009-08-01 at 23:25 +0100, Matthew Garrett wrote:
> On Sat, Aug 01, 2009 at 03:11:25PM -0700, Marcel Holtmann wrote:
> 
> > and that is what it should NOT imply. The policy if it applies to all
> > internal devices, all devices in general or just WiFi or Bluetooth for
> > example is up to the user.
> > 
> > We are NOT going to have any kind of RFKILL policy in the kernel in the
> > future. We will remove rfkill-input once we have a proper userspace
> > solution (aka rfkilld or similar).
> 
> We seem to be talking at cross purposes here. My objection to the name 
> KEY_RFKILL is that it gives no indication what it's meant to be or why 
> it's different to KEY_WLAN. KEY_RFKILL implies that it's the only input 
> component that an rfkill policy agent needs to listen to, which isn't 
> the case.

Heh, yeah, I can kinda agree with both of you.

We really should've named KEY_WLAN KEY_RFKILL_WLAN instead, etc, and
then both versions would be less ambiguous.

AFAIU, Marcel's argument is that policy might not be "ALL", but cycling
through technology combinations, and your (Matthew's) argument is that
just naming it without the _ALL would imply that KEY_WLAN could be
related to something other than rfkill.

Can we name it KEY_RFKILL, and add a comment to the header file about
what it is? I.e. a "technology-independent RF toggle button" or so?

johannes

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

^ permalink raw reply

* Re: [PATCH] Fix SPARC64 unaligned access in zd_mac_rx
From: Patrick Simmons @ 2009-08-02  8:24 UTC (permalink / raw)
  To: Johannes Berg; +Cc: David Miller, mb, linux-wireless, dsd, kune
In-Reply-To: <1249199441.2007.7.camel@johannes.local>

Johannes Berg wrote:
> Now the code is completely incorrect -- you're now loading the lower 16
> bits of the 'buffer' _pointer_ into the variable as an unaligned load.
>
> It really needs to be
>
> fc = get_unaligned((__le16 *)buffer);
>
> I think.
>
> johannes
>   

It does look wrong, now that I look at it further, but I'm pretty sure 
that what was happening was that only the lower 8 bits of the 
dereferenced value were being accessed.  What's odd is that it works on 
my machine, though.  Whatever.  Your version is clearer, in any case.

What follows is hopefully the last version of this patch.

Signed-off-by: Patrick Simmons <linuxrocks123@netscape.net>

--- a/drivers/net/wireless/zd1211rw/zd_mac.c
+++ b/drivers/net/wireless/zd1211rw/zd_mac.c
@@ -694,7 +694,7 @@
                        && !mac->pass_ctrl)
                return 0;
 
-       fc = *(__le16 *)buffer;
+       fc = get_unaligned((__le16*)buffer);
        need_padding = ieee80211_is_data_qos(fc) ^ ieee80211_has_a4(fc);
 
        skb = dev_alloc_skb(length + (need_padding ? 2 : 0));

--Patrick


^ permalink raw reply

* Re: [DISCUSS] Implement non standard channel widths
From: Johannes Berg @ 2009-08-02  8:31 UTC (permalink / raw)
  To: Pat Erley; +Cc: linux-wireless, sidhayn
In-Reply-To: <4A74D5F5.8090409@erley.org>

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

Hi Pat,

On Sat, 2009-08-01 at 19:55 -0400, Pat Erley wrote:
> I've been kicking around the idea of attacking the addition of the
> ability to set non 20MHz channels to the mac80211 stack.  I've come up
> with 2 potentially un-intrusive ways to do this, but before starting,
> I'd like to get a touch of discussion on which way would be
> preferred/acceptable upstream (if any are).
> 
> 
> 1. Extend nl80211_channel_type to have values for the other channel
> bandwidths we want to support.  
> 
> Maybe something like NL80211_CHAN_NO_HT_5 for 5MHz, etc.
> 
> This is the option I like least and have put the least thought into.

Personally, it's the option I like most, combined with registering, for
each channel, which channel widths are supported on it.

> The upside to this is, it'd be the least intrusive into the actual
> code, with the downside being, that enum is currently really more
> aptly named nl80211_ht_channel_type, and as such, pretty much
> everywhere it's used currently would have to test to see if ht is
> supported, and if it is, if the current ht mode is supported, but
> also, if it's not NO_HT, if it's a non-standard channel width.

You're right that it currently is mostly about HT, but I don't see why
all this testing should be necessary. I'd just use the managed mode
interface flag IEEE80211_STA_DISABLE_11N.

> With this route, setting the channel width would be done something like:
> iw dev <devname> set width <width in MHz>
>            or maybe 
> iw dev <devname> set freq  <freq in MHz>[@<width in MHZ>]

I don't like the technicalities of this, I think that the channel width
should be set with the "connect" call. Of course, it has to be supported
here as well, for monitor purposes, but shouldn't be required here.

> 
> -- Problems common to both --
> 
> In the beginning, I think that leaving the supported channels static
> to whatever operating band the card is in, is fine.  Yes, going to
> 10MHz channels would double the number of available channels in a
> band, but with the absolute lack of hardware(AP/Router) that supports
> it, having a pre-set double sized channel list seems pointless.  I
> suspect most people who would use this would want to set center
> frequency anyways, rather than specific channel, but that's another
> can of worms.  

Also keep in mind that there _are_ standard uses for smaller bandwidth
channels, Jouni has helpfully collected them on
http://wireless.kernel.org/en/developers/Documentation/ChannelList

> Another problem, odd channel width channels.  With a 5MHz channel,
> would you do center freq +/-2.5MHz, or center freq +2/-3MHz/etc?  Or
> maybe limit the problem to only even channel widths?

I don't think even channel widths can work, since we really do need 5
MHz :) But it shouldn't be that much of a problem, we already use KHz in
a number of places.

> Next problem, background scanning.  I think that disabling background
> scanning when not operating in a standard frequency would be a 'good
> thing', as all of the applications I can think of that would use this
> are cases where scanning isn't really necessary.  I could go either
> way on this topic though.

We don't have any background scanning.

> Final problem, HT channels.  I think that channel bonding should be
> mutually exclusive with non 20MHz channels.  In theory, bonded 10MHz
> channels could provide better throughput than a single 20MHz channel,
> due to the ability of a 10MHz channel to get above the noise floor at
> a distance, but again, this seems like the amount of work to implement
> would grossly increase the complexity of the problem.  Maybe this is
> something that should be left up to drivers as to if they can support
> it.  

I can agree with this -- I think "HT" should be left reserved for real
HT, that is 20 or 40 MHz 'channels', where 40 really is bonding as you
say.

So let me outline how I'd handling this, by extending the flags instead
of using a bandwidth number.

The first thing I'd do is start with some cleanup -- remove the
'max_bandwidth' member from struct ieee80211_channel, it's used only
write-only in a few places afaict. In fact, I'm happy to do that
unrelated to this work.

The second thing I'd do is refactor the use of IEEE80211_CHAN_NO_HT40*,
remove that from the flags field (maybe making the flags field a u16)
and introducing a new "types" field, which would take a bitmask of
BIT(NL80211_CHAN_*) values. This would have to be set to default to
	BIT(NL80211_CHAN_NO_HT)
or, if HT is supported,
	BIT(NO_HT) | BIT(HT20) | BIT(HT40+) | BIT(HT40-)
and would also need an orig_types field, and then regulatory code
removes the bits from "types" as appropriate, leaving them in
"orig_types" for future regulatory changes. Just like "flags" works.

Note that the default value for types should be applied if, and only if
(!), the types field is set to 0 (i.e. unset) by the driver. IOW,
cfg80211's channel checking loop in wiphy_register() would get this
code:
	if (!sband->channels[i].types) {
		sband->channels[i].types = BIT(NL80211_..._NO_HT);
		if (sband->ht_cap.ht_supported)
			sband->channels[i].types |= ...;
	}


Third, the channel type needs to be a bit more pervasive. As a start,
I'd start with adding it to connect(), ibss_join() (maybe) and
set_channel() commands. This mostly involves cfg80211 and mac80211, but
not all the full-mac drivers since they don't support anything other
than NO_HT yet (which should probably be renamed to 20MHZ).

This would already have one good thing: it would give us the ability to
request, from userspace, to disable HT40 and/or HT40, by passing:
 - no flags: automatic, use all
 - HT20: no HT40 permitted (don't think we can _force_ ht20?)
 - NO_HT: no HT permitted

This is a little strange though, but at least NO_HT would be easy by
setting IEEE80211_STA_DISABLE_11N, maybe reject the others for a start.

This is validated against the channel you're using, of course, in the
cfg80211 SME etc.

One other thing that would be necessary is adding channel type to scan
results, I guess?


Then, finally, I'd add a new channel type, NL80211_CHANNEL_TYPE_5MHZ.
Document it to imply that HT is being turned off, of course. Now this
bit should be really simple.


I don't think the 'specify bandwidth' instead of using flags really
gains you much in this process?

Mind you I'm not nailing down that process now, it's just how I'm
currently thinking about it.

johannes

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

^ permalink raw reply

* Re: [PATCH] Fix SPARC64 unaligned access in zd_mac_rx
From: Johannes Berg @ 2009-08-02  8:34 UTC (permalink / raw)
  To: Patrick Simmons; +Cc: David Miller, mb, linux-wireless, dsd, kune
In-Reply-To: <4A754D31.7010709@netscape.net>

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

On Sun, 2009-08-02 at 02:24 -0600, Patrick Simmons wrote:

> It does look wrong, now that I look at it further, but I'm pretty sure 
> that what was happening was that only the lower 8 bits of the 
> dereferenced value were being accessed. 

Yes, you're right, because buffer is a "u8 *", I initially thought that
it didn't take a pointer, but that wouldn't work, of course.

>  What's odd is that it works on 
> my machine, though.  Whatever.  Your version is clearer, in any case.
> 
> What follows is hopefully the last version of this patch.

Looks good, but I think you should resubmit with
 * a changed subject (e.g. "zd1211rw: fix unaligned access in zd_mac_rx")
 * a standalone patch description so John doesn't have to pick it out of
   your first patch etc.


Thanks!
johannes

> Signed-off-by: Patrick Simmons <linuxrocks123@netscape.net>
> 
> --- a/drivers/net/wireless/zd1211rw/zd_mac.c
> +++ b/drivers/net/wireless/zd1211rw/zd_mac.c
> @@ -694,7 +694,7 @@
>                         && !mac->pass_ctrl)
>                 return 0;
>  
> -       fc = *(__le16 *)buffer;
> +       fc = get_unaligned((__le16*)buffer);
>         need_padding = ieee80211_is_data_qos(fc) ^ ieee80211_has_a4(fc);
>  
>         skb = dev_alloc_skb(length + (need_padding ? 2 : 0));
> 
> --Patrick
> 
> 


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

^ permalink raw reply

* Re: [PATCH] Fix SPARC64 unaligned access in zd_mac_rx
From: Patrick Simmons @ 2009-08-02  8:45 UTC (permalink / raw)
  To: Johannes Berg; +Cc: David Miller, mb, linux-wireless, dsd, kune
In-Reply-To: <1249202040.2007.48.camel@johannes.local>

Johannes Berg wrote:
> On Sun, 2009-08-02 at 02:24 -0600, Patrick Simmons wrote:
>
>   
>> It does look wrong, now that I look at it further, but I'm pretty sure 
>> that what was happening was that only the lower 8 bits of the 
>> dereferenced value were being accessed. 
>>     
>
> Yes, you're right, because buffer is a "u8 *", I initially thought that
> it didn't take a pointer, but that wouldn't work, of course.
>
>   
>>  What's odd is that it works on 
>> my machine, though.  Whatever.  Your version is clearer, in any case.
>>
>> What follows is hopefully the last version of this patch.
>>     
>
> Looks good, but I think you should resubmit with
>  * a changed subject (e.g. "zd1211rw: fix unaligned access in zd_mac_rx")
>  * a standalone patch description so John doesn't have to pick it out of
>    your first patch etc.
>
>
> Thanks!
> johannes
>
>   
Sure thing; here it comes.  Thanks for the review.

--Patrick

^ permalink raw reply

* [PATCH] zd1211rw: fix unaligned access in zd_mac_rx
From: Patrick Simmons @ 2009-08-02  8:46 UTC (permalink / raw)
  To: linux-wireless
  Cc: Johannes Berg, David Miller, mb, dsd, kune, Patrick Simmons
In-Reply-To: <1249199441.2007.7.camel@johannes.local>

Fix an unaligned memory access in the zd_mac_rx function of zd1211rw 
that causes problems on SPARC64.

Signed-off-by: Patrick Simmons <linuxrocks123@netscape.net>

--- a/drivers/net/wireless/zd1211rw/zd_mac.c
+++ b/drivers/net/wireless/zd1211rw/zd_mac.c
@@ -694,7 +694,7 @@
                        && !mac->pass_ctrl)
                return 0;

-       fc = *(__le16 *)buffer;
+       fc = get_unaligned((__le16*)buffer);
        need_padding = ieee80211_is_data_qos(fc) ^ ieee80211_has_a4(fc);

        skb = dev_alloc_skb(length + (need_padding ? 2 : 0));

^ permalink raw reply

* Re: [wireless] rt2870sta BUGs on shutdown, 2.6.30.2->git.today+git.wireless.today
From: Peter Teoh @ 2009-08-02  9:10 UTC (permalink / raw)
  To: Luis Correia
  Cc: Mike Galbraith, linux-wireless, LKML, John W. Linville,
	Johannes Berg
In-Reply-To: <efe7343f0907300306o44d0e718p2880b7406a38fc6a@mail.gmail.com>

On 7/30/09, Luis Correia <luis.f.correia@gmail.com> wrote:
> Hi Mike,
>
> On Thu, Jul 30, 2009 at 10:55, Johannes Berg<johannes@sipsolutions.net> wrote:
> > On Thu, 2009-07-30 at 11:44 +0200, Mike Galbraith wrote:
> >> On Thu, 2009-07-30 at 11:29 +0200, Johannes Berg wrote:
> >> > On Thu, 2009-07-30 at 11:22 +0200, Mike Galbraith wrote:
> >> >
> >> > > drivers/staging/rt2870/../rt2860/sta_ioctl.c
> >> >
> >> > Sorry, but that '/staging/' thing in there means we cannot support this.
> >> > If you must, take your query to the staging list,
> >> > devel@driverdev.osuosl.org (according to MAINTAINERS).
> >>
> >> Forwarded, thanks.
> >>
> >> ....hm.  Does "If you must" mean reports aren't welcome?
> >
> > To be honest, I don't know. I'd rather see people use the rt2x00 code
> > instead of spending time cleaning up that mess (the code you've pasted
> > was pretty bad!). But you may or may not find somebody who cares about
> > that, just rather unlikely on this list.
>
> What is appreciated is people with time to compare both code paths,
> and report some inconsistancies, specially about card initialization
> and general handling.
>
> To be hones, we, the rt2x00 team, find Ralink's code to be very
> difficult to follow, and combersome most of the times.
>

This is very true, I had too many questions about the different
symbols, and task vs pid variations  etc etc....and so many macro
usage :-)....
But thank you for all the efforts of debugging!!!!





-- 
Regards,
Peter Teoh

^ permalink raw reply

* Unsupported PHY on B43
From: Luis Correia @ 2009-08-02  9:14 UTC (permalink / raw)
  To: Michael Buesch, linux-wireless

Hi all,

first of all, if linux-wireless isn't the correct list for this, then
please point me into the right direction.

I got a new laptop from my employer which includes a b43 wireless
card, that isn't working with current git kernel (actually it is the
rt2x00 branch from Ivo).

Here are the messages I get from 'dmesg'.

b43-phy1: Broadcom 4322 WLAN found (core revision 16)
b43-phy1 ERROR: FOUND UNSUPPORTED PHY (Analog 8, Type 4, Revision 4)
b43: probe of ssb0:0 failed with error -95
Broadcom 43xx driver loaded [ Features: PML, Firmware-ID: FW13 ]

I'm available to test drivers, patches, git kernels, the whole lot.

(I'm going to use this laptop to work on rt2x00, although the
available antennas aren't quite compatible, as they are for 3G module)

Luis Correia
rt2x00 project admin

^ permalink raw reply

* Re: Unsupported PHY on B43
From: Johannes Berg @ 2009-08-02  9:18 UTC (permalink / raw)
  To: Luis Correia; +Cc: Michael Buesch, linux-wireless
In-Reply-To: <efe7343f0908020214m6d8b2518n51d4264943ce273a@mail.gmail.com>

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

On Sun, 2009-08-02 at 10:14 +0100, Luis Correia wrote:

> b43-phy1: Broadcom 4322 WLAN found (core revision 16)
> b43-phy1 ERROR: FOUND UNSUPPORTED PHY (Analog 8, Type 4, Revision 4)
> b43: probe of ssb0:0 failed with error -95
> Broadcom 43xx driver loaded [ Features: PML, Firmware-ID: FW13 ]

This is an 11n phy.

> I'm available to test drivers, patches, git kernels, the whole lot.

There's nothing available beyond what you have.

johannes

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

^ permalink raw reply

* Re: Unsupported PHY on B43
From: Luis Correia @ 2009-08-02  9:26 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Michael Buesch, linux-wireless
In-Reply-To: <1249204732.2007.49.camel@johannes.local>

Hi Johannes

On Sun, Aug 2, 2009 at 10:18, Johannes Berg<johannes@sipsolutions.net> wrote:
> On Sun, 2009-08-02 at 10:14 +0100, Luis Correia wrote:
>
>> b43-phy1: Broadcom 4322 WLAN found (core revision 16)
>> b43-phy1 ERROR: FOUND UNSUPPORTED PHY (Analog 8, Type 4, Revision 4)
>> b43: probe of ssb0:0 failed with error -95
>> Broadcom 43xx driver loaded [ Features: PML, Firmware-ID: FW13 ]
>
> This is an 11n phy.

Great, an 11n device with only two antennas (they are usually three).

>> I'm available to test drivers, patches, git kernels, the whole lot.
>
> There's nothing available beyond what you have.

Bummer, I guess I'll have to wait then.

>
> johannes
>

Thanks for the info.

Luis Correia
rt2x00 project admin

^ permalink raw reply

* Re: Unsupported PHY on B43
From: Johannes Berg @ 2009-08-02  9:33 UTC (permalink / raw)
  To: Luis Correia; +Cc: Michael Buesch, linux-wireless
In-Reply-To: <efe7343f0908020226n4b693defv38546a6f8aa1cfd9@mail.gmail.com>

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

On Sun, 2009-08-02 at 10:26 +0100, Luis Correia wrote:

> > This is an 11n phy.
> 
> Great, an 11n device with only two antennas (they are usually three).

Oh, it depends on the configuration -- maybe they used a cheaper device
with fewer chains.

> >> I'm available to test drivers, patches, git kernels, the whole lot.
> >
> > There's nothing available beyond what you have.
> 
> Bummer, I guess I'll have to wait then.

Don't hold your breath -- nobody's working on it. I also really want it
working, but since nobody seems even interested in writing the driver,
we've halted the reverse engineering effort.

johannes

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

^ permalink raw reply

* Re: Unsupported PHY on B43
From: Luis Correia @ 2009-08-02  9:37 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Michael Buesch, linux-wireless
In-Reply-To: <1249205597.2007.50.camel@johannes.local>

On Sun, Aug 2, 2009 at 10:33, Johannes Berg<johannes@sipsolutions.net> wrote:
> On Sun, 2009-08-02 at 10:26 +0100, Luis Correia wrote:
>
>> > This is an 11n phy.
>>
>> Great, an 11n device with only two antennas (they are usually three).
>
> Oh, it depends on the configuration -- maybe they used a cheaper device
> with fewer chains.

yes, it even is a half-height minipci-express card, the first one I've
seen so far.

>> >> I'm available to test drivers, patches, git kernels, the whole lot.
>> >
>> > There's nothing available beyond what you have.
>>
>> Bummer, I guess I'll have to wait then.
>
> Don't hold your breath -- nobody's working on it. I also really want it
> working, but since nobody seems even interested in writing the driver,
> we've halted the reverse engineering effort.

11n is doomed on Linux :(

>
> johannes
>

Luis Correia

^ permalink raw reply

* Re: [PATCH 1/1] rfkill: add the GPS radio type
From: Tomas Winkler @ 2009-08-02 10:43 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Marcel Holtmann, linville, linux-wireless
In-Reply-To: <1249199143.2007.2.camel@johannes.local>

On Sun, Aug 2, 2009 at 10:45 AM, Johannes Berg<johannes@sipsolutions.net> wrote:
> On Sun, 2009-08-02 at 08:49 +0300, Tomas Winkler wrote:
>
>> > we don't have a GPS subsystem, but even without it, I think this is a
>> > good thing to have.
>>
>> GPS devices are usually serial devices.
>
> Yeah, this is interesting -- do we want something like /dev/urfkill
> (cf. /dev/uinput), so that gpsd or whatever is controlling the GPS (same
> applies for 3G) can be controlled with rfkill?

Sorry don't know much about /dev/uinput what is difference between
/dev/urfkill and /dev/rfkill, can you be, please more verbose
Thanks
Tomas

^ permalink raw reply

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
From: Jack Lau @ 2009-08-02 12:55 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless
In-Reply-To: <1248821338.5206.12.camel@mj>



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

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
From: Jack Lau @ 2009-08-02 12:57 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless
In-Reply-To: <1248821338.5206.12.camel@mj>

[-- 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

* ar9170usb crashes during iwconfig for ad-hoc mode
From: Joerg Albert @ 2009-08-02 13:23 UTC (permalink / raw)
  To: linux-wireless@vger.kernel.org

After
	ifconfig wlan1 down
	iwconfig wlan1 mode managed essid huhu
	ifconfig wlan1 up
	ifconfig wlan1 down
	iwconfig wlan1 mode ad-hoc essid huhu_a channel 1

ar9170 crashes (see below for the syslog).

It seems like ar9170_op_bss_info_changed() is called with ar->vif == NULL
(i.e. ((struct ar9170 *)hw->priv)->vif == NULL), while parameter vif != NULL and
changed & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED) is non-zero.
ar->vif is passed unchecked to ieee80211_beacon_get().

Is this something ar9170 is supposed to handle or a bug in cfg80211/mac80211?
Is a driver's *bss_info_changed proc called while the netdev is closed?

Regards,
Joerg

Aug  2 10:15:42 nc10 kernel: [ 7174.202095] BUG: unable to handle kernel NULL pointer dereference at (null)
Aug  2 10:15:42 nc10 kernel: [ 7174.202118] IP: [<f8ecf27f>] ieee80211_beacon_get+0x1f/0x2a0 [mac80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.202183] *pde = 00000000
Aug  2 10:15:42 nc10 kernel: [ 7174.202194] Oops: 0000 [#1] SMP
Aug  2 10:15:42 nc10 kernel: [ 7174.202206] last sysfs file: /sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:23/PNP0C09:00/PNP0C0A:00/power_supply/BAT1/charge_full
Aug  2 10:15:42 nc10 kernel: [ 7174.202573]
Aug  2 10:15:42 nc10 kernel: [ 7174.202586] Pid: 23223, comm: iwconfig Not tainted (2.6.30 #1) NC10

Aug  2 10:15:42 nc10 kernel: [ 7174.202599] EIP: 0060:[<f8ecf27f>] EFLAGS: 00010297 CPU: 1
Aug  2 10:15:42 nc10 kernel: [ 7174.202648] EIP is at ieee80211_beacon_get+0x1f/0x2a0 [mac80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.202660] EAX: 00000000 EBX: f6d461c0 ECX: f66807cc EDX: fffffbb8
Aug  2 10:15:42 nc10 kernel: [ 7174.202672] ESI: f66807cc EDI: 00000200 EBP: f5fb1cf4 ESP: f5fb1cc0
Aug  2 10:15:42 nc10 kernel: [ 7174.202683]  DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0068
Aug  2 10:15:42 nc10 kernel: [ 7174.202696] Process iwconfig (pid: 23223, ti=f5fb0000 task=d35918e0 task.ti=f5fb0000)
Aug  2 10:15:42 nc10 kernel: [ 7174.202706] Stack:
Aug  2 10:15:42 nc10 kernel: [ 7174.202713]  c04e53b8 00000000 c064aac0 f7424018 f77c9000 f7424018 f5fb1f00 fffffbb8
Aug  2 10:15:42 nc10 kernel: [ 7174.202739]  00000000 00000246 f6d46a20 f66807cc 00000200 f5fb1d2c fa03dde6 c01fcde6
Aug  2 10:15:42 nc10 kernel: [ 7174.202767]  00000178 00000174 f6d46a20 f5fb1d14 f5fb1d58 c0145ecc 00000000 f5fb1d2c
Aug  2 10:15:42 nc10 kernel: [ 7174.202797] Call Trace:
Aug  2 10:15:42 nc10 kernel: [ 7174.202807]  [<fa03dde6>] ? ar9170_update_beacon+0x16/0x430 [ar9170usb]
Aug  2 10:15:42 nc10 kernel: [ 7174.202836]  [<c01fcde6>] ? proc_alloc_inode+0x16/0x70
Aug  2 10:15:42 nc10 kernel: [ 7174.202857]  [<c0145ecc>] ? __cancel_work_timer+0x3c/0x160
Aug  2 10:15:42 nc10 kernel: [ 7174.202876]  [<fa03b205>] ? ar9170_op_bss_info_changed+0xb5/0x120 [ar9170usb]
Aug  2 10:15:42 nc10 kernel: [ 7174.202901]  [<fa03b150>] ? ar9170_op_bss_info_changed+0x0/0x120 [ar9170usb]
Aug  2 10:15:42 nc10 kernel: [ 7174.202926]  [<f8ebcf38>] ? ieee80211_bss_info_change_notify+0xf8/0x1c0 [mac80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.202973]  [<f8ec1a99>] ? ieee80211_ibss_leave+0x79/0xc0 [mac80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203020]  [<f8ec9f7e>] ? ieee80211_leave_ibss+0xe/0x10 [mac80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203070]  [<f8c5a312>] ? __cfg80211_leave_ibss+0x52/0x80 [cfg80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203116]  [<f8c5a9d6>] ? cfg80211_ibss_wext_siwessid+0x76/0x120 [cfg80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203158]  [<f8c5cdb7>] ? cfg80211_wext_siwessid+0x57/0x70 [cfg80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203198]  [<c04b6ad9>] ? ioctl_standard_call+0x199/0x3a0
Aug  2 10:15:42 nc10 kernel: [ 7174.203218]  [<c03fe66d>] ? __dev_get_by_name+0x7d/0xa0
Aug  2 10:15:42 nc10 kernel: [ 7174.203237]  [<c04b65ef>] ? wext_handle_ioctl+0x14f/0x220
Aug  2 10:15:42 nc10 kernel: [ 7174.203253]  [<f8c5cd60>] ? cfg80211_wext_siwessid+0x0/0x70 [cfg80211]
Aug  2 10:15:42 nc10 kernel: [ 7174.203294]  [<c03ff1d0>] ? dev_ioctl+0x460/0x540
Aug  2 10:15:42 nc10 kernel: [ 7174.203312]  [<c03ee150>] ? sock_ioctl+0x0/0x260
Aug  2 10:15:42 nc10 kernel: [ 7174.203328]  [<c03ee23d>] ? sock_ioctl+0xed/0x260
Aug  2 10:15:42 nc10 kernel: [ 7174.203344]  [<c03ee150>] ? sock_ioctl+0x0/0x260
Aug  2 10:15:42 nc10 kernel: [ 7174.203358]  [<c01cc048>] ? vfs_ioctl+0x28/0x80
Aug  2 10:15:42 nc10 kernel: [ 7174.203376]  [<c01cc112>] ? do_vfs_ioctl+0x72/0x580
Aug  2 10:15:42 nc10 kernel: [ 7174.203392]  [<c01a7596>] ? unmap_region+0x106/0x130
Aug  2 10:15:42 nc10 kernel: [ 7174.203408]  [<c01a7606>] ? remove_vma+0x46/0x60
Aug  2 10:15:42 nc10 kernel: [ 7174.203423]  [<c01a7606>] ? remove_vma+0x46/0x60
Aug  2 10:15:42 nc10 kernel: [ 7174.203437]  [<c01a8483>] ? do_munmap+0x223/0x280
Aug  2 10:15:42 nc10 kernel: [ 7174.203453]  [<c01cc683>] ? sys_ioctl+0x63/0x70
Aug  2 10:15:42 nc10 kernel: [ 7174.203469]  [<c0102fc4>] ? sysenter_do_call+0x12/0x22
Aug  2 10:15:42 nc10 kernel: [ 7174.203487] Code: 7d e4 c6 45 eb fe e9 51 ff ff ff 90 55 89 e5 57 56 53 89 c3 83 ec 28 89 55 d0 8b 40 1c 81 ea 48 04 00 00 8b 00 89 55 e8 89 45 ec 
<8b> 82 48 04 00 00 83 f8 03 0f 84 2a 01 00 00 83 f8 01 0f 84 49
Aug  2 10:15:42 nc10 kernel: [ 7174.203631] EIP: [<f8ecf27f>] ieee80211_beacon_get+0x1f/0x2a0 [mac80211] SS:ESP 0068:f5fb1cc0
Aug  2 10:15:42 nc10 kernel: [ 7174.203687] CR2: 0000000000000000
Aug  2 10:15:42 nc10 kernel: [ 7174.203699] ---[ end trace 0732cb3688c4eefe ]---

^ permalink raw reply

* Re: Unsupported PHY on B43
From: Larry Finger @ 2009-08-02 14:20 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Luis Correia, Michael Buesch, linux-wireless
In-Reply-To: <1249205597.2007.50.camel@johannes.local>

Johannes Berg wrote:
> 
> Don't hold your breath -- nobody's working on it. I also really want it
> working, but since nobody seems even interested in writing the driver,
> we've halted the reverse engineering effort.

I have a vested interest in getting the LP PHY (type 5) code done as I
have one of those devices. As a result, I'm deliberately not working
on the RE for the 11n PHYs until the LP PHY code is working. If that
was not clear enough, then let me restate it: "If you want code for
Broadcom devices with ID 4322 and higher, you are going to have to do
the LP code first."

Larry


^ permalink raw reply

* Re: Regression since 2.6.31-rc3-wl
From: Larry Finger @ 2009-08-02 15:33 UTC (permalink / raw)
  To: Johannes Berg; +Cc: wireless, John Linville
In-Reply-To: <1249199214.2007.3.camel@johannes.local>

Johannes Berg wrote:
> Hi Larry,
> 
> On Sat, 2009-08-01 at 20:54 -0500, Larry Finger wrote:
>> When I tested 2.6.31-rc4-wl on my old i386 laptop that uses ifup to
>> control the network, wireless did not work. The problem was bisected
>> to the following:
> 
> Thanks for taking the time to bisect the problem, can you be more
> specific as to how the problem manifests itself? Are you using ifup to
> configure an ad-hoc network?

No, the network is in managed made using WPA2 encryption. I'm using
ifup because that laptop is only used for testing, is quite slow, and
does not run X.

When I tried to test the latest version on my main laptop using ifup
instead of the usual NM setup, I found that I had to modify my
configuration file /etc/sysconfig/network/ifcfg-eth1. My udev rules
explicitly rename my Broadcom devices to eth1. When I transferred the
revised file to the other laptop, it also started working. With
testing, it turns out the critical addition was "WIRELESS='yes'"

I do not understand why a change in configuration was necessary at
that point; however, the "regression" is only that a more complete
configuration file is required. Please disregard this thread.

Larry

^ permalink raw reply

* Re: [ath5k-devel] [PATCH 4/4] ath5k: Use SWI to trigger calibration
From: Bob Copeland @ 2009-08-02 16:14 UTC (permalink / raw)
  To: Nick Kossifidis
  Cc: Luis R. Rodriguez, ath5k-devel, linux-wireless, linville,
	jirislaby, nbd
In-Reply-To: <40f31dec0908010631x84ddfcap99a871f3513cf22b@mail.gmail.com>

On Sat, Aug 01, 2009 at 04:31:27PM +0300, Nick Kossifidis wrote:
> I thought about calling ath5k_hw_stop_rx_pcu but i don't think it's
> necessary i mean it won't receive anyway, why mess with pcu ?

Yeah, agreed, we can just ignore rx.

-- 
Bob Copeland %% www.bobcopeland.com


^ permalink raw reply

* Re: [PATCH 1/1] rfkill: add the GPS radio type
From: Marcel Holtmann @ 2009-08-02 16:18 UTC (permalink / raw)
  To: Tomas Winkler; +Cc: Johannes Berg, linville, linux-wireless
In-Reply-To: <1ba2fa240908020343j7308e215vc1914244c8cd191a@mail.gmail.com>

Hi Tomas,

> >> > we don't have a GPS subsystem, but even without it, I think this is a
> >> > good thing to have.
> >>
> >> GPS devices are usually serial devices.
> >
> > Yeah, this is interesting -- do we want something like /dev/urfkill
> > (cf. /dev/uinput), so that gpsd or whatever is controlling the GPS (same
> > applies for 3G) can be controlled with rfkill?
> 
> Sorry don't know much about /dev/uinput what is difference between
> /dev/urfkill and /dev/rfkill, can you be, please more verbose

the uinput allows you to write a input driver in userspace. So with
urfkill you could in theory write a RFKILL switch as a userspace
program.

Regards

Marcel



^ permalink raw reply

* Re: [PATCH 1/1] rfkill: add the GPS radio type
From: Marcel Holtmann @ 2009-08-02 16:28 UTC (permalink / raw)
  To: Johannes Berg; +Cc: Tomas Winkler, linville, linux-wireless
In-Reply-To: <1249199143.2007.2.camel@johannes.local>

Hi Johannes,

> > > we don't have a GPS subsystem, but even without it, I think this is a
> > > good thing to have.
> > 
> > GPS devices are usually serial devices.
> 
> Yeah, this is interesting -- do we want something like /dev/urfkill
> (cf. /dev/uinput), so that gpsd or whatever is controlling the GPS (same
> applies for 3G) can be controlled with rfkill?

on one hand I think urfkill might be needed, on the other hand I think
we should not do it at all. Currently I would think it is better to
force the RFKILL integration in the kernel so that we have proper
subsystem integration, or platform RFKILL switches or in cases like GPS
and WWAN/3G it will be driver integration. For 3G we already have the
hso.ko driver which has a killswitch and we just need to fix the other
ones. I am actually looking into it, if this is possible without an AT
parser inside the kernel.

So the GPS world is evolving right now and that everybody implements
them as kernel-tty-passthrough pseudo driver and then a binary only
daemon and then gpsd/gypsy on top of it will only survive for certain
amount of time. The binary component will not get wide acceptance. And
even if the binary only userspace component stays, we might still need a
proper GPS subsystem since using TTY as pure transport is holding us
back. Could be that AF_GPS would have been a way better choice. This
will sort itself out over time.

Regards

Marcel



^ permalink raw reply

* RE: kernel panic ieee80211_agg_splice_packets+0x3d/0xc0 [mac80211]
From: Jack Lau @ 2009-08-02 17:26 UTC (permalink / raw)
  To: proski; +Cc: linux-wireless
In-Reply-To: <1248640816.32168.42.camel@mj>

[-- 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


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox