* [PATCH] auto-t: add ability to reserve radios not for IWD/hostapd/etc
@ 2024-02-28 17:47 James Prestwood
2024-03-01 14:42 ` Denis Kenzior
0 siblings, 1 reply; 2+ messages in thread
From: James Prestwood @ 2024-02-28 17:47 UTC (permalink / raw)
To: iwd; +Cc: James Prestwood
If the test needs to do something very specific it may be useful to
prevent IWD from managing all the radios. This can now be done
by setting a "reserve" option in the radio settings. The value of
this should be something other than iwd, hostapd, or wpa_supplicant.
For example:
[rad1]
reserve=false
---
tools/run-tests | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/tools/run-tests b/tools/run-tests
index 11ad73c0..fdd0b989 100755
--- a/tools/run-tests
+++ b/tools/run-tests
@@ -73,10 +73,10 @@ class Interface:
Process(['ip', 'link', 'set', self.name, state], namespace=self.ns.name).wait()
class Radio:
- def __init__(self, name, default_ns):
+ def __init__(self, name, default_ns, used_by='iwd'):
self.name = name
# hostapd will reset this if this radio is used by it
- self.use = 'iwd'
+ self.use = used_by
self.interface = None
self.ns = default_ns
@@ -131,15 +131,18 @@ class VirtualRadio(Radio):
self.hwsim = config.hwsim.Hwsim()
+ used_by = 'iwd'
+
if cfg:
self.disable_iftype = cfg.get('iftype_disable', None)
self.disable_cipher = cfg.get('cipher_disable', None)
+ used_by = cfg.get('reserve', 'iwd')
self._radio = self.hwsim.radios.create(name, p2p_device=True,
iftype_disable=self.disable_iftype,
cipher_disable=self.disable_cipher)
- super().__init__(self._radio.name, default_ns)
+ super().__init__(self._radio.name, default_ns, used_by)
def __del__(self):
super().__del__()
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] auto-t: add ability to reserve radios not for IWD/hostapd/etc
2024-02-28 17:47 [PATCH] auto-t: add ability to reserve radios not for IWD/hostapd/etc James Prestwood
@ 2024-03-01 14:42 ` Denis Kenzior
0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2024-03-01 14:42 UTC (permalink / raw)
To: James Prestwood, iwd
Hi James,
On 2/28/24 11:47, James Prestwood wrote:
> If the test needs to do something very specific it may be useful to
> prevent IWD from managing all the radios. This can now be done
> by setting a "reserve" option in the radio settings. The value of
> this should be something other than iwd, hostapd, or wpa_supplicant.
>
> For example:
>
> [rad1]
> reserve=false
> ---
> tools/run-tests | 9 ++++++---
> 1 file changed, 6 insertions(+), 3 deletions(-)
>
Applied, thanks.
Regards,
-Denis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-01 14:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-28 17:47 [PATCH] auto-t: add ability to reserve radios not for IWD/hostapd/etc James Prestwood
2024-03-01 14:42 ` Denis Kenzior
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox