mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-28 09:39:00 +00:00
ec61ccc0d3
Mostly MLO related Signed-off-by: Felix Fietkau <nbd@nbd.name>
169 lines
5.3 KiB
Diff
169 lines
5.3 KiB
Diff
From: Aditya Kumar Singh <quic_adisi@quicinc.com>
|
|
Date: Fri, 6 Sep 2024 12:14:25 +0530
|
|
Subject: [PATCH] wifi: cfg80211/mac80211: use proper link ID for DFS
|
|
|
|
Now that all APIs have support to handle DFS per link, use proper link ID
|
|
instead of 0.
|
|
|
|
Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
|
|
Link: https://patch.msgid.link/20240906064426.2101315-8-quic_adisi@quicinc.com
|
|
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
|
|
---
|
|
|
|
--- a/net/mac80211/cfg.c
|
|
+++ b/net/mac80211/cfg.c
|
|
@@ -1656,12 +1656,12 @@ static int ieee80211_stop_ap(struct wiph
|
|
ieee80211_link_info_change_notify(sdata, link,
|
|
BSS_CHANGED_BEACON_ENABLED);
|
|
|
|
- if (sdata->wdev.links[0].cac_started) {
|
|
+ if (sdata->wdev.links[link_id].cac_started) {
|
|
chandef = link_conf->chanreq.oper;
|
|
wiphy_delayed_work_cancel(wiphy, &link->dfs_cac_timer_work);
|
|
cfg80211_cac_event(sdata->dev, &chandef,
|
|
NL80211_RADAR_CAC_ABORTED,
|
|
- GFP_KERNEL, 0);
|
|
+ GFP_KERNEL, link_id);
|
|
}
|
|
|
|
drv_stop_ap(sdata->local, sdata, link_conf);
|
|
@@ -3965,7 +3965,7 @@ __ieee80211_channel_switch(struct wiphy
|
|
if (!list_empty(&local->roc_list) || local->scanning)
|
|
return -EBUSY;
|
|
|
|
- if (sdata->wdev.links[0].cac_started)
|
|
+ if (sdata->wdev.links[link_id].cac_started)
|
|
return -EBUSY;
|
|
|
|
if (WARN_ON(link_id >= IEEE80211_MLD_MAX_NUM_LINKS))
|
|
--- a/net/mac80211/mlme.c
|
|
+++ b/net/mac80211/mlme.c
|
|
@@ -3039,11 +3039,11 @@ void ieee80211_dfs_cac_timer_work(struct
|
|
|
|
lockdep_assert_wiphy(sdata->local->hw.wiphy);
|
|
|
|
- if (sdata->wdev.links[0].cac_started) {
|
|
+ if (sdata->wdev.links[link->link_id].cac_started) {
|
|
ieee80211_link_release_channel(link);
|
|
cfg80211_cac_event(sdata->dev, &chandef,
|
|
NL80211_RADAR_CAC_FINISHED,
|
|
- GFP_KERNEL, 0);
|
|
+ GFP_KERNEL, link->link_id);
|
|
}
|
|
}
|
|
|
|
--- a/net/mac80211/scan.c
|
|
+++ b/net/mac80211/scan.c
|
|
@@ -575,6 +575,7 @@ static bool __ieee80211_can_leave_ch(str
|
|
{
|
|
struct ieee80211_local *local = sdata->local;
|
|
struct ieee80211_sub_if_data *sdata_iter;
|
|
+ unsigned int link_id;
|
|
|
|
lockdep_assert_wiphy(local->hw.wiphy);
|
|
|
|
@@ -585,8 +586,9 @@ static bool __ieee80211_can_leave_ch(str
|
|
return false;
|
|
|
|
list_for_each_entry(sdata_iter, &local->interfaces, list) {
|
|
- if (sdata_iter->wdev.links[0].cac_started)
|
|
- return false;
|
|
+ for_each_valid_link(&sdata_iter->wdev, link_id)
|
|
+ if (sdata_iter->wdev.links[link_id].cac_started)
|
|
+ return false;
|
|
}
|
|
|
|
return true;
|
|
--- a/net/wireless/mlme.c
|
|
+++ b/net/wireless/mlme.c
|
|
@@ -1125,14 +1125,14 @@ void cfg80211_cac_event(struct net_devic
|
|
|
|
trace_cfg80211_cac_event(netdev, event, link_id);
|
|
|
|
- if (WARN_ON(!wdev->links[0].cac_started &&
|
|
+ if (WARN_ON(!wdev->links[link_id].cac_started &&
|
|
event != NL80211_RADAR_CAC_STARTED))
|
|
return;
|
|
|
|
switch (event) {
|
|
case NL80211_RADAR_CAC_FINISHED:
|
|
- timeout = wdev->links[0].cac_start_time +
|
|
- msecs_to_jiffies(wdev->links[0].cac_time_ms);
|
|
+ timeout = wdev->links[link_id].cac_start_time +
|
|
+ msecs_to_jiffies(wdev->links[link_id].cac_time_ms);
|
|
WARN_ON(!time_after_eq(jiffies, timeout));
|
|
cfg80211_set_dfs_state(wiphy, chandef, NL80211_DFS_AVAILABLE);
|
|
memcpy(&rdev->cac_done_chandef, chandef,
|
|
@@ -1141,10 +1141,10 @@ void cfg80211_cac_event(struct net_devic
|
|
cfg80211_sched_dfs_chan_update(rdev);
|
|
fallthrough;
|
|
case NL80211_RADAR_CAC_ABORTED:
|
|
- wdev->links[0].cac_started = false;
|
|
+ wdev->links[link_id].cac_started = false;
|
|
break;
|
|
case NL80211_RADAR_CAC_STARTED:
|
|
- wdev->links[0].cac_started = true;
|
|
+ wdev->links[link_id].cac_started = true;
|
|
break;
|
|
default:
|
|
WARN_ON(1);
|
|
--- a/net/wireless/nl80211.c
|
|
+++ b/net/wireless/nl80211.c
|
|
@@ -6066,7 +6066,7 @@ static int nl80211_start_ap(struct sk_bu
|
|
if (!rdev->ops->start_ap)
|
|
return -EOPNOTSUPP;
|
|
|
|
- if (wdev->links[0].cac_started)
|
|
+ if (wdev->links[link_id].cac_started)
|
|
return -EBUSY;
|
|
|
|
if (wdev->links[link_id].ap.beacon_interval)
|
|
@@ -10073,6 +10073,7 @@ static int nl80211_start_radar_detection
|
|
struct cfg80211_registered_device *rdev = info->user_ptr[0];
|
|
struct net_device *dev = info->user_ptr[1];
|
|
struct wireless_dev *wdev = dev->ieee80211_ptr;
|
|
+ int link_id = nl80211_link_id(info->attrs);
|
|
struct wiphy *wiphy = wdev->wiphy;
|
|
struct cfg80211_chan_def chandef;
|
|
enum nl80211_dfs_regions dfs_region;
|
|
@@ -10127,7 +10128,7 @@ static int nl80211_start_radar_detection
|
|
* can not already beacon
|
|
*/
|
|
if (wdev->valid_links &&
|
|
- !wdev->links[0].ap.beacon_interval) {
|
|
+ !wdev->links[link_id].ap.beacon_interval) {
|
|
/* nothing */
|
|
} else {
|
|
err = -EBUSY;
|
|
@@ -10135,7 +10136,7 @@ static int nl80211_start_radar_detection
|
|
}
|
|
}
|
|
|
|
- if (wdev->links[0].cac_started) {
|
|
+ if (wdev->links[link_id].cac_started) {
|
|
err = -EBUSY;
|
|
goto unlock;
|
|
}
|
|
@@ -10156,7 +10157,7 @@ static int nl80211_start_radar_detection
|
|
cac_time_ms = IEEE80211_DFS_MIN_CAC_TIME_MS;
|
|
|
|
err = rdev_start_radar_detection(rdev, dev, &chandef, cac_time_ms,
|
|
- 0);
|
|
+ link_id);
|
|
if (!err) {
|
|
switch (wdev->iftype) {
|
|
case NL80211_IFTYPE_AP:
|
|
@@ -10172,9 +10173,9 @@ static int nl80211_start_radar_detection
|
|
default:
|
|
break;
|
|
}
|
|
- wdev->links[0].cac_started = true;
|
|
- wdev->links[0].cac_start_time = jiffies;
|
|
- wdev->links[0].cac_time_ms = cac_time_ms;
|
|
+ wdev->links[link_id].cac_started = true;
|
|
+ wdev->links[link_id].cac_start_time = jiffies;
|
|
+ wdev->links[link_id].cac_time_ms = cac_time_ms;
|
|
}
|
|
unlock:
|
|
wiphy_unlock(wiphy);
|