mac80211: remove short slot/short preamble incapable flags
There are no drivers setting IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE or IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE, so any code using the two flags is dead; it's also exceedingly unlikely that any new driver could ever need to set these flags. The wcn36xx code is almost certainly broken, but this preserves the previous behaviour. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
此提交包含在:
@@ -669,10 +669,8 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata)
|
||||
capab = WLAN_CAPABILITY_ESS;
|
||||
|
||||
if (sband->band == IEEE80211_BAND_2GHZ) {
|
||||
if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_SLOT_INCAPABLE))
|
||||
capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
|
||||
if (!(local->hw.flags & IEEE80211_HW_2GHZ_SHORT_PREAMBLE_INCAPABLE))
|
||||
capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
|
||||
capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
|
||||
capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
|
||||
}
|
||||
|
||||
if (assoc_data->capability & WLAN_CAPABILITY_PRIVACY)
|
||||
|
新增問題並參考
封鎖使用者