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) {
> err = 0;
> set_pte(pte, mk_pte_phys(pa & PAGE_MASK, prot));
> }
> @@ -99,7 +99,7 @@ void *consistent_alloc(gfp_t gfp, size_t
>
> /* allocate some common virtual space to map the new pages */
> area = get_vm_area(size, VM_ALLOC);
> - if (area == 0) {
> + if (area == NULL) {
> free_pages(page, order);
> return NULL;
Same comment about comparisons with NULL after allocation...
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]