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 | |
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')
-rw-r--r-- | mm/hugetlb.c | 2 | ||||
-rw-r--r-- | mm/mremap.c | 4 | ||||
-rw-r--r-- | mm/vmscan.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/mm/hugetlb.c b/mm/hugetlb.c index ae2959bb59cb..034617f8cdb2 100644 --- a/mm/hugetlb.c +++ b/mm/hugetlb.c | |||
@@ -1020,7 +1020,7 @@ static long region_chg(struct list_head *head, long f, long t) | |||
1020 | * size such that we can guarentee to record the reservation. */ | 1020 | * size such that we can guarentee to record the reservation. */ |
1021 | if (&rg->link == head || t < rg->from) { | 1021 | if (&rg->link == head || t < rg->from) { |
1022 | nrg = kmalloc(sizeof(*nrg), GFP_KERNEL); | 1022 | nrg = kmalloc(sizeof(*nrg), GFP_KERNEL); |
1023 | if (nrg == 0) | 1023 | if (!nrg) |
1024 | return -ENOMEM; | 1024 | return -ENOMEM; |
1025 | nrg->from = f; | 1025 | nrg->from = f; |
1026 | nrg->to = f; | 1026 | nrg->to = f; |
diff --git a/mm/mremap.c b/mm/mremap.c index 8ea5c2412c6e..08e3c7f2bd15 100644 --- a/mm/mremap.c +++ b/mm/mremap.c | |||
@@ -291,7 +291,7 @@ unsigned long do_mremap(unsigned long addr, | |||
291 | if ((addr <= new_addr) && (addr+old_len) > new_addr) | 291 | if ((addr <= new_addr) && (addr+old_len) > new_addr) |
292 | goto out; | 292 | goto out; |
293 | 293 | ||
294 | ret = security_file_mmap(0, 0, 0, 0, new_addr, 1); | 294 | ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1); |
295 | if (ret) | 295 | if (ret) |
296 | goto out; | 296 | goto out; |
297 | 297 | ||
@@ -399,7 +399,7 @@ unsigned long do_mremap(unsigned long addr, | |||
399 | goto out; | 399 | goto out; |
400 | } | 400 | } |
401 | 401 | ||
402 | ret = security_file_mmap(0, 0, 0, 0, new_addr, 1); | 402 | ret = security_file_mmap(NULL, 0, 0, 0, new_addr, 1); |
403 | if (ret) | 403 | if (ret) |
404 | goto out; | 404 | goto out; |
405 | } | 405 | } |
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)) |