blob: ea44d2e768a042902e566273173a83ee337b7f0b [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>
14
15#ifdef CONFIG_CPUSETS
16
Paul Jackson202f72d2006-01-08 01:01:57 -080017extern int number_of_cpusets; /* How many cpusets are defined in system? */
18
Paul Jacksonc417f022006-01-08 01:02:01 -080019extern int cpuset_init_early(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020extern int cpuset_init(void);
21extern void cpuset_init_smp(void);
22extern void cpuset_fork(struct task_struct *p);
23extern void cpuset_exit(struct task_struct *p);
Paul Jackson909d75a2006-01-08 01:01:55 -080024extern cpumask_t cpuset_cpus_allowed(struct task_struct *p);
25extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
Paul Jackson9276b1bc2006-12-06 20:31:48 -080026#define cpuset_current_mems_allowed (current->mems_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027void cpuset_init_current_mems_allowed(void);
Paul Jacksoncf2a473c2006-01-08 01:01:54 -080028void cpuset_update_task_memory_state(void);
Paul Jackson59665142006-01-08 01:01:47 -080029#define cpuset_nodes_subset_current_mems_allowed(nodes) \
30 nodes_subset((nodes), current->mems_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl);
Paul Jackson202f72d2006-01-08 01:01:57 -080032
Paul Jackson02a0e532006-12-13 00:34:25 -080033extern int __cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask);
34extern int __cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask);
35
36static int inline cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
Paul Jackson202f72d2006-01-08 01:01:57 -080037{
Paul Jackson02a0e532006-12-13 00:34:25 -080038 return number_of_cpusets <= 1 ||
39 __cpuset_zone_allowed_softwall(z, gfp_mask);
40}
41
42static int inline cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
43{
44 return number_of_cpusets <= 1 ||
45 __cpuset_zone_allowed_hardwall(z, gfp_mask);
Paul Jackson202f72d2006-01-08 01:01:57 -080046}
47
David Rientjesbbe373f2007-10-16 23:25:58 -070048extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
49 const struct task_struct *tsk2);
Paul Jackson3e0d98b2006-01-08 01:01:49 -080050
51#define cpuset_memory_pressure_bump() \
52 do { \
53 if (cpuset_memory_pressure_enabled) \
54 __cpuset_memory_pressure_bump(); \
55 } while (0)
56extern int cpuset_memory_pressure_enabled;
57extern void __cpuset_memory_pressure_bump(void);
58
Arjan van de Ven54047322007-02-12 00:55:28 -080059extern const struct file_operations proc_cpuset_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060extern char *cpuset_task_status_allowed(struct task_struct *task, char *buffer);
61
Paul Jackson505970b2006-01-14 13:21:06 -080062extern void cpuset_lock(void);
63extern void cpuset_unlock(void);
64
Paul Jackson825a46a2006-03-24 03:16:03 -080065extern 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
Paul Jackson38837fc2006-09-29 02:01:16 -070077extern void cpuset_track_online_nodes(void);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#else /* !CONFIG_CPUSETS */
80
Paul Jacksonc417f022006-01-08 01:02:01 -080081static inline int cpuset_init_early(void) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static inline int cpuset_init(void) { return 0; }
83static inline void cpuset_init_smp(void) {}
84static inline void cpuset_fork(struct task_struct *p) {}
85static inline void cpuset_exit(struct task_struct *p) {}
86
87static inline cpumask_t cpuset_cpus_allowed(struct task_struct *p)
88{
89 return cpu_possible_map;
90}
91
Paul Jackson909d75a2006-01-08 01:01:55 -080092static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
93{
94 return node_possible_map;
95}
96
Christoph Lameter0e1e7c72007-10-16 01:25:38 -070097#define cpuset_current_mems_allowed (node_states[N_HIGH_MEMORY])
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static inline void cpuset_init_current_mems_allowed(void) {}
Paul Jacksoncf2a473c2006-01-08 01:01:54 -080099static inline void cpuset_update_task_memory_state(void) {}
Paul Jackson59665142006-01-08 01:01:47 -0800100#define cpuset_nodes_subset_current_mems_allowed(nodes) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102static inline int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl)
103{
104 return 1;
105}
106
Paul Jackson02a0e532006-12-13 00:34:25 -0800107static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
108{
109 return 1;
110}
111
112static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 return 1;
115}
116
David Rientjesbbe373f2007-10-16 23:25:58 -0700117static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
118 const struct task_struct *tsk2)
Paul Jacksonef08e3b2005-09-06 15:18:13 -0700119{
120 return 1;
121}
122
Paul Jackson3e0d98b2006-01-08 01:01:49 -0800123static inline void cpuset_memory_pressure_bump(void) {}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static inline char *cpuset_task_status_allowed(struct task_struct *task,
126 char *buffer)
127{
128 return buffer;
129}
130
Paul Jackson505970b2006-01-14 13:21:06 -0800131static inline void cpuset_lock(void) {}
132static inline void cpuset_unlock(void) {}
133
Paul Jackson825a46a2006-03-24 03:16:03 -0800134static inline int cpuset_mem_spread_node(void)
135{
136 return 0;
137}
138
139static inline int cpuset_do_page_mem_spread(void)
140{
141 return 0;
142}
143
144static inline int cpuset_do_slab_mem_spread(void)
145{
146 return 0;
147}
148
Paul Jackson38837fc2006-09-29 02:01:16 -0700149static inline void cpuset_track_online_nodes(void) {}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151#endif /* !CONFIG_CPUSETS */
152
153#endif /* _LINUX_CPUSET_H */