Blame view

kernel/sched/auto_group.h 1.48 KB
5091faa44   Mike Galbraith   sched: Add 'autog...
1
  #ifdef CONFIG_SCHED_AUTOGROUP
029632fbb   Peter Zijlstra   sched: Make separ...
2
3
  #include <linux/kref.h>
  #include <linux/rwsem.h>
5091faa44   Mike Galbraith   sched: Add 'autog...
4
  struct autogroup {
c1ad41f1f   Ingo Molnar   Revert "sched/aut...
5
6
7
8
9
  	/*
  	 * reference doesn't mean how many thread attach to this
  	 * autogroup now. It just stands for the number of task
  	 * could use this autogroup.
  	 */
5091faa44   Mike Galbraith   sched: Add 'autog...
10
11
12
13
14
15
  	struct kref		kref;
  	struct task_group	*tg;
  	struct rw_semaphore	lock;
  	unsigned long		id;
  	int			nice;
  };
029632fbb   Peter Zijlstra   sched: Make separ...
16
17
18
19
20
21
22
23
24
  extern void autogroup_init(struct task_struct *init_task);
  extern void autogroup_free(struct task_group *tg);
  
  static inline bool task_group_is_autogroup(struct task_group *tg)
  {
  	return !!tg->autogroup;
  }
  
  extern bool task_wants_autogroup(struct task_struct *p, struct task_group *tg);
5091faa44   Mike Galbraith   sched: Add 'autog...
25
  static inline struct task_group *
029632fbb   Peter Zijlstra   sched: Make separ...
26
27
  autogroup_task_group(struct task_struct *p, struct task_group *tg)
  {
316c1608d   Jason Low   sched, timer: Con...
28
  	int enabled = READ_ONCE(sysctl_sched_autogroup_enabled);
c1ad41f1f   Ingo Molnar   Revert "sched/aut...
29
30
  
  	if (enabled && task_wants_autogroup(p, tg))
029632fbb   Peter Zijlstra   sched: Make separ...
31
32
33
34
35
36
  		return p->signal->autogroup->tg;
  
  	return tg;
  }
  
  extern int autogroup_path(struct task_group *tg, char *buf, int buflen);
5091faa44   Mike Galbraith   sched: Add 'autog...
37
38
39
40
41
  
  #else /* !CONFIG_SCHED_AUTOGROUP */
  
  static inline void autogroup_init(struct task_struct *init_task) {  }
  static inline void autogroup_free(struct task_group *tg) { }
f44937718   Mike Galbraith   sched, autogroup:...
42
43
44
45
  static inline bool task_group_is_autogroup(struct task_group *tg)
  {
  	return 0;
  }
5091faa44   Mike Galbraith   sched: Add 'autog...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  
  static inline struct task_group *
  autogroup_task_group(struct task_struct *p, struct task_group *tg)
  {
  	return tg;
  }
  
  #ifdef CONFIG_SCHED_DEBUG
  static inline int autogroup_path(struct task_group *tg, char *buf, int buflen)
  {
  	return 0;
  }
  #endif
  
  #endif /* CONFIG_SCHED_AUTOGROUP */