Merge tag 'trace-v5.15-3' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[linux-block.git] / include / linux / cpuset.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef _LINUX_CPUSET_H
3#define _LINUX_CPUSET_H
4/*
5 * cpuset interface
6 *
7 * Copyright (C) 2003 BULL SA
825a46af 8 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
1da177e4
LT
9 *
10 */
11
12#include <linux/sched.h>
105ab3d8 13#include <linux/sched/topology.h>
f719ff9b 14#include <linux/sched/task.h>
1da177e4
LT
15#include <linux/cpumask.h>
16#include <linux/nodemask.h>
a1bc5a4e 17#include <linux/mm.h>
d4b96fb9 18#include <linux/mmu_context.h>
664eedde 19#include <linux/jump_label.h>
1da177e4
LT
20
21#ifdef CONFIG_CPUSETS
22
89affbf5
DZ
23/*
24 * Static branch rewrites can happen in an arbitrary order for a given
25 * key. In code paths where we need to loop with read_mems_allowed_begin() and
26 * read_mems_allowed_retry() to get a consistent view of mems_allowed, we need
27 * to ensure that begin() always gets rewritten before retry() in the
28 * disabled -> enabled transition. If not, then if local irqs are disabled
29 * around the loop, we can deadlock since retry() would always be
30 * comparing the latest value of the mems_allowed seqcount against 0 as
31 * begin() still would see cpusets_enabled() as false. The enabled -> disabled
32 * transition should happen in reverse order for the same reasons (want to stop
33 * looking at real value of mems_allowed.sequence in retry() first).
34 */
35extern struct static_key_false cpusets_pre_enable_key;
002f2906 36extern struct static_key_false cpusets_enabled_key;
664eedde
MG
37static inline bool cpusets_enabled(void)
38{
002f2906 39 return static_branch_unlikely(&cpusets_enabled_key);
664eedde
MG
40}
41
664eedde
MG
42static inline void cpuset_inc(void)
43{
d74b27d6
JL
44 static_branch_inc_cpuslocked(&cpusets_pre_enable_key);
45 static_branch_inc_cpuslocked(&cpusets_enabled_key);
664eedde
MG
46}
47
48static inline void cpuset_dec(void)
49{
d74b27d6
JL
50 static_branch_dec_cpuslocked(&cpusets_enabled_key);
51 static_branch_dec_cpuslocked(&cpusets_pre_enable_key);
664eedde 52}
202f72d5 53
1da177e4
LT
54extern int cpuset_init(void);
55extern void cpuset_init_smp(void);
50e76632 56extern void cpuset_force_rebuild(void);
30e03acd 57extern void cpuset_update_active_cpus(void);
50e76632 58extern void cpuset_wait_for_hotplug(void);
710da3c8
JL
59extern void cpuset_read_lock(void);
60extern void cpuset_read_unlock(void);
6af866af 61extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask);
97c0054d 62extern bool cpuset_cpus_allowed_fallback(struct task_struct *p);
909d75a3 63extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
9276b1bc 64#define cpuset_current_mems_allowed (current->mems_allowed)
1da177e4 65void cpuset_init_current_mems_allowed(void);
19770b32 66int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask);
202f72d5 67
002f2906 68extern bool __cpuset_node_allowed(int node, gfp_t gfp_mask);
02a0e53d 69
002f2906 70static inline bool cpuset_node_allowed(int node, gfp_t gfp_mask)
02a0e53d 71{
002f2906
VB
72 if (cpusets_enabled())
73 return __cpuset_node_allowed(node, gfp_mask);
74 return true;
02a0e53d
PJ
75}
76
002f2906 77static inline bool __cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
202f72d5 78{
002f2906
VB
79 return __cpuset_node_allowed(zone_to_nid(z), gfp_mask);
80}
81
82static inline bool cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
83{
84 if (cpusets_enabled())
85 return __cpuset_zone_allowed(z, gfp_mask);
86 return true;
202f72d5
PJ
87}
88
bbe373f2
DR
89extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
90 const struct task_struct *tsk2);
3e0d98b9
PJ
91
92#define cpuset_memory_pressure_bump() \
93 do { \
94 if (cpuset_memory_pressure_enabled) \
95 __cpuset_memory_pressure_bump(); \
96 } while (0)
97extern int cpuset_memory_pressure_enabled;
98extern void __cpuset_memory_pressure_bump(void);
99
df5f8314
EB
100extern void cpuset_task_status_allowed(struct seq_file *m,
101 struct task_struct *task);
52de4779
ZL
102extern int proc_cpuset_show(struct seq_file *m, struct pid_namespace *ns,
103 struct pid *pid, struct task_struct *tsk);
1da177e4 104
825a46af 105extern int cpuset_mem_spread_node(void);
6adef3eb 106extern int cpuset_slab_spread_node(void);
825a46af
PJ
107
108static inline int cpuset_do_page_mem_spread(void)
109{
2ad654bc 110 return task_spread_page(current);
825a46af
PJ
111}
112
113static inline int cpuset_do_slab_mem_spread(void)
114{
2ad654bc 115 return task_spread_slab(current);
825a46af
PJ
116}
117
77ef80c6 118extern bool current_cpuset_is_being_rebound(void);
8793d854 119
e761b772
MK
120extern void rebuild_sched_domains(void);
121
da39da3a 122extern void cpuset_print_current_mems_allowed(void);
75aa1994 123
c0ff7453 124/*
d26914d1
MG
125 * read_mems_allowed_begin is required when making decisions involving
126 * mems_allowed such as during page allocation. mems_allowed can be updated in
127 * parallel and depending on the new value an operation can fail potentially
128 * causing process failure. A retry loop with read_mems_allowed_begin and
129 * read_mems_allowed_retry prevents these artificial failures.
c0ff7453 130 */
d26914d1 131static inline unsigned int read_mems_allowed_begin(void)
c0ff7453 132{
89affbf5 133 if (!static_branch_unlikely(&cpusets_pre_enable_key))
46e700ab
MG
134 return 0;
135
cc9a6c87 136 return read_seqcount_begin(&current->mems_allowed_seq);
c0ff7453
MX
137}
138
cc9a6c87 139/*
d26914d1
MG
140 * If this returns true, the operation that took place after
141 * read_mems_allowed_begin may have failed artificially due to a concurrent
142 * update of mems_allowed. It is up to the caller to retry the operation if
cc9a6c87
MG
143 * appropriate.
144 */
d26914d1 145static inline bool read_mems_allowed_retry(unsigned int seq)
c0ff7453 146{
89affbf5 147 if (!static_branch_unlikely(&cpusets_enabled_key))
46e700ab
MG
148 return false;
149
d26914d1 150 return read_seqcount_retry(&current->mems_allowed_seq, seq);
c0ff7453
MX
151}
152
58568d2a
MX
153static inline void set_mems_allowed(nodemask_t nodemask)
154{
db751fe3
JS
155 unsigned long flags;
156
c0ff7453 157 task_lock(current);
db751fe3 158 local_irq_save(flags);
cc9a6c87 159 write_seqcount_begin(&current->mems_allowed_seq);
58568d2a 160 current->mems_allowed = nodemask;
cc9a6c87 161 write_seqcount_end(&current->mems_allowed_seq);
db751fe3 162 local_irq_restore(flags);
c0ff7453 163 task_unlock(current);
58568d2a
MX
164}
165
1da177e4
LT
166#else /* !CONFIG_CPUSETS */
167
664eedde
MG
168static inline bool cpusets_enabled(void) { return false; }
169
1da177e4
LT
170static inline int cpuset_init(void) { return 0; }
171static inline void cpuset_init_smp(void) {}
1da177e4 172
50e76632
PZ
173static inline void cpuset_force_rebuild(void) { }
174
30e03acd 175static inline void cpuset_update_active_cpus(void)
3a101d05
TH
176{
177 partition_sched_domains(1, NULL, NULL);
178}
179
50e76632
PZ
180static inline void cpuset_wait_for_hotplug(void) { }
181
710da3c8
JL
182static inline void cpuset_read_lock(void) { }
183static inline void cpuset_read_unlock(void) { }
184
6af866af
LZ
185static inline void cpuset_cpus_allowed(struct task_struct *p,
186 struct cpumask *mask)
1da177e4 187{
431c69fa 188 cpumask_copy(mask, task_cpu_possible_mask(p));
1da177e4
LT
189}
190
97c0054d 191static inline bool cpuset_cpus_allowed_fallback(struct task_struct *p)
9084bb82 192{
97c0054d 193 return false;
9084bb82
ON
194}
195
909d75a3
PJ
196static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
197{
198 return node_possible_map;
199}
200
38d7bee9 201#define cpuset_current_mems_allowed (node_states[N_MEMORY])
1da177e4 202static inline void cpuset_init_current_mems_allowed(void) {}
1da177e4 203
19770b32 204static inline int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
1da177e4
LT
205{
206 return 1;
207}
208
002f2906 209static inline bool cpuset_node_allowed(int node, gfp_t gfp_mask)
02a0e53d 210{
002f2906 211 return true;
02a0e53d
PJ
212}
213
002f2906 214static inline bool __cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
1da177e4 215{
002f2906
VB
216 return true;
217}
218
219static inline bool cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
220{
221 return true;
1da177e4
LT
222}
223
bbe373f2
DR
224static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
225 const struct task_struct *tsk2)
ef08e3b4
PJ
226{
227 return 1;
228}
229
3e0d98b9
PJ
230static inline void cpuset_memory_pressure_bump(void) {}
231
df5f8314
EB
232static inline void cpuset_task_status_allowed(struct seq_file *m,
233 struct task_struct *task)
1da177e4 234{
1da177e4
LT
235}
236
825a46af
PJ
237static inline int cpuset_mem_spread_node(void)
238{
239 return 0;
240}
241
6adef3eb
JS
242static inline int cpuset_slab_spread_node(void)
243{
244 return 0;
245}
246
825a46af
PJ
247static inline int cpuset_do_page_mem_spread(void)
248{
249 return 0;
250}
251
252static inline int cpuset_do_slab_mem_spread(void)
253{
254 return 0;
255}
256
77ef80c6 257static inline bool current_cpuset_is_being_rebound(void)
8793d854 258{
77ef80c6 259 return false;
8793d854
PM
260}
261
e761b772
MK
262static inline void rebuild_sched_domains(void)
263{
dfb512ec 264 partition_sched_domains(1, NULL, NULL);
e761b772
MK
265}
266
da39da3a 267static inline void cpuset_print_current_mems_allowed(void)
75aa1994
DR
268{
269}
270
58568d2a
MX
271static inline void set_mems_allowed(nodemask_t nodemask)
272{
273}
274
d26914d1 275static inline unsigned int read_mems_allowed_begin(void)
c0ff7453 276{
cc9a6c87 277 return 0;
c0ff7453
MX
278}
279
d26914d1 280static inline bool read_mems_allowed_retry(unsigned int seq)
c0ff7453 281{
d26914d1 282 return false;
c0ff7453
MX
283}
284
1da177e4
LT
285#endif /* !CONFIG_CPUSETS */
286
287#endif /* _LINUX_CPUSET_H */