[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20090421193030.F16B.A69D9226@jp.fujitsu.com>
Date: Tue, 21 Apr 2009 19:31:23 +0900 (JST)
From: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
To: Mel Gorman <mel@....ul.ie>
Cc: kosaki.motohiro@...fujitsu.com,
Linux Memory Management List <linux-mm@...ck.org>,
Christoph Lameter <cl@...ux-foundation.org>,
Nick Piggin <npiggin@...e.de>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Lin Ming <ming.m.lin@...el.com>,
Zhang Yanmin <yanmin_zhang@...ux.intel.com>,
Peter Zijlstra <peterz@...radead.org>,
Pekka Enberg <penberg@...helsinki.fi>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: Re: [PATCH 12/25] Remove a branch by assuming __GFP_HIGH == ALLOC_HIGH
> > @@ -1639,8 +1639,8 @@ gfp_to_alloc_flags(gfp_t gfp_mask)
> > * policy or is asking for __GFP_HIGH memory. GFP_ATOMIC requests will
> > * set both ALLOC_HARDER (!wait) and ALLOC_HIGH (__GFP_HIGH).
> > */
> > - if (gfp_mask & __GFP_HIGH)
> > - alloc_flags |= ALLOC_HIGH;
> > + VM_BUG_ON(__GFP_HIGH != ALLOC_HIGH);
Oops, I forgot said one comment.
BUILD_BUG_ON() is better?
> > + alloc_flags |= (gfp_mask & __GFP_HIGH);
> >
> > if (!wait) {
> > alloc_flags |= ALLOC_HARDER;
>
> Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@...fujitsu.com>
>
>
>
--
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