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