From: Al Viro <viro@ftp.linux.org.uk>
To: Yoann Padioleau <padator@wanadoo.fr>
Cc: kernel-janitors@vger.kernel.org, dhowells@redhat.com,
akpm@linux-foundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 06/68] 0 -> NULL, for arch/frv
Date: Fri, 27 Jul 2007 10:40:41 +0000 [thread overview]
Message-ID: <20070727104041.GW27237@ftp.linux.org.uk> (raw)
In-Reply-To: <87hcnq9mf2.fsf@wanadoo.fr>
On Fri, Jul 27, 2007 at 12:21:53PM +0200, Yoann Padioleau wrote:
> > On Fri, Jul 27, 2007 at 11:44:35AM +0200, Yoann Padioleau wrote:
> >> pte = pte_alloc_kernel(pme, va);
> >> - if (pte != 0) {
> >> + if (pte != NULL) {
> I don't understand. pte is a pointer right ? So why should we
> keep the = 0 ?
Idiomatic form for "has allocation succeeded?" is neither "if (p != 0)" nor
"if (p != NULL)". It's simply "if (p)".
Note that it depends upon context. For something that combines assignment
with test
if ((p = foo_alloc()) != NULL)
would be the right way to go. Ditto for
flag = (p = NULL)
(alternative would be "flag = !p", which is usually not nice or even
"flag = !!p" for the opposite test, and that's bloody atrocious).
For places like
- if (spu_disassemble_table[o] = 0)
+ if (spu_disassemble_table[o] = NULL)
spu_disassemble_table[o] = &spu_opcodes[i];
it's a matter of taste; there I'd go for explicit comparison with NULL.
I'd also go for explicit comparisons in places like
- wait_event(journal->j_wait_done_commit, journal->j_task = 0);
+ wait_event(journal->j_wait_done_commit, journal->j_task = NULL);
WARNING: multiple messages have this Message-ID (diff)
From: Al Viro <viro@ftp.linux.org.uk>
To: Yoann Padioleau <padator@wanadoo.fr>
Cc: kernel-janitors@vger.kernel.org, dhowells@redhat.com,
akpm@linux-foundation.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 06/68] 0 -> NULL, for arch/frv
Date: Fri, 27 Jul 2007 11:40:41 +0100 [thread overview]
Message-ID: <20070727104041.GW27237@ftp.linux.org.uk> (raw)
In-Reply-To: <87hcnq9mf2.fsf@wanadoo.fr>
On Fri, Jul 27, 2007 at 12:21:53PM +0200, Yoann Padioleau wrote:
> > On Fri, Jul 27, 2007 at 11:44:35AM +0200, Yoann Padioleau wrote:
> >> pte = pte_alloc_kernel(pme, va);
> >> - if (pte != 0) {
> >> + if (pte != NULL) {
> I don't understand. pte is a pointer right ? So why should we
> keep the == 0 ?
Idiomatic form for "has allocation succeeded?" is neither "if (p != 0)" nor
"if (p != NULL)". It's simply "if (p)".
Note that it depends upon context. For something that combines assignment
with test
if ((p = foo_alloc()) != NULL)
would be the right way to go. Ditto for
flag = (p == NULL)
(alternative would be "flag = !p", which is usually not nice or even
"flag = !!p" for the opposite test, and that's bloody atrocious).
For places like
- if (spu_disassemble_table[o] == 0)
+ if (spu_disassemble_table[o] == NULL)
spu_disassemble_table[o] = &spu_opcodes[i];
it's a matter of taste; there I'd go for explicit comparison with NULL.
I'd also go for explicit comparisons in places like
- wait_event(journal->j_wait_done_commit, journal->j_task == 0);
+ wait_event(journal->j_wait_done_commit, journal->j_task == NULL);
next prev parent reply other threads:[~2007-07-27 10:40 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-27 9:44 [PATCH 06/68] 0 -> NULL, for arch/frv Yoann Padioleau
2007-07-27 9:44 ` Yoann Padioleau
2007-07-27 10:00 ` Al Viro
2007-07-27 10:00 ` Al Viro
2007-07-27 10:21 ` Yoann Padioleau
2007-07-27 10:21 ` Yoann Padioleau
2007-07-27 10:40 ` Al Viro [this message]
2007-07-27 10:40 ` Al Viro
2007-07-27 10:14 ` David Howells
2007-07-27 10:14 ` David Howells
2007-07-27 10:18 ` Yoann Padioleau
2007-07-27 10:18 ` Yoann Padioleau
2007-07-28 1:38 ` Robin Getz
2007-07-28 1:38 ` Robin Getz
2007-07-28 1:37 ` Mike Frysinger
2007-07-28 1:37 ` Mike Frysinger
2007-07-31 12:04 ` Richard Knutsson
2007-07-31 12:04 ` Richard Knutsson
2007-08-01 10:03 ` Mike Frysinger
2007-08-01 10:03 ` Mike Frysinger
2007-08-01 10:38 ` Richard Knutsson
2007-08-01 10:38 ` Richard Knutsson
2007-08-01 20:28 ` Matt Mackall
2007-08-01 20:28 ` Matt Mackall
2007-08-02 14:58 ` Robin Getz
2007-08-02 14:58 ` Robin Getz
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=20070727104041.GW27237@ftp.linux.org.uk \
--to=viro@ftp.linux.org.uk \
--cc=akpm@linux-foundation.org \
--cc=dhowells@redhat.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=padator@wanadoo.fr \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.