]> git.karo-electronics.de Git - linux-beck.git/blob - include/linux/compaction.h
d896765a15b0e7f4eb403ce79a728ea23f5124bd
[linux-beck.git] / include / linux / compaction.h
1 #ifndef _LINUX_COMPACTION_H
2 #define _LINUX_COMPACTION_H
3
4 /* Return values for compact_zone() and try_to_compact_pages() */
5 /* compaction didn't start as it was deferred due to past failures */
6 #define COMPACT_DEFERRED        0
7 /* compaction didn't start as it was not possible or direct reclaim was more suitable */
8 #define COMPACT_SKIPPED         1
9 /* compaction should continue to another pageblock */
10 #define COMPACT_CONTINUE        2
11 /* direct compaction partially compacted a zone and there are suitable pages */
12 #define COMPACT_PARTIAL         3
13 /* The full zone was compacted */
14 #define COMPACT_COMPLETE        4
15
16 /* Used to signal whether compaction detected need_sched() or lock contention */
17 /* No contention detected */
18 #define COMPACT_CONTENDED_NONE  0
19 /* Either need_sched() was true or fatal signal pending */
20 #define COMPACT_CONTENDED_SCHED 1
21 /* Zone lock or lru_lock was contended in async compaction */
22 #define COMPACT_CONTENDED_LOCK  2
23
24 #ifdef CONFIG_COMPACTION
25 extern int sysctl_compact_memory;
26 extern int sysctl_compaction_handler(struct ctl_table *table, int write,
27                         void __user *buffer, size_t *length, loff_t *ppos);
28 extern int sysctl_extfrag_threshold;
29 extern int sysctl_extfrag_handler(struct ctl_table *table, int write,
30                         void __user *buffer, size_t *length, loff_t *ppos);
31
32 extern int fragmentation_index(struct zone *zone, unsigned int order);
33 extern unsigned long try_to_compact_pages(struct zonelist *zonelist,
34                         int order, gfp_t gfp_mask, nodemask_t *mask,
35                         enum migrate_mode mode, int *contended,
36                         int alloc_flags, int classzone_idx,
37                         struct zone **candidate_zone);
38 extern void compact_pgdat(pg_data_t *pgdat, int order);
39 extern void reset_isolation_suitable(pg_data_t *pgdat);
40 extern unsigned long compaction_suitable(struct zone *zone, int order,
41                                         int alloc_flags, int classzone_idx);
42
43 /* Do not skip compaction more than 64 times */
44 #define COMPACT_MAX_DEFER_SHIFT 6
45
46 /*
47  * Compaction is deferred when compaction fails to result in a page
48  * allocation success. 1 << compact_defer_limit compactions are skipped up
49  * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT
50  */
51 static inline void defer_compaction(struct zone *zone, int order)
52 {
53         zone->compact_considered = 0;
54         zone->compact_defer_shift++;
55
56         if (order < zone->compact_order_failed)
57                 zone->compact_order_failed = order;
58
59         if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT)
60                 zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT;
61 }
62
63 /* Returns true if compaction should be skipped this time */
64 static inline bool compaction_deferred(struct zone *zone, int order)
65 {
66         unsigned long defer_limit = 1UL << zone->compact_defer_shift;
67
68         if (order < zone->compact_order_failed)
69                 return false;
70
71         /* Avoid possible overflow */
72         if (++zone->compact_considered > defer_limit)
73                 zone->compact_considered = defer_limit;
74
75         return zone->compact_considered < defer_limit;
76 }
77
78 /*
79  * Update defer tracking counters after successful compaction of given order,
80  * which means an allocation either succeeded (alloc_success == true) or is
81  * expected to succeed.
82  */
83 static inline void compaction_defer_reset(struct zone *zone, int order,
84                 bool alloc_success)
85 {
86         if (alloc_success) {
87                 zone->compact_considered = 0;
88                 zone->compact_defer_shift = 0;
89         }
90         if (order >= zone->compact_order_failed)
91                 zone->compact_order_failed = order + 1;
92 }
93
94 /* Returns true if restarting compaction after many failures */
95 static inline bool compaction_restarting(struct zone *zone, int order)
96 {
97         if (order < zone->compact_order_failed)
98                 return false;
99
100         return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT &&
101                 zone->compact_considered >= 1UL << zone->compact_defer_shift;
102 }
103
104 #else
105 static inline unsigned long try_to_compact_pages(struct zonelist *zonelist,
106                         int order, gfp_t gfp_mask, nodemask_t *nodemask,
107                         enum migrate_mode mode, int *contended,
108                         int alloc_flags, int classzone_idx,
109                         struct zone **candidate_zone)
110 {
111         return COMPACT_CONTINUE;
112 }
113
114 static inline void compact_pgdat(pg_data_t *pgdat, int order)
115 {
116 }
117
118 static inline void reset_isolation_suitable(pg_data_t *pgdat)
119 {
120 }
121
122 static inline unsigned long compaction_suitable(struct zone *zone, int order,
123                                         int alloc_flags, int classzone_idx)
124 {
125         return COMPACT_SKIPPED;
126 }
127
128 static inline void defer_compaction(struct zone *zone, int order)
129 {
130 }
131
132 static inline bool compaction_deferred(struct zone *zone, int order)
133 {
134         return true;
135 }
136
137 #endif /* CONFIG_COMPACTION */
138
139 #if defined(CONFIG_COMPACTION) && defined(CONFIG_SYSFS) && defined(CONFIG_NUMA)
140 extern int compaction_register_node(struct node *node);
141 extern void compaction_unregister_node(struct node *node);
142
143 #else
144
145 static inline int compaction_register_node(struct node *node)
146 {
147         return 0;
148 }
149
150 static inline void compaction_unregister_node(struct node *node)
151 {
152 }
153 #endif /* CONFIG_COMPACTION && CONFIG_SYSFS && CONFIG_NUMA */
154
155 #endif /* _LINUX_COMPACTION_H */