cpuset: convert cpuset->cpus_allowed to cpumask_var_t
[deliverable/linux.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>
1da177e4
LT
15
16#ifdef CONFIG_CPUSETS
17
202f72d5
PJ
18extern int number_of_cpusets; /* How many cpusets are defined in system? */
19
c417f024 20extern int cpuset_init_early(void);
1da177e4
LT
21extern int cpuset_init(void);
22extern void cpuset_init_smp(void);
f9a86fcb
MT
23extern void cpuset_cpus_allowed(struct task_struct *p, cpumask_t *mask);
24extern void cpuset_cpus_allowed_locked(struct task_struct *p, cpumask_t *mask);
909d75a3 25extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
9276b1bc 26#define cpuset_current_mems_allowed (current->mems_allowed)
1da177e4 27void cpuset_init_current_mems_allowed(void);
cf2a473c 28void cpuset_update_task_memory_state(void);
19770b32 29int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask);
202f72d5 30
02a0e53d
PJ
31extern int __cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask);
32extern int __cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask);
33
34static int inline cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
35{
36 return number_of_cpusets <= 1 ||
37 __cpuset_zone_allowed_softwall(z, gfp_mask);
38}
39
40static int inline cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
202f72d5 41{
02a0e53d
PJ
42 return number_of_cpusets <= 1 ||
43 __cpuset_zone_allowed_hardwall(z, gfp_mask);
202f72d5
PJ
44}
45
bbe373f2
DR
46extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
47 const struct task_struct *tsk2);
3e0d98b9
PJ
48
49#define cpuset_memory_pressure_bump() \
50 do { \
51 if (cpuset_memory_pressure_enabled) \
52 __cpuset_memory_pressure_bump(); \
53 } while (0)
54extern int cpuset_memory_pressure_enabled;
55extern void __cpuset_memory_pressure_bump(void);
56
54047320 57extern const struct file_operations proc_cpuset_operations;
df5f8314
EB
58struct seq_file;
59extern void cpuset_task_status_allowed(struct seq_file *m,
60 struct task_struct *task);
1da177e4 61
505970b9
PJ
62extern void cpuset_lock(void);
63extern void cpuset_unlock(void);
64
825a46af
PJ
65extern int cpuset_mem_spread_node(void);
66
67static inline int cpuset_do_page_mem_spread(void)
68{
69 return current->flags & PF_SPREAD_PAGE;
70}
71
72static inline int cpuset_do_slab_mem_spread(void)
73{
74 return current->flags & PF_SPREAD_SLAB;
75}
76
8793d854
PM
77extern int current_cpuset_is_being_rebound(void);
78
e761b772
MK
79extern void rebuild_sched_domains(void);
80
75aa1994
DR
81extern void cpuset_print_task_mems_allowed(struct task_struct *p);
82
1da177e4
LT
83#else /* !CONFIG_CPUSETS */
84
c417f024 85static inline int cpuset_init_early(void) { return 0; }
1da177e4
LT
86static inline int cpuset_init(void) { return 0; }
87static inline void cpuset_init_smp(void) {}
1da177e4 88
f9a86fcb 89static inline void cpuset_cpus_allowed(struct task_struct *p, cpumask_t *mask)
1da177e4 90{
f9a86fcb 91 *mask = cpu_possible_map;
1da177e4 92}
f9a86fcb
MT
93static inline void cpuset_cpus_allowed_locked(struct task_struct *p,
94 cpumask_t *mask)
470fd646 95{
f9a86fcb 96 *mask = cpu_possible_map;
470fd646 97}
1da177e4 98
909d75a3
PJ
99static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
100{
101 return node_possible_map;
102}
103
0e1e7c7a 104#define cpuset_current_mems_allowed (node_states[N_HIGH_MEMORY])
1da177e4 105static inline void cpuset_init_current_mems_allowed(void) {}
cf2a473c 106static inline void cpuset_update_task_memory_state(void) {}
1da177e4 107
19770b32 108static inline int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
1da177e4
LT
109{
110 return 1;
111}
112
02a0e53d
PJ
113static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
114{
115 return 1;
116}
117
118static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
1da177e4
LT
119{
120 return 1;
121}
122
bbe373f2
DR
123static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
124 const struct task_struct *tsk2)
ef08e3b4
PJ
125{
126 return 1;
127}
128
3e0d98b9
PJ
129static inline void cpuset_memory_pressure_bump(void) {}
130
df5f8314
EB
131static inline void cpuset_task_status_allowed(struct seq_file *m,
132 struct task_struct *task)
1da177e4 133{
1da177e4
LT
134}
135
505970b9
PJ
136static inline void cpuset_lock(void) {}
137static inline void cpuset_unlock(void) {}
138
825a46af
PJ
139static inline int cpuset_mem_spread_node(void)
140{
141 return 0;
142}
143
144static inline int cpuset_do_page_mem_spread(void)
145{
146 return 0;
147}
148
149static inline int cpuset_do_slab_mem_spread(void)
150{
151 return 0;
152}
153
8793d854
PM
154static inline int current_cpuset_is_being_rebound(void)
155{
156 return 0;
157}
158
e761b772
MK
159static inline void rebuild_sched_domains(void)
160{
dfb512ec 161 partition_sched_domains(1, NULL, NULL);
e761b772
MK
162}
163
75aa1994
DR
164static inline void cpuset_print_task_mems_allowed(struct task_struct *p)
165{
166}
167
1da177e4
LT
168#endif /* !CONFIG_CPUSETS */
169
170#endif /* _LINUX_CPUSET_H */
This page took 0.629744 seconds and 5 git commands to generate.