* [PATCH] unit: add test with list of known unsupported frequencies
@ 2024-10-24 18:43 James Prestwood
2024-10-24 21:01 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: James Prestwood @ 2024-10-24 18:43 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
These frequencies were seen being advertised by a driver and IWD has
no operating class/channel mapping for them. Specifically 5960 was
causing issues due to a few bugs and mapping to channel 2 of the 6ghz
band. Those bugs have now been resolved.
If these frequencies can be supported in a clean manor we can remove
this test, but until then ensure IWD does not parse them.
---
unit/test-band.c | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/unit/test-band.c b/unit/test-band.c
index 606bb854..edf1e02e 100644
--- a/unit/test-band.c
+++ b/unit/test-band.c
@@ -683,6 +683,26 @@ static void test_conversion_fallback(const void *data)
assert(band == BAND_FREQ_5_GHZ);
}
+static void test_unsupported_freqs(const void *data)
+{
+ /*
+ * These are frequencies that were seen advertised by some drivers
+ * but that don't match any global operating classes IWD has. They may
+ * be valid, but IWD should not parse them correctly without added
+ * support in band.c.
+ */
+ uint32_t unsupported[] = {
+ 5920, 5940, 5960, 5980, 6000, 6020, 6040, 6060, 6080,
+ };
+ unsigned int i;
+
+ for (i = 0; i < L_ARRAY_SIZE(unsupported); i++) {
+ uint8_t channel = band_freq_to_channel(unsupported[i], NULL);
+
+ assert(!channel);
+ }
+}
+
int main(int argc, char *argv[])
{
l_test_init(&argc, &argv);
@@ -750,6 +770,7 @@ int main(int argc, char *argv[])
l_test_add("/band/conversions", test_conversions, NULL);
l_test_add("/band/conversion fallback", test_conversion_fallback, NULL);
+ l_test_add("/band/unsupported freqs", test_unsupported_freqs, NULL);
return l_test_run();
}
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] unit: add test with list of known unsupported frequencies
2024-10-24 18:43 [PATCH] unit: add test with list of known unsupported frequencies James Prestwood
@ 2024-10-24 21:01 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2024-10-24 21:01 UTC (permalink / raw)
To: James Prestwood, iwd
Hi James,
On 10/24/24 1:43 PM, James Prestwood wrote:
> These frequencies were seen being advertised by a driver and IWD has
> no operating class/channel mapping for them. Specifically 5960 was
> causing issues due to a few bugs and mapping to channel 2 of the 6ghz
> band. Those bugs have now been resolved.
>
> If these frequencies can be supported in a clean manor we can remove
> this test, but until then ensure IWD does not parse them.
> ---
> unit/test-band.c | 21 +++++++++++++++++++++
> 1 file changed, 21 insertions(+)
>
Applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-10-24 21:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-24 18:43 [PATCH] unit: add test with list of known unsupported frequencies James Prestwood
2024-10-24 21:01 ` Denis Kenzior
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox