From: "Jörn Engel" <joern@wohnheim.fh-wedel.de>
To: Randy Dunlap <rdunlap@xenotime.net>
Cc: Netdev <netdev@vger.kernel.org>,
linuxppc-embedded <linuxppc-embedded@ozlabs.org>,
Francois Romieu <romieu@fr.zoreil.com>
Subject: Re: [RFC PATCH 1/4] PHY Abstraction Layer III (now with more splitiness)
Date: Thu, 28 Jul 2005 11:18:37 +0200 [thread overview]
Message-ID: <20050728091837.GC25033@wohnheim.fh-wedel.de> (raw)
In-Reply-To: <1122500059.28777@shark.he.net>
On Wed, 27 July 2005 14:34:19 -0700, Randy Dunlap wrote:
> >
> > Ok, here I won't agree to disagree with you. !foo as a check for
> > NULL is a reasonable idea, but not my style. If that's the preferred
> > style for the kernel, I will do that.
> >
> > But (var == constant) is a style that asks for errors. By putting
> > the constant first in these checks, you never run the risk of leaving
> > a bug like this:
> >
> > if (dev = NULL)
> > ...
> >
> > This kind of error is quite frustrating to detect, and the eye will
> > often miss it when scanning for errors. If you follow constant ==
> > var, though, then the bug looks like this:
> >
> > if (NULL = dev)
> >
> > which is instantly caught by the compiler.
> >
> > Just my 32 cents
>
> Yes, we know about that argument. :)
The counter-argument basically goes like this:
1. All relevant compilers (GCC) warn on "if (dev = NULL)", so you will
only miss the bug if you ignore compiler warnings. Ignoring compiler
warnings is not generally endorsed by the kernel crowd.
2. Very hard to read, "if (NULL = dev)" is. Reversing the order is a
fun thing to do for small green characters in fantasy and scifi
stories and fairly popular in peotry as well. But understanding the
meaning of reverse order sentences takes more time. In the kernel,
peer review is an important aspect and making the code hard to read
hurts peer review.
And maybe you can add another one:
3. Im my personal experience, reverse order comparisons were a good
indicator of buggy code.
Jörn
--
Schrödinger's cat is <BLINK>not</BLINK> dead.
-- Illiad
next prev parent reply other threads:[~2005-07-28 9:18 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-07-27 21:34 [RFC PATCH 1/4] PHY Abstraction Layer III (now with more splitiness) Randy Dunlap
2005-07-28 9:18 ` Jörn Engel [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-07-27 18:08 Randy Dunlap
2005-07-27 18:46 ` Andy Fleming
2005-07-27 19:56 ` Francois Romieu
2005-07-25 19:47 Andy Fleming
2005-07-25 21:06 ` Francois Romieu
2005-07-27 18:01 ` Andy Fleming
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=20050728091837.GC25033@wohnheim.fh-wedel.de \
--to=joern@wohnheim.fh-wedel.de \
--cc=linuxppc-embedded@ozlabs.org \
--cc=netdev@vger.kernel.org \
--cc=rdunlap@xenotime.net \
--cc=romieu@fr.zoreil.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).