> +#define ALIGN(x,a) __ALIGN_MASK(x,(typeof(x))(a)-1) > +#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) Fine by me, but it loses the extra (typeof(x)) cast that Al wanted to make sure that the result of ALIGN() is not wider than x. - R. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Linus Torvalds <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Jörn Engel <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- References:
- [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Roland Dreier <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: David Miller <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Roland Dreier <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: David Miller <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Roland Dreier <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Andrew Morton <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Roland Dreier <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Andrew Morton <[email protected]>
- Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- From: Linus Torvalds <[email protected]>
- [PATCH] Avoid truncating to 'long' in ALIGN() macro
- Prev by Date: Re: [PATCH] fix "prev->state: 2 != TASK_RUNNING??" problem on SD/MMC card removal
- Next by Date: Re: [patch] PM: suspend/resume debugging should depend on SOFTWARE_SUSPEND
- Previous by thread: Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- Next by thread: Re: [PATCH] Avoid truncating to 'long' in ALIGN() macro
- Index(es):