1 /* Public domain. */ 2 3 #ifndef _LINUX_MMZONE_H 4 #define _LINUX_MMZONE_H 5 6 #include <linux/mm_types.h> 7 #include <linux/numa.h> 8 #include <linux/page-flags.h> 9 10 #define MAX_ORDER 11 11 12 #define MAX_PAGE_ORDER 10 13 #define NR_PAGE_ORDERS (MAX_PAGE_ORDER + 1) 14 15 #endif 16