Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f53594a0 authored by Felix Fietkau's avatar Felix Fietkau Committed by Johannes Berg
Browse files

cfg80211: ignore channel state for stopped AP/mesh interfaces



Without this change, running AP + station on the same wiphy
does not work since the commit "cfg80211: add channel checking
for iface combinations". The stopped AP prevents the client
from connecting to an AP on a different channel.

Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>
[line-break commit message to < 72 chars]
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 685fb72b
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -134,9 +134,16 @@ cfg80211_get_chan_state(struct wireless_dev *wdev,
		break;
	case NL80211_IFTYPE_AP:
	case NL80211_IFTYPE_P2P_GO:
		if (wdev->beacon_interval) {
			*chan = wdev->channel;
			*chanmode = CHAN_MODE_SHARED;
		}
		return;
	case NL80211_IFTYPE_MESH_POINT:
		if (wdev->mesh_id_len) {
			*chan = wdev->channel;
			*chanmode = CHAN_MODE_SHARED;
		}
		return;
	case NL80211_IFTYPE_MONITOR:
	case NL80211_IFTYPE_AP_VLAN: