From: John Kacur <jkacur@redhat.com>
To: Tomas Glozar <tglozar@redhat.com>
Cc: linux-rt-users@vger.kernel.org
Subject: Re: [PATCH v2] rteval: Fix -aNone being passed to cyclictest
Date: Tue, 11 Jun 2024 12:26:15 -0400 (EDT) [thread overview]
Message-ID: <1d63f6b6-b969-c043-a9af-95d96e34a605@redhat.com> (raw)
In-Reply-To: <20240611144553.185624-1-tglozar@redhat.com>
On Tue, 11 Jun 2024, tglozar@redhat.com wrote:
> From: Tomas Glozar <tglozar@redhat.com>
>
> When rteval is called via the command line, cpulists for both
> measurements and loads default to an empty string and are further
> processed by parse_cpulist_from_config. However, this is not true when
> rteval is used as a module: in that case, neither the default
> command-line value is used nor parse_cpulist_from_config is run, leading
> to None being set to the config property of measurements which is
> explicitely passed down to the corresponding cyclictest config property.
>
> After 64ce7848dfab ("rteval: Add relative cpulists for measurements"),
> where the check for None was removed from the cyclictest module, rteval
> passes "-aNone" to cyclictest when being used as a module.
>
> Call parse_cpulist_from_config with an empty string to get the default
> cpulist to pass to cyclictest module if cpulist is empty in
> the measurement config.
>
> Fixes: 64ce7848dfab ("rteval: Add relative cpulists for measurements")
> Signed-off-by: Tomas Glozar <tglozar@redhat.com>
> ---
> rteval/modules/measurement/__init__.py | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/rteval/modules/measurement/__init__.py b/rteval/modules/measurement/__init__.py
> index 11bd7b0..43c0fda 100644
> --- a/rteval/modules/measurement/__init__.py
> +++ b/rteval/modules/measurement/__init__.py
> @@ -148,6 +148,9 @@ measurement profiles, based on their characteristics"""
> modcfg = self.__cfg.GetSection("measurement")
> cpulist = modcfg.cpulist
> run_on_isolcpus = modcfg.run_on_isolcpus
> + if cpulist is None:
> + # Get default cpulist value
> + cpulist = cpulist_utils.collapse_cpulist(parse_cpulist_from_config("", run_on_isolcpus))
>
> for (modname, modtype) in modcfg:
> if isinstance(modtype, str) and modtype.lower() == 'module': # Only 'module' will be supported (ds)
> --
Signed-off-by: John Kacur <jkacur@redhat.com>
prev parent reply other threads:[~2024-06-11 16:26 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-11 14:45 [PATCH v2] rteval: Fix -aNone being passed to cyclictest tglozar
2024-06-11 16:26 ` John Kacur [this message]
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=1d63f6b6-b969-c043-a9af-95d96e34a605@redhat.com \
--to=jkacur@redhat.com \
--cc=linux-rt-users@vger.kernel.org \
--cc=tglozar@redhat.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