aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmzone.h10
-rw-r--r--include/linux/pageblock-flags.h1
2 files changed, 10 insertions, 1 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index 322e8048463e..57700038e669 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -33,8 +33,16 @@
33 */ 33 */
34#define PAGE_ALLOC_COSTLY_ORDER 3 34#define PAGE_ALLOC_COSTLY_ORDER 3
35 35
36#define MIGRATE_UNMOVABLE 0
37#define MIGRATE_MOVABLE 1
38#define MIGRATE_TYPES 2
39
40#define for_each_migratetype_order(order, type) \
41 for (order = 0; order < MAX_ORDER; order++) \
42 for (type = 0; type < MIGRATE_TYPES; type++)
43
36struct free_area { 44struct free_area {
37 struct list_head free_list; 45 struct list_head free_list[MIGRATE_TYPES];
38 unsigned long nr_free; 46 unsigned long nr_free;
39}; 47};
40 48
diff --git a/include/linux/pageblock-flags.h b/include/linux/pageblock-flags.h
index 96b623f9b4db..3619d52a425c 100644
--- a/include/linux/pageblock-flags.h
+++ b/include/linux/pageblock-flags.h
@@ -31,6 +31,7 @@
31 31
32/* Bit indices that affect a whole block of pages */ 32/* Bit indices that affect a whole block of pages */
33enum pageblock_bits { 33enum pageblock_bits {
34 PB_range(PB_migrate, 1), /* 1 bit required for migrate types */
34 NR_PAGEBLOCK_BITS 35 NR_PAGEBLOCK_BITS
35}; 36};
36 37