Char: moxa, remove sleep_on
[linux-2.6/mini2440.git] / include / linux / cpuset.h
blobea44d2e768a042902e566273173a83ee337b7f0b
1 #ifndef _LINUX_CPUSET_H
2 #define _LINUX_CPUSET_H
3 /*
4 * cpuset interface
6 * Copyright (C) 2003 BULL SA
7 * Copyright (C) 2004-2006 Silicon Graphics, Inc.
9 */
11 #include <linux/sched.h>
12 #include <linux/cpumask.h>
13 #include <linux/nodemask.h>
15 #ifdef CONFIG_CPUSETS
17 extern int number_of_cpusets; /* How many cpusets are defined in system? */
19 extern int cpuset_init_early(void);
20 extern int cpuset_init(void);
21 extern void cpuset_init_smp(void);
22 extern void cpuset_fork(struct task_struct *p);
23 extern void cpuset_exit(struct task_struct *p);
24 extern cpumask_t cpuset_cpus_allowed(struct task_struct *p);
25 extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
26 #define cpuset_current_mems_allowed (current->mems_allowed)
27 void cpuset_init_current_mems_allowed(void);
28 void cpuset_update_task_memory_state(void);
29 #define cpuset_nodes_subset_current_mems_allowed(nodes) \
30 nodes_subset((nodes), current->mems_allowed)
31 int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl);
33 extern int __cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask);
34 extern int __cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask);
36 static int inline cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
38 return number_of_cpusets <= 1 ||
39 __cpuset_zone_allowed_softwall(z, gfp_mask);
42 static int inline cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
44 return number_of_cpusets <= 1 ||
45 __cpuset_zone_allowed_hardwall(z, gfp_mask);
48 extern int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
49 const struct task_struct *tsk2);
51 #define cpuset_memory_pressure_bump() \
52 do { \
53 if (cpuset_memory_pressure_enabled) \
54 __cpuset_memory_pressure_bump(); \
55 } while (0)
56 extern int cpuset_memory_pressure_enabled;
57 extern void __cpuset_memory_pressure_bump(void);
59 extern const struct file_operations proc_cpuset_operations;
60 extern char *cpuset_task_status_allowed(struct task_struct *task, char *buffer);
62 extern void cpuset_lock(void);
63 extern void cpuset_unlock(void);
65 extern int cpuset_mem_spread_node(void);
67 static inline int cpuset_do_page_mem_spread(void)
69 return current->flags & PF_SPREAD_PAGE;
72 static inline int cpuset_do_slab_mem_spread(void)
74 return current->flags & PF_SPREAD_SLAB;
77 extern void cpuset_track_online_nodes(void);
79 #else /* !CONFIG_CPUSETS */
81 static inline int cpuset_init_early(void) { return 0; }
82 static inline int cpuset_init(void) { return 0; }
83 static inline void cpuset_init_smp(void) {}
84 static inline void cpuset_fork(struct task_struct *p) {}
85 static inline void cpuset_exit(struct task_struct *p) {}
87 static inline cpumask_t cpuset_cpus_allowed(struct task_struct *p)
89 return cpu_possible_map;
92 static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
94 return node_possible_map;
97 #define cpuset_current_mems_allowed (node_states[N_HIGH_MEMORY])
98 static inline void cpuset_init_current_mems_allowed(void) {}
99 static inline void cpuset_update_task_memory_state(void) {}
100 #define cpuset_nodes_subset_current_mems_allowed(nodes) (1)
102 static inline int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl)
104 return 1;
107 static inline int cpuset_zone_allowed_softwall(struct zone *z, gfp_t gfp_mask)
109 return 1;
112 static inline int cpuset_zone_allowed_hardwall(struct zone *z, gfp_t gfp_mask)
114 return 1;
117 static inline int cpuset_mems_allowed_intersects(const struct task_struct *tsk1,
118 const struct task_struct *tsk2)
120 return 1;
123 static inline void cpuset_memory_pressure_bump(void) {}
125 static inline char *cpuset_task_status_allowed(struct task_struct *task,
126 char *buffer)
128 return buffer;
131 static inline void cpuset_lock(void) {}
132 static inline void cpuset_unlock(void) {}
134 static inline int cpuset_mem_spread_node(void)
136 return 0;
139 static inline int cpuset_do_page_mem_spread(void)
141 return 0;
144 static inline int cpuset_do_slab_mem_spread(void)
146 return 0;
149 static inline void cpuset_track_online_nodes(void) {}
151 #endif /* !CONFIG_CPUSETS */
153 #endif /* _LINUX_CPUSET_H */