Commit 084326ad authored by J. R. Okajima's avatar J. R. Okajima
Browse files

Merge branch 'aufs5.2/00base' into aufs5.x-rcN/00base

parents bc391a61 6dfe3345
......@@ -241,7 +241,11 @@ enum {
/* borrowed from linux/include/linux/kernel.h */
#ifndef ALIGN
#ifdef _GNU_SOURCE
#define ALIGN(x, a) __ALIGN_MASK(x, (typeof(x))(a)-1)
#else
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
#endif
#define __ALIGN_MASK(x, mask) (((x)+(mask))&~(mask))
#endif
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment