From: Joe Perches <joe@perches.com>
To: Luben Tuikov <luben.tuikov@amd.com>, Andy Whitcroft <apw@canonical.com>
Cc: LKML <linux-kernel@vger.kernel.org>
Subject: Re: checkpatch.pl warning for "return" with value
Date: Fri, 17 Apr 2020 11:55:41 -0700 [thread overview]
Message-ID: <74934d9a6a53af38eb44e9062784ef720dac2a60.camel@perches.com> (raw)
In-Reply-To: <8859753b-c7c9-78ec-20cc-ce424b436b13@amd.com>
On Fri, 2020-04-17 at 14:52 -0400, Luben Tuikov wrote:
> On 2020-04-17 1:32 p.m., Joe Perches wrote:
[]
> > if (<atypical_condition>) {
> > ...;
> > return <atypical_result>;
> > }
> >
> > ...;
> > return <typical_result>;
> > }
> >
> > If you want to code it, and it works, go ahead, but I
> > won't attempt it because I think it's not appropriate.
>
> For error checking, when the 2nd ellipsis is
> a long, long body of the function, so that the error
> checking is done at the top, then long body,
> then at the bottom we return some computed value.
> But in the case I have above, it's a compact if-else
> at the bottom of the function.
which could not be differentiated from a function like
{
...;
err = func(...);
if (err) {
report("err: %d\n", err);
return err;
}
...;
return 0;
> In the example I gave above, there is no "typical" or
> "atypical" condition--it's just checking a condition
> and deciding what to do, all at the bottom of
> a function. (And that condition, samples
> an external stimuli, which cannot be predicted.)
[]
> Since we're returning a different result and since
> it works fine with a triplet, could you fix the binary
> case above to not complain?
No.
next prev parent reply other threads:[~2020-04-17 18:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <a1eea414-2422-3a9f-b9bb-1ab7d6113dd6@amd.com>
2020-04-17 17:32 ` Joe Perches
2020-04-17 18:52 ` Luben Tuikov
2020-04-17 18:55 ` Joe Perches [this message]
2020-04-17 21:25 ` Joe Perches
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=74934d9a6a53af38eb44e9062784ef720dac2a60.camel@perches.com \
--to=joe@perches.com \
--cc=apw@canonical.com \
--cc=linux-kernel@vger.kernel.org \
--cc=luben.tuikov@amd.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
all inboxes | Powered by JetHome®