* [PATCH] knownnetworks: limit 5 recent frequencies per network
@ 2023-12-20 13:15 James Prestwood
0 siblings, 0 replies; only message in thread
From: James Prestwood @ 2023-12-20 13:15 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
Since this is meant to be used for quick/roam scans we should be
putting a cap on the frequencies scanned. For large networks with
many BSS's this could end up scanning quite a few frequencies which
isn't very 'quick' as it should be.
Since the known frequency list is now sorted in most recently used
order we can grab the first 5 frequencies per network and be
somewhat confident that this will result in a BSS to connect to.
---
src/knownnetworks.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
- Whoops, this did not make it into the original patch set:
"Reduce and optimize quick/roam scan frequencies"
diff --git a/src/knownnetworks.c b/src/knownnetworks.c
index e44109fd..ecdd79a1 100644
--- a/src/knownnetworks.c
+++ b/src/knownnetworks.c
@@ -540,10 +540,12 @@ struct scan_freq_set *known_networks_get_recent_frequencies(
network_entry = network_entry->next,
num_networks_tosearch--) {
const struct network_info *network = network_entry->data;
+ uint8_t num_freqs = 5;
for (freq_entry = l_queue_get_entries(
network->known_frequencies);
- freq_entry; freq_entry = freq_entry->next) {
+ freq_entry && num_freqs;
+ freq_entry = freq_entry->next, num_freqs--) {
const struct known_frequency *known_freq =
freq_entry->data;
--
2.34.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-12-20 13:15 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-20 13:15 [PATCH] knownnetworks: limit 5 recent frequencies per network James Prestwood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox