[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87hcnq9mf2.fsf@wanadoo.fr>
Date: Fri, 27 Jul 2007 12:21:53 +0200
From: Yoann Padioleau <padator@...adoo.fr>
To: Al Viro <viro@....linux.org.uk>
Cc: Yoann Padioleau <padator@...adoo.fr>,
kernel-janitors@...r.kernel.org, dhowells@...hat.com,
akpm@...ux-foundation.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 06/68] 0 -> NULL, for arch/frv
Al Viro <viro@....linux.org.uk> writes:
> 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...
I don't understand. pte is a pointer right ? So why should we
keep the == 0 ?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists