Re: [PATCH 12/25] Remove a branch by assuming __GFP_HIGH ==ALLOC_HIGH

From: Mel Gorman
Date: Tue Apr 21 2009 - 06:44:18 EST


On Tue, Apr 21, 2009 at 07:31:23PM +0900, KOSAKI Motohiro wrote:
> > > @@ -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?
>

Much better. Thanks

>
> > > + alloc_flags |= (gfp_mask & __GFP_HIGH);
> > >
> > > if (!wait) {
> > > alloc_flags |= ALLOC_HARDER;
> >
> > Reviewed-by: KOSAKI Motohiro <kosaki.motohiro@xxxxxxxxxxxxxx>
> >
> >
> >
>
>
>

--
Mel Gorman
Part-time Phd Student Linux Technology Center
University of Limerick IBM Dublin Software Lab
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/