From: Petr Machata <petrm@nvidia.com>
To: Jakub Kicinski <kuba@kernel.org>
Cc: Petr Machata <petrm@nvidia.com>, <davem@davemloft.net>,
<netdev@vger.kernel.org>, <edumazet@google.com>,
<pabeni@redhat.com>, <willemdebruijn.kernel@gmail.com>,
<ecree.xilinx@gmail.com>, <dw@davidwei.uk>,
<przemyslaw.kitszel@intel.com>, <michael.chan@broadcom.com>,
<andrew.gospodarek@broadcom.com>
Subject: Re: [PATCH net-next v2 4/4] selftests: drv-net: rss_ctx: add tests for RSS configuration and contexts
Date: Tue, 25 Jun 2024 16:43:55 +0200 [thread overview]
Message-ID: <8734p1at4e.fsf@nvidia.com> (raw)
In-Reply-To: <20240625065041.1c4cb856@kernel.org>
Jakub Kicinski <kuba@kernel.org> writes:
> On Tue, 25 Jun 2024 12:42:22 +0200 Petr Machata wrote:
>> > +def test_rss_key_indir(cfg):
>> > + """
>> > + Test basics like updating the main RSS key and indirection table.
>> > + """
>> > + if len(_get_rx_cnts(cfg)) < 2:
>> > + KsftSkipEx("Device has only one queue (or doesn't support queue stats)")
>>
>> I'm not sure, is this admin-correctible configuration issue? It looks
>> like this and some others should rather be XFAIL.
>
> TBH I don't have a good compass on what should be XFAIL and what should
> be SKIP in HW tests. Once vendors start running these we'll get more
> experience (there's only one test using Xfail in HW now).
Sure, me neither.
>> > + # Try to allocate more queues when necessary
>> > + qcnt = len(_get_rx_cnts(cfg))
>> > + if qcnt >= 2 + 2 * ctx_cnt:
>> > + qcnt = None
>> > + else:
>> > + try:
>> > + ksft_pr(f"Increasing queue count {qcnt} -> {2 + 2 * ctx_cnt}")
>> > + ethtool(f"-L {cfg.ifname} combined {2 + 2 * ctx_cnt}")
>> > + except:
>> > + raise KsftSkipEx("Not enough queues for the test")
>>
>> There are variations on this in each of the three tests. It would make
>> sense to extract to a helper, or perhaps even write as a context
>> manager. Untested:
>>
>> class require_contexts:
>> def __init__(self, cfg, count):
>> self._cfg = cfg
>> self._count = count
>> self._qcnt = None
>>
>> def __enter__(self):
>> qcnt = len(_get_rx_cnts(self._cfg))
>> if qcnt >= self._count:
>> return
>> try:
>> ksft_pr(f"Increasing queue count {qcnt} -> {self._count}")
>> ethtool(f"-L {self._cfg.ifname} combined {self._count}")
>> self._qcnt = qcnt
>> except:
>> raise KsftSkipEx("Not enough queues for the test")
>>
>> def __exit__(self, exc_type, exc_value, traceback):
>> if self._qcnt is not None:
>> ethtool(f"-L {self._cfg.ifname} combined {self._qcnt}")
>>
>> Then:
>>
>> with require_contexts(cfg, 2 + 2 * ctx_cnt):
>> ...
>
> There are 4 things to clean up, with doesn't cover all of them
> naturally and complicates the code.
Yeah, you can't use it everywhere, but you can use it for the ethtool
config here.
Re complexity, how about this?
import contextlib
@contextlib.contextmanager
def require_contexts(cfg, count):
qcnt = len(_get_rx_cnts(cfg))
if qcnt >= count:
qcnt = None
else:
try:
ksft_pr(f"Increasing queue count {qcnt} -> {count}")
ethtool(f"-L {cfg.ifname} combined {count}")
except:
raise KsftSkipEx("Not enough queues for the test")
try:
yield
finally:
if qcnt is not None:
ethtool(f"-L {cfg.ifname} combined {qcnt}")
This is mostly just business logic, hardly any boilerplate, and still
just uses standard Python. You get the setup and cleanup next to each
other, which is important for cross-comparing the two.
Anyway, if I don't persuade you for The Right Path, something like this
would at least get rid of the duplication:
qcnt = contexts_setup(cfg, 2 + 2 * ctx_cnt)
try:
...
finally:
if qcnt:
contexts_teardown(cfg, qcnt)
> Once again, I'm thinking about adding some form of deferred execution.
>
> ethtool(f"-L {self._cfg.ifname} combined {self._qcnt}")
> undo(ethtool, f"-L {self._cfg.ifname} combined {old_qcnt}")
>
> Where cleanups will be executed in reverse order by ksft_run() after
> the test, with the option to delete them.
>
> nid = ethtool_create(cfg, "-N", flow)
> ntuple = undo(ethtool, f"-N {cfg.ifname} delete {nid}")
> # .. code using ntuple ...
> ntuple.exec()
> # .. now ntuple is gone
>
> or/and:
>
> nid = ethtool_create(cfg, "-N", flow)
> with undo(ethtool, f"-N {cfg.ifname} delete {nid}"):
> # .. code using ntuple ...
> # .. now ntuple is gone
>
> Thoughts?
Sure, this can be done, but you are introducing a new mechanism to solve
something that the language has had support for for 15 years or so.
Like, it's not terrible. I like it better than the try/finally aprroach,
because at least the setup and cleanup are localized.
Call it defer though? It doesn't "undo" there and then, but at some
later point.
next prev parent reply other threads:[~2024-06-25 16:24 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-25 1:02 [PATCH net-next v2 0/4] selftests: drv-net: rss_ctx: add tests for RSS contexts Jakub Kicinski
2024-06-25 1:02 ` [PATCH net-next v2 1/4] selftests: drv-net: try to check if port is in use Jakub Kicinski
2024-06-25 6:57 ` Przemek Kitszel
2024-06-25 8:02 ` Breno Leitao
2024-06-25 1:02 ` [PATCH net-next v2 2/4] selftests: drv-net: add helper to wait for HW stats to sync Jakub Kicinski
2024-06-25 10:04 ` Petr Machata
2024-06-25 1:02 ` [PATCH net-next v2 3/4] selftests: drv-net: add ability to wait for at least N packets to load gen Jakub Kicinski
2024-06-25 8:05 ` Breno Leitao
2024-06-25 8:53 ` Willem de Bruijn
2024-06-25 1:02 ` [PATCH net-next v2 4/4] selftests: drv-net: rss_ctx: add tests for RSS configuration and contexts Jakub Kicinski
2024-06-25 10:42 ` Petr Machata
2024-06-25 13:50 ` Jakub Kicinski
2024-06-25 14:43 ` Petr Machata [this message]
2024-06-25 17:06 ` Jakub Kicinski
2024-06-25 17:41 ` Jakub Kicinski
2024-06-26 8:42 ` Petr Machata
2024-06-25 1:40 ` [PATCH net-next v2 0/4] selftests: drv-net: rss_ctx: add tests for RSS contexts Jakub Kicinski
2024-06-25 3:42 ` Michael Chan
2024-06-25 8:52 ` Willem de Bruijn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8734p1at4e.fsf@nvidia.com \
--to=petrm@nvidia.com \
--cc=andrew.gospodarek@broadcom.com \
--cc=davem@davemloft.net \
--cc=dw@davidwei.uk \
--cc=ecree.xilinx@gmail.com \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=michael.chan@broadcom.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=willemdebruijn.kernel@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).