From: Josh Triplett <josh@joshtriplett.org>
To: Nicholas Mc Guire <hofrat@osadl.org>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>,
Steven Rostedt <rostedt@goodmis.org>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
Lai Jiangshan <laijs@cn.fujitsu.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] rcu: change function declaration to bool
Date: Mon, 11 May 2015 07:40:23 -0700 [thread overview]
Message-ID: <20150511144022.GB6130@x> (raw)
In-Reply-To: <1431334315-7002-1-git-send-email-hofrat@osadl.org>
On Mon, May 11, 2015 at 10:51:55AM +0200, Nicholas Mc Guire wrote:
> rcu_cpu_has_callbacks() is declared int but is actually returning bool and
> all call-sites currently use it as bool so the declaration should be bool
> as well.
>
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
The patch seems reasonable to me. However...
> ---
>
> ./kernel/rcu/tree.c:3538 WARNING: return of wrong type
> int != bool,
>
> as the description of rcu_cpu_has_callbacks() states:
> " * Return true if the specified CPU has any callback...."
> this probably should be a bool
> All (3) call sites are conditions and are treating it as boolean.
>
> Patch was compile tested with x86_64_defconfig (implies CONFIG_TREE_RCU=y)
...some of this information should be in the commit message, as well as
a description of what tool produced this warning.
With that changed,
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
> Patch is against 4.1-rc3 (localversion-next is -next-20150511)
>
> kernel/rcu/tree.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
> index bcc5943..599550c 100644
> --- a/kernel/rcu/tree.c
> +++ b/kernel/rcu/tree.c
> @@ -3516,7 +3516,7 @@ static int rcu_pending(void)
> * non-NULL, store an indication of whether all callbacks are lazy.
> * (If there are no callbacks, all of them are deemed to be lazy.)
> */
> -static int __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
> +static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
> {
> bool al = true;
> bool hc = false;
> --
> 1.7.10.4
>
next prev parent reply other threads:[~2015-05-11 14:40 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-11 8:51 [PATCH] rcu: change function declaration to bool Nicholas Mc Guire
2015-05-11 14:40 ` Josh Triplett [this message]
2015-05-11 15:19 ` Nicholas Mc Guire
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=20150511144022.GB6130@x \
--to=josh@joshtriplett.org \
--cc=hofrat@osadl.org \
--cc=laijs@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=paulmck@linux.vnet.ibm.com \
--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