diff mbox

Updated CT firmware uploaded.

Message ID 557F4412.7000105@candelatech.com (mailing list archive)
State Not Applicable
Headers show

Commit Message

Ben Greear June 15, 2015, 9:30 p.m. UTC
Changes since last email of this nature:

Fixed firmware to pay attention to the non-standard TIDS in
station mode.  This allows host to properly request
HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST and have it actually work.

This fixes the station disconnect regressions we saw in the last
firmware beta.

You may need this (below) patch to your kernel as well.  Or, maybe this problem
only happened when using our CT kernel due to some other private patches
we carry.  I don't do much testing on stock kernels, but please do report
any problems or success on whatever kernels you use.


And note:  For anyone doing IBSS/ADHOC with my firmware, please use
the beta builds until I can do an official version-14 release.

http://www.candelatech.com/ath10k.php

http://www.candelatech.com/downloads/ath10k-fw-beta/

Thanks,
Ben
diff mbox

Patch

diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c

index 3199445..29851d2 100644 (file)


--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -1916,6 +1916,9 @@  static u8 ath10k_tx_h_get_tid(struct ieee80211_hdr *hdr)
        if (ieee80211_is_mgmt(hdr->frame_control))
                return HTT_DATA_TX_EXT_TID_MGMT;

+       if (ieee80211_is_nullfunc(hdr->frame_control))
+               return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;
+
        if (!ieee80211_is_data_qos(hdr->frame_control))
                return HTT_DATA_TX_EXT_TID_NON_QOS_MCAST_BCAST;