Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
[linux-2.6-block.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>
8793d854 14#include <linux/cgroup.h>
a1bc5a4e 15#include <linux/mm.h>
1da177e4
LT
16
17#ifdef CONFIG_CPUSETS
18
202f72d5
PJ
19extern int number_of_cpusets; /* How many cpusets are defined in system? */
20
1da177e4
LT
21extern int cpuset_init(void);
22extern void cpuset_init_smp(void);
6af866af
LZ
23extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask);
24extern void cpuset_cpus_allowed_locked(struct task_struct *p,
25 struct cpumask *mask);
909d75a3 26extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
9276b1bc 27#define cpuset_current_mems_allowed (current->mems_allowed)
1da177e4 28void cpuset_init_current_mems_allowed(void);
19770b32 29int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask);
202f72d5 30
a1bc5a4e
DR
31extern int __cpuset_node_allowed_softwall(int node, gfp_t gfp_mask);
32extern int __cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask);
02a0e53d 33
a1bc5a4e 34static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
02a0e53d
PJ
35{
36 return number_of_cpusets <= 1 ||
a1bc5a4e 37 __cpuset_node_allowed_softwall(node, gfp_mask);
02a0e53d
PJ
38}
39
a1bc5a4e 40static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
202f72d5 41{
02a0e53d 42 return number_of_cpusets <= 1 ||
a1bc5a4e
DR
43 __cpuset_node_allowed_hardwall(node, gfp_mask);
44}
45
46static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
47{
48 return cpuset_node_allowed_softwall(zone_to_nid(z), gfp_mask);
49}
50
51static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
52{
53 return cpuset_node_allowed_hardwall(zone_to_nid(z), gfp_mask);
202f72d5
PJ
54}
55
bbe373f2
DR
56extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
57 const struct task_struct *tsk2);
3e0d98b9
PJ
58
59#define cpuset_memory_pressure_bump() \
60 do { \
61 if (cpuset_memory_pressure_enabled) \
62 __cpuset_memory_pressure_bump(); \
63 } while (0)
64extern int cpuset_memory_pressure_enabled;
65extern void __cpuset_memory_pressure_bump(void);
66
54047320 67extern const struct file_operations proc_cpuset_operations;
df5f8314
EB
68struct seq_file;
69extern void cpuset_task_status_allowed(struct seq_file *m,
70 struct task_struct *task);
1da177e4 71
505970b9
PJ
72extern void cpuset_lock(void);
73extern void cpuset_unlock(void);
74
825a46af
PJ
75extern int cpuset_mem_spread_node(void);
76
77static inline int cpuset_do_page_mem_spread(void)
78{
79 return current->flags & PF_SPREAD_PAGE;
80}
81
82static inline int cpuset_do_slab_mem_spread(void)
83{
84 return current->flags & PF_SPREAD_SLAB;
85}
86
8793d854
PM
87extern int current_cpuset_is_being_rebound(void);
88
e761b772
MK
89extern void rebuild_sched_domains(void);
90
75aa1994
DR
91extern void cpuset_print_task_mems_allowed(struct task_struct *p);
92
58568d2a
MX
93static inline void set_mems_allowed(nodemask_t nodemask)
94{
95 current->mems_allowed = nodemask;
96}
97
1da177e4
LT
98#else /* !CONFIG_CPUSETS */
99
100static inline int cpuset_init(void) { return 0; }
101static inline void cpuset_init_smp(void) {}
1da177e4 102
6af866af
LZ
103static inline void cpuset_cpus_allowed(struct task_struct *p,
104 struct cpumask *mask)
1da177e4 105{
aa85ea5b 106 cpumask_copy(mask, cpu_possible_mask);
1da177e4 107}
f9a86fcb 108static inline void cpuset_cpus_allowed_locked(struct task_struct *p,
6af866af 109 struct cpumask *mask)
470fd646 110{
aa85ea5b 111 cpumask_copy(mask, cpu_possible_mask);
470fd646 112}
1da177e4 113
909d75a3
PJ
114static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
115{
116 return node_possible_map;
117}
118
0e1e7c7a 119#define cpuset_current_mems_allowed (node_states[N_HIGH_MEMORY])
1da177e4 120static inline void cpuset_init_current_mems_allowed(void) {}
1da177e4 121
19770b32 122static inline int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
1da177e4
LT
123{
124 return 1;
125}
126
a1bc5a4e
DR
127static inline int cpuset_node_allowed_softwall(int node, gfp_t gfp_mask)
128{
129 return 1;
130}
131
132static inline int cpuset_node_allowed_hardwall(int node, gfp_t gfp_mask)
133{
134 return 1;
135}
136
02a0e53d
PJ
137static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
138{
139 return 1;
140}
141
142static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
1da177e4
LT
143{
144 return 1;
145}
146
bbe373f2
DR
147static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
148 const struct task_struct *tsk2)
ef08e3b4
PJ
149{
150 return 1;
151}
152
3e0d98b9
PJ
153static inline void cpuset_memory_pressure_bump(void) {}
154
df5f8314
EB
155static inline void cpuset_task_status_allowed(struct seq_file *m,
156 struct task_struct *task)
1da177e4 157{
1da177e4
LT
158}
159
505970b9
PJ
160static inline void cpuset_lock(void) {}
161static inline void cpuset_unlock(void) {}
162
825a46af
PJ
163static inline int cpuset_mem_spread_node(void)
164{
165 return 0;
166}
167
168static inline int cpuset_do_page_mem_spread(void)
169{
170 return 0;
171}
172
173static inline int cpuset_do_slab_mem_spread(void)
174{
175 return 0;
176}
177
8793d854
PM
178static inline int current_cpuset_is_being_rebound(void)
179{
180 return 0;
181}
182
e761b772
MK
183static inline void rebuild_sched_domains(void)
184{
dfb512ec 185 partition_sched_domains(1, NULL, NULL);
e761b772
MK
186}
187
75aa1994
DR
188static inline void cpuset_print_task_mems_allowed(struct task_struct *p)
189{
190}
191
58568d2a
MX
192static inline void set_mems_allowed(nodemask_t nodemask)
193{
194}
195
1da177e4
LT
196#endif /* !CONFIG_CPUSETS */
197
198#endif /* _LINUX_CPUSET_H */