From: Daniel Bristot de Oliveira <bristot@kernel.org>
To: Colin Ian King <colin.i.king@gmail.com>,
Steven Rostedt <rostedt@goodmis.org>,
linux-trace-devel@vger.kernel.org
Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] rv: Fix addition on an uninitialized variable 'run'
Date: Mon, 24 Apr 2023 11:09:38 +0200 [thread overview]
Message-ID: <a19df26e-7c0c-e48e-8611-6035c8c7f1a4@kernel.org> (raw)
In-Reply-To: <20230417103946.29594-1-colin.i.king@gmail.com>
On 4/17/23 12:39, Colin Ian King wrote:
> The variable run is not initialized
Oops, that is a problem, it should be initialized as 0.
however it is being accumulated
> by the return value from the call to ikm_run_monitor. Fix this by
> replacing the += with an assignment since this is the first point
> where run is being assigned.
>
> Fixes: 4bc4b131d44c ("rv: Add rv tool")
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
> tools/verification/rv/src/rv.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/verification/rv/src/rv.c b/tools/verification/rv/src/rv.c
> index e601cd9c411e..da647ad4e733 100644
> --- a/tools/verification/rv/src/rv.c
> +++ b/tools/verification/rv/src/rv.c
> @@ -111,7 +111,7 @@ static void rv_mon(int argc, char **argv)
> * Call all possible monitor implementations, looking
> * for the [monitor].
> */
> - run += ikm_run_monitor(monitor_name, argc-1, &argv[1]);
> + run = ikm_run_monitor(monitor_name, argc-1, &argv[1]);
So, in the future, there will be more monitors types, and so we will check
other functions to see if they find the monitor by name. Thus, the += is correct,
what is not correct the run not being initialized.
Mind sending a patch initializing the run = 0?
Thanks!
-- Daniel
> if (!run)
> err_msg("rv: monitor %s does not exist\n", monitor_name);
next prev parent reply other threads:[~2023-04-24 9:09 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-04-17 10:39 [PATCH] rv: Fix addition on an uninitialized variable 'run' Colin Ian King
2023-04-24 9:09 ` Daniel Bristot de Oliveira [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-04-24 9:44 Colin Ian King
2023-04-24 9:45 ` Colin King (gmail)
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=a19df26e-7c0c-e48e-8611-6035c8c7f1a4@kernel.org \
--to=bristot@kernel.org \
--cc=colin.i.king@gmail.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-devel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/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).