mac80211: support disabling EHT mode
Allow userspace to disable EHT mode. This forces EHT capable interfaces to disable during association. Signed-off-by: Muna Sinada <quic_msinada@quicinc.com> Signed-off-by: Aloka Dixit <quic_alokad@quicinc.com> Link: https://lore.kernel.org/r/20220323224636.20211-2-quic_alokad@quicinc.com [remove stray message change] Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
36f8423597
commit
1ca9801686
|
@ -6126,6 +6126,9 @@ int ieee80211_mgd_assoc(struct ieee80211_sub_if_data *sdata,
|
|||
ifmgd->flags |= IEEE80211_STA_DISABLE_EHT;
|
||||
}
|
||||
|
||||
if (req->flags & ASSOC_REQ_DISABLE_EHT)
|
||||
ifmgd->flags |= IEEE80211_STA_DISABLE_EHT;
|
||||
|
||||
err = ieee80211_prep_connection(sdata, req->bss, true, override);
|
||||
if (err)
|
||||
goto err_clear;
|
||||
|
|
Loading…
Reference in New Issue