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

From: KOSAKI Motohiro
Date: Tue Apr 21 2009 - 06:31:45 EST


> > @@ -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@xxxxxxxxxxxxxx>
>
>
>



--
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/