diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-10-18 06:07:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-18 17:37:31 -0400 |
commit | c80544dc0b87bb65038355e7aafdc30be16b26ab (patch) | |
tree | 176349304bec88a9de16e650c9919462e0dd453c /kernel/futex.c | |
parent | 0e9663ee452ffce0d429656ebbcfe69417a30e92 (diff) |
sparse pointer use of zero as null
Get rid of sparse related warnings from places that use integer as NULL
pointer.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Cc: Andi Kleen <ak@suse.de>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Matt Mackall <mpm@selenic.com>
Cc: Ian Kent <raven@themaw.net>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Davide Libenzi <davidel@xmailserver.org>
Cc: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/futex.c')
-rw-r--r-- | kernel/futex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/futex.c b/kernel/futex.c index d725676d84f3..e45a65e41686 100644 --- a/kernel/futex.c +++ b/kernel/futex.c | |||
@@ -293,7 +293,7 @@ EXPORT_SYMBOL_GPL(get_futex_key_refs); | |||
293 | */ | 293 | */ |
294 | void drop_futex_key_refs(union futex_key *key) | 294 | void drop_futex_key_refs(union futex_key *key) |
295 | { | 295 | { |
296 | if (key->both.ptr == 0) | 296 | if (!key->both.ptr) |
297 | return; | 297 | return; |
298 | switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) { | 298 | switch (key->both.offset & (FUT_OFF_INODE|FUT_OFF_MMSHARED)) { |
299 | case FUT_OFF_INODE: | 299 | case FUT_OFF_INODE: |
@@ -1046,7 +1046,7 @@ static int unqueue_me(struct futex_q *q) | |||
1046 | retry: | 1046 | retry: |
1047 | lock_ptr = q->lock_ptr; | 1047 | lock_ptr = q->lock_ptr; |
1048 | barrier(); | 1048 | barrier(); |
1049 | if (lock_ptr != 0) { | 1049 | if (lock_ptr != NULL) { |
1050 | spin_lock(lock_ptr); | 1050 | spin_lock(lock_ptr); |
1051 | /* | 1051 | /* |
1052 | * q->lock_ptr can change between reading it and | 1052 | * q->lock_ptr can change between reading it and |