blob: 90c6074a36cab42c47df2ac8f6239cfe2ae0ddfe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_CPUSET_H
2#define _LINUX_CPUSET_H
3/*
4 * cpuset interface
5 *
6 * Copyright (C) 2003 BULL SA
Paul Jackson825a46a2006-03-24 03:16:03 -08007 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 */
10
11#include <linux/sched.h>
12#include <linux/cpumask.h>
13#include <linux/nodemask.h>
Paul Menage8793d852007-10-18 23:39:39 -070014#include <linux/cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#ifdef CONFIG_CPUSETS
17
Paul Jackson202f72d2006-01-08 01:01:57 -080018extern int number_of_cpusets; /* How many cpusets are defined in system? */
19
Paul Jacksonc417f022006-01-08 01:02:01 -080020extern int cpuset_init_early(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021extern int cpuset_init(void);
22extern void cpuset_init_smp(void);
Li Zefan6af866a2009-01-07 18:08:45 -080023extern 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);
Paul Jackson909d75a2006-01-08 01:01:55 -080026extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
Paul Jackson9276b1bc2006-12-06 20:31:48 -080027#define cpuset_current_mems_allowed (current->mems_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028void cpuset_init_current_mems_allowed(void);
Paul Jacksoncf2a473c2006-01-08 01:01:54 -080029void cpuset_update_task_memory_state(void);
Mel Gorman19770b32008-04-28 02:12:18 -070030int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask);
Paul Jackson202f72d2006-01-08 01:01:57 -080031
Paul Jackson02a0e532006-12-13 00:34:25 -080032extern int __cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask);
33extern int __cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask);
34
35static int inline cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
Paul Jackson202f72d2006-01-08 01:01:57 -080036{
Paul Jackson02a0e532006-12-13 00:34:25 -080037 return number_of_cpusets <= 1 ||
38 __cpuset_zone_allowed_softwall(z, gfp_mask);
39}
40
41static int inline cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
42{
43 return number_of_cpusets <= 1 ||
44 __cpuset_zone_allowed_hardwall(z, gfp_mask);
Paul Jackson202f72d2006-01-08 01:01:57 -080045}
46
David Rientjesbbe373f2007-10-16 23:25:58 -070047extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
48 const struct task_struct *tsk2);
Paul Jackson3e0d98b2006-01-08 01:01:49 -080049
50#define cpuset_memory_pressure_bump() \
51 do { \
52 if (cpuset_memory_pressure_enabled) \
53 __cpuset_memory_pressure_bump(); \
54 } while (0)
55extern int cpuset_memory_pressure_enabled;
56extern void __cpuset_memory_pressure_bump(void);
57
Arjan van de Ven54047322007-02-12 00:55:28 -080058extern const struct file_operations proc_cpuset_operations;
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080059struct seq_file;
60extern void cpuset_task_status_allowed(struct seq_file *m,
61 struct task_struct *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Paul Jackson505970b2006-01-14 13:21:06 -080063extern void cpuset_lock(void);
64extern void cpuset_unlock(void);
65
Paul Jackson825a46a2006-03-24 03:16:03 -080066extern int cpuset_mem_spread_node(void);
67
68static inline int cpuset_do_page_mem_spread(void)
69{
70 return current->flags & PF_SPREAD_PAGE;
71}
72
73static inline int cpuset_do_slab_mem_spread(void)
74{
75 return current->flags & PF_SPREAD_SLAB;
76}
77
Paul Menage8793d852007-10-18 23:39:39 -070078extern int current_cpuset_is_being_rebound(void);
79
Max Krasnyanskye761b772008-07-15 04:43:49 -070080extern void rebuild_sched_domains(void);
81
David Rientjes75aa1992009-01-06 14:39:01 -080082extern void cpuset_print_task_mems_allowed(struct task_struct *p);
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084#else /* !CONFIG_CPUSETS */
85
Paul Jacksonc417f022006-01-08 01:02:01 -080086static inline int cpuset_init_early(void) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static inline int cpuset_init(void) { return 0; }
88static inline void cpuset_init_smp(void) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Li Zefan6af866a2009-01-07 18:08:45 -080090static inline void cpuset_cpus_allowed(struct task_struct *p,
91 struct cpumask *mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Mike Travisf9a86fc2008-04-04 18:11:07 -070093 *mask = cpu_possible_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094}
Mike Travisf9a86fc2008-04-04 18:11:07 -070095static inline void cpuset_cpus_allowed_locked(struct task_struct *p,
Li Zefan6af866a2009-01-07 18:08:45 -080096 struct cpumask *mask)
Cliff Wickman470fd642007-10-18 23:40:46 -070097{
Mike Travisf9a86fc2008-04-04 18:11:07 -070098 *mask = cpu_possible_map;
Cliff Wickman470fd642007-10-18 23:40:46 -070099}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Paul Jackson909d75a2006-01-08 01:01:55 -0800101static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
102{
103 return node_possible_map;
104}
105
Christoph Lameter0e1e7c72007-10-16 01:25:38 -0700106#define cpuset_current_mems_allowed (node_states[N_HIGH_MEMORY])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static inline void cpuset_init_current_mems_allowed(void) {}
Paul Jacksoncf2a473c2006-01-08 01:01:54 -0800108static inline void cpuset_update_task_memory_state(void) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Mel Gorman19770b32008-04-28 02:12:18 -0700110static inline int cpuset_nodemask_valid_mems_allowed(nodemask_t *nodemask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 return 1;
113}
114
Paul Jackson02a0e532006-12-13 00:34:25 -0800115static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
116{
117 return 1;
118}
119
120static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 return 1;
123}
124
David Rientjesbbe373f2007-10-16 23:25:58 -0700125static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
126 const struct task_struct *tsk2)
Paul Jacksonef08e3b2005-09-06 15:18:13 -0700127{
128 return 1;
129}
130
Paul Jackson3e0d98b2006-01-08 01:01:49 -0800131static inline void cpuset_memory_pressure_bump(void) {}
132
Eric W. Biedermandf5f8312008-02-08 04:18:33 -0800133static inline void cpuset_task_status_allowed(struct seq_file *m,
134 struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Paul Jackson505970b2006-01-14 13:21:06 -0800138static inline void cpuset_lock(void) {}
139static inline void cpuset_unlock(void) {}
140
Paul Jackson825a46a2006-03-24 03:16:03 -0800141static inline int cpuset_mem_spread_node(void)
142{
143 return 0;
144}
145
146static inline int cpuset_do_page_mem_spread(void)
147{
148 return 0;
149}
150
151static inline int cpuset_do_slab_mem_spread(void)
152{
153 return 0;
154}
155
Paul Menage8793d852007-10-18 23:39:39 -0700156static inline int current_cpuset_is_being_rebound(void)
157{
158 return 0;
159}
160
Max Krasnyanskye761b772008-07-15 04:43:49 -0700161static inline void rebuild_sched_domains(void)
162{
Max Krasnyanskydfb512e2008-08-29 13:11:41 -0700163 partition_sched_domains(1, NULL, NULL);
Max Krasnyanskye761b772008-07-15 04:43:49 -0700164}
165
David Rientjes75aa1992009-01-06 14:39:01 -0800166static inline void cpuset_print_task_mems_allowed(struct task_struct *p)
167{
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#endif /* !CONFIG_CPUSETS */
171
172#endif /* _LINUX_CPUSET_H */