xref: /DragonStub/inc/dragonstub/linux/page_types.h (revision f412fd2a1a248b546b7085648dece8d908077fab)
1 #pragma once
2 
3 /* PAGE_SHIFT determines the page size */
4 #define PAGE_SHIFT		12
5 #define PAGE_SIZE		(_AC(1,UL) << PAGE_SHIFT)
6 #define PAGE_MASK		(~(PAGE_SIZE-1))