mirror of
https://github.com/torvalds/linux.git
synced 2026-07-28 10:09:10 +02:00
wifi: rtw89: disable HTC field in AP mode
Disable HE QoS HTC field when operating in AP mode to resolve interoperability issues with some stations. Signed-off-by: Dian-Syuan Yang <dian_syuan0116@realtek.com> Signed-off-by: Ping-Ke Shih <pkshih@realtek.com> Link: https://patch.msgid.link/20260424072552.59220-3-pkshih@realtek.com
This commit is contained in:
parent
329e9fff98
commit
1e53b826d5
|
|
@ -947,6 +947,7 @@ __rtw89_core_tx_check_he_qos_htc(struct rtw89_dev *rtwdev,
|
|||
enum btc_pkt_type pkt_type)
|
||||
{
|
||||
struct rtw89_sta_link *rtwsta_link = tx_req->rtwsta_link;
|
||||
struct ieee80211_vif *vif = tx_req->vif;
|
||||
struct sk_buff *skb = tx_req->skb;
|
||||
struct ieee80211_hdr *hdr = (void *)skb->data;
|
||||
struct ieee80211_link_sta *link_sta;
|
||||
|
|
@ -978,6 +979,9 @@ __rtw89_core_tx_check_he_qos_htc(struct rtw89_dev *rtwdev,
|
|||
if (rtwsta_link && rtwsta_link->ra_report.might_fallback_legacy)
|
||||
return false;
|
||||
|
||||
if (vif->type == NL80211_IFTYPE_AP)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user