Wireless Daemon for Linux
 help / color / mirror / Atom feed
* [PATCH 1/3] station: clear out roam frequencies after roam
@ 2021-03-29 19:07 James Prestwood
  2021-03-29 19:07 ` [PATCH 2/3] station: unify firmware/normal roaming James Prestwood
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: James Prestwood @ 2021-03-29 19:07 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 532 bytes --]

---
 src/station.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/station.c b/src/station.c
index ba4483e6..0d4cd47d 100644
--- a/src/station.c
+++ b/src/station.c
@@ -1442,6 +1442,11 @@ static void station_roamed(struct station *station)
 	if (station->netconfig)
 		netconfig_reconfigure(station->netconfig);
 
+	if (station->roam_freqs) {
+		scan_freq_set_free(station->roam_freqs);
+		station->roam_freqs = NULL;
+	}
+
 	station_enter_state(station, STATION_STATE_CONNECTED);
 }
 
-- 
2.26.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-29 19:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-29 19:07 [PATCH 1/3] station: clear out roam frequencies after roam James Prestwood
2021-03-29 19:07 ` [PATCH 2/3] station: unify firmware/normal roaming James Prestwood
2021-03-29 19:07 ` [PATCH 3/3] station: get neighbor report after roaming James Prestwood
2021-03-29 19:12 ` [PATCH 1/3] station: clear out roam frequencies after roam Denis Kenzior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox