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

Commit 5e133362 authored by Johannes Berg's avatar Johannes Berg Committed by John W. Linville
Browse files

mac80211: disable IBSS beacon before join



Before we have a probe response frame (which is used as the
beacon too) there's no need to ask drivers to beacon, they
will not get a beacon anyway.

Signed-off-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 570a0a7c
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -210,6 +210,8 @@ int ieee80211_if_config(struct ieee80211_sub_if_data *sdata, u32 changed)
					!!rcu_dereference(sdata->u.ap.beacon);
					!!rcu_dereference(sdata->u.ap.beacon);
				break;
				break;
			case NL80211_IFTYPE_ADHOC:
			case NL80211_IFTYPE_ADHOC:
				conf.enable_beacon = !!sdata->u.sta.probe_resp;
				break;
			case NL80211_IFTYPE_MESH_POINT:
			case NL80211_IFTYPE_MESH_POINT:
				conf.enable_beacon = true;
				conf.enable_beacon = true;
				break;
				break;