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 /mm/vmscan.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 'mm/vmscan.c')
-rw-r--r-- | mm/vmscan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index e1471385d001..cb474cc99645 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -1282,7 +1282,7 @@ out: | |||
1282 | */ | 1282 | */ |
1283 | if (priority < 0) | 1283 | if (priority < 0) |
1284 | priority = 0; | 1284 | priority = 0; |
1285 | for (i = 0; zones[i] != 0; i++) { | 1285 | for (i = 0; zones[i] != NULL; i++) { |
1286 | struct zone *zone = zones[i]; | 1286 | struct zone *zone = zones[i]; |
1287 | 1287 | ||
1288 | if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL)) | 1288 | if (!cpuset_zone_allowed_hardwall(zone, GFP_KERNEL)) |