Re: More cleanups for swsusp

From: Andrew Morton
Date: Tue Jan 20 2004 - 18:14:20 EST


Pavel Machek <pavel@xxxxxx> wrote:
>
> + BUG_ON (sizeof(struct link) != PAGE_SIZE);

Looking at the code, this hardly seems worth checking. But the compiler
should just rub this code out anwyay, so whatever.

hmm, one could do:

#define compile_time_assert(expr) \
do { \
if (!(expr)) \
compile_time_assert_failed(); /* undefined */ \
} while (0)

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