trunc_page
#undef trunc_page
#define trunc_page(x) ((uintptr_t)(x) & ~(PAGE_SIZE - 1))
#define trunc_page(x) rounddown2(x, PAGE_SIZE)