blob: 34081c168af5f122883a22e1b1a05ba61f93e9ff [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
7 * Copyright (C) 2004 Silicon Graphics, Inc.
8 *
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070019extern int cpuset_init(void);
20extern void cpuset_init_smp(void);
21extern void cpuset_fork(struct task_struct *p);
22extern void cpuset_exit(struct task_struct *p);
Paul Jackson909d75a2006-01-08 01:01:55 -080023extern cpumask_t cpuset_cpus_allowed(struct task_struct *p);
24extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025void cpuset_init_current_mems_allowed(void);
Paul Jacksoncf2a473c2006-01-08 01:01:54 -080026void cpuset_update_task_memory_state(void);
Paul Jackson59665142006-01-08 01:01:47 -080027#define cpuset_nodes_subset_current_mems_allowed(nodes) \
28 nodes_subset((nodes), current->mems_allowed)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl);
Paul Jackson202f72d2006-01-08 01:01:57 -080030
31extern int __cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask);
32static int inline cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
33{
34 return number_of_cpusets <= 1 || __cpuset_zone_allowed(z, gfp_mask);
35}
36
Paul Jacksonef08e3b2005-09-06 15:18:13 -070037extern int cpuset_excl_nodes_overlap(const struct task_struct *p);
Paul Jackson3e0d98b2006-01-08 01:01:49 -080038
39#define cpuset_memory_pressure_bump() \
40 do { \
41 if (cpuset_memory_pressure_enabled) \
42 __cpuset_memory_pressure_bump(); \
43 } while (0)
44extern int cpuset_memory_pressure_enabled;
45extern void __cpuset_memory_pressure_bump(void);
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047extern struct file_operations proc_cpuset_operations;
48extern char *cpuset_task_status_allowed(struct task_struct *task, char *buffer);
49
50#else /* !CONFIG_CPUSETS */
51
52static inline int cpuset_init(void) { return 0; }
53static inline void cpuset_init_smp(void) {}
54static inline void cpuset_fork(struct task_struct *p) {}
55static inline void cpuset_exit(struct task_struct *p) {}
56
57static inline cpumask_t cpuset_cpus_allowed(struct task_struct *p)
58{
59 return cpu_possible_map;
60}
61
Paul Jackson909d75a2006-01-08 01:01:55 -080062static inline nodemask_t cpuset_mems_allowed(struct task_struct *p)
63{
64 return node_possible_map;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static inline void cpuset_init_current_mems_allowed(void) {}
Paul Jacksoncf2a473c2006-01-08 01:01:54 -080068static inline void cpuset_update_task_memory_state(void) {}
Paul Jackson59665142006-01-08 01:01:47 -080069#define cpuset_nodes_subset_current_mems_allowed(nodes) (1)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71static inline int cpuset_zonelist_valid_mems_allowed(struct zonelist *zl)
72{
73 return 1;
74}
75
Al Virodd0fc662005-10-07 07:46:04 +010076static inline int cpuset_zone_allowed(struct zone *z, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
78 return 1;
79}
80
Paul Jacksonef08e3b2005-09-06 15:18:13 -070081static inline int cpuset_excl_nodes_overlap(const struct task_struct *p)
82{
83 return 1;
84}
85
Paul Jackson3e0d98b2006-01-08 01:01:49 -080086static inline void cpuset_memory_pressure_bump(void) {}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088static inline char *cpuset_task_status_allowed(struct task_struct *task,
89 char *buffer)
90{
91 return buffer;
92}
93
94#endif /* !CONFIG_CPUSETS */
95
96#endif /* _LINUX_CPUSET_H */