1pub(crate) fn page_align(size: usize) -> usize { 2 const K_PAGE_SIZE: usize = 4096; 3 (size + K_PAGE_SIZE - 1) & !(K_PAGE_SIZE - 1) 4}