Linux wireless drivers development
 help / color / mirror / Atom feed
* Re: Stop using tasklets for bottom halves
From: Stephen Hemminger @ 2009-09-08  0:14 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Steven Rostedt, Ingo Molnar, Michael Buesch, John W. Linville,
	linux-wireless, linux-kernel, netdev, Matt Smith, Kevin Hayes,
	Bob Copeland, Jouni Malinen, Ivan Seskar, ic.felix
In-Reply-To: <43e72e890909071558s637b45c7i10807587dc40e8c4@mail.gmail.com>

On Mon, 7 Sep 2009 15:58:50 -0700
"Luis R. Rodriguez" <mcgrof@gmail.com> wrote:

> A while ago I had read about an effort to consider removing tasklets
> [1] or at least trying to not use them. I'm unaware of the progress in
> this respect but since reading that article have always tried to
> evaluate whether or not we need tasklets on wireless drivers. I have
> also wondered whether work in irq context in other parts of the kernel
> can be moved to process context, a curious example being timers. I'll
> personally be trying to using only process context on bottom halves on
> future drivers but I figured it may be a good time to ask how serious
> was avoiding tasklets or using wrappers in the future to avoid irq
> context is or is it advised. Do we have a general agreement this is a
> good step forward to take? Has anyone made tests or changes on a
> specific driver from irq context to process context and proven there
> are no significant advantages of using irq context where you would
> have expected it?
> 
> Wireless in particular should IMHO not require taskets for anything
> time sensitive that I can think about except perhaps changing channels
> quickly and to do that appropriately also process pending RX frames
> prior to a switch. It remains to be seen experimentally whether or not
> using a workqueue for RX processing would affect the time to switch
> channels negatively but I doubt it would be significant. I hope to
> test that with ath9k_htc.
> 
> What about gigabit or 10 Gigabit Ethernet drivers ? Do they face any
> challenges which would yet need to be proven would not face issues
> when processing bottom halves in process context?
> 
> [1] http://lwn.net/Articles/239633/
> 
>   Luis
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

Why not use NAPI, which is soft irq? Almost all 1G and 10G drivers
use NAPI.

Process context is too slow.

-- 

^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Steven Rostedt @ 2009-09-08  2:17 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: Luis R. Rodriguez, Ingo Molnar, Michael Buesch, John W. Linville,
	linux-wireless, linux-kernel, netdev, Matt Smith, Kevin Hayes,
	Bob Copeland, Jouni Malinen, Ivan Seskar, ic.felix
In-Reply-To: <20090907171406.6a4b6116@nehalam>

On Mon, 2009-09-07 at 17:14 -0700, Stephen Hemminger wrote:
> On Mon, 7 Sep 2009 15:58:50 -0700
> "Luis R. Rodriguez" <mcgrof@gmail.com> wrote:
> 
> > A while ago I had read about an effort to consider removing tasklets
> > [1] or at least trying to not use them. I'm unaware of the progress in
> > this respect but since reading that article have always tried to
> > evaluate whether or not we need tasklets on wireless drivers. I have
> > also wondered whether work in irq context in other parts of the kernel
> > can be moved to process context, a curious example being timers. I'll
> > personally be trying to using only process context on bottom halves on
> > future drivers but I figured it may be a good time to ask how serious
> > was avoiding tasklets or using wrappers in the future to avoid irq
> > context is or is it advised. Do we have a general agreement this is a
> > good step forward to take? Has anyone made tests or changes on a
> > specific driver from irq context to process context and proven there
> > are no significant advantages of using irq context where you would
> > have expected it?
> > 
> > Wireless in particular should IMHO not require taskets for anything
> > time sensitive that I can think about except perhaps changing channels
> > quickly and to do that appropriately also process pending RX frames
> > prior to a switch. It remains to be seen experimentally whether or not
> > using a workqueue for RX processing would affect the time to switch
> > channels negatively but I doubt it would be significant. I hope to
> > test that with ath9k_htc.
> > 
> > What about gigabit or 10 Gigabit Ethernet drivers ? Do they face any
> > challenges which would yet need to be proven would not face issues
> > when processing bottom halves in process context?
> > 
> > [1] http://lwn.net/Articles/239633/
> > 
> >   Luis
> > --
> > To unsubscribe from this list: send the line "unsubscribe netdev" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> Why not use NAPI, which is soft irq? Almost all 1G and 10G drivers
> use NAPI.
> 
> Process context is too slow.

Well, I'm hoping to prove the opposite. I'm working on some stuff that I
plan to present at Linux Plumbers. I've been too distracted by other
things, but hopefully I'll have some good numbers to present by then.

-- Steve



^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Luis R. Rodriguez @ 2009-09-08  4:16 UTC (permalink / raw)
  To: rostedt
  Cc: Stephen Hemminger, Ingo Molnar, Michael Buesch, John W. Linville,
	linux-wireless, linux-kernel, netdev, Matt Smith, Kevin Hayes,
	Bob Copeland, Jouni Malinen, Ivan Seskar, ic.felix
In-Reply-To: <1252376254.21261.2052.camel@gandalf.stny.rr.com>

On Mon, Sep 7, 2009 at 7:17 PM, Steven Rostedt<rostedt@goodmis.org> wrote:
> On Mon, 2009-09-07 at 17:14 -0700, Stephen Hemminger wrote:
>> On Mon, 7 Sep 2009 15:58:50 -0700
>> "Luis R. Rodriguez" <mcgrof@gmail.com> wrote:
>>
>> > A while ago I had read about an effort to consider removing tasklets
>> > [1] or at least trying to not use them. I'm unaware of the progress in
>> > this respect but since reading that article have always tried to
>> > evaluate whether or not we need tasklets on wireless drivers. I have
>> > also wondered whether work in irq context in other parts of the kernel
>> > can be moved to process context, a curious example being timers. I'll
>> > personally be trying to using only process context on bottom halves on
>> > future drivers but I figured it may be a good time to ask how serious
>> > was avoiding tasklets or using wrappers in the future to avoid irq
>> > context is or is it advised. Do we have a general agreement this is a
>> > good step forward to take? Has anyone made tests or changes on a
>> > specific driver from irq context to process context and proven there
>> > are no significant advantages of using irq context where you would
>> > have expected it?
>> >
>> > Wireless in particular should IMHO not require taskets for anything
>> > time sensitive that I can think about except perhaps changing channels
>> > quickly and to do that appropriately also process pending RX frames
>> > prior to a switch. It remains to be seen experimentally whether or not
>> > using a workqueue for RX processing would affect the time to switch
>> > channels negatively but I doubt it would be significant. I hope to
>> > test that with ath9k_htc.
>> >
>> > What about gigabit or 10 Gigabit Ethernet drivers ? Do they face any
>> > challenges which would yet need to be proven would not face issues
>> > when processing bottom halves in process context?
>> >
>> > [1] http://lwn.net/Articles/239633/
>> >
>> >   Luis
>> > --
>> > To unsubscribe from this list: send the line "unsubscribe netdev" in
>> > the body of a message to majordomo@vger.kernel.org
>> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>> Why not use NAPI, which is soft irq? Almost all 1G and 10G drivers
>> use NAPI.
>>
>> Process context is too slow.
>
> Well, I'm hoping to prove the opposite. I'm working on some stuff that I
> plan to present at Linux Plumbers. I've been too distracted by other
> things, but hopefully I'll have some good numbers to present by then.

What day in specific was this planned for at Plumbers?

  Luis

^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Michael Buesch @ 2009-09-08  4:50 UTC (permalink / raw)
  To: rostedt
  Cc: Stephen Hemminger, Luis R. Rodriguez, Ingo Molnar,
	John W. Linville, linux-wireless, linux-kernel, netdev,
	Matt Smith, Kevin Hayes, Bob Copeland, Jouni Malinen, Ivan Seskar,
	ic.felix
In-Reply-To: <1252376254.21261.2052.camel@gandalf.stny.rr.com>

On Tuesday 08 September 2009 04:17:34 Steven Rostedt wrote:
> > Process context is too slow.
> 
> Well, I'm hoping to prove the opposite. I'm working on some stuff that I
> plan to present at Linux Plumbers. I've been too distracted by other
> things, but hopefully I'll have some good numbers to present by then.

I recently converted the b43 driver to threaded interrupt handlers and
a workqueue based TX mechanism. (My motivation was porting b43 to the SDIO bus that
needs to sleep, so requires process context).

There are two things that I noticed. When looking at the "idle" percentage in "top"
it regressed quite a bit when using threaded IRQ handlers. It shows about 8% less
idle. This is with threaded IRQs patched in, but without WQ TX mechanism. Applying
the WQ TX mechanism does not show any noticeable effect in "top".

I'm not quite sure where the 8% slowdown on threaded IRQ handlers come from. I'm not
really certain that it's _really_ a regression and not just a statistics accounting quirk.
Why does threaded IRQs slow down stuff and threaded TX does not at all? That does not
make sense at all to me.

I think there's no real reason for process context being slow in general. It's just that
we have additional context switches. But these are fast on Linux.

-- 
Greetings, Michael.

^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Michael Buesch @ 2009-09-08  5:08 UTC (permalink / raw)
  To: rostedt
  Cc: Stephen Hemminger, Luis R. Rodriguez, Ingo Molnar,
	John W. Linville, linux-wireless, linux-kernel, netdev,
	Matt Smith, Kevin Hayes, Bob Copeland, Jouni Malinen, Ivan Seskar,
	ic.felix
In-Reply-To: <200909080650.43181.mb@bu3sch.de>

On Tuesday 08 September 2009 06:50:41 Michael Buesch wrote:
> On Tuesday 08 September 2009 04:17:34 Steven Rostedt wrote:
> > > Process context is too slow.
> > 
> > Well, I'm hoping to prove the opposite. I'm working on some stuff that I
> > plan to present at Linux Plumbers. I've been too distracted by other
> > things, but hopefully I'll have some good numbers to present by then.
> 
> I recently converted the b43 driver to threaded interrupt handlers and
> a workqueue based TX mechanism. (My motivation was porting b43 to the SDIO bus that
> needs to sleep, so requires process context).
> 
> There are two things that I noticed. When looking at the "idle" percentage in "top"
> it regressed quite a bit when using threaded IRQ handlers. It shows about 8% less
> idle. This is with threaded IRQs patched in, but without WQ TX mechanism. Applying
> the WQ TX mechanism does not show any noticeable effect in "top".
> 
> I'm not quite sure where the 8% slowdown on threaded IRQ handlers come from. I'm not
> really certain that it's _really_ a regression and not just a statistics accounting quirk.
> Why does threaded IRQs slow down stuff and threaded TX does not at all? That does not
> make sense at all to me.
> 
> I think there's no real reason for process context being slow in general. It's just that
> we have additional context switches. But these are fast on Linux.
> 

Ok, I just did another test. I used a workqueue instead of the standard kernel threaded
IRQ infrastructure. Now the slowdown is only about 4% in "top". Maybe that shows room
for improvement in the threaded IRQ implementation...

B43 does call mac80211's "irqsafe" TX-status and RX functions. They schedule
additional tasklets. That is not required, however. Maybe I should remove that stuff and
retry my tests. That should also improve stuff a bit.

And yes, I notice that "top" is actually crap for testing performance issues. :)

-- 
Greetings, Michael.

^ permalink raw reply

* RE: compat-wireless-old for ARM
From: Marcel @ 2009-09-08  6:10 UTC (permalink / raw)
  To: 'Luis R. Rodriguez', 'AMAR SAHUKAR'; +Cc: linux-wireless
In-Reply-To: <43e72e890909071436ub99bddbx3dd531d09f322b4a@mail.gmail.com>

Hello Luis,
	Do you think it should be viable to bring it down to kernel 2.6.22
using armeb?
	If so, I can help to test since I am very interested in ath5k.
Regards
Marcel

-----Original Message-----
From: linux-wireless-owner@vger.kernel.org
[mailto:linux-wireless-owner@vger.kernel.org] On Behalf Of Luis R. Rodriguez
Sent: den 7 september 2009 23:37
To: AMAR SAHUKAR
Cc: linux-wireless@vger.kernel.org
Subject: Re: compat-wireless-old for ARM

On Mon, Sep 7, 2009 at 6:39 AM, AMAR SAHUKAR<amarsahu7@gmail.com> wrote:
> Hi,
>          I wanted to know the procedure to follow for installing
> compat-wireless-old on ARM platform. I am using a Netgear WG111V3 usb
dongle
> which uses a rtl8187 chipset. I will be pleased if you can help me with
> this.

compat-wireless-old has not been updated for ages. Today is possible
to bring compat-wireless (instead of compat-wireless-old) down to
older kernels we previously could not since we no longer are using the
netdevice multiqueue support. I was able to bring compat-wireless down
to 2.6.25 -- at least compile-wise, there is also code present to help
bring it down to older kernels, we just need someone to test/help
finish the rest.

  Luis
--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply

* Re: compat-wireless-old for ARM
From: Luis R. Rodriguez @ 2009-09-08  6:41 UTC (permalink / raw)
  To: Marcel; +Cc: AMAR SAHUKAR, linux-wireless
In-Reply-To: <70EB52E9BF7F43BBBBC899826FD0D3C4@inin.local>

On Mon, Sep 7, 2009 at 11:10 PM, Marcel<marcelcastrobr@gmail.com> wrote:
> Hello Luis,
>        Do you think it should be viable to bring it down to kernel 2.6.22
> using armeb?

What's armeb?

It should be possible for sure to bring it down to even 2.6.21, maybe
even more. There is already code for 2.6.21..2.6.24, the gaps are all
that just need to be accounted for as well as testing.

>        If so, I can help to test since I am very interested in ath5k.

Great!

   Luis

^ permalink raw reply

* Re: Atheros Linux wireless drivers home page - and two new driver projects
From: Denis Kirjanov @ 2009-09-08  6:50 UTC (permalink / raw)
  To: michael
  Cc: Xavier Bestel, devel, b_yogesh_snowy, Dan Williams,
	Stefan Lippers-Hollmann, Len Widra, linux-wireless, linux-kernel,
	Stephen Chen, Jouni Malinen, Nick Kossifidis, Paul Fertser,
	Harald Welte, Bob Copeland, Witold Sowa, Michael Renzmann,
	Werner Almesberger
In-Reply-To: <4AA24FAB.20700@panicking.kicks-ass.org>

Good time of day.
Do I need to use wireless-testing tree ?

On Sat, Sep 5, 2009 at 3:46 PM, michael<michael@panicking.kicks-ass.org> wrote:
> Hi,
>
> Xavier Bestel wrote:
>>
>> Le vendredi 04 septembre 2009 à 09:51 -0700, Luis R. Rodriguez a écrit :
>>>
>>> On Fri, Sep 4, 2009 at 9:18 AM, Xavier Bestel<xavier.bestel@free.fr>
>>> wrote:
>>>>
>>>> On Fri, 2009-09-04 at 12:06 -0400, Pavel Roskin wrote:
>>>>>
>>>>> On Fri, 2009-09-04 at 13:53 +0200, Xavier Bestel wrote:
>>>>>>
>>>>>> On Thu, 2009-09-03 at 15:54 -0700, Luis R. Rodriguez wrote:
>>>>>>>
>>>>>>> I'm pleased to announce the new home page to Atheros Linux wireless
>>>>>>> drivers:
>>>>>>>
>>>>>>> http://wireless.kernel.org/en/users/Drivers/Atheros
>>>>>>
>>>>>> ath5k is marked as not master-mode capable. I thought this had been
>>>>>> fixed for 2.6.31 ?
>>>>>
>>>>> The above page makes no such statements.  I have fixed
>>>>> http://wireless.kernel.org/en/users/Drivers/ath5k
>>>>
>>>> Right, thanks.
>>>>
>>>>> https://madwifi-project.org/wiki/UserDocs/ath5kAccessPoint still needs
>>>>> a
>>>>> lot of work, or maybe it should be removed as obsolete.
>>>>
>>>> Yes, I miss access-point functionality in NetworkManager :)
>>>
>>> BTW a GSoC project this year was to add AP support to Network Manager.
>>> As far I can tell the Witold Sowa finished this so you should be able
>>> to test this.
>>
>> Awesome.
>>
>>> Witold, can you update the wiki page on this project with details as
>>> to how people can test this?
>>>
>>>
>>> http://wireless.kernel.org/en/developers/GSoC/2009/Add_AP_Support_to_Network_Manager
>>>
>>>  Luis
>>>
>
> Is there any plan to support the ar6k athereos wifi card?
>
> Michael
>
>>
>>
>>
>> _______________________________________________
>> devel mailing list
>> devel@linuxdriverproject.org
>> http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
>>
>
> _______________________________________________
> devel mailing list
> devel@linuxdriverproject.org
> http://driverdev.linuxdriverproject.org/mailman/listinfo/devel
>



-- 
Regards,
Denis

^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Ingo Molnar @ 2009-09-08  7:10 UTC (permalink / raw)
  To: Michael Buesch
  Cc: rostedt, Stephen Hemminger, Luis R. Rodriguez, John W. Linville,
	linux-wireless, linux-kernel, netdev, Matt Smith, Kevin Hayes,
	Bob Copeland, Jouni Malinen, Ivan Seskar, ic.felix
In-Reply-To: <200909080650.43181.mb@bu3sch.de>


* Michael Buesch <mb@bu3sch.de> wrote:

> There are two things that I noticed. When looking at the "idle" 
> percentage in "top" it regressed quite a bit when using threaded 
> IRQ handlers. It shows about 8% less idle. This is with threaded 
> IRQs patched in, but without WQ TX mechanism. Applying the WQ TX 
> mechanism does not show any noticeable effect in "top".
> 
> I'm not quite sure where the 8% slowdown on threaded IRQ handlers 
> come from. I'm not really certain that it's _really_ a regression 
> and not just a statistics accounting quirk. Why does threaded IRQs 
> slow down stuff and threaded TX does not at all? That does not 
> make sense at all to me.

Do you have an x86 box to test it on?

If yes then perfcounters can be used for _much_ more precise 
measurements that you can trust. Do something like this:

   perf stat -a --repeat 3 sleep 1

The '-a/--all' option will measure all CPUs - everything: IRQ 
context, irqs-off region, etc. That output will be comparable before 
your threaded patch and after the patch.

Here's an example. I started one infinite loop on a testbox, which 
is using 100% of a single CPU. The system-wide stats look like this:

 # perf stat -a --repeat 3 sleep 1

 Performance counter stats for 'sleep 1' (3 runs):

   16003.320239  task-clock-msecs         #     15.993 CPUs    ( +-   0.044% )
             94  context-switches         #      0.000 M/sec   ( +-  11.373% )
              3  CPU-migrations           #      0.000 M/sec   ( +-  25.000% )
            170  page-faults              #      0.000 M/sec   ( +-  0.518% )
     3294001334  cycles                   #    205.832 M/sec   ( +-  0.896% )
     1088670782  instructions             #      0.331 IPC     ( +-  0.905% )
        1720926  cache-references         #      0.108 M/sec   ( +-  1.880% )
          61253  cache-misses             #      0.004 M/sec   ( +-  4.401% )

    1.000623219  seconds time elapsed   ( +-   0.002% )

the instructions count or the cycle count will go up or down, 
precisely according to how the threaded handlers. These stats are 
not time sampled but 'real', so they reflect reality and show 
whether your workload had to spend more (or less) cycles / 
instructions /etc.

I started a second loop in addition to the first one, and perf stat 
now gives me this output:

 # perf stat -a --repeat 3 sleep 1

 Performance counter stats for 'sleep 1' (3 runs):

   16003.289509  task-clock-msecs         #     15.994 CPUs    ( +-   0.046% )
             88  context-switches         #      0.000 M/sec   ( +-  15.933% )
              2  CPU-migrations           #      0.000 M/sec   ( +-  14.286% )
            188  page-faults              #      0.000 M/sec   ( +-   9.414% )
     6481963224  cycles                   #    405.039 M/sec   ( +-   0.011% )
     2152924468  instructions             #      0.332 IPC     ( +-   0.054% )
         397564  cache-references         #      0.025 M/sec   ( +-   1.217% )
          59835  cache-misses             #      0.004 M/sec   ( +-   3.732% )

    1.000576354  seconds time elapsed   ( +-   0.005% )

Compare the two results:

 before:
     6481963224  cycles                   #    405.039 M/sec   ( +-   0.011% )
     2152924468  instructions             #      0.332 IPC     ( +-   0.054% )

 after:
     3294001334  cycles                   #    205.832 M/sec   ( +-  0.896% )
     1088670782  instructions             #      0.331 IPC     ( +-  0.905% )

The cycles/sec doubled - as expected. You could do the same with 
your test and not have to rely in the very imprecise (and often 
misleading) 'top' statistics for kernel development.

The IPC (instructions per cycle) factor stayed roughly constant - 
showing that both workloads can push the same amount of instructions 
when normalized to a single CPU. If a workload becomes very 
cache-missy or executes a lot of system calls then the IPC factor 
goes down - if it becomes more optimal 'tight' code then the IPC 
factor goes up.)

(The cache-miss rate was very low in both cases - it's a simple 
infinite loop i tested.)

Furthermore the error bars in the rightmost column help you know 
whether any difference in results is statistically significant, or 
within the noise level.

Hope this helps,

	Ingo

^ permalink raw reply

* Possible WEP encryption error with wpa_supplicant -Dnl80211
From: Holger Schurig @ 2009-09-08  8:16 UTC (permalink / raw)
  To: linux-wireless

Here are some details on my ping problem: I seem to be associated
successfully to an Cisco 1231 AP, but no pings are going through
if I use nl80211.

----------------------------------- test.conf
ctrl_interface=/var/run/wpa_supplicant
network={
        ssid="TEST"
        key_mgmt=NONE
        wep_key0="99999"
}
------------------------------------- test.sh
#!/bin/sh
ifconfig eth1 10.2.1.2 netmask 255.255.255.0 up
./wpa_supplicant \
        -D nl80211 \
        -i eth1 \
        -c test.conf \
        -P /var/run/wpa_supplicant.eth1.pid \
        -C /var/run/wpa_supplicant
---------------------------------------------

# ./TEST.sh
CTRL-EVENT-SCAN-RESULTS
Trying to authenticate with 00:13:19:80:da:30 (SSID='TEST' freq=2412 MHz)
Trying to associate with 00:13:19:80:da:30 (SSID='TEST' freq=2412 MHz)
Associated with 00:13:19:80:da:30
CTRL-EVENT-CONNECTED - Connection to 00:1b:53:11:dc:40 completed (auth) [id=0 id_str=]

$ ping -c 5 10.2.1.1
PING 10.2.1.1 (10.2.1.1) 56(84) bytes of data.
>From 10.2.1.2 icmp_seq=1 Destination Host Unreachable
>From 10.2.1.2 icmp_seq=2 Destination Host Unreachable
>From 10.2.1.2 icmp_seq=3 Destination Host Unreachable
>From 10.2.1.2 icmp_seq=4 Destination Host Unreachable
>From 10.2.1.2 icmp_seq=5 Destination Host Unreachable

--- 10.2.1.1 ping statistics ---
5 packets transmitted, 0 received, +5 errors, 100% packet loss, time 4023ms, pipe 3



While this was happening, I used another wireless card monitor
the channel. I then saw ARP packets, but AFAIK they haven't been
encrypted:

Frame 319 (85 bytes on wire, 85 bytes captured)
    Arrival Time: Sep  8, 2009 09:07:34.529847000
    [Time delta from previous packet: 0.012281000 seconds]
    [Time since reference or first frame: 5.988251000 seconds]
    Frame Number: 319
    Packet Length: 85 bytes
    Capture Length: 85 bytes
    [Frame is marked: False]
    [Protocols in frame: radiotap:wlan:llc:arp]
Radiotap Header v0, Length 25
    Header revision: 0
    Header pad: 0
    Header length: 25
    Present flags: 0x0000086f
        .... .... .... .... .... .... .... ...1 = TSFT: True
        .... .... .... .... .... .... .... ..1. = Flags: True
        .... .... .... .... .... .... .... .1.. = Rate: True
        .... .... .... .... .... .... .... 1... = Channel: True
        .... .... .... .... .... .... ...0 .... = FHSS: False
        .... .... .... .... .... .... ..1. .... = DBM Antenna Signal: True
        .... .... .... .... .... .... .1.. .... = DBM Antenna Noise: True
        .... .... .... .... .... .... 0... .... = Lock Quality: False
        .... .... .... .... .... ...0 .... .... = TX Attenuation: False
        .... .... .... .... .... ..0. .... .... = DB TX Attenuation: False
        .... .... .... .... .... .0.. .... .... = DBM TX Attenuation: False
        .... .... .... .... .... 1... .... .... = Antenna: True
        .... .... .... .... ...0 .... .... .... = DB Antenna Signal: False
        .... .... .... .... ..0. .... .... .... = DB Antenna Noise: False
        .... .... .... .... .0.. .... .... .... = FCS in header: False
        0... .... .... .... .... .... .... .... = Ext: False
    MAC timestamp: 0
    Flags: 0x00
        .... ...0 = CFP: False
        .... ..0. = Preamble: Long
        .... .0.. = WEP: False
        .... 0... = Fragmentation: False
        ...0 .... = FCS at end: False
        ..0. .... = Data Pad: False
    Data Rate: 11.0 Mb/s
    Channel: 2412 (chan 1)
    Channel type: 802.11b (0x00a0)
    SSI Signal: -17 dBm
    SSI Noise: 0 dBm
    Antenna: 2
IEEE 802.11
    Type/Subtype: Data (32)
    Frame Control: 0x0108 (Normal)
        Version: 0
        Type: Data frame (2)
        Subtype: 0
        Flags: 0x1
            DS status: Frame from STA to DS via an AP (To DS: 1 From DS: 0) (0x01)
            .... .0.. = More Fragments: This is the last fragment
            .... 0... = Retry: Frame is not being retransmitted
            ...0 .... = PWR MGT: STA will stay up
            ..0. .... = More Data: No data buffered
            .0.. .... = Protected flag: Data is not protected
            0... .... = Order flag: Not strictly ordered
    Duration: 213
    BSS Id: 00:1b:53:11:dc:40 (00:1b:53:11:dc:40)
    Source address: Proxim_a0:6d:40 (00:20:a6:a0:6d:40)
    Destination address: Broadcast (ff:ff:ff:ff:ff:ff)
    Fragment number: 0
    Sequence number: 120
Logical-Link Control
    DSAP: SNAP (0xaa)
    IG Bit: Individual
    SSAP: SNAP (0xaa)
    CR Bit: Command
    Control field: U, func=UI (0x03)
        000. 00.. = Command: Unnumbered Information (0x00)
        .... ..11 = Frame type: Unnumbered frame (0x03)
    Organization Code: Encapsulated Ethernet (0x000000)
    Type: ARP (0x0806)
Address Resolution Protocol (request)
    Hardware type: Ethernet (0x0001)
    Protocol type: IP (0x0800)
    Hardware size: 6
    Protocol size: 4
    Opcode: request (0x0001)
    Sender MAC address: Proxim_a0:6d:40 (00:20:a6:a0:6d:40)
    Sender IP address: 10.2.1.2 (10.2.1.2)
    Target MAC address: 00:00:00_00:00:00 (00:00:00:00:00:00)
    Target IP address: 10.2.1.1 (10.2.1.1)






After removing all kernel modules and reloading them again (ath5k,
mac80211, ath, cfg80211) and replacing the "-D nl80211" with "-D wext",
the ping works.

# ./TEST.sh
ioctl[SIOCGIWSCAN]: Resource temporarily unavailable
ioctl[SIOCSIWSCAN]: Device or resource busy
Failed to initiate AP scan.
CTRL-EVENT-SCAN-RESULTS
Trying to associate with 00:1b:53:11:dc:40 (SSID='TEST' freq=2412 MHz)
CTRL-EVENT-SCAN-RESULTS
Trying to associate with 00:13:19:80:da:30 (SSID='TEST' freq=2412 MHz)
Associated with 00:13:19:80:da:30
CTRL-EVENT-CONNECTED - Connection to 00:13:19:80:da:30 completed (auth) [id=0 id_str=]

-- 
http://www.holgerschurig.de

^ permalink raw reply

* Re: Possible WEP encryption error with wpa_supplicant -Dnl80211
From: Holger Schurig @ 2009-09-08  8:27 UTC (permalink / raw)
  To: linux-wireless
In-Reply-To: <200909081016.37204.hs4233@mail.mn-solutions.de>

> IEEE 802.11
>     Type/Subtype: Data (32)
>     Frame Control: 0x0108 (Normal)
>         Version: 0
>         Type: Data frame (2)
>         Subtype: 0
>         Flags: 0x1
>             DS status: Frame from STA to DS via an AP (To DS: 1 From DS: 0) (0x01)
>             .... .0.. = More Fragments: This is the last fragment
>             .... 0... = Retry: Frame is not being retransmitted
>             ...0 .... = PWR MGT: STA will stay up
>             ..0. .... = More Data: No data buffered
>             .0.. .... = Protected flag: Data is not protected
>             0... .... = Order flag: Not strictly ordered
>     Duration: 213
>     BSS Id: 00:1b:53:11:dc:40 (00:1b:53:11:dc:40)
>     Source address: Proxim_a0:6d:40 (00:20:a6:a0:6d:40)
>     Destination address: Broadcast (ff:ff:ff:ff:ff:ff)
>     Fragment number: 0
>     Sequence number: 120

When I run wpa_supplicant with -D wext, I see this additional
field while monitoring:

    WEP parameters
        Initialization Vector: 0x222e52
        Key Index: 0
        WEP ICV: 0x9dc1791b (not verified)

-- 
http://www.holgerschurig.de

^ permalink raw reply

* Re: Possible WEP encryption error with wpa_supplicant -Dnl80211
From: Johannes Berg @ 2009-09-08  9:18 UTC (permalink / raw)
  To: Holger Schurig; +Cc: linux-wireless
In-Reply-To: <200909081016.37204.hs4233@mail.mn-solutions.de>

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

On Tue, 2009-09-08 at 10:16 +0200, Holger Schurig wrote:
> Here are some details on my ping problem: I seem to be associated
> successfully to an Cisco 1231 AP, but no pings are going through
> if I use nl80211.

Yeah, WEP with nl80211 is known broken. I have a patch, but Jouni didn't
like it and I haven't gotten around to fixing it up.

johannes

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

^ permalink raw reply

* Re: iwlagn: order 2 page allocation failures
From: Mel Gorman @ 2009-09-08 10:54 UTC (permalink / raw)
  To: Pekka Enberg
  Cc: Frans Pop, linux-kernel, linux-wireless, ipw3945-devel,
	Andrew Morton, cl
In-Reply-To: <1252226116.11274.10.camel@penberg-laptop>

On Sun, Sep 06, 2009 at 11:35:16AM +0300, Pekka Enberg wrote:
> On Sun, 2009-09-06 at 10:28 +0200, Frans Pop wrote:
> > On Sunday 06 September 2009, Pekka Enberg wrote:
> > > On Sun, Sep 6, 2009 at 10:40 AM, Frans Pop<elendil@planet.nl> wrote:
> > > > Got a couple of page allocation failures today while viewing fairly
> > > > large images. System was struggling for a bit to reorganize memory
> > > > and swap, but nothing really serious. Everything recovered fairly
> > > > quickly.
> > > >
> > > > Anything to look into?
> > > >
> > > > System: HP 2510p; 2.6.31-rc7-56-g7c0a57d; Debian stable, KDE desktop
> > > >
> > > > 10:00.0 Network controller [0280]: Intel Corporation PRO/Wireless
> > > > 4965 AG or AGN [Kedron] Network Connection [8086:4229] (rev 61)
> > >
> > > Can you post your .config, please?
> > 
> > Attached. Thanks.
> 
> OK, so SLUB_DEBUG_ON is disabled so it's probably not a SLUB problem.
> Mel, there's quite a few page allocation failure reports recently which
> makes me wonder if we broke something with the page allocator
> optimization patches? Do you think the anti-fragmentation fixlet you did
> for nommu would help here?
> 

No, because that change only affected the case where the system had very
little memory. The last time that there was a sudden major increase in
allocation failures, it was actually was page reclaim was broken -
specifically kswapd was no longer doing the job that was expected of it.
The symptoms where applications stalling because they were entering
direct reclaim. I haven't looked very closely at this bug report yet
(catching up from being offline the last 5 days).

Have there been any reclaim changes that might account for something like this?

My feeling is also that a number of these page allocation failures have
been related to wireless drivers. Is that accurate? If so, have there
been changes made to the wireless stack in this cycle that would have
increased the order of pages allocated?

-- 
Mel Gorman
Part-time Phd Student                          Linux Technology Center
University of Limerick                         IBM Dublin Software Lab

^ permalink raw reply

* Re: ipw2200: firmware DMA loading rework
From: Mel Gorman @ 2009-09-08 11:00 UTC (permalink / raw)
  To: Theodore Tso, Luis R. Rodriguez, Bartlomiej Zolnierkiewicz,
	Aneesh Kumar K.V, Zhu Yi, Andrew Morton, Johannes Weiner,
	Pekka Enberg, Rafael J. Wysocki, Linux Kernel Mailing List,
	Kernel Testers List, Mel Gorman, netdev@vger.kernel.org,
	linux-mm@kvack.org, James Ketrenos, Chatre, Reinette,
	linux-wireless@vger.kernel.org,
	ipw2100-devel@lists.sourceforge.net
In-Reply-To: <20090905142837.GI16217@mit.edu>

On Sat, Sep 05, 2009 at 10:28:37AM -0400, Theodore Tso wrote:
> On Thu, Sep 03, 2009 at 01:49:14PM +0100, Mel Gorman wrote:
> > > 
> > > This looks very similar to the kmemleak ext4 reports upon a mount. If
> > > it is the same issue, which from the trace it seems it is, then this
> > > is due to an extra kmalloc() allocation and this apparently will not
> > > get fixed on 2.6.31 due to the closeness of the merge window and the
> > > non-criticalness this issue has been deemed.
> 
> No, it's a different problem.
> 
> > I suspect the more pressing concern is why is this kmalloc() resulting in
> > an order-5 allocation request? What size is the buffer being requested?
> > Was that expected?  What is the contents of /proc/slabinfo in case a buffer
> > that should have required order-1 or order-2 is using a higher order for
> > some reason.
> 
> It's allocating 68,000 bytes for the mb_history structure, which is
> used for debugging purposes.  That's why it's optional and we continue
> if it's not allocated.  We should fix it to use vmalloc()

You could call with kmalloc(FLAGS|GFP_NOWARN) with a fallback to
vmalloc() and a disable if vmalloc() fails as well.  Maybe check out what
kernel/profile.c#profile_init() to allocate a large buffer and do something
similar?

> and I'm
> inclined to turn it off by default since it's not worth the overhead,
> and most ext4 users won't find it useful or interesting.
> 

I can't comment as I don't know what sort of debugging it's useful for.

-- 
Mel Gorman
Part-time Phd Student                          Linux Technology Center
University of Limerick                         IBM Dublin Software Lab

^ permalink raw reply

* Re: iwlagn: order 2 page allocation failures
From: Pekka Enberg @ 2009-09-08 11:11 UTC (permalink / raw)
  To: Mel Gorman
  Cc: Frans Pop, linux-kernel, linux-wireless, ipw3945-devel,
	Andrew Morton, cl
In-Reply-To: <20090908105415.GD28127@csn.ul.ie>

On Tue, Sep 8, 2009 at 1:54 PM, Mel Gorman<mel@csn.ul.ie> wrote:
> My feeling is also that a number of these page allocation failures have
> been related to wireless drivers. Is that accurate? If so, have there
> been changes made to the wireless stack in this cycle that would have
> increased the order of pages allocated?

That's my general feeling as well. We have linux-wireless CC'd so
maybe this rings a bell for them.

^ permalink raw reply

* Re: Stop using tasklets for bottom halves
From: Steven Rostedt @ 2009-09-08 13:18 UTC (permalink / raw)
  To: Luis R. Rodriguez
  Cc: Stephen Hemminger, Ingo Molnar, Michael Buesch, John W. Linville,
	linux-wireless, linux-kernel, netdev, Matt Smith, Kevin Hayes,
	Bob Copeland, Jouni Malinen, Ivan Seskar, ic.felix
In-Reply-To: <43e72e890909072116v33ecafc4ma7f5a68825f14e9@mail.gmail.com>

On Mon, 2009-09-07 at 21:16 -0700, Luis R. Rodriguez wrote:
> On Mon, Sep 7, 2009 at 7:17 PM, Steven Rostedt<rostedt@goodmis.org> wrote:

> >>
> >> Process context is too slow.
> >
> > Well, I'm hoping to prove the opposite. I'm working on some stuff that I
> > plan to present at Linux Plumbers. I've been too distracted by other
> > things, but hopefully I'll have some good numbers to present by then.
> 
> What day in specific was this planned for at Plumbers?

Wednesday, during the networking session.

  http://linuxplumbersconf.org/ocw/proposals/53

-- Steve



^ permalink raw reply

* b43 dma error
From: Dave Young @ 2009-09-08 13:47 UTC (permalink / raw)
  To: mb; +Cc: linville, netrolller.3d, linux-wireless, bcm43xx-dev

I tested wireless-testing b43 driver, but got "Fatal DMA error"
then the controller keep restarting...

Please tell what I can provide or test, Thanks.

The dmesg:

[  206.995465] b43-phy0 debug: Chip initialized
[  206.995620] b43-phy0 debug: 64-bit DMA initialized
[  207.004517] Registered led device: b43-phy0::tx
[  207.004995] Registered led device: b43-phy0::rx
[  207.005492] Registered led device: b43-phy0::radio
[  207.005752] b43-phy0 debug: Wireless interface started
[  207.005847] b43-phy0 debug: Wireless interface stopped
[  207.007322] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.007545] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.009291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.011296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.013293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.015298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  207.161463] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  207.163853] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  208.544478] b43-phy0 debug: Chip initialized
[  208.544630] b43-phy0 debug: 64-bit DMA initialized
[  208.553525] Registered led device: b43-phy0::tx
[  208.554006] Registered led device: b43-phy0::rx
[  208.554478] Registered led device: b43-phy0::radio
[  208.554970] b43-phy0 debug: Wireless interface started
[  208.554974] __ratelimit: 6 callbacks suppressed
[  208.554976] b43-phy0: Controller restarted
[  208.555043] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  208.555049] b43-phy0: Controller RESET (DMA error) ...
[  208.555086] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  208.555091] b43-phy0: Controller RESET (DMA error) ...
[  208.564569] b43-phy0 debug: Wireless interface stopped
[  208.565696] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.565922] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.567464] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.569308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.571295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.573296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  208.719470] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  208.721858] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  210.102476] b43-phy0 debug: Chip initialized
[  210.102625] b43-phy0 debug: 64-bit DMA initialized
[  210.111510] Registered led device: b43-phy0::tx
[  210.111987] Registered led device: b43-phy0::rx
[  210.112488] Registered led device: b43-phy0::radio
[  210.112748] b43-phy0 debug: Wireless interface started
[  210.112753] b43-phy0: Controller restarted
[  210.112786] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  210.112792] b43-phy0: Controller RESET (DMA error) ...
[  210.112834] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  210.112839] b43-phy0: Controller RESET (DMA error) ...
[  210.112875] b43-phy0 debug: Wireless interface stopped
[  210.114523] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.114747] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.116291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.118293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.120295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.122299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  210.268448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  210.270837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  211.651462] b43-phy0 debug: Chip initialized
[  211.651613] b43-phy0 debug: 64-bit DMA initialized
[  211.660505] Registered led device: b43-phy0::tx
[  211.660984] Registered led device: b43-phy0::rx
[  211.661488] Registered led device: b43-phy0::radio
[  211.661748] b43-phy0 debug: Wireless interface started
[  211.671569] b43-phy0 debug: Wireless interface stopped
[  211.672692] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.672917] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.674470] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.676293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.678293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.680293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  211.826448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  211.828837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  213.209479] b43-phy0 debug: Chip initialized
[  213.209644] b43-phy0 debug: 64-bit DMA initialized
[  213.218581] Registered led device: b43-phy0::tx
[  213.219437] Registered led device: b43-phy0::rx
[  213.219653] Registered led device: b43-phy0::radio
[  213.219724] b43-phy0 debug: Wireless interface started
[  213.219829] b43-phy0 debug: Wireless interface stopped
[  213.219933] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.220158] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.221265] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.223297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.225307] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.227297] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  213.373446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  213.375836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  214.756476] b43-phy0 debug: Chip initialized
[  214.756629] b43-phy0 debug: 64-bit DMA initialized
[  214.765527] Registered led device: b43-phy0::tx
[  214.766010] Registered led device: b43-phy0::rx
[  214.766486] Registered led device: b43-phy0::radio
[  214.766981] b43-phy0 debug: Wireless interface started
[  214.766985] __ratelimit: 10 callbacks suppressed
[  214.766987] b43-phy0: Controller restarted
[  214.767048] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  214.767054] b43-phy0: Controller RESET (DMA error) ...
[  214.767085] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  214.767089] b43-phy0: Controller RESET (DMA error) ...
[  214.767282] b43-phy0 debug: Wireless interface stopped
[  214.767933] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.768163] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.770470] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.772298] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.774293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.776293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  214.922447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  214.924832] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  216.310478] b43-phy0 debug: Chip initialized
[  216.310650] b43-phy0 debug: 64-bit DMA initialized
[  216.319576] Registered led device: b43-phy0::tx
[  216.320422] Registered led device: b43-phy0::rx
[  216.320637] Registered led device: b43-phy0::radio
[  216.320744] b43-phy0 debug: Wireless interface started
[  216.320748] b43-phy0: Controller restarted
[  216.320791] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  216.320797] b43-phy0: Controller RESET (DMA error) ...
[  216.320834] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  216.320839] b43-phy0: Controller RESET (DMA error) ...
[  216.320879] b43-phy0 debug: Wireless interface stopped
[  216.320982] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.321206] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.323271] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.325292] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.327294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.329293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  216.475460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  216.477849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  217.858476] b43-phy0 debug: Chip initialized
[  217.858635] b43-phy0 debug: 64-bit DMA initialized
[  217.867517] Registered led device: b43-phy0::tx
[  217.867996] Registered led device: b43-phy0::rx
[  217.868493] Registered led device: b43-phy0::radio
[  217.868754] b43-phy0 debug: Wireless interface started
[  217.868863] b43-phy0 debug: Wireless interface stopped
[  217.870319] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  217.870543] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  217.872289] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  217.874293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  217.876296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  217.878295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  218.024449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  218.026838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  219.407477] b43-phy0 debug: Chip initialized
[  219.407630] b43-phy0 debug: 64-bit DMA initialized
[  219.416522] Registered led device: b43-phy0::tx
[  219.417001] Registered led device: b43-phy0::rx
[  219.417478] Registered led device: b43-phy0::radio
[  219.417973] b43-phy0 debug: Wireless interface started
[  219.418092] b43-phy0 debug: Wireless interface stopped
[  219.418766] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.418829] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.420268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.422294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.424294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.426293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  219.573449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  219.575837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  220.963477] b43-phy0 debug: Chip initialized
[  220.963642] b43-phy0 debug: 64-bit DMA initialized
[  220.972586] Registered led device: b43-phy0::tx
[  220.973438] Registered led device: b43-phy0::rx
[  220.973653] Registered led device: b43-phy0::radio
[  220.973725] b43-phy0 debug: Wireless interface started
[  220.973759] __ratelimit: 10 callbacks suppressed
[  220.973761] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  220.973766] b43-phy0: Controller RESET (DMA error) ...
[  220.973770] b43-phy0: Controller restarted
[  220.973804] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  220.973809] b43-phy0: Controller RESET (DMA error) ...
[  220.973917] b43-phy0 debug: Wireless interface stopped
[  220.974026] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  220.974249] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  220.976282] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  220.978295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  220.980284] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  220.982295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  221.128477] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  221.130861] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  222.516512] b43-phy0 debug: Chip initialized
[  222.516689] b43-phy0 debug: 64-bit DMA initialized
[  222.527362] Registered led device: b43-phy0::tx
[  222.528181] Registered led device: b43-phy0::rx
[  222.528513] Registered led device: b43-phy0::radio
[  222.528775] b43-phy0 debug: Wireless interface started
[  222.528809] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  222.528814] b43-phy0: Controller RESET (DMA error) ...
[  222.528817] b43-phy0: Controller restarted
[  222.528851] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  222.528856] b43-phy0: Controller RESET (DMA error) ...
[  222.528911] b43-phy0 debug: Wireless interface stopped
[  222.529320] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.529545] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.531266] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.533283] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.535282] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.537285] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  222.696468] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  222.698859] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  224.081477] b43-phy0 debug: Chip initialized
[  224.081666] b43-phy0 debug: 64-bit DMA initialized
[  224.090624] Registered led device: b43-phy0::tx
[  224.091486] Registered led device: b43-phy0::rx
[  224.091701] Registered led device: b43-phy0::radio
[  224.091774] b43-phy0 debug: Wireless interface started
[  224.091812] b43-phy0 debug: Wireless interface stopped
[  224.091917] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.092145] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.093270] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.095290] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.097298] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.099294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  224.245448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  224.247838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  225.630464] b43-phy0 debug: Chip initialized
[  225.630622] b43-phy0 debug: 64-bit DMA initialized
[  225.639530] Registered led device: b43-phy0::tx
[  225.640018] Registered led device: b43-phy0::rx
[  225.640495] Registered led device: b43-phy0::radio
[  225.641030] b43-phy0 debug: Wireless interface started
[  225.641143] b43-phy0 debug: Wireless interface stopped
[  225.641834] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.642059] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.643287] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.645294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.647294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.649294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  225.795458] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  225.797845] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  227.180466] b43-phy0 debug: Chip initialized
[  227.180626] b43-phy0 debug: 64-bit DMA initialized
[  227.189216] Registered led device: b43-phy0::tx
[  227.189238] Registered led device: b43-phy0::rx
[  227.189789] Registered led device: b43-phy0::radio
[  227.190055] b43-phy0 debug: Wireless interface started
[  227.190061] __ratelimit: 6 callbacks suppressed
[  227.190063] b43-phy0: Controller restarted
[  227.190117] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  227.190123] b43-phy0: Controller RESET (DMA error) ...
[  227.190200] b43-phy0 debug: Wireless interface stopped
[  227.191760] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.191985] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.193296] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.195295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.197295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.199296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  227.345446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  227.347836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  228.730463] b43-phy0 debug: Chip initialized
[  228.730613] b43-phy0 debug: 64-bit DMA initialized
[  228.739520] Registered led device: b43-phy0::tx
[  228.740007] Registered led device: b43-phy0::rx
[  228.740480] Registered led device: b43-phy0::radio
[  228.740974] b43-phy0 debug: Wireless interface started
[  228.740979] b43-phy0: Controller restarted
[  228.741020] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  228.741025] b43-phy0: Controller RESET (DMA error) ...
[  228.741056] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  228.741061] b43-phy0: Controller RESET (DMA error) ...
[  228.741100] b43-phy0 debug: Wireless interface stopped
[  228.742530] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.742569] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.744305] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.746315] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.748294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.750298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  228.896458] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  228.898847] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  230.281478] b43-phy0 debug: Chip initialized
[  230.281642] b43-phy0 debug: 64-bit DMA initialized
[  230.290570] Registered led device: b43-phy0::tx
[  230.291423] Registered led device: b43-phy0::rx
[  230.291639] Registered led device: b43-phy0::radio
[  230.291711] b43-phy0 debug: Wireless interface started
[  230.291714] b43-phy0: Controller restarted
[  230.291786] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  230.301569] b43-phy0 debug: Wireless interface stopped
[  230.301688] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.301914] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.303269] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.305293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.307294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.309293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  230.455448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  230.457835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  231.840476] b43-phy0 debug: Chip initialized
[  231.840633] b43-phy0 debug: 64-bit DMA initialized
[  231.849517] Registered led device: b43-phy0::tx
[  231.849999] Registered led device: b43-phy0::rx
[  231.850501] Registered led device: b43-phy0::radio
[  231.850762] b43-phy0 debug: Wireless interface started
[  231.850856] b43-phy0 debug: Wireless interface stopped
[  231.852308] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  231.852532] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  231.854302] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  231.856309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  231.858295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  231.860302] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  232.006448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  232.008838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  233.391478] b43-phy0 debug: Chip initialized
[  233.391631] b43-phy0 debug: 64-bit DMA initialized
[  233.400515] Registered led device: b43-phy0::tx
[  233.400991] Registered led device: b43-phy0::rx
[  233.401492] Registered led device: b43-phy0::radio
[  233.401752] b43-phy0 debug: Wireless interface started
[  233.401756] __ratelimit: 8 callbacks suppressed
[  233.401758] b43-phy0: Controller restarted
[  233.401810] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  233.401816] b43-phy0: Controller RESET (DMA error) ...
[  233.411569] b43-phy0 debug: Wireless interface stopped
[  233.412703] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.412929] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.414469] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.416308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.418295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.420296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  233.567447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  233.569839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  234.952465] b43-phy0 debug: Chip initialized
[  234.952617] b43-phy0 debug: 64-bit DMA initialized
[  234.961514] Registered led device: b43-phy0::tx
[  234.961992] Registered led device: b43-phy0::rx
[  234.962496] Registered led device: b43-phy0::radio
[  234.962757] b43-phy0 debug: Wireless interface started
[  234.962762] b43-phy0: Controller restarted
[  234.962791] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  234.962797] b43-phy0: Controller RESET (DMA error) ...
[  234.962831] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  234.962836] b43-phy0: Controller RESET (DMA error) ...
[  234.962873] b43-phy0 debug: Wireless interface stopped
[  234.964147] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  234.964387] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  234.966502] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  234.968300] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  234.970296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  234.972300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  235.118450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  235.120837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  236.503464] b43-phy0 debug: Chip initialized
[  236.503620] b43-phy0 debug: 64-bit DMA initialized
[  236.512513] Registered led device: b43-phy0::tx
[  236.512995] Registered led device: b43-phy0::rx
[  236.513494] Registered led device: b43-phy0::radio
[  236.513754] b43-phy0 debug: Wireless interface started
[  236.513757] b43-phy0: Controller restarted
[  236.513815] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  236.523569] b43-phy0 debug: Wireless interface stopped
[  236.524694] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.524921] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.526466] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.528308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.530295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.532295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  236.678461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  236.680848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  238.063476] b43-phy0 debug: Chip initialized
[  238.063629] b43-phy0 debug: 64-bit DMA initialized
[  238.072538] Registered led device: b43-phy0::tx
[  238.073020] Registered led device: b43-phy0::rx
[  238.073498] Registered led device: b43-phy0::radio
[  238.073991] b43-phy0 debug: Wireless interface started
[  238.074080] b43-phy0 debug: Wireless interface stopped
[  238.074783] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.075010] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.076502] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.078296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.080294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.082298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  238.228450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  238.230839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  239.618465] b43-phy0 debug: Chip initialized
[  239.618634] b43-phy0 debug: 64-bit DMA initialized
[  239.627569] Registered led device: b43-phy0::tx
[  239.628425] Registered led device: b43-phy0::rx
[  239.628640] Registered led device: b43-phy0::radio
[  239.628712] b43-phy0 debug: Wireless interface started
[  239.628715] __ratelimit: 6 callbacks suppressed
[  239.628717] b43-phy0: Controller restarted
[  239.628755] b43-phy0 debug: Wireless interface stopped
[  239.628857] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.629084] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.630273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.632290] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.634296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.636293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  239.782447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  239.784833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  241.167478] b43-phy0 debug: Chip initialized
[  241.167634] b43-phy0 debug: 64-bit DMA initialized
[  241.176515] Registered led device: b43-phy0::tx
[  241.176995] Registered led device: b43-phy0::rx
[  241.177499] Registered led device: b43-phy0::radio
[  241.177759] b43-phy0 debug: Wireless interface started
[  241.177764] b43-phy0: Controller restarted
[  241.177820] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  241.177826] b43-phy0: Controller RESET (DMA error) ...
[  241.187574] b43-phy0 debug: Wireless interface stopped
[  241.188700] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.188925] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.190463] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.192309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.194295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.196296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  241.342449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  241.344838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  242.727463] b43-phy0 debug: Chip initialized
[  242.727617] b43-phy0 debug: 64-bit DMA initialized
[  242.736509] Registered led device: b43-phy0::tx
[  242.736986] Registered led device: b43-phy0::rx
[  242.737491] Registered led device: b43-phy0::radio
[  242.737751] b43-phy0 debug: Wireless interface started
[  242.737756] b43-phy0: Controller restarted
[  242.737789] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  242.737795] b43-phy0: Controller RESET (DMA error) ...
[  242.737837] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  242.737842] b43-phy0: Controller RESET (DMA error) ...
[  242.737878] b43-phy0 debug: Wireless interface stopped
[  242.739509] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.739734] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.741291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.743293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.745295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.747300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  242.893448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  242.895835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  244.278480] b43-phy0 debug: Chip initialized
[  244.278643] b43-phy0 debug: 64-bit DMA initialized
[  244.287582] Registered led device: b43-phy0::tx
[  244.288440] Registered led device: b43-phy0::rx
[  244.288656] Registered led device: b43-phy0::radio
[  244.288728] b43-phy0 debug: Wireless interface started
[  244.288731] b43-phy0: Controller restarted
[  244.298569] b43-phy0 debug: Wireless interface stopped
[  244.298687] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.298914] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.300269] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.302295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.304293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.306293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  244.452450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  244.454836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  245.837477] b43-phy0 debug: Chip initialized
[  245.837633] b43-phy0 debug: 64-bit DMA initialized
[  245.846505] Registered led device: b43-phy0::tx
[  245.846985] Registered led device: b43-phy0::rx
[  245.847841] Registered led device: b43-phy0::radio
[  245.848102] b43-phy0 debug: Wireless interface started
[  245.848180] b43-phy0 debug: Wireless interface stopped
[  245.848423] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  245.848646] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  245.850272] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  245.852295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  245.854293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  245.856298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  246.002447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  246.004837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  247.387478] b43-phy0 debug: Chip initialized
[  247.387631] b43-phy0 debug: 64-bit DMA initialized
[  247.396514] Registered led device: b43-phy0::tx
[  247.396992] Registered led device: b43-phy0::rx
[  247.397512] Registered led device: b43-phy0::radio
[  247.397772] b43-phy0 debug: Wireless interface started
[  247.397775] __ratelimit: 7 callbacks suppressed
[  247.397777] b43-phy0: Controller restarted
[  247.397830] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  247.397836] b43-phy0: Controller RESET (DMA error) ...
[  247.407569] b43-phy0 debug: Wireless interface stopped
[  247.408640] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.408867] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.410298] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.412294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.414293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.416294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  247.562463] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  247.564851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  248.947465] b43-phy0 debug: Chip initialized
[  248.947616] b43-phy0 debug: 64-bit DMA initialized
[  248.956509] Registered led device: b43-phy0::tx
[  248.956985] Registered led device: b43-phy0::rx
[  248.957840] Registered led device: b43-phy0::radio
[  248.958100] b43-phy0 debug: Wireless interface started
[  248.958132] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  248.958136] b43-phy0: Controller RESET (DMA error) ...
[  248.958140] b43-phy0: Controller restarted
[  248.958175] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  248.958181] b43-phy0: Controller RESET (DMA error) ...
[  248.958214] b43-phy0 debug: Wireless interface stopped
[  248.958824] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  248.959050] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  248.960292] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  248.962293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  248.964294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  248.966298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  249.112449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  249.114839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  250.512528] b43-phy0 debug: Chip initialized
[  250.512697] b43-phy0 debug: 64-bit DMA initialized
[  250.521232] Registered led device: b43-phy0::tx
[  250.521263] Registered led device: b43-phy0::rx
[  250.521286] Registered led device: b43-phy0::radio
[  250.521358] b43-phy0 debug: Wireless interface started
[  250.521387] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  250.521392] b43-phy0: Controller restarted
[  250.521430] b43-phy0 debug: Wireless interface stopped
[  250.521519] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.521550] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.523268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.525303] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.527303] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.529294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  250.675462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  250.677848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  252.060477] b43-phy0 debug: Chip initialized
[  252.060632] b43-phy0 debug: 64-bit DMA initialized
[  252.069517] Registered led device: b43-phy0::tx
[  252.069995] Registered led device: b43-phy0::rx
[  252.070500] Registered led device: b43-phy0::radio
[  252.070760] b43-phy0 debug: Wireless interface started
[  252.080569] b43-phy0 debug: Wireless interface stopped
[  252.081701] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.081926] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.083466] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.085309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.087294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.089296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  252.235449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  252.237832] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  253.620466] b43-phy0 debug: Chip initialized
[  253.620620] b43-phy0 debug: 64-bit DMA initialized
[  253.629517] Registered led device: b43-phy0::tx
[  253.630002] Registered led device: b43-phy0::rx
[  253.630483] Registered led device: b43-phy0::radio
[  253.630975] b43-phy0 debug: Wireless interface started
[  253.630979] __ratelimit: 6 callbacks suppressed
[  253.630981] b43-phy0: Controller restarted
[  253.631018] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  253.631024] b43-phy0: Controller RESET (DMA error) ...
[  253.631057] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  253.631063] b43-phy0: Controller RESET (DMA error) ...
[  253.631099] b43-phy0 debug: Wireless interface stopped
[  253.632004] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.632303] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.634297] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.636294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.638293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.640297] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  253.786462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  253.788850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  255.171478] b43-phy0 debug: Chip initialized
[  255.171646] b43-phy0 debug: 64-bit DMA initialized
[  255.180228] Registered led device: b43-phy0::tx
[  255.180799] Registered led device: b43-phy0::rx
[  255.181021] Registered led device: b43-phy0::radio
[  255.181092] b43-phy0 debug: Wireless interface started
[  255.181097] b43-phy0: Controller restarted
[  255.181152] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  255.181158] b43-phy0: Controller RESET (DMA error) ...
[  255.190575] b43-phy0 debug: Wireless interface stopped
[  255.190693] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.190919] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.192267] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.194295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.196294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.198294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  255.344447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  255.346836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  256.729477] b43-phy0 debug: Chip initialized
[  256.729631] b43-phy0 debug: 64-bit DMA initialized
[  256.738514] Registered led device: b43-phy0::tx
[  256.738995] Registered led device: b43-phy0::rx
[  256.739497] Registered led device: b43-phy0::radio
[  256.739758] b43-phy0 debug: Wireless interface started
[  256.739763] b43-phy0: Controller restarted
[  256.739796] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  256.739870] b43-phy0 debug: Wireless interface stopped
[  256.740837] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.741065] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.742271] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.744300] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.746293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.748298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  256.894447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  256.896833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  258.279475] b43-phy0 debug: Chip initialized
[  258.279630] b43-phy0 debug: 64-bit DMA initialized
[  258.288520] Registered led device: b43-phy0::tx
[  258.289001] Registered led device: b43-phy0::rx
[  258.289478] Registered led device: b43-phy0::radio
[  258.289971] b43-phy0 debug: Wireless interface started
[  258.299568] b43-phy0 debug: Wireless interface stopped
[  258.300685] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.300910] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.302470] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.304293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.306293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.308293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  258.454460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  258.456850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  259.839478] b43-phy0 debug: Chip initialized
[  259.839646] b43-phy0 debug: 64-bit DMA initialized
[  259.848578] Registered led device: b43-phy0::tx
[  259.849434] Registered led device: b43-phy0::rx
[  259.849649] Registered led device: b43-phy0::radio
[  259.849720] b43-phy0 debug: Wireless interface started
[  259.849724] __ratelimit: 6 callbacks suppressed
[  259.849726] b43-phy0: Controller restarted
[  259.849768] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  259.849774] b43-phy0: Controller RESET (DMA error) ...
[  259.849807] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  259.849812] b43-phy0: Controller RESET (DMA error) ...
[  259.849843] b43-phy0 debug: Wireless interface stopped
[  259.849956] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  259.850192] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  259.853211] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  259.854335] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  259.857211] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  259.858313] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  260.006443] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  260.008829] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  261.392471] b43-phy0 debug: Chip initialized
[  261.392628] b43-phy0 debug: 64-bit DMA initialized
[  261.401219] Registered led device: b43-phy0::tx
[  261.401279] Registered led device: b43-phy0::rx
[  261.401302] Registered led device: b43-phy0::radio
[  261.401373] b43-phy0 debug: Wireless interface started
[  261.401375] b43-phy0: 
[  261.401402] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  261.401407] b43-phy0: Controller RESET (DMA error) ...
[  261.401410] Controller restarted
[  261.401448] b43-phy0 debug: Wireless interface stopped
[  261.401532] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.401559] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.403016] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.405019] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.407221] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.409213] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  261.555443] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  261.557829] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  262.941458] b43-phy0 debug: Chip initialized
[  262.941615] b43-phy0 debug: 64-bit DMA initialized
[  262.950231] Registered led device: b43-phy0::tx
[  262.950256] Registered led device: b43-phy0::rx
[  262.950277] Registered led device: b43-phy0::radio
[  262.950346] b43-phy0 debug: Wireless interface started
[  262.950350] b43-phy0: Controller restarted
[  262.950425] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  262.959494] b43-phy0 debug: Wireless interface stopped
[  262.959610] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  262.959836] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  262.961017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  262.963220] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  262.965218] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  262.967219] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  263.113451] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  263.115841] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  264.498457] b43-phy0 debug: Chip initialized
[  264.498611] b43-phy0 debug: 64-bit DMA initialized
[  264.507520] Registered led device: b43-phy0::tx
[  264.507920] Registered led device: b43-phy0::rx
[  264.508767] Registered led device: b43-phy0::radio
[  264.509040] b43-phy0 debug: Wireless interface started
[  264.509208] b43-phy0 debug: Wireless interface stopped
[  264.509313] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.509534] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.511019] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.513221] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.515218] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.517215] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  264.664453] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  264.666839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  266.049469] b43-phy0 debug: Chip initialized
[  266.049633] b43-phy0 debug: 64-bit DMA initialized
[  266.058586] Registered led device: b43-phy0::tx
[  266.058950] Registered led device: b43-phy0::rx
[  266.059462] Registered led device: b43-phy0::radio
[  266.059956] b43-phy0 debug: Wireless interface started
[  266.059986] __ratelimit: 8 callbacks suppressed
[  266.059988] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  266.059993] b43-phy0: Controller RESET (DMA error) ...
[  266.059996] b43-phy0: Controller restarted
[  266.060024] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  266.060030] b43-phy0: Controller RESET (DMA error) ...
[  266.060821] b43-phy0 debug: Wireless interface stopped
[  266.060948] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.061189] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.063025] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.065219] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.067212] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.069214] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  266.215440] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  266.217827] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  267.600571] b43-phy0 debug: Chip initialized
[  267.600727] b43-phy0 debug: 64-bit DMA initialized
[  267.609218] Registered led device: b43-phy0::tx
[  267.609281] Registered led device: b43-phy0::rx
[  267.609304] Registered led device: b43-phy0::radio
[  267.609374] b43-phy0 debug: Wireless interface started
[  267.609377] b43-phy0: Controller restarted
[  267.609421] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  267.609427] b43-phy0: Controller RESET (DMA error) ...
[  267.609466] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  267.609470] b43-phy0: Controller RESET (DMA error) ...
[  267.609505] b43-phy0 debug: Wireless interface stopped
[  267.609596] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.609626] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.611274] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.613283] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.615292] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.617292] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  267.763448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  267.765839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  269.148466] b43-phy0 debug: Chip initialized
[  269.148618] b43-phy0 debug: 64-bit DMA initialized
[  269.157212] Registered led device: b43-phy0::tx
[  269.157235] Registered led device: b43-phy0::rx
[  269.157782] Registered led device: b43-phy0::radio
[  269.158046] b43-phy0 debug: Wireless interface started
[  269.158971] b43-phy0 debug: Wireless interface stopped
[  269.159085] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.159320] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.161312] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.163306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.165293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.167294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  269.313459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  269.315845] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  270.698478] b43-phy0 debug: Chip initialized
[  270.698631] b43-phy0 debug: 64-bit DMA initialized
[  270.707510] Registered led device: b43-phy0::tx
[  270.707988] Registered led device: b43-phy0::rx
[  270.708494] Registered led device: b43-phy0::radio
[  270.708754] b43-phy0 debug: Wireless interface started
[  270.708824] b43-phy0 debug: Wireless interface stopped
[  270.710370] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.710593] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.712290] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.714294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.716296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.718295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  270.864448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  270.866837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  272.249464] b43-phy0 debug: Chip initialized
[  272.249617] b43-phy0 debug: 64-bit DMA initialized
[  272.258513] Registered led device: b43-phy0::tx
[  272.258997] Registered led device: b43-phy0::rx
[  272.259505] Registered led device: b43-phy0::radio
[  272.259765] b43-phy0 debug: Wireless interface started
[  272.259771] __ratelimit: 6 callbacks suppressed
[  272.259773] b43-phy0: Controller restarted
[  272.259805] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  272.259810] b43-phy0: Controller RESET (DMA error) ...
[  272.259845] b43-phy0 debug: Wireless interface stopped
[  272.261461] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.261686] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.263290] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.265293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.267295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.269295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  272.415447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  272.417833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  273.800462] b43-phy0 debug: Chip initialized
[  273.800614] b43-phy0 debug: 64-bit DMA initialized
[  273.809506] Registered led device: b43-phy0::tx
[  273.809981] Registered led device: b43-phy0::rx
[  273.810835] Registered led device: b43-phy0::radio
[  273.811096] b43-phy0 debug: Wireless interface started
[  273.811127] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  273.811131] b43-phy0: Controller RESET (DMA error) ...
[  273.811135] b43-phy0: Controller restarted
[  273.811169] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  273.811174] b43-phy0: Controller RESET (DMA error) ...
[  273.811211] b43-phy0 debug: Wireless interface stopped
[  273.811819] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.812046] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.813286] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.815293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.817294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.819294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  273.965448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  273.967836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  275.350476] b43-phy0 debug: Chip initialized
[  275.350628] b43-phy0 debug: 64-bit DMA initialized
[  275.359514] Registered led device: b43-phy0::tx
[  275.359992] Registered led device: b43-phy0::rx
[  275.360496] Registered led device: b43-phy0::radio
[  275.360756] b43-phy0 debug: Wireless interface started
[  275.360761] b43-phy0: Controller restarted
[  275.360795] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  275.360832] b43-phy0 debug: Wireless interface stopped
[  275.362380] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.362603] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.364292] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.366293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.368296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.370293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  275.516446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  275.518834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  276.901476] b43-phy0 debug: Chip initialized
[  276.901643] b43-phy0 debug: 64-bit DMA initialized
[  276.910588] Registered led device: b43-phy0::tx
[  276.911450] Registered led device: b43-phy0::rx
[  276.911666] Registered led device: b43-phy0::radio
[  276.911737] b43-phy0 debug: Wireless interface started
[  276.911777] b43-phy0 debug: Wireless interface stopped
[  276.911884] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  276.912112] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  276.913272] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  276.915290] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  276.917296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  276.919293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  277.065447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  277.067832] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  278.450475] b43-phy0 debug: Chip initialized
[  278.450631] b43-phy0 debug: 64-bit DMA initialized
[  278.459518] Registered led device: b43-phy0::tx
[  278.460000] Registered led device: b43-phy0::rx
[  278.460509] Registered led device: b43-phy0::radio
[  278.460769] b43-phy0 debug: Wireless interface started
[  278.460775] __ratelimit: 2 callbacks suppressed
[  278.460777] b43-phy0: Controller restarted
[  278.460805] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  278.460811] b43-phy0: Controller RESET (DMA error) ...
[  278.460871] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  278.460876] b43-phy0: Controller RESET (DMA error) ...
[  278.460973] b43-phy0 debug: Wireless interface stopped
[  278.462701] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.462970] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.464301] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.466295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.468293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.470293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  278.617446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  278.619837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  280.002480] b43-phy0 debug: Chip initialized
[  280.002632] b43-phy0 debug: 64-bit DMA initialized
[  280.011517] Registered led device: b43-phy0::tx
[  280.011996] Registered led device: b43-phy0::rx
[  280.012502] Registered led device: b43-phy0::radio
[  280.012761] b43-phy0 debug: Wireless interface started
[  280.012766] b43-phy0: Controller restarted
[  280.012797] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  280.012803] b43-phy0: Controller RESET (DMA error) ...
[  280.012840] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  280.012844] b43-phy0: Controller RESET (DMA error) ...
[  280.012885] b43-phy0 debug: Wireless interface stopped
[  280.014102] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.014343] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.016501] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.018294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.020296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.022295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  280.168450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  280.170838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  281.553464] b43-phy0 debug: Chip initialized
[  281.553619] b43-phy0 debug: 64-bit DMA initialized
[  281.562511] Registered led device: b43-phy0::tx
[  281.562992] Registered led device: b43-phy0::rx
[  281.563501] Registered led device: b43-phy0::radio
[  281.563761] b43-phy0 debug: Wireless interface started
[  281.563926] b43-phy0 debug: Wireless interface stopped
[  281.565378] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.565602] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.567301] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.569294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.571464] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.573295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  281.719459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  281.721849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  283.104476] b43-phy0 debug: Chip initialized
[  283.104630] b43-phy0 debug: 64-bit DMA initialized
[  283.113539] Registered led device: b43-phy0::tx
[  283.114027] Registered led device: b43-phy0::rx
[  283.114508] Registered led device: b43-phy0::radio
[  283.115001] b43-phy0 debug: Wireless interface started
[  283.115093] b43-phy0 debug: Wireless interface stopped
[  283.115591] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.115817] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.117504] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.119296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.121293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.123299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  283.269462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  283.271848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  284.654476] b43-phy0 debug: Chip initialized
[  284.654629] b43-phy0 debug: 64-bit DMA initialized
[  284.663210] Registered led device: b43-phy0::tx
[  284.663233] Registered led device: b43-phy0::rx
[  284.663773] Registered led device: b43-phy0::radio
[  284.664037] b43-phy0 debug: Wireless interface started
[  284.664041] __ratelimit: 10 callbacks suppressed
[  284.664043] b43-phy0: Controller restarted
[  284.664074] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  284.664079] b43-phy0: Controller RESET (DMA error) ...
[  284.664113] b43-phy0 debug: Wireless interface stopped
[  284.664210] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.664445] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.667509] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.669304] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.671293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.673294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  284.819458] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  284.821848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  286.204478] b43-phy0 debug: Chip initialized
[  286.204631] b43-phy0 debug: 64-bit DMA initialized
[  286.213512] Registered led device: b43-phy0::tx
[  286.213993] Registered led device: b43-phy0::rx
[  286.214500] Registered led device: b43-phy0::radio
[  286.214759] b43-phy0 debug: Wireless interface started
[  286.214764] b43-phy0: Controller restarted
[  286.214821] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  286.214826] b43-phy0: Controller RESET (DMA error) ...
[  286.224569] b43-phy0 debug: Wireless interface stopped
[  286.225701] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.225926] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.227469] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.229308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.231294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.233296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  286.379448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  286.381836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  287.764476] b43-phy0 debug: Chip initialized
[  287.764632] b43-phy0 debug: 64-bit DMA initialized
[  287.773510] Registered led device: b43-phy0::tx
[  287.773985] Registered led device: b43-phy0::rx
[  287.774842] Registered led device: b43-phy0::radio
[  287.775103] b43-phy0 debug: Wireless interface started
[  287.775136] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  287.775140] b43-phy0: Controller RESET (DMA error) ...
[  287.775144] b43-phy0: Controller restarted
[  287.775179] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  287.775214] b43-phy0 debug: Wireless interface stopped
[  287.775811] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.776038] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.777291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.779294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.781293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.783298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  287.929447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  287.931836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  289.314479] b43-phy0 debug: Chip initialized
[  289.314644] b43-phy0 debug: 64-bit DMA initialized
[  289.323581] Registered led device: b43-phy0::tx
[  289.324446] Registered led device: b43-phy0::rx
[  289.324662] Registered led device: b43-phy0::radio
[  289.324733] b43-phy0 debug: Wireless interface started
[  289.324771] b43-phy0 debug: Wireless interface stopped
[  289.324876] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.325103] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.326267] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.328289] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.330299] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.332293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  289.478460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  289.480850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  290.863478] b43-phy0 debug: Chip initialized
[  290.863635] b43-phy0 debug: 64-bit DMA initialized
[  290.872518] Registered led device: b43-phy0::tx
[  290.872995] Registered led device: b43-phy0::rx
[  290.873498] Registered led device: b43-phy0::radio
[  290.873758] b43-phy0 debug: Wireless interface started
[  290.873762] __ratelimit: 2 callbacks suppressed
[  290.873764] b43-phy0: Controller restarted
[  290.873817] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  290.873822] b43-phy0: Controller RESET (DMA error) ...
[  290.883569] b43-phy0 debug: Wireless interface stopped
[  290.884705] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  290.884932] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  290.886464] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  290.888308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  290.890295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  290.892296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  291.038451] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  291.040840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  292.423477] b43-phy0 debug: Chip initialized
[  292.423632] b43-phy0 debug: 64-bit DMA initialized
[  292.432507] Registered led device: b43-phy0::tx
[  292.432978] Registered led device: b43-phy0::rx
[  292.433839] Registered led device: b43-phy0::radio
[  292.434100] b43-phy0 debug: Wireless interface started
[  292.434103] b43-phy0: 
[  292.434130] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  292.434135] b43-phy0: Controller RESET (DMA error) ...
[  292.434138] Controller restarted
[  292.434183] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  292.434188] b43-phy0: Controller RESET (DMA error) ...
[  292.434218] b43-phy0 debug: Wireless interface stopped
[  292.434854] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.435082] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.436291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.438295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.440294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.442298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  292.588448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  292.591350] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  293.973475] b43-phy0 debug: Chip initialized
[  293.973627] b43-phy0 debug: 64-bit DMA initialized
[  293.982511] Registered led device: b43-phy0::tx
[  293.982991] Registered led device: b43-phy0::rx
[  293.983487] Registered led device: b43-phy0::radio
[  293.983746] b43-phy0 debug: Wireless interface started
[  293.983751] b43-phy0: Controller restarted
[  293.983786] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  293.983823] b43-phy0 debug: Wireless interface stopped
[  293.985343] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  293.985567] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  293.987291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  293.989294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  293.991295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  293.993295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  294.139447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  294.141838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  295.524465] b43-phy0 debug: Chip initialized
[  295.524617] b43-phy0 debug: 64-bit DMA initialized
[  295.533515] Registered led device: b43-phy0::tx
[  295.533994] Registered led device: b43-phy0::rx
[  295.534500] Registered led device: b43-phy0::radio
[  295.534760] b43-phy0 debug: Wireless interface started
[  295.544569] b43-phy0 debug: Wireless interface stopped
[  295.545695] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.545922] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.547463] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.549309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.551295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.553295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  295.700462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  295.702853] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  297.085478] b43-phy0 debug: Chip initialized
[  297.085630] b43-phy0 debug: 64-bit DMA initialized
[  297.094506] Registered led device: b43-phy0::tx
[  297.094982] Registered led device: b43-phy0::rx
[  297.095835] Registered led device: b43-phy0::radio
[  297.096095] b43-phy0 debug: Wireless interface started
[  297.096127] __ratelimit: 4 callbacks suppressed
[  297.096129] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  297.096134] b43-phy0: Controller RESET (DMA error) ...
[  297.096137] b43-phy0: Controller restarted
[  297.096172] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  297.096178] b43-phy0: Controller RESET (DMA error) ...
[  297.096211] b43-phy0 debug: Wireless interface stopped
[  297.096850] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.097077] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.098289] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.100295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.102294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.104298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  297.250448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  297.252837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  298.635466] b43-phy0 debug: Chip initialized
[  298.635619] b43-phy0 debug: 64-bit DMA initialized
[  298.644517] Registered led device: b43-phy0::tx
[  298.644998] Registered led device: b43-phy0::rx
[  298.645496] Registered led device: b43-phy0::radio
[  298.645756] b43-phy0 debug: Wireless interface started
[  298.645759] b43-phy0: Controller restarted
[  298.645792] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  298.645798] b43-phy0: Controller RESET (DMA error) ...
[  298.645832] b43-phy0 debug: Wireless interface stopped
[  298.647399] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.647623] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.649284] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.651302] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.653295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.655294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  298.801449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  298.803837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  300.186478] b43-phy0 debug: Chip initialized
[  300.186645] b43-phy0 debug: 64-bit DMA initialized
[  300.195584] Registered led device: b43-phy0::tx
[  300.196439] Registered led device: b43-phy0::rx
[  300.196655] Registered led device: b43-phy0::radio
[  300.196726] b43-phy0 debug: Wireless interface started
[  300.196729] b43-phy0: Controller restarted
[  300.196801] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  300.206569] b43-phy0 debug: Wireless interface stopped
[  300.206688] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.206914] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.208268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.210293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.212294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.214294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  300.360448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  300.362838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  301.745465] b43-phy0 debug: Chip initialized
[  301.745620] b43-phy0 debug: 64-bit DMA initialized
[  301.754514] Registered led device: b43-phy0::tx
[  301.754995] Registered led device: b43-phy0::rx
[  301.755500] Registered led device: b43-phy0::radio
[  301.755761] b43-phy0 debug: Wireless interface started
[  301.755853] b43-phy0 debug: Wireless interface stopped
[  301.757304] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.757528] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.759302] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.761293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.763295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.765299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  301.911449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  301.913836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  303.296476] b43-phy0 debug: Chip initialized
[  303.296628] b43-phy0 debug: 64-bit DMA initialized
[  303.305506] Registered led device: b43-phy0::tx
[  303.305982] Registered led device: b43-phy0::rx
[  303.306836] Registered led device: b43-phy0::radio
[  303.307096] b43-phy0 debug: Wireless interface started
[  303.307128] __ratelimit: 6 callbacks suppressed
[  303.307130] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  303.307135] b43-phy0: Controller RESET (DMA error) ...
[  303.307139] b43-phy0: Controller restarted
[  303.307167] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  303.307172] b43-phy0: Controller RESET (DMA error) ...
[  303.316568] b43-phy0 debug: Wireless interface stopped
[  303.316684] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.316910] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.318270] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.320293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.322294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.324293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  303.470447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  303.472836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  304.855478] b43-phy0 debug: Chip initialized
[  304.855630] b43-phy0 debug: 64-bit DMA initialized
[  304.864509] Registered led device: b43-phy0::tx
[  304.864988] Registered led device: b43-phy0::rx
[  304.865487] Registered led device: b43-phy0::radio
[  304.865746] b43-phy0 debug: Wireless interface started
[  304.865749] b43-phy0: Controller restarted
[  304.865781] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  304.865787] b43-phy0: Controller RESET (DMA error) ...
[  304.865825] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  304.865830] b43-phy0: Controller RESET (DMA error) ...
[  304.865866] b43-phy0 debug: Wireless interface stopped
[  304.867493] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  304.867717] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  304.869291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  304.871293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  304.873296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  304.875299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  305.021463] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  305.023849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  306.406477] b43-phy0 debug: Chip initialized
[  306.406629] b43-phy0 debug: 64-bit DMA initialized
[  306.415517] Registered led device: b43-phy0::tx
[  306.415995] Registered led device: b43-phy0::rx
[  306.416505] Registered led device: b43-phy0::radio
[  306.416764] b43-phy0 debug: Wireless interface started
[  306.426569] b43-phy0 debug: Wireless interface stopped
[  306.427694] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.427920] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.429466] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.431308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.433295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.435295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  306.581448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  306.583834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  307.966475] b43-phy0 debug: Chip initialized
[  307.966628] b43-phy0 debug: 64-bit DMA initialized
[  307.975505] Registered led device: b43-phy0::tx
[  307.975980] Registered led device: b43-phy0::rx
[  307.976838] Registered led device: b43-phy0::radio
[  307.977098] b43-phy0 debug: Wireless interface started
[  307.977196] b43-phy0 debug: Wireless interface stopped
[  307.977628] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  307.977851] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  307.979278] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  307.981295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  307.983294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  307.985298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  308.131450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  308.133840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  309.516465] b43-phy0 debug: Chip initialized
[  309.516618] b43-phy0 debug: 64-bit DMA initialized
[  309.525516] Registered led device: b43-phy0::tx
[  309.525995] Registered led device: b43-phy0::rx
[  309.526499] Registered led device: b43-phy0::radio
[  309.526758] b43-phy0 debug: Wireless interface started
[  309.526763] __ratelimit: 10 callbacks suppressed
[  309.526765] b43-phy0: Controller restarted
[  309.526798] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  309.526803] b43-phy0: Controller RESET (DMA error) ...
[  309.526838] b43-phy0 debug: Wireless interface stopped
[  309.528421] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.528645] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.530290] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.532293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.534296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.536295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  309.683461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  309.685845] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  311.068476] b43-phy0 debug: Chip initialized
[  311.068628] b43-phy0 debug: 64-bit DMA initialized
[  311.077503] Registered led device: b43-phy0::tx
[  311.077979] Registered led device: b43-phy0::rx
[  311.078845] Registered led device: b43-phy0::radio
[  311.079107] b43-phy0 debug: Wireless interface started
[  311.079140] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  311.079145] b43-phy0: Controller RESET (DMA error) ...
[  311.079148] b43-phy0: Controller restarted
[  311.079203] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  311.079208] b43-phy0: Controller RESET (DMA error) ...
[  311.088569] b43-phy0 debug: Wireless interface stopped
[  311.088684] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.088909] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.090270] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.092293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.094294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.096294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  311.242447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  311.244833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  312.627479] b43-phy0 debug: Chip initialized
[  312.627646] b43-phy0 debug: 64-bit DMA initialized
[  312.636584] Registered led device: b43-phy0::tx
[  312.637437] Registered led device: b43-phy0::rx
[  312.637652] Registered led device: b43-phy0::radio
[  312.637724] b43-phy0 debug: Wireless interface started
[  312.637729] b43-phy0: Controller restarted
[  312.637772] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  312.637843] b43-phy0 debug: Wireless interface stopped
[  312.637948] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.638173] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.639268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.641284] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.643300] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.645300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  312.791447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  312.793837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  314.176478] b43-phy0 debug: Chip initialized
[  314.176631] b43-phy0 debug: 64-bit DMA initialized
[  314.185509] Registered led device: b43-phy0::tx
[  314.185990] Registered led device: b43-phy0::rx
[  314.186495] Registered led device: b43-phy0::radio
[  314.186756] b43-phy0 debug: Wireless interface started
[  314.196569] b43-phy0 debug: Wireless interface stopped
[  314.197694] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.197920] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.199469] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.201308] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.203294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.205295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  314.351450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  314.353836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  315.736477] b43-phy0 debug: Chip initialized
[  315.736631] b43-phy0 debug: 64-bit DMA initialized
[  315.745508] Registered led device: b43-phy0::tx
[  315.745985] Registered led device: b43-phy0::rx
[  315.746841] Registered led device: b43-phy0::radio
[  315.747103] b43-phy0 debug: Wireless interface started
[  315.747107] __ratelimit: 6 callbacks suppressed
[  315.747138] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  315.747142] b43-phy0: Controller RESET (DMA error) ...
[  315.747145] b43-phy0: Controller restarted
[  315.747190] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  315.747195] b43-phy0: Controller RESET (DMA error) ...
[  315.747225] b43-phy0 debug: Wireless interface stopped
[  315.747863] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.748091] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.749318] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.751293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.753294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.755298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  315.901447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  315.903835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  317.286479] b43-phy0 debug: Chip initialized
[  317.286630] b43-phy0 debug: 64-bit DMA initialized
[  317.295512] Registered led device: b43-phy0::tx
[  317.295988] Registered led device: b43-phy0::rx
[  317.296490] Registered led device: b43-phy0::radio
[  317.296750] b43-phy0 debug: Wireless interface started
[  317.296753] b43-phy0: Controller restarted
[  317.296786] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  317.296792] b43-phy0: Controller RESET (DMA error) ...
[  317.296823] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  317.296827] b43-phy0: Controller RESET (DMA error) ...
[  317.296862] b43-phy0 debug: Wireless interface stopped
[  317.298295] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.298521] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.300303] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.302294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.304295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.306295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  317.452450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  317.454833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  318.837464] b43-phy0 debug: Chip initialized
[  318.837616] b43-phy0 debug: 64-bit DMA initialized
[  318.846521] Registered led device: b43-phy0::tx
[  318.847001] Registered led device: b43-phy0::rx
[  318.847479] Registered led device: b43-phy0::radio
[  318.847973] b43-phy0 debug: Wireless interface started
[  318.857569] b43-phy0 debug: Wireless interface stopped
[  318.858695] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  318.858921] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  318.860466] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  318.862309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  318.864294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  318.866296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  319.012469] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  319.014856] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  320.397463] b43-phy0 debug: Chip initialized
[  320.397616] b43-phy0 debug: 64-bit DMA initialized
[  320.406501] Registered led device: b43-phy0::tx
[  320.406977] Registered led device: b43-phy0::rx
[  320.407828] Registered led device: b43-phy0::radio
[  320.408089] b43-phy0 debug: Wireless interface started
[  320.408184] b43-phy0 debug: Wireless interface stopped
[  320.408617] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.408840] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.410271] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.412304] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.414302] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.416299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  320.562450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  320.564840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  321.947464] b43-phy0 debug: Chip initialized
[  321.947617] b43-phy0 debug: 64-bit DMA initialized
[  321.956507] Registered led device: b43-phy0::tx
[  321.956983] Registered led device: b43-phy0::rx
[  321.957837] Registered led device: b43-phy0::radio
[  321.958098] b43-phy0 debug: Wireless interface started
[  321.958102] __ratelimit: 8 callbacks suppressed
[  321.958132] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  321.958136] b43-phy0: Controller RESET (DMA error) ...
[  321.958139] b43-phy0: Controller restarted
[  321.958210] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  321.958215] b43-phy0: Controller RESET (DMA error) ...
[  321.967568] b43-phy0 debug: Wireless interface stopped
[  321.967686] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  321.967912] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  321.969269] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  321.971292] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  321.973294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  321.975293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  322.121449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  322.123837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  323.506467] b43-phy0 debug: Chip initialized
[  323.506631] b43-phy0 debug: 64-bit DMA initialized
[  323.515586] Registered led device: b43-phy0::tx
[  323.516450] Registered led device: b43-phy0::rx
[  323.516665] Registered led device: b43-phy0::radio
[  323.516737] b43-phy0 debug: Wireless interface started
[  323.516740] b43-phy0: Controller restarted
[  323.516783] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  323.516789] b43-phy0: Controller RESET (DMA error) ...
[  323.516820] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  323.516825] b43-phy0: Controller RESET (DMA error) ...
[  323.516860] b43-phy0 debug: Wireless interface stopped
[  323.516965] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.517191] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.518267] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.520297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.522300] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.524300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  323.670449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  323.672838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  325.055475] b43-phy0 debug: Chip initialized
[  325.055631] b43-phy0 debug: 64-bit DMA initialized
[  325.064521] Registered led device: b43-phy0::tx
[  325.065013] Registered led device: b43-phy0::rx
[  325.065489] Registered led device: b43-phy0::radio
[  325.065981] b43-phy0 debug: Wireless interface started
[  325.066248] b43-phy0 debug: Wireless interface stopped
[  325.066699] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.066928] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.068288] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.070295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.072294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.074293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  325.220463] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  325.222850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  326.605477] b43-phy0 debug: Chip initialized
[  326.605628] b43-phy0 debug: 64-bit DMA initialized
[  326.614210] Registered led device: b43-phy0::tx
[  326.614233] Registered led device: b43-phy0::rx
[  326.615332] Registered led device: b43-phy0::radio
[  326.615593] b43-phy0 debug: Wireless interface started
[  326.615695] b43-phy0 debug: Wireless interface stopped
[  326.615806] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.616031] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.617268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.619283] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.621297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.623295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  326.769449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  326.771838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  328.159477] b43-phy0 debug: Chip initialized
[  328.159646] b43-phy0 debug: 64-bit DMA initialized
[  328.168550] Registered led device: b43-phy0::tx
[  328.169011] Registered led device: b43-phy0::rx
[  328.169225] Registered led device: b43-phy0::radio
[  328.169632] b43-phy0 debug: Wireless interface started
[  328.169636] __ratelimit: 10 callbacks suppressed
[  328.169638] b43-phy0: Controller restarted
[  328.169663] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  328.169668] b43-phy0: Controller RESET (DMA error) ...
[  328.169701] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  328.169706] b43-phy0: Controller RESET (DMA error) ...
[  328.170068] b43-phy0 debug: Wireless interface stopped
[  328.170181] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.170409] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.173214] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.175210] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.176314] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.179209] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  328.324440] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  328.326825] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  329.709471] b43-phy0 debug: Chip initialized
[  329.709627] b43-phy0 debug: 64-bit DMA initialized
[  329.718221] Registered led device: b43-phy0::tx
[  329.718285] Registered led device: b43-phy0::rx
[  329.718308] Registered led device: b43-phy0::radio
[  329.718378] b43-phy0 debug: Wireless interface started
[  329.718380] b43-phy0: Controller restarted
[  329.718426] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  329.718432] b43-phy0: Controller RESET (DMA error) ...
[  329.718470] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  329.718475] b43-phy0: Controller RESET (DMA error) ...
[  329.718510] b43-phy0 debug: Wireless interface stopped
[  329.718602] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.718633] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.720274] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.722287] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.724294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.726291] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  329.872458] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  329.874844] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  331.257465] b43-phy0 debug: Chip initialized
[  331.257620] b43-phy0 debug: 64-bit DMA initialized
[  331.266218] Registered led device: b43-phy0::tx
[  331.266241] Registered led device: b43-phy0::rx
[  331.266789] Registered led device: b43-phy0::radio
[  331.267055] b43-phy0 debug: Wireless interface started
[  331.267980] b43-phy0 debug: Wireless interface stopped
[  331.268089] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.268325] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.270314] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.272306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.274293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.276295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  331.422459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  331.424849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  332.807475] b43-phy0 debug: Chip initialized
[  332.807627] b43-phy0 debug: 64-bit DMA initialized
[  332.816513] Registered led device: b43-phy0::tx
[  332.816993] Registered led device: b43-phy0::rx
[  332.817493] Registered led device: b43-phy0::radio
[  332.817753] b43-phy0 debug: Wireless interface started
[  332.817820] b43-phy0 debug: Wireless interface stopped
[  332.819363] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.819588] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.821295] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.823294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.825294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.827293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  332.973445] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  332.975830] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  334.358479] b43-phy0 debug: Chip initialized
[  334.358645] b43-phy0 debug: 64-bit DMA initialized
[  334.367579] Registered led device: b43-phy0::tx
[  334.368430] Registered led device: b43-phy0::rx
[  334.368646] Registered led device: b43-phy0::radio
[  334.368718] b43-phy0 debug: Wireless interface started
[  334.368723] __ratelimit: 6 callbacks suppressed
[  334.368725] b43-phy0: Controller restarted
[  334.368764] b43-phy0 debug: Wireless interface stopped
[  334.368868] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.369095] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.370267] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.372303] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.374308] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.376294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  334.522445] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  334.524833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  335.907478] b43-phy0 debug: Chip initialized
[  335.907631] b43-phy0 debug: 64-bit DMA initialized
[  335.916512] Registered led device: b43-phy0::tx
[  335.916992] Registered led device: b43-phy0::rx
[  335.917493] Registered led device: b43-phy0::radio
[  335.917754] b43-phy0 debug: Wireless interface started
[  335.917759] b43-phy0: Controller restarted
[  335.917790] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  335.917796] b43-phy0: Controller RESET (DMA error) ...
[  335.917858] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  335.917863] b43-phy0: Controller RESET (DMA error) ...
[  335.917960] b43-phy0 debug: Wireless interface stopped
[  335.918696] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  335.918922] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  335.920287] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  335.922294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  335.924297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  335.926294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  336.072461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  336.074849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  337.457463] b43-phy0 debug: Chip initialized
[  337.457616] b43-phy0 debug: 64-bit DMA initialized
[  337.466513] Registered led device: b43-phy0::tx
[  337.466993] Registered led device: b43-phy0::rx
[  337.467493] Registered led device: b43-phy0::radio
[  337.467754] b43-phy0 debug: Wireless interface started
[  337.467759] b43-phy0: Controller restarted
[  337.467787] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  337.467793] b43-phy0: Controller RESET (DMA error) ...
[  337.467855] b43-phy0 debug: Wireless interface stopped
[  337.468830] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.469055] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.470274] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.472294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.474293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.476293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  337.622448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  337.624837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  339.007463] b43-phy0 debug: Chip initialized
[  339.007619] b43-phy0 debug: 64-bit DMA initialized
[  339.016520] Registered led device: b43-phy0::tx
[  339.017000] Registered led device: b43-phy0::rx
[  339.017481] Registered led device: b43-phy0::radio
[  339.017976] b43-phy0 debug: Wireless interface started
[  339.017980] b43-phy0: Controller restarted
[  339.018113] b43-phy0 debug: Wireless interface stopped
[  339.018827] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.019056] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.020289] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.022297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.024293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.026294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  339.172459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  339.174849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  340.557478] b43-phy0 debug: Chip initialized
[  340.557632] b43-phy0 debug: 64-bit DMA initialized
[  340.566213] Registered led device: b43-phy0::tx
[  340.566235] Registered led device: b43-phy0::rx
[  340.566784] Registered led device: b43-phy0::radio
[  340.567050] b43-phy0 debug: Wireless interface started
[  340.567996] b43-phy0 debug: Wireless interface stopped
[  340.568104] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.568339] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.570297] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.572306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.574294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.576299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  340.723451] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  340.725840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  342.108463] b43-phy0 debug: Chip initialized
[  342.108631] b43-phy0 debug: 64-bit DMA initialized
[  342.117570] Registered led device: b43-phy0::tx
[  342.118427] Registered led device: b43-phy0::rx
[  342.118642] Registered led device: b43-phy0::radio
[  342.118713] b43-phy0 debug: Wireless interface started
[  342.118716] __ratelimit: 7 callbacks suppressed
[  342.118718] b43-phy0: Controller restarted
[  342.118790] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  342.118796] b43-phy0: Controller RESET (DMA error) ...
[  342.118831] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  342.118836] b43-phy0: Controller RESET (DMA error) ...
[  342.128570] b43-phy0 debug: Wireless interface stopped
[  342.128689] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.128917] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.130268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.132293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.134294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.136293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  342.282461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  342.284849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  343.667478] b43-phy0 debug: Chip initialized
[  343.667636] b43-phy0 debug: 64-bit DMA initialized
[  343.676513] Registered led device: b43-phy0::tx
[  343.677350] Registered led device: b43-phy0::rx
[  343.677565] Registered led device: b43-phy0::radio
[  343.677636] b43-phy0 debug: Wireless interface started
[  343.677640] b43-phy0: Controller restarted
[  343.677684] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  343.677690] b43-phy0: Controller RESET (DMA error) ...
[  343.677724] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  343.677729] b43-phy0: Controller RESET (DMA error) ...
[  343.677763] b43-phy0 debug: Wireless interface stopped
[  343.677870] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.678095] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.679272] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.681284] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.683297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.685301] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  343.831447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  343.833838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  345.216467] b43-phy0 debug: Chip initialized
[  345.216633] b43-phy0 debug: 64-bit DMA initialized
[  345.225586] Registered led device: b43-phy0::tx
[  345.226444] Registered led device: b43-phy0::rx
[  345.226659] Registered led device: b43-phy0::radio
[  345.226729] b43-phy0 debug: Wireless interface started
[  345.236570] b43-phy0 debug: Wireless interface stopped
[  345.236687] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.236914] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.238279] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.240295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.242294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.244293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  345.390449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  345.392846] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  346.775477] b43-phy0 debug: Chip initialized
[  346.775642] b43-phy0 debug: 64-bit DMA initialized
[  346.784561] Registered led device: b43-phy0::tx
[  346.785409] Registered led device: b43-phy0::rx
[  346.785624] Registered led device: b43-phy0::radio
[  346.785696] b43-phy0 debug: Wireless interface started
[  346.785795] b43-phy0 debug: Wireless interface stopped
[  346.785908] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.786146] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.789214] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.791212] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.792312] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.795212] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  346.940439] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  346.942826] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  348.325458] b43-phy0 debug: Chip initialized
[  348.325612] b43-phy0 debug: 64-bit DMA initialized
[  348.334229] Registered led device: b43-phy0::tx
[  348.334291] Registered led device: b43-phy0::rx
[  348.334315] Registered led device: b43-phy0::radio
[  348.334385] b43-phy0 debug: Wireless interface started
[  348.334388] __ratelimit: 10 callbacks suppressed
[  348.334390] b43-phy0: Controller restarted
[  348.334429] b43-phy0 debug: Wireless interface stopped
[  348.334513] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.334544] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.336017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.338023] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.340223] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.342214] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  348.489451] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  348.491840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  349.874457] b43-phy0 debug: Chip initialized
[  349.874607] b43-phy0 debug: 64-bit DMA initialized
[  349.883505] Registered led device: b43-phy0::tx
[  349.883902] Registered led device: b43-phy0::rx
[  349.884773] Registered led device: b43-phy0::radio
[  349.885295] b43-phy0 debug: Wireless interface started
[  349.885329] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  349.885334] b43-phy0: Controller RESET (DMA error) ...
[  349.885337] b43-phy0: Controller restarted
[  349.885394] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  349.885400] b43-phy0: Controller RESET (DMA error) ...
[  349.894487] b43-phy0 debug: Wireless interface stopped
[  349.894601] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  349.894826] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  349.896017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  349.898212] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  349.900227] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  349.902212] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  350.049454] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  350.051836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  351.440458] b43-phy0 debug: Chip initialized
[  351.440627] b43-phy0 debug: 64-bit DMA initialized
[  351.449589] Registered led device: b43-phy0::tx
[  351.450436] Registered led device: b43-phy0::rx
[  351.450652] Registered led device: b43-phy0::radio
[  351.450723] b43-phy0 debug: Wireless interface started
[  351.450726] b43-phy0: Controller restarted
[  351.450771] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  351.450777] b43-phy0: Controller RESET (DMA error) ...
[  351.450810] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  351.450843] b43-phy0 debug: Wireless interface stopped
[  351.450955] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.451179] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.453285] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.455292] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.457292] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.459296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  351.605459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  351.607848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  352.990466] b43-phy0 debug: Chip initialized
[  352.990620] b43-phy0 debug: 64-bit DMA initialized
[  352.999221] Registered led device: b43-phy0::tx
[  352.999244] Registered led device: b43-phy0::rx
[  352.999786] Registered led device: b43-phy0::radio
[  353.000052] b43-phy0 debug: Wireless interface started
[  353.000976] b43-phy0 debug: Wireless interface stopped
[  353.001088] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.001326] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.003312] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.005306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.007293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.009294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  353.155461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  353.157851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  354.540475] b43-phy0 debug: Chip initialized
[  354.540628] b43-phy0 debug: 64-bit DMA initialized
[  354.549502] Registered led device: b43-phy0::tx
[  354.549978] Registered led device: b43-phy0::rx
[  354.550835] Registered led device: b43-phy0::radio
[  354.551096] b43-phy0 debug: Wireless interface started
[  354.560568] b43-phy0 debug: Wireless interface stopped
[  354.560682] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.560908] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.562269] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.564295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.566294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.568294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  354.714446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  354.716837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  356.099465] b43-phy0 debug: Chip initialized
[  356.099614] b43-phy0 debug: 64-bit DMA initialized
[  356.108504] Registered led device: b43-phy0::tx
[  356.108979] Registered led device: b43-phy0::rx
[  356.109833] Registered led device: b43-phy0::radio
[  356.110095] b43-phy0 debug: Wireless interface started
[  356.110128] __ratelimit: 9 callbacks suppressed
[  356.110130] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  356.110135] b43-phy0: Controller RESET (DMA error) ...
[  356.110138] b43-phy0: Controller restarted
[  356.110174] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  356.110179] b43-phy0: Controller RESET (DMA error) ...
[  356.110212] b43-phy0 debug: Wireless interface stopped
[  356.110855] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.111083] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.112291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.114296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.116294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.118298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  356.264494] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  356.266915] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  357.649475] b43-phy0 debug: Chip initialized
[  357.649631] b43-phy0 debug: 64-bit DMA initialized
[  357.658519] Registered led device: b43-phy0::tx
[  357.658998] Registered led device: b43-phy0::rx
[  357.659498] Registered led device: b43-phy0::radio
[  357.659758] b43-phy0 debug: Wireless interface started
[  357.659762] b43-phy0: Controller restarted
[  357.659794] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  357.659800] b43-phy0: Controller RESET (DMA error) ...
[  357.659834] b43-phy0 debug: Wireless interface stopped
[  357.661390] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.661615] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.663292] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.665293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.667295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.669295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  357.816459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  357.818850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  359.201478] b43-phy0 debug: Chip initialized
[  359.201629] b43-phy0 debug: 64-bit DMA initialized
[  359.210511] Registered led device: b43-phy0::tx
[  359.210992] Registered led device: b43-phy0::rx
[  359.211494] Registered led device: b43-phy0::radio
[  359.211755] b43-phy0 debug: Wireless interface started
[  359.211758] b43-phy0: Controller restarted
[  359.211816] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  359.221569] b43-phy0 debug: Wireless interface stopped
[  359.222700] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.222926] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.224464] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.226309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.228295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.230296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  359.376450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  359.378839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  360.761478] b43-phy0 debug: Chip initialized
[  360.761642] b43-phy0 debug: 64-bit DMA initialized
[  360.770545] Registered led device: b43-phy0::tx
[  360.771036] Registered led device: b43-phy0::rx
[  360.771511] Registered led device: b43-phy0::radio
[  360.772005] b43-phy0 debug: Wireless interface started
[  360.772114] b43-phy0 debug: Wireless interface stopped
[  360.772831] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.773059] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.774291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.776294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.778294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.780298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  360.926460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  360.928847] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  362.311479] b43-phy0 debug: Chip initialized
[  362.311645] b43-phy0 debug: 64-bit DMA initialized
[  362.320228] Registered led device: b43-phy0::tx
[  362.320796] Registered led device: b43-phy0::rx
[  362.321019] Registered led device: b43-phy0::radio
[  362.321092] b43-phy0 debug: Wireless interface started
[  362.321098] __ratelimit: 6 callbacks suppressed
[  362.321100] b43-phy0: Controller restarted
[  362.321154] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  362.321160] b43-phy0: Controller RESET (DMA error) ...
[  362.330575] b43-phy0 debug: Wireless interface stopped
[  362.330694] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.330922] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.332273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.334295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.336293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.338293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  362.484449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  362.486837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  363.869463] b43-phy0 debug: Chip initialized
[  363.869615] b43-phy0 debug: 64-bit DMA initialized
[  363.878506] Registered led device: b43-phy0::tx
[  363.878987] Registered led device: b43-phy0::rx
[  363.879489] Registered led device: b43-phy0::radio
[  363.879749] b43-phy0 debug: Wireless interface started
[  363.879754] b43-phy0: Controller restarted
[  363.879787] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  363.879793] b43-phy0: Controller RESET (DMA error) ...
[  363.879835] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  363.879840] b43-phy0: Controller RESET (DMA error) ...
[  363.879877] b43-phy0 debug: Wireless interface stopped
[  363.881522] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  363.881747] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  363.883291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  363.885294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  363.887296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  363.889300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  364.035455] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  364.037845] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  365.420466] b43-phy0 debug: Chip initialized
[  365.420618] b43-phy0 debug: 64-bit DMA initialized
[  365.429512] Registered led device: b43-phy0::tx
[  365.429993] Registered led device: b43-phy0::rx
[  365.430500] Registered led device: b43-phy0::radio
[  365.430760] b43-phy0 debug: Wireless interface started
[  365.430762] b43-phy0: Controller restarted
[  365.430817] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  365.440569] b43-phy0 debug: Wireless interface stopped
[  365.441693] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.441920] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.443464] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.445309] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.447493] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.449295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  365.595449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  365.597840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  366.980463] b43-phy0 debug: Chip initialized
[  366.980617] b43-phy0 debug: 64-bit DMA initialized
[  366.989514] Registered led device: b43-phy0::tx
[  366.989996] Registered led device: b43-phy0::rx
[  366.990498] Registered led device: b43-phy0::radio
[  366.990759] b43-phy0 debug: Wireless interface started
[  366.990865] b43-phy0 debug: Wireless interface stopped
[  366.992325] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  366.992550] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  366.994290] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  366.996293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  366.998295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  367.000300] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  367.146462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  367.148851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  368.531462] b43-phy0 debug: Chip initialized
[  368.531616] b43-phy0 debug: 64-bit DMA initialized
[  368.540528] Registered led device: b43-phy0::tx
[  368.541013] Registered led device: b43-phy0::rx
[  368.541487] Registered led device: b43-phy0::radio
[  368.541978] b43-phy0 debug: Wireless interface started
[  368.541982] __ratelimit: 6 callbacks suppressed
[  368.541984] b43-phy0: Controller restarted
[  368.542040] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  368.542046] b43-phy0: Controller RESET (DMA error) ...
[  368.542076] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  368.542080] b43-phy0: Controller RESET (DMA error) ...
[  368.551568] b43-phy0 debug: Wireless interface stopped
[  368.552685] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.552912] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.554465] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.556293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.558293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.560293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  368.706459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  368.708848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  370.091466] b43-phy0 debug: Chip initialized
[  370.091619] b43-phy0 debug: 64-bit DMA initialized
[  370.100514] Registered led device: b43-phy0::tx
[  370.100998] Registered led device: b43-phy0::rx
[  370.101501] Registered led device: b43-phy0::radio
[  370.101761] b43-phy0 debug: Wireless interface started
[  370.101766] b43-phy0: Controller restarted
[  370.101799] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  370.101805] b43-phy0: Controller RESET (DMA error) ...
[  370.101847] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  370.101852] b43-phy0: Controller RESET (DMA error) ...
[  370.101890] b43-phy0 debug: Wireless interface stopped
[  370.102635] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.102859] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.104510] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.106305] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.108294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.110298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  370.256461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  370.258847] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  371.646476] b43-phy0 debug: Chip initialized
[  371.646640] b43-phy0 debug: 64-bit DMA initialized
[  371.655558] Registered led device: b43-phy0::tx
[  371.656415] Registered led device: b43-phy0::rx
[  371.656630] Registered led device: b43-phy0::radio
[  371.656702] b43-phy0 debug: Wireless interface started
[  371.666569] b43-phy0 debug: Wireless interface stopped
[  371.666687] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.666915] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.668280] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.670296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.672294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.674293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  371.821460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  371.823852] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  373.206479] b43-phy0 debug: Chip initialized
[  373.206646] b43-phy0 debug: 64-bit DMA initialized
[  373.215585] Registered led device: b43-phy0::tx
[  373.216444] Registered led device: b43-phy0::rx
[  373.216660] Registered led device: b43-phy0::radio
[  373.216767] b43-phy0 debug: Wireless interface started
[  373.216870] b43-phy0 debug: Wireless interface stopped
[  373.216974] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.217199] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.219291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.221294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.223294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.225298] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  373.371449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  373.373838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  374.756475] b43-phy0 debug: Chip initialized
[  374.756628] b43-phy0 debug: 64-bit DMA initialized
[  374.765513] Registered led device: b43-phy0::tx
[  374.765992] Registered led device: b43-phy0::rx
[  374.766515] Registered led device: b43-phy0::radio
[  374.766776] b43-phy0 debug: Wireless interface started
[  374.766780] __ratelimit: 10 callbacks suppressed
[  374.766782] b43-phy0: Controller restarted
[  374.766835] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  374.766841] b43-phy0: Controller RESET (DMA error) ...
[  374.776568] b43-phy0 debug: Wireless interface stopped
[  374.777645] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.777872] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.779298] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.781294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.783293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.785293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  374.931447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  374.933836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  376.316478] b43-phy0 debug: Chip initialized
[  376.316632] b43-phy0 debug: 64-bit DMA initialized
[  376.325508] Registered led device: b43-phy0::tx
[  376.325988] Registered led device: b43-phy0::rx
[  376.326493] Registered led device: b43-phy0::radio
[  376.326753] b43-phy0 debug: Wireless interface started
[  376.326758] b43-phy0: Controller restarted
[  376.326792] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000400, 0x00000000, 0x00000000
[  376.326798] b43-phy0: Controller RESET (DMA error) ...
[  376.326849] b43-phy0 debug: Wireless interface stopped
[  376.328204] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.328446] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.330303] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.332293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.334296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 2/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.336299] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  376.482449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  376.484839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  377.867464] b43-phy0 debug: Chip initialized
[  377.867619] b43-phy0 debug: 64-bit DMA initialized
[  377.876512] Registered led device: b43-phy0::tx
[  377.876993] Registered led device: b43-phy0::rx
[  377.877496] Registered led device: b43-phy0::radio
[  377.877756] b43-phy0 debug: Wireless interface started
[  377.877760] b43-phy0: Controller restarted
[  377.877809] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  377.877815] b43-phy0: Controller RESET (DMA error) ...
[  377.877995] b43-phy0 debug: Wireless interface stopped
[  377.878536] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  377.878762] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  377.880270] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  377.882294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  377.884294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  377.886294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  378.032460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  378.034851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  379.417478] b43-phy0 debug: Chip initialized
[  379.417632] b43-phy0 debug: 64-bit DMA initialized
[  379.426546] Registered led device: b43-phy0::tx
[  379.427028] Registered led device: b43-phy0::rx
[  379.427510] Registered led device: b43-phy0::radio
[  379.428003] b43-phy0 debug: Wireless interface started
[  379.428032] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  379.428097] b43-phy0 debug: Wireless interface stopped
[  379.428839] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.429066] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.431297] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.433295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.435293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.437294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  379.583449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  379.585837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  380.968476] b43-phy0 debug: Chip initialized
[  380.968628] b43-phy0 debug: 64-bit DMA initialized
[  380.977208] Registered led device: b43-phy0::tx
[  380.977230] Registered led device: b43-phy0::rx
[  380.978340] Registered led device: b43-phy0::radio
[  380.978600] b43-phy0 debug: Wireless interface started
[  380.978604] __ratelimit: 4 callbacks suppressed
[  380.978606] b43-phy0: Controller restarted
[  380.978636] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  380.978642] b43-phy0: Controller RESET (DMA error) ...
[  380.978676] b43-phy0 debug: Wireless interface stopped
[  380.978785] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  380.979015] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  380.981509] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  380.983306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  380.985297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  380.987295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  381.133447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  381.135833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  382.518465] b43-phy0 debug: Chip initialized
[  382.518618] b43-phy0 debug: 64-bit DMA initialized
[  382.527505] Registered led device: b43-phy0::tx
[  382.527986] Registered led device: b43-phy0::rx
[  382.528486] Registered led device: b43-phy0::radio
[  382.528746] b43-phy0 debug: Wireless interface started
[  382.528751] b43-phy0: Controller restarted
[  382.528786] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  382.528791] b43-phy0: Controller RESET (DMA error) ...
[  382.528825] b43-phy0 debug: Wireless interface stopped
[  382.530384] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.530609] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.532291] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.534294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.536295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.538295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  382.684449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  382.686835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  384.069476] b43-phy0 debug: Chip initialized
[  384.069627] b43-phy0 debug: 64-bit DMA initialized
[  384.078507] Registered led device: b43-phy0::tx
[  384.078981] Registered led device: b43-phy0::rx
[  384.079837] Registered led device: b43-phy0::radio
[  384.080098] b43-phy0 debug: Wireless interface started
[  384.080129] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  384.080133] b43-phy0: Controller RESET (DMA error) ...
[  384.080136] b43-phy0: Controller restarted
[  384.080170] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  384.080210] b43-phy0 debug: Wireless interface stopped
[  384.080785] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.081013] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.082281] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.084293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.086294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.088294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  384.234448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  384.236836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  385.619466] b43-phy0 debug: Chip initialized
[  385.619633] b43-phy0 debug: 64-bit DMA initialized
[  385.628594] Registered led device: b43-phy0::tx
[  385.629455] Registered led device: b43-phy0::rx
[  385.629670] Registered led device: b43-phy0::radio
[  385.629740] b43-phy0 debug: Wireless interface started
[  385.629778] b43-phy0 debug: Wireless interface stopped
[  385.629882] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.630110] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.631273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.633291] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.635297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.637294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  385.784461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  385.786850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  387.169474] b43-phy0 debug: Chip initialized
[  387.169631] b43-phy0 debug: 64-bit DMA initialized
[  387.178521] Registered led device: b43-phy0::tx
[  387.179001] Registered led device: b43-phy0::rx
[  387.179479] Registered led device: b43-phy0::radio
[  387.179971] b43-phy0 debug: Wireless interface started
[  387.179975] __ratelimit: 2 callbacks suppressed
[  387.179977] b43-phy0: Controller restarted
[  387.180011] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  387.180017] b43-phy0: Controller RESET (DMA error) ...
[  387.180056] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  387.180061] b43-phy0: Controller RESET (DMA error) ...
[  387.180102] b43-phy0 debug: Wireless interface stopped
[  387.181024] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.181270] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.183296] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.185294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.187293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.189293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  387.335462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  387.337851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  388.720477] b43-phy0 debug: Chip initialized
[  388.720628] b43-phy0 debug: 64-bit DMA initialized
[  388.729208] Registered led device: b43-phy0::tx
[  388.729230] Registered led device: b43-phy0::rx
[  388.730342] Registered led device: b43-phy0::radio
[  388.730603] b43-phy0 debug: Wireless interface started
[  388.730606] b43-phy0: Controller restarted
[  388.730633] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  388.730639] b43-phy0: Controller RESET (DMA error) ...
[  388.730672] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  388.730677] b43-phy0: Controller RESET (DMA error) ...
[  388.730716] b43-phy0 debug: Wireless interface stopped
[  388.730825] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.731051] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.733311] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.735296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.737294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.739294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  388.885445] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  388.887833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  390.270478] b43-phy0 debug: Chip initialized
[  390.270632] b43-phy0 debug: 64-bit DMA initialized
[  390.279510] Registered led device: b43-phy0::tx
[  390.279991] Registered led device: b43-phy0::rx
[  390.280492] Registered led device: b43-phy0::radio
[  390.280751] b43-phy0 debug: Wireless interface started
[  390.280865] b43-phy0 debug: Wireless interface stopped
[  390.282966] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.283199] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.284295] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.286299] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.288295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.290293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  390.436448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  390.438834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  391.821477] b43-phy0 debug: Chip initialized
[  391.821629] b43-phy0 debug: 64-bit DMA initialized
[  391.830528] Registered led device: b43-phy0::tx
[  391.831032] Registered led device: b43-phy0::rx
[  391.831488] Registered led device: b43-phy0::radio
[  391.831980] b43-phy0 debug: Wireless interface started
[  391.832074] b43-phy0 debug: Wireless interface stopped
[  391.833563] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.833791] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.835296] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.837296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.839295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.841293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  391.987459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  391.989846] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  393.372476] b43-phy0 debug: Chip initialized
[  393.372627] b43-phy0 debug: 64-bit DMA initialized
[  393.381521] Registered led device: b43-phy0::tx
[  393.382012] Registered led device: b43-phy0::rx
[  393.382485] Registered led device: b43-phy0::radio
[  393.382977] b43-phy0 debug: Wireless interface started
[  393.382981] __ratelimit: 10 callbacks suppressed
[  393.382983] b43-phy0: Controller restarted
[  393.383022] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  393.383027] b43-phy0: Controller RESET (DMA error) ...
[  393.383061] b43-phy0 debug: Wireless interface stopped
[  393.383172] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.383410] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.385497] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.387296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.389293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.391293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  393.537448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  393.539836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  394.927477] b43-phy0 debug: Chip initialized
[  394.927642] b43-phy0 debug: 64-bit DMA initialized
[  394.936558] Registered led device: b43-phy0::tx
[  394.937404] Registered led device: b43-phy0::rx
[  394.937619] Registered led device: b43-phy0::radio
[  394.937691] b43-phy0 debug: Wireless interface started
[  394.937694] b43-phy0: Controller restarted
[  394.937733] b43-phy0 debug: Wireless interface stopped
[  394.937836] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  394.938063] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  394.939273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  394.941283] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  394.943296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  394.945295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  395.091463] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  395.093852] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  396.476465] b43-phy0 debug: Chip initialized
[  396.476631] b43-phy0 debug: 64-bit DMA initialized
[  396.485580] Registered led device: b43-phy0::tx
[  396.486449] Registered led device: b43-phy0::rx
[  396.486664] Registered led device: b43-phy0::radio
[  396.486734] b43-phy0 debug: Wireless interface started
[  396.486739] b43-phy0: Controller restarted
[  396.486783] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  396.486788] b43-phy0: Controller RESET (DMA error) ...
[  396.486826] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  396.486831] b43-phy0: Controller RESET (DMA error) ...
[  396.486876] b43-phy0 debug: Wireless interface stopped
[  396.486988] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.487214] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.489288] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.491295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.493297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.495295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  396.641447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  396.643852] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  397.749038] CE: hpet increasing min_delta_ns to 15000 nsec
[  398.026475] b43-phy0 debug: Chip initialized
[  398.026641] b43-phy0 debug: 64-bit DMA initialized
[  398.035558] Registered led device: b43-phy0::tx
[  398.036350] Registered led device: b43-phy0::rx
[  398.036566] Registered led device: b43-phy0::radio
[  398.036637] b43-phy0 debug: Wireless interface started
[  398.036640] b43-phy0: Controller restarted
[  398.036748] b43-phy0 debug: Wireless interface stopped
[  398.036861] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.037099] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.040246] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.041331] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.044209] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.045308] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  398.194441] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  398.196830] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  399.579455] b43-phy0 debug: Chip initialized
[  399.579614] b43-phy0 debug: 64-bit DMA initialized
[  399.588238] Registered led device: b43-phy0::tx
[  399.588263] Registered led device: b43-phy0::rx
[  399.588286] Registered led device: b43-phy0::radio
[  399.588357] b43-phy0 debug: Wireless interface started
[  399.588360] __ratelimit: 4 callbacks suppressed
[  399.588362] b43-phy0: Controller restarted
[  399.588400] b43-phy0 debug: Wireless interface stopped
[  399.588485] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.588515] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.590017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.592023] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.594222] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.596221] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  399.743442] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  399.745826] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  401.128468] b43-phy0 debug: Chip initialized
[  401.128632] b43-phy0 debug: 64-bit DMA initialized
[  401.137559] Registered led device: b43-phy0::tx
[  401.137920] Registered led device: b43-phy0::rx
[  401.138420] Registered led device: b43-phy0::radio
[  401.138911] b43-phy0 debug: Wireless interface started
[  401.138915] b43-phy0: 
[  401.138947] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  401.138952] b43-phy0: Controller RESET (DMA error) ...
[  401.138955] Controller restarted
[  401.138983] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  401.138988] b43-phy0: Controller RESET (DMA error) ...
[  401.139040] b43-phy0 debug: Wireless interface stopped
[  401.139775] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.140018] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.142216] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.144218] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.146211] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.148213] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  401.294442] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  401.296828] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  402.680458] b43-phy0 debug: Chip initialized
[  402.680612] b43-phy0 debug: 64-bit DMA initialized
[  402.689231] Registered led device: b43-phy0::tx
[  402.689256] Registered led device: b43-phy0::rx
[  402.689280] Registered led device: b43-phy0::radio
[  402.689349] b43-phy0 debug: Wireless interface started
[  402.689353] b43-phy0: Controller restarted
[  402.689401] b43-phy0 debug: Wireless interface stopped
[  402.689486] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.689517] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.691017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.693024] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.695224] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.697215] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  402.844452] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  402.846841] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  404.229458] b43-phy0 debug: Chip initialized
[  404.229613] b43-phy0 debug: 64-bit DMA initialized
[  404.238521] Registered led device: b43-phy0::tx
[  404.238919] Registered led device: b43-phy0::rx
[  404.239767] Registered led device: b43-phy0::radio
[  404.240039] b43-phy0 debug: Wireless interface started
[  404.240042] b43-phy0: Controller restarted
[  404.240087] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  404.240093] b43-phy0: Controller RESET (DMA error) ...
[  404.240507] b43-phy0 debug: Wireless interface stopped
[  404.240615] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.240838] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.242016] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.244219] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.246213] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.248211] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  404.395454] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  404.397842] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  405.780456] b43-phy0 debug: Chip initialized
[  405.780606] b43-phy0 debug: 64-bit DMA initialized
[  405.789517] Registered led device: b43-phy0::tx
[  405.789910] Registered led device: b43-phy0::rx
[  405.790754] Registered led device: b43-phy0::radio
[  405.791027] b43-phy0 debug: Wireless interface started
[  405.791187] b43-phy0 debug: Wireless interface stopped
[  405.791294] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.791518] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.793019] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.795223] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.797217] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.799213] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  405.946453] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  405.948834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  407.332460] b43-phy0 debug: Chip initialized
[  407.332627] b43-phy0 debug: 64-bit DMA initialized
[  407.341604] Registered led device: b43-phy0::tx
[  407.342458] Registered led device: b43-phy0::rx
[  407.342673] Registered led device: b43-phy0::radio
[  407.342745] b43-phy0 debug: Wireless interface started
[  407.342748] __ratelimit: 7 callbacks suppressed
[  407.342750] b43-phy0: Controller restarted
[  407.342793] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  407.342799] b43-phy0: Controller RESET (DMA error) ...
[  407.342837] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  407.342842] b43-phy0: Controller RESET (DMA error) ...
[  407.342877] b43-phy0 debug: Wireless interface stopped
[  407.342989] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.343215] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.345271] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.347293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.349292] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.351292] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  407.497460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  407.499846] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  408.882476] b43-phy0 debug: Chip initialized
[  408.882633] b43-phy0 debug: 64-bit DMA initialized
[  408.891215] Registered led device: b43-phy0::tx
[  408.891238] Registered led device: b43-phy0::rx
[  408.891776] Registered led device: b43-phy0::radio
[  408.892041] b43-phy0 debug: Wireless interface started
[  408.892046] b43-phy0: Controller restarted
[  408.892078] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  408.892083] b43-phy0: Controller RESET (DMA error) ...
[  408.892117] b43-phy0 debug: Wireless interface stopped
[  408.892211] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  408.892447] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  408.895481] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  408.897295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  408.899293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  408.901294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  409.047453] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  409.049841] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  410.432477] b43-phy0 debug: Chip initialized
[  410.432634] b43-phy0 debug: 64-bit DMA initialized
[  410.441217] Registered led device: b43-phy0::tx
[  410.441240] Registered led device: b43-phy0::rx
[  410.441781] Registered led device: b43-phy0::radio
[  410.442045] b43-phy0 debug: Wireless interface started
[  410.442050] b43-phy0: Controller restarted
[  410.442081] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  410.442118] b43-phy0 debug: Wireless interface stopped
[  410.442214] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.442448] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.445475] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.447295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.449293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.451293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  410.597446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  410.599833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  411.982463] b43-phy0 debug: Chip initialized
[  411.982624] b43-phy0 debug: 64-bit DMA initialized
[  411.991223] Registered led device: b43-phy0::tx
[  411.991245] Registered led device: b43-phy0::rx
[  411.991369] Registered led device: b43-phy0::radio
[  411.991628] b43-phy0 debug: Wireless interface started
[  411.991724] b43-phy0 debug: Wireless interface stopped
[  411.991817] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  411.991886] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  411.993269] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  411.995496] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  411.997301] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  411.999294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  412.145447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  412.147871] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  413.535476] b43-phy0 debug: Chip initialized
[  413.535643] b43-phy0 debug: 64-bit DMA initialized
[  413.544231] Registered led device: b43-phy0::tx
[  413.544321] Registered led device: b43-phy0::rx
[  413.544535] Registered led device: b43-phy0::radio
[  413.544607] b43-phy0 debug: Wireless interface started
[  413.544610] __ratelimit: 6 callbacks suppressed
[  413.544641] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  413.544646] b43-phy0: Controller RESET (DMA error) ...
[  413.544649] b43-phy0: Controller restarted
[  413.544683] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  413.544688] b43-phy0: Controller RESET (DMA error) ...
[  413.544723] b43-phy0 debug: Wireless interface stopped
[  413.544818] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.544887] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.546276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.548469] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.550295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.552294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  413.698446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  413.700835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  415.083475] b43-phy0 debug: Chip initialized
[  415.083631] b43-phy0 debug: 64-bit DMA initialized
[  415.092220] Registered led device: b43-phy0::tx
[  415.092242] Registered led device: b43-phy0::rx
[  415.092365] Registered led device: b43-phy0::radio
[  415.092624] b43-phy0 debug: Wireless interface started
[  415.092627] b43-phy0: Controller restarted
[  415.092654] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  415.092659] b43-phy0: Controller RESET (DMA error) ...
[  415.092696] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  415.092701] b43-phy0: Controller RESET (DMA error) ...
[  415.092736] b43-phy0 debug: Wireless interface stopped
[  415.092832] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.092901] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.094276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.096297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.098295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.100294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  415.246446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  415.248835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  416.631477] b43-phy0 debug: Chip initialized
[  416.631634] b43-phy0 debug: 64-bit DMA initialized
[  416.640219] Registered led device: b43-phy0::tx
[  416.640242] Registered led device: b43-phy0::rx
[  416.640365] Registered led device: b43-phy0::radio
[  416.640624] b43-phy0 debug: Wireless interface started
[  416.640688] b43-phy0 debug: Wireless interface stopped
[  416.640781] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.640850] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.642275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.644284] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.646295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.648293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  416.794460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  416.796845] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  418.179467] b43-phy0 debug: Chip initialized
[  418.179634] b43-phy0 debug: 64-bit DMA initialized
[  418.188230] Registered led device: b43-phy0::tx
[  418.188261] Registered led device: b43-phy0::rx
[  418.188375] Registered led device: b43-phy0::radio
[  418.188636] b43-phy0 debug: Wireless interface started
[  418.188732] b43-phy0 debug: Wireless interface stopped
[  418.188829] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.189054] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.191275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.193296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.195293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.197293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  418.343459] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  418.345848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  419.733475] b43-phy0 debug: Chip initialized
[  419.733641] b43-phy0 debug: 64-bit DMA initialized
[  419.742228] Registered led device: b43-phy0::tx
[  419.742317] Registered led device: b43-phy0::rx
[  419.742531] Registered led device: b43-phy0::radio
[  419.742603] b43-phy0 debug: Wireless interface started
[  419.742606] __ratelimit: 8 callbacks suppressed
[  419.742636] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  419.742641] b43-phy0: Controller RESET (DMA error) ...
[  419.742644] b43-phy0: Controller restarted
[  419.742678] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  419.742684] b43-phy0: Controller RESET (DMA error) ...
[  419.742718] b43-phy0 debug: Wireless interface stopped
[  419.742812] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.742881] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.744276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.746463] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.748295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.750293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  419.897461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  419.899848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  421.282462] b43-phy0 debug: Chip initialized
[  421.282620] b43-phy0 debug: 64-bit DMA initialized
[  421.291219] Registered led device: b43-phy0::tx
[  421.291242] Registered led device: b43-phy0::rx
[  421.291367] Registered led device: b43-phy0::radio
[  421.291626] b43-phy0 debug: Wireless interface started
[  421.291629] b43-phy0: Controller restarted
[  421.291659] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  421.291664] b43-phy0: Controller RESET (DMA error) ...
[  421.291701] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  421.291706] b43-phy0: Controller RESET (DMA error) ...
[  421.291741] b43-phy0 debug: Wireless interface stopped
[  421.291836] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.291904] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.293276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.295298] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.297295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.299294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  421.445461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  421.447848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  422.830475] b43-phy0 debug: Chip initialized
[  422.830640] b43-phy0 debug: 64-bit DMA initialized
[  422.839230] Registered led device: b43-phy0::tx
[  422.839319] Registered led device: b43-phy0::rx
[  422.839533] Registered led device: b43-phy0::radio
[  422.839604] b43-phy0 debug: Wireless interface started
[  422.839668] b43-phy0 debug: Wireless interface stopped
[  422.839762] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.839829] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.841285] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.843495] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.845295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.847294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  422.993447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  422.995834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  424.378466] b43-phy0 debug: Chip initialized
[  424.378620] b43-phy0 debug: 64-bit DMA initialized
[  424.387237] Registered led device: b43-phy0::tx
[  424.387329] Registered led device: b43-phy0::rx
[  424.387542] Registered led device: b43-phy0::radio
[  424.387612] b43-phy0 debug: Wireless interface started
[  424.387680] b43-phy0 debug: Wireless interface stopped
[  424.388560] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.388784] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.390266] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.392302] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.394295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.396293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  424.542448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  424.544836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  425.927463] b43-phy0 debug: Chip initialized
[  425.927629] b43-phy0 debug: 64-bit DMA initialized
[  425.936228] Registered led device: b43-phy0::tx
[  425.936341] Registered led device: b43-phy0::rx
[  425.936556] Registered led device: b43-phy0::radio
[  425.936627] b43-phy0 debug: Wireless interface started
[  425.936631] __ratelimit: 6 callbacks suppressed
[  425.936661] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  425.936665] b43-phy0: Controller RESET (DMA error) ...
[  425.936669] b43-phy0: Controller restarted
[  425.936702] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  425.936708] b43-phy0: Controller RESET (DMA error) ...
[  425.936742] b43-phy0 debug: Wireless interface stopped
[  425.936837] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  425.936905] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  425.938277] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  425.940463] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  425.942295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  425.944293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  426.090448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  426.092835] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  427.475466] b43-phy0 debug: Chip initialized
[  427.475623] b43-phy0 debug: 64-bit DMA initialized
[  427.484220] Registered led device: b43-phy0::tx
[  427.484242] Registered led device: b43-phy0::rx
[  427.484366] Registered led device: b43-phy0::radio
[  427.484626] b43-phy0 debug: Wireless interface started
[  427.484629] b43-phy0: 
[  427.484655] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  427.484660] b43-phy0: Controller RESET (DMA error) ...
[  427.484663] Controller restarted
[  427.484697] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  427.484702] b43-phy0: Controller RESET (DMA error) ...
[  427.484737] b43-phy0 debug: Wireless interface stopped
[  427.484833] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.485056] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.487273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.489295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.491294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.493293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  427.639448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  427.641833] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  429.024462] b43-phy0 debug: Chip initialized
[  429.024619] b43-phy0 debug: 64-bit DMA initialized
[  429.033223] Registered led device: b43-phy0::tx
[  429.033244] Registered led device: b43-phy0::rx
[  429.033368] Registered led device: b43-phy0::radio
[  429.033627] b43-phy0 debug: Wireless interface started
[  429.033691] b43-phy0 debug: Wireless interface stopped
[  429.033787] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.033855] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.035277] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.037298] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.039295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.041294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  429.187461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  429.189853] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  430.572480] b43-phy0 debug: Chip initialized
[  430.572647] b43-phy0 debug: 64-bit DMA initialized
[  430.581230] Registered led device: b43-phy0::tx
[  430.581319] Registered led device: b43-phy0::rx
[  430.581533] Registered led device: b43-phy0::radio
[  430.581604] b43-phy0 debug: Wireless interface started
[  430.581703] b43-phy0 debug: Wireless interface stopped
[  430.581802] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.582027] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.584266] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.586296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.588294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.590293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  430.736461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  430.738849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  432.121466] b43-phy0 debug: Chip initialized
[  432.121623] b43-phy0 debug: 64-bit DMA initialized
[  432.130222] Registered led device: b43-phy0::tx
[  432.130245] Registered led device: b43-phy0::rx
[  432.130368] Registered led device: b43-phy0::radio
[  432.130628] b43-phy0 debug: Wireless interface started
[  432.130631] __ratelimit: 8 callbacks suppressed
[  432.130661] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  432.130665] b43-phy0: Controller RESET (DMA error) ...
[  432.130669] b43-phy0: Controller restarted
[  432.130702] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  432.130708] b43-phy0: Controller RESET (DMA error) ...
[  432.130742] b43-phy0 debug: Wireless interface stopped
[  432.130836] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.130905] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.132276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.134497] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.136294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.138293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  432.284448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  432.286837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  433.669478] b43-phy0 debug: Chip initialized
[  433.669642] b43-phy0 debug: 64-bit DMA initialized
[  433.678227] Registered led device: b43-phy0::tx
[  433.678260] Registered led device: b43-phy0::rx
[  433.678375] Registered led device: b43-phy0::radio
[  433.678636] b43-phy0 debug: Wireless interface started
[  433.678639] b43-phy0: 
[  433.678668] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  433.678673] b43-phy0: Controller RESET (DMA error) ...
[  433.678676] Controller restarted
[  433.678710] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  433.678715] b43-phy0: Controller RESET (DMA error) ...
[  433.678750] b43-phy0 debug: Wireless interface stopped
[  433.678847] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.679069] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.681275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.683296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.685294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.687294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  433.833448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  433.835836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  435.218479] b43-phy0 debug: Chip initialized
[  435.218632] b43-phy0 debug: 64-bit DMA initialized
[  435.227216] Registered led device: b43-phy0::tx
[  435.227238] Registered led device: b43-phy0::rx
[  435.227361] Registered led device: b43-phy0::radio
[  435.227620] b43-phy0 debug: Wireless interface started
[  435.227684] b43-phy0 debug: Wireless interface stopped
[  435.227781] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.228003] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.229275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.231496] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.233298] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.235294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  435.381460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  435.383846] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  436.766466] b43-phy0 debug: Chip initialized
[  436.766622] b43-phy0 debug: 64-bit DMA initialized
[  436.775222] Registered led device: b43-phy0::tx
[  436.775244] Registered led device: b43-phy0::rx
[  436.775368] Registered led device: b43-phy0::radio
[  436.775627] b43-phy0 debug: Wireless interface started
[  436.775726] b43-phy0 debug: Wireless interface stopped
[  436.775816] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.775849] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.777266] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.779288] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.781294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.783293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  436.930448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  436.932836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  438.315478] b43-phy0 debug: Chip initialized
[  438.315644] b43-phy0 debug: 64-bit DMA initialized
[  438.324226] Registered led device: b43-phy0::tx
[  438.324249] Registered led device: b43-phy0::rx
[  438.324375] Registered led device: b43-phy0::radio
[  438.324635] b43-phy0 debug: Wireless interface started
[  438.324638] __ratelimit: 8 callbacks suppressed
[  438.324669] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  438.324674] b43-phy0: Controller RESET (DMA error) ...
[  438.324677] b43-phy0: Controller restarted
[  438.324710] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  438.324716] b43-phy0: Controller RESET (DMA error) ...
[  438.324750] b43-phy0 debug: Wireless interface stopped
[  438.324847] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.325070] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.327267] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.329284] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.331294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.333293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  438.479460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  438.481850] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  439.864475] b43-phy0 debug: Chip initialized
[  439.864630] b43-phy0 debug: 64-bit DMA initialized
[  439.873219] Registered led device: b43-phy0::tx
[  439.873241] Registered led device: b43-phy0::rx
[  439.873365] Registered led device: b43-phy0::radio
[  439.873624] b43-phy0 debug: Wireless interface started
[  439.873627] b43-phy0: 
[  439.873654] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  439.873658] b43-phy0: Controller RESET (DMA error) ...
[  439.873661] Controller restarted
[  439.873695] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  439.873700] b43-phy0: Controller RESET (DMA error) ...
[  439.873735] b43-phy0 debug: Wireless interface stopped
[  439.873831] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  439.873901] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  439.875277] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  439.877496] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  439.879294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  439.881293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  440.027468] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  440.029857] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  441.412466] b43-phy0 debug: Chip initialized
[  441.412636] b43-phy0 debug: 64-bit DMA initialized
[  441.421231] Registered led device: b43-phy0::tx
[  441.421322] Registered led device: b43-phy0::rx
[  441.421536] Registered led device: b43-phy0::radio
[  441.421607] b43-phy0 debug: Wireless interface started
[  441.421670] b43-phy0 debug: Wireless interface stopped
[  441.421767] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.421990] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.423274] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.425499] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.427295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.429294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  441.575448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  441.577837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  442.960478] b43-phy0 debug: Chip initialized
[  442.960632] b43-phy0 debug: 64-bit DMA initialized
[  442.969218] Registered led device: b43-phy0::tx
[  442.969240] Registered led device: b43-phy0::rx
[  442.969364] Registered led device: b43-phy0::radio
[  442.969625] b43-phy0 debug: Wireless interface started
[  442.969721] b43-phy0 debug: Wireless interface stopped
[  442.969809] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  442.969842] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  442.971275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  442.973285] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  442.975294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  442.977293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  443.123448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  443.125832] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  444.508478] b43-phy0 debug: Chip initialized
[  444.508642] b43-phy0 debug: 64-bit DMA initialized
[  444.517040] Registered led device: b43-phy0::tx
[  444.517063] Registered led device: b43-phy0::rx
[  444.517085] Registered led device: b43-phy0::radio
[  444.517156] b43-phy0 debug: Wireless interface started
[  444.517160] __ratelimit: 8 callbacks suppressed
[  444.517190] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  444.517194] b43-phy0: Controller RESET (DMA error) ...
[  444.517198] b43-phy0: Controller restarted
[  444.517232] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  444.517237] b43-phy0: Controller RESET (DMA error) ...
[  444.517284] b43-phy0 debug: Wireless interface stopped
[  444.517969] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.518192] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.520285] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.522297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.524297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.526293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  444.672447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  444.674837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  446.057465] b43-phy0 debug: Chip initialized
[  446.057620] b43-phy0 debug: 64-bit DMA initialized
[  446.066216] Registered led device: b43-phy0::tx
[  446.066238] Registered led device: b43-phy0::rx
[  446.066362] Registered led device: b43-phy0::radio
[  446.066621] b43-phy0 debug: Wireless interface started
[  446.066624] b43-phy0: 
[  446.066651] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  446.066655] b43-phy0: Controller RESET (DMA error) ...
[  446.066658] Controller restarted
[  446.066692] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  446.066698] b43-phy0: Controller RESET (DMA error) ...
[  446.066732] b43-phy0 debug: Wireless interface stopped
[  446.066827] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.066895] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.068276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.070297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.072295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.074293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  446.220447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  446.222832] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  447.605478] b43-phy0 debug: Chip initialized
[  447.605636] b43-phy0 debug: 64-bit DMA initialized
[  447.614220] Registered led device: b43-phy0::tx
[  447.614240] Registered led device: b43-phy0::rx
[  447.614362] Registered led device: b43-phy0::radio
[  447.614621] b43-phy0 debug: Wireless interface started
[  447.614685] b43-phy0 debug: Wireless interface stopped
[  447.614780] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.614847] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.616275] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.618470] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.620294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.622293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  447.768462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  447.770847] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  449.153464] b43-phy0 debug: Chip initialized
[  449.153619] b43-phy0 debug: 64-bit DMA initialized
[  449.162215] Registered led device: b43-phy0::tx
[  449.162237] Registered led device: b43-phy0::rx
[  449.162359] Registered led device: b43-phy0::radio
[  449.162618] b43-phy0 debug: Wireless interface started
[  449.162714] b43-phy0 debug: Wireless interface stopped
[  449.162803] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.162834] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.164265] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.166471] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.168298] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.170293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  449.316449] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  449.318839] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  450.701476] b43-phy0 debug: Chip initialized
[  450.701631] b43-phy0 debug: 64-bit DMA initialized
[  450.710215] Registered led device: b43-phy0::tx
[  450.710237] Registered led device: b43-phy0::rx
[  450.710360] Registered led device: b43-phy0::radio
[  450.710619] b43-phy0 debug: Wireless interface started
[  450.710622] __ratelimit: 8 callbacks suppressed
[  450.710652] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  450.710656] b43-phy0: Controller RESET (DMA error) ...
[  450.710659] b43-phy0: Controller restarted
[  450.710693] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  450.710699] b43-phy0: Controller RESET (DMA error) ...
[  450.710733] b43-phy0 debug: Wireless interface stopped
[  450.710824] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.710892] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.712276] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.714498] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.716293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.718293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  450.864461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  450.866849] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  452.432273] b43-phy0 debug: Chip initialized
[  452.432448] b43-phy0 debug: 64-bit DMA initialized
[  452.442906] Registered led device: b43-phy0::tx
[  452.442929] Registered led device: b43-phy0::rx
[  452.442953] Registered led device: b43-phy0::radio
[  452.443043] b43-phy0 debug: Wireless interface started
[  452.443046] b43-phy0: 
[  452.443079] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  452.443083] b43-phy0: Controller RESET (DMA error) ...
[  452.443085] Controller restarted
[  452.443119] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  452.443123] b43-phy0: Controller RESET (DMA error) ...
[  452.443158] b43-phy0 debug: Wireless interface stopped
[  452.443256] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.443480] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.446018] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.448049] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.450054] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.452039] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  452.600454] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  452.602842] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  453.985455] b43-phy0 debug: Chip initialized
[  453.985615] b43-phy0 debug: 64-bit DMA initialized
[  453.994538] Registered led device: b43-phy0::tx
[  453.995380] Registered led device: b43-phy0::rx
[  453.995597] Registered led device: b43-phy0::radio
[  453.995668] b43-phy0 debug: Wireless interface started
[  453.995705] b43-phy0 debug: Wireless interface stopped
[  453.995810] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  453.996047] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  453.998017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  454.000230] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  454.002220] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  454.004214] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  454.151441] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  454.153826] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  455.536470] b43-phy0 debug: Chip initialized
[  455.536627] b43-phy0 debug: 64-bit DMA initialized
[  455.545511] Registered led device: b43-phy0::tx
[  455.545906] Registered led device: b43-phy0::rx
[  455.546749] Registered led device: b43-phy0::radio
[  455.547023] b43-phy0 debug: Wireless interface started
[  455.547397] b43-phy0 debug: Wireless interface stopped
[  455.547509] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.547735] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.549017] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.551221] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.553221] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.555212] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  455.702454] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  455.704840] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  457.087455] b43-phy0 debug: Chip initialized
[  457.087612] b43-phy0 debug: 64-bit DMA initialized
[  457.096515] Registered led device: b43-phy0::tx
[  457.096997] Registered led device: b43-phy0::rx
[  457.097482] Registered led device: b43-phy0::radio
[  457.097971] b43-phy0 debug: Wireless interface started
[  457.097975] __ratelimit: 6 callbacks suppressed
[  457.097977] b43-phy0: Controller restarted
[  457.098004] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  457.098010] b43-phy0: Controller RESET (DMA error) ...
[  457.098043] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  457.098050] b43-phy0: Controller RESET (DMA error) ...
[  457.098622] b43-phy0 debug: Wireless interface stopped
[  457.098741] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.098966] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.101250] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.103218] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.105212] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.107213] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  457.253439] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  457.255828] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  458.639470] b43-phy0 debug: Chip initialized
[  458.639622] b43-phy0 debug: 64-bit DMA initialized
[  458.648219] Registered led device: b43-phy0::tx
[  458.648279] Registered led device: b43-phy0::rx
[  458.648301] Registered led device: b43-phy0::radio
[  458.648371] b43-phy0 debug: Wireless interface started
[  458.648373] b43-phy0: Controller restarted
[  458.648401] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  458.648405] b43-phy0: Controller RESET (DMA error) ...
[  458.648445] b43-phy0 debug: Wireless interface stopped
[  458.648530] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.648560] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.650015] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.652018] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.654221] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.656220] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  458.803452] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  458.805838] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  460.188458] b43-phy0 debug: Chip initialized
[  460.188610] b43-phy0 debug: 64-bit DMA initialized
[  460.197520] Registered led device: b43-phy0::tx
[  460.197913] Registered led device: b43-phy0::rx
[  460.198755] Registered led device: b43-phy0::radio
[  460.199028] b43-phy0 debug: Wireless interface started
[  460.199031] b43-phy0: Controller restarted
[  460.199076] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  460.199460] b43-phy0 debug: Wireless interface stopped
[  460.199568] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.199794] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.201016] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.203219] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.205222] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.207212] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  460.354454] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  460.356844] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  461.739469] b43-phy0 debug: Chip initialized
[  461.739620] b43-phy0 debug: 64-bit DMA initialized
[  461.748505] Registered led device: b43-phy0::tx
[  461.748901] Registered led device: b43-phy0::rx
[  461.749741] Registered led device: b43-phy0::radio
[  461.750013] b43-phy0 debug: Wireless interface started
[  461.750221] b43-phy0 debug: Wireless interface stopped
[  461.750332] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.750555] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.752018] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.754224] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.756216] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.758214] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  461.905440] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  461.907825] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  463.290459] b43-phy0 debug: Chip initialized
[  463.290626] b43-phy0 debug: 64-bit DMA initialized
[  463.299598] Registered led device: b43-phy0::tx
[  463.300440] Registered led device: b43-phy0::rx
[  463.300655] Registered led device: b43-phy0::radio
[  463.300726] b43-phy0 debug: Wireless interface started
[  463.300729] __ratelimit: 8 callbacks suppressed
[  463.300731] b43-phy0: Controller restarted
[  463.300774] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  463.300780] b43-phy0: Controller RESET (DMA error) ...
[  463.300818] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  463.300823] b43-phy0: Controller RESET (DMA error) ...
[  463.300859] b43-phy0 debug: Wireless interface stopped
[  463.300972] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.301199] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.303270] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.305292] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.307293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.309293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  463.455460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  463.457848] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  464.840476] b43-phy0 debug: Chip initialized
[  464.840632] b43-phy0 debug: 64-bit DMA initialized
[  464.849216] Registered led device: b43-phy0::tx
[  464.849239] Registered led device: b43-phy0::rx
[  464.849776] Registered led device: b43-phy0::radio
[  464.850041] b43-phy0 debug: Wireless interface started
[  464.850044] b43-phy0: Controller restarted
[  464.850077] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  464.850082] b43-phy0: Controller RESET (DMA error) ...
[  464.850116] b43-phy0 debug: Wireless interface stopped
[  464.850212] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  464.850448] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  464.853508] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  464.855306] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  464.857297] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  464.859296] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  465.005456] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  465.007841] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  466.390477] b43-phy0 debug: Chip initialized
[  466.390632] b43-phy0 debug: 64-bit DMA initialized
[  466.399514] Registered led device: b43-phy0::tx
[  466.399992] Registered led device: b43-phy0::rx
[  466.400489] Registered led device: b43-phy0::radio
[  466.400749] b43-phy0 debug: Wireless interface started
[  466.400752] b43-phy0: Controller restarted
[  466.400785] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  466.400822] b43-phy0 debug: Wireless interface stopped
[  466.402349] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.402573] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.404293] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.406293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.408293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.410293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  466.556447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  466.558836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  467.941475] b43-phy0 debug: Chip initialized
[  467.941628] b43-phy0 debug: 64-bit DMA initialized
[  467.950503] Registered led device: b43-phy0::tx
[  467.950979] Registered led device: b43-phy0::rx
[  467.951831] Registered led device: b43-phy0::radio
[  467.952093] b43-phy0 debug: Wireless interface started
[  467.952188] b43-phy0 debug: Wireless interface stopped
[  467.952620] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  467.952844] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  467.954272] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  467.956295] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  467.958294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  467.960294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  468.106450] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  468.108837] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  469.491465] b43-phy0 debug: Chip initialized
[  469.491618] b43-phy0 debug: 64-bit DMA initialized
[  469.500520] Registered led device: b43-phy0::tx
[  469.500997] Registered led device: b43-phy0::rx
[  469.501501] Registered led device: b43-phy0::radio
[  469.501761] b43-phy0 debug: Wireless interface started
[  469.501765] __ratelimit: 6 callbacks suppressed
[  469.501767] b43-phy0: Controller restarted
[  469.501800] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  469.501806] b43-phy0: Controller RESET (DMA error) ...
[  469.501841] b43-phy0 debug: Wireless interface stopped
[  469.503436] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.503662] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.505290] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.507293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.509295] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.511295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  469.657447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  469.659836] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  471.042476] b43-phy0 debug: Chip initialized
[  471.042630] b43-phy0 debug: 64-bit DMA initialized
[  471.051516] Registered led device: b43-phy0::tx
[  471.051995] Registered led device: b43-phy0::rx
[  471.052497] Registered led device: b43-phy0::radio
[  471.052757] b43-phy0 debug: Wireless interface started
[  471.052760] b43-phy0: Controller restarted
[  471.052793] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  471.052799] b43-phy0: Controller RESET (DMA error) ...
[  471.052829] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  471.052833] b43-phy0: Controller RESET (DMA error) ...
[  471.052868] b43-phy0 debug: Wireless interface stopped
[  471.054298] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.054525] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.056302] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.058293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.060296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.062295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  471.208446] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  471.210830] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  472.593477] b43-phy0 debug: Chip initialized
[  472.593634] b43-phy0 debug: 64-bit DMA initialized
[  472.602530] Registered led device: b43-phy0::tx
[  472.603011] Registered led device: b43-phy0::rx
[  472.603483] Registered led device: b43-phy0::radio
[  472.603976] b43-phy0 debug: Wireless interface started
[  472.603979] b43-phy0: Controller restarted
[  472.604020] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  472.604084] b43-phy0 debug: Wireless interface stopped
[  472.604844] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.605073] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.607283] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.609294] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.611294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.613293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  472.759460] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  472.761846] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  474.144466] b43-phy0 debug: Chip initialized
[  474.144632] b43-phy0 debug: 64-bit DMA initialized
[  474.153040] Registered led device: b43-phy0::tx
[  474.153063] Registered led device: b43-phy0::rx
[  474.153085] Registered led device: b43-phy0::radio
[  474.153156] b43-phy0 debug: Wireless interface started
[  474.153262] b43-phy0 debug: Wireless interface stopped
[  474.154888] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.155121] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.157278] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.159281] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.161289] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.163303] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  474.309279] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  474.311671] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  475.694465] b43-phy0 debug: Chip initialized
[  475.694628] b43-phy0 debug: 64-bit DMA initialized
[  475.703543] Registered led device: b43-phy0::tx
[  475.704384] Registered led device: b43-phy0::rx
[  475.704599] Registered led device: b43-phy0::radio
[  475.704668] b43-phy0 debug: Wireless interface started
[  475.704671] __ratelimit: 8 callbacks suppressed
[  475.704673] b43-phy0: Controller restarted
[  475.704711] b43-phy0 debug: Wireless interface stopped
[  475.704815] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.705041] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.706273] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.708297] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.710296] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.712297] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  475.858447] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  475.860834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  477.243477] b43-phy0 debug: Chip initialized
[  477.243631] b43-phy0 debug: 64-bit DMA initialized
[  477.252518] Registered led device: b43-phy0::tx
[  477.253000] Registered led device: b43-phy0::rx
[  477.253496] Registered led device: b43-phy0::radio
[  477.253988] b43-phy0 debug: Wireless interface started
[  477.253992] b43-phy0: Controller restarted
[  477.254031] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  477.254037] b43-phy0: Controller RESET (DMA error) ...
[  477.254075] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  477.254080] b43-phy0: Controller RESET (DMA error) ...
[  477.254121] b43-phy0 debug: Wireless interface stopped
[  477.254966] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.255194] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.257295] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.259293] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.261294] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.263293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  477.409462] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  477.411851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  478.794475] b43-phy0 debug: Chip initialized
[  478.794627] b43-phy0 debug: 64-bit DMA initialized
[  478.803212] Registered led device: b43-phy0::tx
[  478.803233] Registered led device: b43-phy0::rx
[  478.803775] Registered led device: b43-phy0::radio
[  478.804041] b43-phy0 debug: Wireless interface started
[  478.804043] b43-phy0: Controller restarted
[  478.804071] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  478.804077] b43-phy0: Controller RESET (DMA error) ...
[  478.804109] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
[  478.805130] b43-phy0 debug: Wireless interface stopped
[  478.805495] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.805719] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.807284] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.809302] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.811298] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.813293] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  478.960461] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  478.962851] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  480.345480] b43-phy0 debug: Chip initialized
[  480.345646] b43-phy0 debug: 64-bit DMA initialized
[  480.354590] Registered led device: b43-phy0::tx
[  480.355450] Registered led device: b43-phy0::rx
[  480.355665] Registered led device: b43-phy0::radio
[  480.355736] b43-phy0 debug: Wireless interface started
[  480.355857] b43-phy0 debug: Wireless interface stopped
[  480.355966] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.356193] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.357268] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.359284] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.361300] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.363295] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  480.509448] b43-phy0: Loading firmware version 410.2160 (2007-05-26 15:32:10)
[  480.511834] b43-phy0 debug: b2062: Using crystal tab entry 19200 kHz.
[  481.894474] b43-phy0 debug: Chip initialized
[  481.894634] b43-phy0 debug: 64-bit DMA initialized
[  481.903521] Registered led device: b43-phy0::tx
[  481.904015] Registered led device: b43-phy0::rx
[  481.904490] Registered led device: b43-phy0::radio
[  481.904983] b43-phy0 debug: Wireless interface started
[  481.905105] b43-phy0 debug: Wireless interface stopped
[  481.905777] b43-phy0 debug: DMA-64 rx_ring: Used slots 0/64, Failed frames 0/0 = 0.0%, Average tries 0.00
[  481.906004] b43-phy0 debug: DMA-64 tx_ring_AC_BK: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  481.907498] b43-phy0 debug: DMA-64 tx_ring_AC_BE: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  481.909296] b43-phy0 debug: DMA-64 tx_ring_AC_VI: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  481.911293] b43-phy0 debug: DMA-64 tx_ring_AC_VO: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00
[  481.913294] b43-phy0 debug: DMA-64 tx_ring_mcast: Used slots 0/256, Failed frames 0/0 = 0.0%, Average tries 0.00

^ permalink raw reply

* Re: b43 dma error
From: Gábor Stefanik @ 2009-09-08 14:08 UTC (permalink / raw)
  To: Dave Young; +Cc: mb, linville, linux-wireless, bcm43xx-dev
In-Reply-To: <20090908134732.GA1936@darkstar>

Do you have the threaded-IRQ patches applied? Also, what card is this?
(BCM4312?) Try upgrading your firmare (use v478 or the new v5xx one).

^ permalink raw reply

* Re: Atheros Linux wireless drivers home page - and two new driver projects
From: Bob Copeland @ 2009-09-08 14:11 UTC (permalink / raw)
  To: Denis Kirjanov
  Cc: michael, Xavier Bestel, devel, b_yogesh_snowy, Dan Williams,
	Stefan Lippers-Hollmann, Len Widra, linux-wireless, linux-kernel,
	Stephen Chen, Jouni Malinen, Nick Kossifidis, Paul Fertser,
	Harald Welte, Witold Sowa, Michael Renzmann, Werner Almesberger
In-Reply-To: <a872555b0909072350qf105990q3efb99a8bbb2d0bc@mail.gmail.com>

On Tue, Sep 08, 2009 at 10:50:46AM +0400, Denis Kirjanov wrote:
> Good time of day.
> Do I need to use wireless-testing tree ?

For what goal?  Generally speaking, no you do
not need to use wireless-testing, unless you wish
to test or contribute, in which cases the answer
is "yes."

-Bob


^ permalink raw reply

* Re: b43 dma error
From: Michael Buesch @ 2009-09-08 14:38 UTC (permalink / raw)
  To: Dave Young; +Cc: linville, netrolller.3d, linux-wireless, bcm43xx-dev
In-Reply-To: <20090908134732.GA1936@darkstar>

On Tuesday 08 September 2009 15:47:32 Dave Young wrote:
> I tested wireless-testing b43 driver, but got "Fatal DMA error"
> then the controller keep restarting...
> 
> Please tell what I can provide or test, Thanks.

Is this a regression? If so, please bisect.

-- 
Greetings, Michael.

^ permalink raw reply

* Re: iwlagn: order 2 page allocation failures
From: John W. Linville @ 2009-09-08 14:17 UTC (permalink / raw)
  To: Pekka Enberg
  Cc: Mel Gorman, Frans Pop, linux-kernel, linux-wireless,
	ipw3945-devel, Andrew Morton, cl
In-Reply-To: <84144f020909080411n4e010308qa153039bee1b8336@mail.gmail.com>

On Tue, Sep 08, 2009 at 02:11:35PM +0300, Pekka Enberg wrote:
> On Tue, Sep 8, 2009 at 1:54 PM, Mel Gorman<mel@csn.ul.ie> wrote:
> > My feeling is also that a number of these page allocation failures have
> > been related to wireless drivers. Is that accurate? If so, have there
> > been changes made to the wireless stack in this cycle that would have
> > increased the order of pages allocated?
> 
> That's my general feeling as well. We have linux-wireless CC'd so
> maybe this rings a bell for them.

AFAIK, this is only the second separate report.  The other related
to ipw2200, which actually shares no code with the iwlagn driver and
is not based on the mac80211 stack.

Hth!

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

^ permalink raw reply

* Re: iwlagn: order 2 page allocation failures
From: Larry Finger @ 2009-09-08 14:59 UTC (permalink / raw)
  To: John W. Linville
  Cc: Pekka Enberg, Mel Gorman, Frans Pop, linux-kernel, linux-wireless,
	ipw3945-devel, Andrew Morton, cl
In-Reply-To: <20090908141701.GB2617@tuxdriver.com>

John W. Linville wrote:
> On Tue, Sep 08, 2009 at 02:11:35PM +0300, Pekka Enberg wrote:
>> On Tue, Sep 8, 2009 at 1:54 PM, Mel Gorman<mel@csn.ul.ie> wrote:
>>> My feeling is also that a number of these page allocation failures have
>>> been related to wireless drivers. Is that accurate? If so, have there
>>> been changes made to the wireless stack in this cycle that would have
>>> increased the order of pages allocated?
>> That's my general feeling as well. We have linux-wireless CC'd so
>> maybe this rings a bell for them.
> 
> AFAIK, this is only the second separate report.  The other related
> to ipw2200, which actually shares no code with the iwlagn driver and
> is not based on the mac80211 stack.

A previous issue concerned the interaction between wireless and SLUB
debugging that caused O(0) allocations to get bumped to O(1), but that
was not relevant to this case either. I'm not aware of any other page
allocation problems with wireless.

Larry

^ permalink raw reply

* Re: b43 dma error
From: Larry Finger @ 2009-09-08 14:54 UTC (permalink / raw)
  To: Michael Buesch
  Cc: Dave Young, linville, netrolller.3d, linux-wireless, bcm43xx-dev
In-Reply-To: <200909081638.36897.mb@bu3sch.de>

Michael Buesch wrote:
> On Tuesday 08 September 2009 15:47:32 Dave Young wrote:
>> I tested wireless-testing b43 driver, but got "Fatal DMA error"
>> then the controller keep restarting...
>>
>> Please tell what I can provide or test, Thanks.
> 
> Is this a regression? If so, please bisect.

It is something specific to his system as I don't see anything like
this. In addition, there are some users on the openSUSE forums that
have implemented the latest compat-wireless and switched away from
Broadcom wl to b43 on their LP PHY devices. So far, no complaints from
them.

Please reboot so that we see the ssb output as well. Use the command

dmesg | egrep "ssb|b43"

That way we will be able to see exactly what kind of device you have
and what revisions are in it. AFAIK, the testing to date has been
limited to Rev 1 PHYs and Rev 2 radios.

Larry



^ permalink raw reply

* Re: [gNewSense-users] firmware development Fwd: convocatoria (pagada) a desarrollo
From: Luis R. Rodriguez @ 2009-09-08 16:06 UTC (permalink / raw)
  To: Quiliro Ordóñez; +Cc: linux-wireless
In-Reply-To: <606e87f00909060900n20469a68k4e2540b7d99334b4@mail.gmail.com>

On Sun, Sep 6, 2009 at 9:00 AM, Quiliro Ordóñez<quiliro@gmail.com> wrote:
> Dear folks.
>
> I have like to have libre (free as in freedom) firmware for rt2561
> wireless chipset. And forward this email for your consideration and
> quote.

I think we can poke ralink, but anyway in the meantime be aware that
if you want a wireless device for which there are open upstream
drivers and either open firmware or no firmware requirement you can
refer to:

These devices require no firmware:

http://wireless.kernel.org/en/users/Drivers/ath5k
http://wireless.kernel.org/en/users/Drivers/ath9k

This driver has open firmware available:

http://wireless.kernel.org/en/users/Drivers/ar9170
http://wireless.kernel.org/en/users/Drivers/ar9170.fw

  Luis

^ permalink raw reply

* Re: [PATCH] cfg80211: Fix build error on i386 for net/wireless/scan.o
From: Luis R. Rodriguez @ 2009-09-08 16:09 UTC (permalink / raw)
  To: Larry Finger; +Cc: John W Linville, Johannes Berg, linux-wireless
In-Reply-To: <4aa3f838.ef04Hi2n3Fg54rE9%Larry.Finger@lwfinger.net>

On Sun, Sep 6, 2009 at 10:58 AM, Larry Finger<Larry.Finger@lwfinger.net> wrote:
> With i386 architecture, building the kernel v2.6.31-rc8-34797-g4910edb
> fails with the following error:
>
>  CC [M]  net/wireless/scan.o
> net/wireless/scan.c: In function ‘cfg80211_inform_bss’:
> net/wireless/scan.c:499: error: implicit declaration of function ‘kmemleak_ignore’
> make[2]: *** [net/wireless/scan.o] Error 1
>
> On x86_64, the build succeeds. Fix by including the appropriate header.
>
> Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>

I've asked John to revert the use of kmemleak_ignore() here for
several reasons so this patch will not be needed.

  Luis

^ 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