mm: fix dubious code in __count_immobile_pages()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / sched_autogroup.h
blob7b859ffe5dadd677cce89f833ee43a242ea3a992
1 #ifdef CONFIG_SCHED_AUTOGROUP
3 struct autogroup {
4 struct kref kref;
5 struct task_group *tg;
6 struct rw_semaphore lock;
7 unsigned long id;
8 int nice;
9 };
11 static inline struct task_group *
12 autogroup_task_group(struct task_struct *p, struct task_group *tg);
14 #else /* !CONFIG_SCHED_AUTOGROUP */
16 static inline void autogroup_init(struct task_struct *init_task) { }
17 static inline void autogroup_free(struct task_group *tg) { }
18 static inline bool task_group_is_autogroup(struct task_group *tg)
20 return 0;
23 static inline struct task_group *
24 autogroup_task_group(struct task_struct *p, struct task_group *tg)
26 return tg;
29 #ifdef CONFIG_SCHED_DEBUG
30 static inline int autogroup_path(struct task_group *tg, char *buf, int buflen)
32 return 0;
34 #endif
36 #endif /* CONFIG_SCHED_AUTOGROUP */