On Tue, 30 Jun 2026 13:11:15 -0400 Willem de Bruijn wrote:
> > +def _cap_queue_count(cfg):
> > + ehdr = {"header": {"dev-index": cfg.ifindex}}
> > + chans = cfg.ethnl.channels_get(ehdr)
> > +
> > + config = {}
> > + restore = {}
> > + for key in ("combined-count", "rx-count"):
>
> This assumes that combined and rx are not set at the same time.
> SGTM, not expected in real devices. But technically they could be.
Ack, some tests just assume the NIC uses combined, which is most common.
If this ever causes issues we should probably add support for
provisioning min/max number of queues in the env setup itself.
IIRC someone even posted that at some point.