]> www.infradead.org Git - users/hch/configfs.git/commitdiff
wifi: mac80211: optionally pass chandef to ieee80211_sta_cap_rx_bw()
authorJohannes Berg <johannes.berg@intel.com>
Wed, 12 Jun 2024 12:32:03 +0000 (14:32 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 26 Jun 2024 08:21:52 +0000 (10:21 +0200)
We'll need this function to take a new chandef in
(some) channel switching cases, so prepare for that
by allowing that to be passed and using it if so.
Clean up the code a little bit while at it.

Reviewed-by: Miriam Rachel Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://patch.msgid.link/20240612143418.772313f08b6a.If9708249e5870671e745d4c2b02e03b25092bea3@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/ieee80211_i.h
net/mac80211/vht.c

index cb3e28f880893af564c64dc4307c1fb5063f7bcd..e96404f9dc702efa6d6c3ff060a1d87dd6a47da6 100644 (file)
@@ -2158,7 +2158,13 @@ ieee80211_vht_cap_ie_to_sta_vht_cap(struct ieee80211_sub_if_data *sdata,
                                    const struct ieee80211_vht_cap *vht_cap_ie2,
                                    struct link_sta_info *link_sta);
 enum ieee80211_sta_rx_bandwidth
-ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta);
+_ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta,
+                        struct cfg80211_chan_def *chandef);
+static inline enum ieee80211_sta_rx_bandwidth
+ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta)
+{
+       return _ieee80211_sta_cap_rx_bw(link_sta, NULL);
+}
 enum ieee80211_sta_rx_bandwidth
 ieee80211_sta_cur_vht_bw(struct link_sta_info *link_sta);
 void ieee80211_sta_init_nss(struct link_sta_info *link_sta);
index 642891cafbaf24b5348d528ea36cc5d888159d7c..c280945fc9d6f0f95fd0d8e15bc770423639fb24 100644 (file)
@@ -351,7 +351,8 @@ ieee80211_vht_cap_ie_to_sta_vht_cap(struct ieee80211_sub_if_data *sdata,
 
 /* FIXME: move this to some better location - parses HE/EHT now */
 enum ieee80211_sta_rx_bandwidth
-ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta)
+_ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta,
+                        struct cfg80211_chan_def *chandef)
 {
        unsigned int link_id = link_sta->link_id;
        struct ieee80211_sub_if_data *sdata = link_sta->sta->sdata;
@@ -361,44 +362,43 @@ ieee80211_sta_cap_rx_bw(struct link_sta_info *link_sta)
        u32 cap_width;
 
        if (he_cap->has_he) {
-               struct ieee80211_bss_conf *link_conf;
-               enum ieee80211_sta_rx_bandwidth ret;
+               enum nl80211_band band;
                u8 info;
 
-               rcu_read_lock();
-               link_conf = rcu_dereference(sdata->vif.link_conf[link_id]);
+               if (chandef) {
+                       band = chandef->chan->band;
+               } else {
+                       struct ieee80211_bss_conf *link_conf;
+
+                       rcu_read_lock();
+                       link_conf = rcu_dereference(sdata->vif.link_conf[link_id]);
+                       band = link_conf->chanreq.oper.chan->band;
+                       rcu_read_unlock();
+               }
 
-               if (eht_cap->has_eht &&
-                   link_conf->chanreq.oper.chan->band == NL80211_BAND_6GHZ) {
+               if (eht_cap->has_eht && band == NL80211_BAND_6GHZ) {
                        info = eht_cap->eht_cap_elem.phy_cap_info[0];
 
-                       if (info & IEEE80211_EHT_PHY_CAP0_320MHZ_IN_6GHZ) {
-                               ret = IEEE80211_STA_RX_BW_320;
-                               goto out;
-                       }
+                       if (info & IEEE80211_EHT_PHY_CAP0_320MHZ_IN_6GHZ)
+                               return IEEE80211_STA_RX_BW_320;
                }
 
                info = he_cap->he_cap_elem.phy_cap_info[0];
 
-               if (link_conf->chanreq.oper.chan->band == NL80211_BAND_2GHZ) {
+               if (band == NL80211_BAND_2GHZ) {
                        if (info & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_IN_2G)
-                               ret = IEEE80211_STA_RX_BW_40;
-                       else
-                               ret = IEEE80211_STA_RX_BW_20;
-                       goto out;
+                               return IEEE80211_STA_RX_BW_40;
+                       return IEEE80211_STA_RX_BW_20;
                }
 
                if (info & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_160MHZ_IN_5G ||
                    info & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_80PLUS80_MHZ_IN_5G)
-                       ret = IEEE80211_STA_RX_BW_160;
-               else if (info & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G)
-                       ret = IEEE80211_STA_RX_BW_80;
-               else
-                       ret = IEEE80211_STA_RX_BW_20;
-out:
-               rcu_read_unlock();
+                       return IEEE80211_STA_RX_BW_160;
+
+               if (info & IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G)
+                       return IEEE80211_STA_RX_BW_80;
 
-               return ret;
+               return IEEE80211_STA_RX_BW_20;
        }
 
        if (!vht_cap->vht_supported)