]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/cpuset.h
cpuset: PF_SPREAD_PAGE and PF_SPREAD_SLAB should be atomic flags
[mirror_ubuntu-artful-kernel.git] / include / linux / cpuset.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_CPUSET_H
2#define _LINUX_CPUSET_H
3/*
4 * cpuset interface
5 *
6 * Copyright (C) 2003 BULL SA
825a46af 7 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
1da177e4
LT
8 *
9 */
10
11#include <linux/sched.h>
12#include <linux/cpumask.h>
13#include <linux/nodemask.h>
a1bc5a4e 14#include <linux/mm.h>
664eedde 15#include <linux/jump_label.h>
1da177e4
LT
16
17#ifdef CONFIG_CPUSETS
18
664eedde
MG
19extern struct static_key cpusets_enabled_key;
20static inline bool cpusets_enabled(void)
21{
22 return static_key_false(&cpusets_enabled_key);
23}
24
25static inline int nr_cpusets(void)
26{
27 /* jump label reference count + the top-level cpuset */
28 return static_key_count(&cpusets_enabled_key) + 1;
29}
30
31static inline void cpuset_inc(void)
32{
33 static_key_slow_inc(&cpusets_enabled_key);
34}
35
36static inline void cpuset_dec(void)
37{
38 static_key_slow_dec(&cpusets_enabled_key);
39}
202f72d5 40
1da177e4
LT
41extern int cpuset_init(void);
42extern void cpuset_init_smp(void);
7ddf96b0 43extern void cpuset_update_active_cpus(bool cpu_online);
6af866af 44extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask);
2baab4e9 45extern void cpuset_cpus_allowed_fallback(struct task_struct *p);
909d75a3 46extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
9276b1bc 47#define cpuset_current_mems_allowed (current->mems_allowed)
1da177e4 48void cpuset_init_current_mems_allowed(void);
19770b32 49int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask);
202f72d5 50
a1bc5a4e
DR
51extern int __cpuset_node_allowed_softwall(int node, gfp_t gfp_mask);
52extern int __cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask);
02a0e53d 53
a1bc5a4e 54static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
02a0e53d 55{
664eedde 56 return nr_cpusets() <= 1 ||
a1bc5a4e 57 __cpuset_node_allowed_softwall(node, gfp_mask);
02a0e53d
PJ
58}
59
a1bc5a4e 60static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
202f72d5 61{
664eedde 62 return nr_cpusets() <= 1 ||
a1bc5a4e
DR
63 __cpuset_node_allowed_hardwall(node, gfp_mask);
64}
65
66static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
67{
68 return cpuset_node_allowed_softwall(zone_to_nid(z), gfp_mask);
69}
70
71static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
72{
73 return cpuset_node_allowed_hardwall(zone_to_nid(z), gfp_mask);
202f72d5
PJ
74}
75
bbe373f2
DR
76extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
77 const struct task_struct *tsk2);
3e0d98b9
PJ
78
79#define cpuset_memory_pressure_bump() \
80 do { \
81 if (cpuset_memory_pressure_enabled) \
82 __cpuset_memory_pressure_bump(); \
83 } while (0)
84extern int cpuset_memory_pressure_enabled;
85extern void __cpuset_memory_pressure_bump(void);
86
df5f8314
EB
87extern void cpuset_task_status_allowed(struct seq_file *m,
88 struct task_struct *task);
8d8b97ba 89extern int proc_cpuset_show(struct seq_file *, void *);
1da177e4 90
825a46af 91extern int cpuset_mem_spread_node(void);
6adef3eb 92extern int cpuset_slab_spread_node(void);
825a46af
PJ
93
94static inline int cpuset_do_page_mem_spread(void)
95{
2ad654bc 96 return task_spread_page(current);
825a46af
PJ
97}
98
99static inline int cpuset_do_slab_mem_spread(void)
100{
2ad654bc 101 return task_spread_slab(current);
825a46af
PJ
102}
103
8793d854
PM
104extern int current_cpuset_is_being_rebound(void);
105
e761b772
MK
106extern void rebuild_sched_domains(void);
107
75aa1994
DR
108extern void cpuset_print_task_mems_allowed(struct task_struct *p);
109
c0ff7453 110/*
d26914d1
MG
111 * read_mems_allowed_begin is required when making decisions involving
112 * mems_allowed such as during page allocation. mems_allowed can be updated in
113 * parallel and depending on the new value an operation can fail potentially
114 * causing process failure. A retry loop with read_mems_allowed_begin and
115 * read_mems_allowed_retry prevents these artificial failures.
c0ff7453 116 */
d26914d1 117static inline unsigned int read_mems_allowed_begin(void)
c0ff7453 118{
cc9a6c87 119 return read_seqcount_begin(&current->mems_allowed_seq);
c0ff7453
MX
120}
121
cc9a6c87 122/*
d26914d1
MG
123 * If this returns true, the operation that took place after
124 * read_mems_allowed_begin may have failed artificially due to a concurrent
125 * update of mems_allowed. It is up to the caller to retry the operation if
cc9a6c87
MG
126 * appropriate.
127 */
d26914d1 128static inline bool read_mems_allowed_retry(unsigned int seq)
c0ff7453 129{
d26914d1 130 return read_seqcount_retry(&current->mems_allowed_seq, seq);
c0ff7453
MX
131}
132
58568d2a
MX
133static inline void set_mems_allowed(nodemask_t nodemask)
134{
db751fe3
JS
135 unsigned long flags;
136
c0ff7453 137 task_lock(current);
db751fe3 138 local_irq_save(flags);
cc9a6c87 139 write_seqcount_begin(&current->mems_allowed_seq);
58568d2a 140 current->mems_allowed = nodemask;
cc9a6c87 141 write_seqcount_end(&current->mems_allowed_seq);
db751fe3 142 local_irq_restore(flags);
c0ff7453 143 task_unlock(current);
58568d2a
MX
144}
145
1da177e4
LT
146#else /* !CONFIG_CPUSETS */
147
664eedde
MG
148static inline bool cpusets_enabled(void) { return false; }
149
1da177e4
LT
150static inline int cpuset_init(void) { return 0; }
151static inline void cpuset_init_smp(void) {}
1da177e4 152
7ddf96b0 153static inline void cpuset_update_active_cpus(bool cpu_online)
3a101d05
TH
154{
155 partition_sched_domains(1, NULL, NULL);
156}
157
6af866af
LZ
158static inline void cpuset_cpus_allowed(struct task_struct *p,
159 struct cpumask *mask)
1da177e4 160{
aa85ea5b 161 cpumask_copy(mask, cpu_possible_mask);
1da177e4
LT
162}
163
2baab4e9 164static inline void cpuset_cpus_allowed_fallback(struct task_struct *p)
9084bb82 165{
9084bb82
ON
166}
167
909d75a3
PJ
168static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
169{
170 return node_possible_map;
171}
172
38d7bee9 173#define cpuset_current_mems_allowed (node_states[N_MEMORY])
1da177e4 174static inline void cpuset_init_current_mems_allowed(void) {}
1da177e4 175
19770b32 176static inline int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
1da177e4
LT
177{
178 return 1;
179}
180
a1bc5a4e
DR
181static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
182{
183 return 1;
184}
185
186static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
187{
188 return 1;
189}
190
02a0e53d
PJ
191static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
192{
193 return 1;
194}
195
196static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
1da177e4
LT
197{
198 return 1;
199}
200
bbe373f2
DR
201static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
202 const struct task_struct *tsk2)
ef08e3b4
PJ
203{
204 return 1;
205}
206
3e0d98b9
PJ
207static inline void cpuset_memory_pressure_bump(void) {}
208
df5f8314
EB
209static inline void cpuset_task_status_allowed(struct seq_file *m,
210 struct task_struct *task)
1da177e4 211{
1da177e4
LT
212}
213
825a46af
PJ
214static inline int cpuset_mem_spread_node(void)
215{
216 return 0;
217}
218
6adef3eb
JS
219static inline int cpuset_slab_spread_node(void)
220{
221 return 0;
222}
223
825a46af
PJ
224static inline int cpuset_do_page_mem_spread(void)
225{
226 return 0;
227}
228
229static inline int cpuset_do_slab_mem_spread(void)
230{
231 return 0;
232}
233
8793d854
PM
234static inline int current_cpuset_is_being_rebound(void)
235{
236 return 0;
237}
238
e761b772
MK
239static inline void rebuild_sched_domains(void)
240{
dfb512ec 241 partition_sched_domains(1, NULL, NULL);
e761b772
MK
242}
243
75aa1994
DR
244static inline void cpuset_print_task_mems_allowed(struct task_struct *p)
245{
246}
247
58568d2a
MX
248static inline void set_mems_allowed(nodemask_t nodemask)
249{
250}
251
d26914d1 252static inline unsigned int read_mems_allowed_begin(void)
c0ff7453 253{
cc9a6c87 254 return 0;
c0ff7453
MX
255}
256
d26914d1 257static inline bool read_mems_allowed_retry(unsigned int seq)
c0ff7453 258{
d26914d1 259 return false;
c0ff7453
MX
260}
261
1da177e4
LT
262#endif /* !CONFIG_CPUSETS */
263
264#endif /* _LINUX_CPUSET_H */