Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964934Ab1CaQ0w (ORCPT ); Thu, 31 Mar 2011 12:26:52 -0400 Received: from mail-ew0-f46.google.com ([209.85.215.46]:51219 "EHLO mail-ew0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758702Ab1CaQ0u (ORCPT ); Thu, 31 Mar 2011 12:26:50 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:content-type:cc:references:subject:to:date:mime-version :content-transfer-encoding:from:organization:message-id:in-reply-to :user-agent; b=T1/NLeinVw0gM5OpCOtg77pNakQ5lYf/zvlRaMSTwszhShXZniCBRB7jRKjXruXZaF pKMoK5c/Refwv/r99/XmP/NyDTCPIU5Tl1aPvKQ56Q6+1OuD6J+x41Vns3Kd9d0ia/Ea VgN5PwK5jcvwIvHIvcGwa6TLePYoqaJzp/pW0= Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-media@vger.kernel.org, linux-mm@kvack.org, "Kyungmin Park" , "Andrew Morton" , "KAMEZAWA Hiroyuki" , "Ankita Garg" , "Daniel Walker" , "Johan MOSSBERG" , "Mel Gorman" , "Pawel Osciak" References: <1301577368-16095-1-git-send-email-m.szyprowski@samsung.com> <1301577368-16095-6-git-send-email-m.szyprowski@samsung.com> <1301587361.31087.1040.camel@nimitz> Subject: Re: [PATCH 05/12] mm: alloc_contig_range() added To: "Marek Szyprowski" , "Dave Hansen" Date: Thu, 31 Mar 2011 18:26:45 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Michal Nazarewicz" Organization: Google Message-ID: In-Reply-To: <1301587361.31087.1040.camel@nimitz> User-Agent: Opera Mail/11.01 (Linux) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1301 Lines: 34 > On Thu, 2011-03-31 at 15:16 +0200, Marek Szyprowski wrote: >> + ret = 0; >> + while (!PageBuddy(pfn_to_page(start & (~0UL << ret)))) >> + if (WARN_ON(++ret >= MAX_ORDER)) >> + return -EINVAL; On Thu, 31 Mar 2011 18:02:41 +0200, Dave Hansen wrote: > Holy cow, that's dense. Is there really no more straightforward way to > do that? Which part exactly is dense? What would be qualify as a more straightforward way? > In any case, please pull the ++ret bit out of the WARN_ON(). Some > people like to do: > > #define WARN_ON(...) do{}while(0) > > to save space on some systems. I don't think that's the case. Even if WARN_ON() decides not to print a warning, it will still return the value of the argument. If not, a lot of code will brake. -- Best regards, _ _ .o. | Liege of Serenely Enlightened Majesty of o' \,=./ `o ..o | Computer Science, Michal "mina86" Nazarewicz (o o) ooo +----------ooO--(_)--Ooo-- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/