PAGE_ALIGN
#define PAGE_ALIGN(p) ((int)((char *)(p) + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))
#define PAGE_ALIGN(a) (((a) + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))