Solved Are these ath0 kernel messages harmless?

Hi,

I had the chance to plug my AR9462 PCI-E Ethernet Card to my Desktop PC back in and this time I've noticed kernel messages related to my wireless interface.

Code:
[16] wlan0: link state changed to UP
[16] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[16] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[16] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[16] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[33] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[33] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[222] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[222] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[236] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[236] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[240] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[240] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0
[20250] ath0: ath_rate_tx_complete: ts_rate=27 ts_finaltsi=0, final_rix=0
[20250] ath0: bad series0 hwrate 0x1b, tries 1 ts_status 0x0

Are these harmless? Is there way that I can disable them so I won't see them? Thanks in advance.

Code:
% pciconf -lv | grep -A3 ath0
ath0@pci0:6:0:0:        class=0x028000 rev=0x01 hdr=0x00 vendor=0x168c device=0x0034 subvendor=0x11ad subdevice=0x6641
    vendor     = 'Qualcomm Atheros'
    device     = 'AR9462 Wireless Network Adapter'
    class      = network

% ifconfig wlan0
wlan0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
        options=0
        ether xxxxxxxxxxxxxxx
        inet xxxxxxxx netmask 0xffffff00 broadcast xxxxxxx
        groups: wlan
        ssid "xxxxxxxxxxxxx" channel 1 (2412 MHz 11g ht/20) bssid xxxxxxxxxxxxx
        regdomain 106 indoor ecm authmode WPA2/802.11i privacy ON
        deftxkey UNDEF AES-CCM 2:128-bit AES-CCM 3:128-bit txpower 20 bmiss 7
        scanvalid 60 protmode CTS ampdulimit 64k ampdudensity 4 shortgi -uapsd
        wme burst roaming MANUAL
        parent interface: ath0
        media: IEEE 802.11 Wireless Ethernet MCS mode 11ng
        status: associated
        nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
 
you've got a link, so it seems like they're not interfering with normal operation. judging by the function names, it sounds like the driver doesn't like the response it's getting from the card when trying to enumerate transmit rates, implying that the card wants to go faster than the driver knows how to deal with.
 
Back
Top