From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Hansen Date: Fri, 17 Feb 2006 15:51:37 +0000 Subject: Re: [PATCH: 005/012] Memory hotplug for new nodes v.2.(pgdat alloc Message-Id: <1140191497.21383.77.camel@localhost.localdomain> List-Id: References: <20060217211729.4072.Y-GOTO@jp.fujitsu.com> In-Reply-To: <20060217211729.4072.Y-GOTO@jp.fujitsu.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Yasunori Goto Cc: Andrew Morton , "Luck, Tony" , Andi Kleen , "Tolentino, Matthew E" , Joel Schopp , linux-ia64@vger.kernel.org, Linux Kernel ML , x86-64 Discuss On Fri, 2006-02-17 at 22:29 +0900, Yasunori Goto wrote: > + zone_type = start_pfn < MAX_DMA32_PFN ? > + ZONE_DMA32 : ZONE_NORMAL; Please change this to something which we can more easily parse, such as this: if (start_pfn < MAX_DMA32_PFN) zone_type = ZONE_DMA32; else zone_type = ZONE_NORMAL; I think it is worth the extra two lines. -- Dave