wifi: mac80211: don't select link ID if not provided in scan request
authorAyala Beker <ayala.beker@intel.com>
Wed, 20 Mar 2024 07:14:02 +0000 (09:14 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 25 Mar 2024 14:39:28 +0000 (15:39 +0100)
If scan request doesn't include a link ID to be used for TSF
reporting, don't select it as it might become inactive before
scan is actually started by the driver.
Instead, let the driver select one of the active links.

Fixes: cbde0b49f276 ("wifi: mac80211: Extend support for scanning while MLO connected")
Signed-off-by: Ayala Beker <ayala.beker@intel.com>
Reviewed-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20240320091155.a6b643a15755.Ic28ed9a611432387b7f85e9ca9a97a4ce34a6e0f@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/scan.c

index 0429e59ba387c931f42ae1e74255a7deb5ebf5d6..977f8eb0a67bcce09f8aefdcbecdff32f807f5af 100644 (file)
@@ -707,19 +707,11 @@ static int __ieee80211_start_scan(struct ieee80211_sub_if_data *sdata,
                return -EBUSY;
 
        /* For an MLO connection, if a link ID was specified, validate that it
-        * is indeed active. If no link ID was specified, select one of the
-        * active links.
+        * is indeed active.
         */
-       if (ieee80211_vif_is_mld(&sdata->vif)) {
-               if (req->tsf_report_link_id >= 0) {
-                       if (!(sdata->vif.active_links &
-                             BIT(req->tsf_report_link_id)))
-                               return -EINVAL;
-               } else {
-                       req->tsf_report_link_id =
-                               __ffs(sdata->vif.active_links);
-               }
-       }
+       if (ieee80211_vif_is_mld(&sdata->vif) && req->tsf_report_link_id >= 0 &&
+           !(sdata->vif.active_links & BIT(req->tsf_report_link_id)))
+               return -EINVAL;
 
        if (!__ieee80211_can_leave_ch(sdata))
                return -EBUSY;