blob: eca526d7afbd810963a1b62e384b12cfe894cc6c [file] [log] [blame]
Peter Zijlstra029632f2011-10-25 10:00:11 +02001
2#include <linux/sched.h>
Clark Williamscf4aebc22013-02-07 09:46:59 -06003#include <linux/sched/sysctl.h>
Clark Williams8bd75c72013-02-07 09:47:07 -06004#include <linux/sched/rt.h>
Peter Zijlstra029632f2011-10-25 10:00:11 +02005#include <linux/mutex.h>
6#include <linux/spinlock.h>
7#include <linux/stop_machine.h>
8
Peter Zijlstra391e43d2011-11-15 17:14:39 +01009#include "cpupri.h"
Peter Zijlstra029632f2011-10-25 10:00:11 +020010
11extern __read_mostly int scheduler_running;
12
13/*
14 * Convert user-nice values [ -20 ... 0 ... 19 ]
15 * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ],
16 * and back.
17 */
18#define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20)
19#define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20)
20#define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio)
21
22/*
23 * 'User priority' is the nice value converted to something we
24 * can work with better when scaling various scheduler parameters,
25 * it's a [ 0 ... 39 ] range.
26 */
27#define USER_PRIO(p) ((p)-MAX_RT_PRIO)
28#define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio)
29#define MAX_USER_PRIO (USER_PRIO(MAX_PRIO))
30
31/*
32 * Helpers for converting nanosecond timing to jiffy resolution
33 */
34#define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ))
35
Li Zefancc1f4b12013-03-05 16:06:09 +080036/*
37 * Increase resolution of nice-level calculations for 64-bit architectures.
38 * The extra resolution improves shares distribution and load balancing of
39 * low-weight task groups (eg. nice +19 on an autogroup), deeper taskgroup
40 * hierarchies, especially on larger systems. This is not a user-visible change
41 * and does not change the user-interface for setting shares/weights.
42 *
43 * We increase resolution only if we have enough bits to allow this increased
44 * resolution (i.e. BITS_PER_LONG > 32). The costs for increasing resolution
45 * when BITS_PER_LONG <= 32 are pretty high and the returns do not justify the
46 * increased costs.
47 */
48#if 0 /* BITS_PER_LONG > 32 -- currently broken: it increases power usage under light load */
49# define SCHED_LOAD_RESOLUTION 10
50# define scale_load(w) ((w) << SCHED_LOAD_RESOLUTION)
51# define scale_load_down(w) ((w) >> SCHED_LOAD_RESOLUTION)
52#else
53# define SCHED_LOAD_RESOLUTION 0
54# define scale_load(w) (w)
55# define scale_load_down(w) (w)
56#endif
57
58#define SCHED_LOAD_SHIFT (10 + SCHED_LOAD_RESOLUTION)
59#define SCHED_LOAD_SCALE (1L << SCHED_LOAD_SHIFT)
60
Peter Zijlstra029632f2011-10-25 10:00:11 +020061#define NICE_0_LOAD SCHED_LOAD_SCALE
62#define NICE_0_SHIFT SCHED_LOAD_SHIFT
63
64/*
65 * These are the 'tuning knobs' of the scheduler:
Peter Zijlstra029632f2011-10-25 10:00:11 +020066 */
Peter Zijlstra029632f2011-10-25 10:00:11 +020067
68/*
69 * single value that denotes runtime == period, ie unlimited time.
70 */
71#define RUNTIME_INF ((u64)~0ULL)
72
73static inline int rt_policy(int policy)
74{
75 if (policy == SCHED_FIFO || policy == SCHED_RR)
76 return 1;
77 return 0;
78}
79
80static inline int task_has_rt_policy(struct task_struct *p)
81{
82 return rt_policy(p->policy);
83}
84
85/*
86 * This is the priority-queue data structure of the RT scheduling class:
87 */
88struct rt_prio_array {
89 DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */
90 struct list_head queue[MAX_RT_PRIO];
91};
92
93struct rt_bandwidth {
94 /* nests inside the rq lock: */
95 raw_spinlock_t rt_runtime_lock;
96 ktime_t rt_period;
97 u64 rt_runtime;
98 struct hrtimer rt_period_timer;
99};
100
101extern struct mutex sched_domains_mutex;
102
103#ifdef CONFIG_CGROUP_SCHED
104
105#include <linux/cgroup.h>
106
107struct cfs_rq;
108struct rt_rq;
109
Mike Galbraith35cf4e52012-08-07 05:00:13 +0200110extern struct list_head task_groups;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200111
112struct cfs_bandwidth {
113#ifdef CONFIG_CFS_BANDWIDTH
114 raw_spinlock_t lock;
115 ktime_t period;
116 u64 quota, runtime;
117 s64 hierarchal_quota;
118 u64 runtime_expires;
119
120 int idle, timer_active;
121 struct hrtimer period_timer, slack_timer;
122 struct list_head throttled_cfs_rq;
123
124 /* statistics */
125 int nr_periods, nr_throttled;
126 u64 throttled_time;
127#endif
128};
129
130/* task group related information */
131struct task_group {
132 struct cgroup_subsys_state css;
133
134#ifdef CONFIG_FAIR_GROUP_SCHED
135 /* schedulable entities of this group on each cpu */
136 struct sched_entity **se;
137 /* runqueue "owned" by this group on each cpu */
138 struct cfs_rq **cfs_rq;
139 unsigned long shares;
140
141 atomic_t load_weight;
Paul Turnerc566e8e2012-10-04 13:18:30 +0200142 atomic64_t load_avg;
Paul Turnerbb17f652012-10-04 13:18:31 +0200143 atomic_t runnable_avg;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200144#endif
145
146#ifdef CONFIG_RT_GROUP_SCHED
147 struct sched_rt_entity **rt_se;
148 struct rt_rq **rt_rq;
149
150 struct rt_bandwidth rt_bandwidth;
151#endif
152
153 struct rcu_head rcu;
154 struct list_head list;
155
156 struct task_group *parent;
157 struct list_head siblings;
158 struct list_head children;
159
160#ifdef CONFIG_SCHED_AUTOGROUP
161 struct autogroup *autogroup;
162#endif
163
164 struct cfs_bandwidth cfs_bandwidth;
165};
166
167#ifdef CONFIG_FAIR_GROUP_SCHED
168#define ROOT_TASK_GROUP_LOAD NICE_0_LOAD
169
170/*
171 * A weight of 0 or 1 can cause arithmetics problems.
172 * A weight of a cfs_rq is the sum of weights of which entities
173 * are queued on this cfs_rq, so a weight of a entity should not be
174 * too large, so as the shares value of a task group.
175 * (The default weight is 1024 - so there's no practical
176 * limitation from this.)
177 */
178#define MIN_SHARES (1UL << 1)
179#define MAX_SHARES (1UL << 18)
180#endif
181
182/* Default task group.
183 * Every task in system belong to this group at bootup.
184 */
185extern struct task_group root_task_group;
186
187typedef int (*tg_visitor)(struct task_group *, void *);
188
189extern int walk_tg_tree_from(struct task_group *from,
190 tg_visitor down, tg_visitor up, void *data);
191
192/*
193 * Iterate the full tree, calling @down when first entering a node and @up when
194 * leaving it for the final time.
195 *
196 * Caller must hold rcu_lock or sufficient equivalent.
197 */
198static inline int walk_tg_tree(tg_visitor down, tg_visitor up, void *data)
199{
200 return walk_tg_tree_from(&root_task_group, down, up, data);
201}
202
203extern int tg_nop(struct task_group *tg, void *data);
204
205extern void free_fair_sched_group(struct task_group *tg);
206extern int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent);
207extern void unregister_fair_sched_group(struct task_group *tg, int cpu);
208extern void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq,
209 struct sched_entity *se, int cpu,
210 struct sched_entity *parent);
211extern void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b);
212extern int sched_group_set_shares(struct task_group *tg, unsigned long shares);
213
214extern void __refill_cfs_bandwidth_runtime(struct cfs_bandwidth *cfs_b);
215extern void __start_cfs_bandwidth(struct cfs_bandwidth *cfs_b);
216extern void unthrottle_cfs_rq(struct cfs_rq *cfs_rq);
217
218extern void free_rt_sched_group(struct task_group *tg);
219extern int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent);
220extern void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq,
221 struct sched_rt_entity *rt_se, int cpu,
222 struct sched_rt_entity *parent);
223
224#else /* CONFIG_CGROUP_SCHED */
225
226struct cfs_bandwidth { };
227
228#endif /* CONFIG_CGROUP_SCHED */
229
230/* CFS-related fields in a runqueue */
231struct cfs_rq {
232 struct load_weight load;
Peter Zijlstrac82513e2012-04-26 13:12:27 +0200233 unsigned int nr_running, h_nr_running;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200234
235 u64 exec_clock;
236 u64 min_vruntime;
237#ifndef CONFIG_64BIT
238 u64 min_vruntime_copy;
239#endif
240
241 struct rb_root tasks_timeline;
242 struct rb_node *rb_leftmost;
243
Peter Zijlstra029632f2011-10-25 10:00:11 +0200244 /*
245 * 'curr' points to currently running entity on this cfs_rq.
246 * It is set to NULL otherwise (i.e when none are currently running).
247 */
248 struct sched_entity *curr, *next, *last, *skip;
249
250#ifdef CONFIG_SCHED_DEBUG
251 unsigned int nr_spread_over;
252#endif
253
Paul Turner2dac7542012-10-04 13:18:30 +0200254#ifdef CONFIG_SMP
Paul Turnerf4e26b12012-10-04 13:18:32 +0200255/*
256 * Load-tracking only depends on SMP, FAIR_GROUP_SCHED dependency below may be
257 * removed when useful for applications beyond shares distribution (e.g.
258 * load-balance).
259 */
260#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Turner2dac7542012-10-04 13:18:30 +0200261 /*
262 * CFS Load tracking
263 * Under CFS, load is tracked on a per-entity basis and aggregated up.
264 * This allows for the description of both thread and group usage (in
265 * the FAIR_GROUP_SCHED case).
266 */
Paul Turner9ee474f2012-10-04 13:18:30 +0200267 u64 runnable_load_avg, blocked_load_avg;
Paul Turneraff3e492012-10-04 13:18:30 +0200268 atomic64_t decay_counter, removed_load;
Paul Turner9ee474f2012-10-04 13:18:30 +0200269 u64 last_decay;
Paul Turnerf4e26b12012-10-04 13:18:32 +0200270#endif /* CONFIG_FAIR_GROUP_SCHED */
271/* These always depend on CONFIG_FAIR_GROUP_SCHED */
Paul Turnerc566e8e2012-10-04 13:18:30 +0200272#ifdef CONFIG_FAIR_GROUP_SCHED
Paul Turnerbb17f652012-10-04 13:18:31 +0200273 u32 tg_runnable_contrib;
Paul Turnerc566e8e2012-10-04 13:18:30 +0200274 u64 tg_load_contrib;
Paul Turner82958362012-10-04 13:18:31 +0200275#endif /* CONFIG_FAIR_GROUP_SCHED */
276
277 /*
278 * h_load = weight * f(tg)
279 *
280 * Where f(tg) is the recursive weight fraction assigned to
281 * this group.
282 */
283 unsigned long h_load;
284#endif /* CONFIG_SMP */
285
Peter Zijlstra029632f2011-10-25 10:00:11 +0200286#ifdef CONFIG_FAIR_GROUP_SCHED
287 struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */
288
289 /*
290 * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in
291 * a hierarchy). Non-leaf lrqs hold other higher schedulable entities
292 * (like users, containers etc.)
293 *
294 * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This
295 * list is used during load balance.
296 */
297 int on_list;
298 struct list_head leaf_cfs_rq_list;
299 struct task_group *tg; /* group that "owns" this runqueue */
300
Peter Zijlstra029632f2011-10-25 10:00:11 +0200301#ifdef CONFIG_CFS_BANDWIDTH
302 int runtime_enabled;
303 u64 runtime_expires;
304 s64 runtime_remaining;
305
Paul Turnerf1b17282012-10-04 13:18:31 +0200306 u64 throttled_clock, throttled_clock_task;
307 u64 throttled_clock_task_time;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200308 int throttled, throttle_count;
309 struct list_head throttled_list;
310#endif /* CONFIG_CFS_BANDWIDTH */
311#endif /* CONFIG_FAIR_GROUP_SCHED */
312};
313
314static inline int rt_bandwidth_enabled(void)
315{
316 return sysctl_sched_rt_runtime >= 0;
317}
318
319/* Real-Time classes' related field in a runqueue: */
320struct rt_rq {
321 struct rt_prio_array active;
Peter Zijlstrac82513e2012-04-26 13:12:27 +0200322 unsigned int rt_nr_running;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200323#if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED
324 struct {
325 int curr; /* highest queued rt task prio */
326#ifdef CONFIG_SMP
327 int next; /* next highest */
328#endif
329 } highest_prio;
330#endif
331#ifdef CONFIG_SMP
332 unsigned long rt_nr_migratory;
333 unsigned long rt_nr_total;
334 int overloaded;
335 struct plist_head pushable_tasks;
336#endif
337 int rt_throttled;
338 u64 rt_time;
339 u64 rt_runtime;
340 /* Nests inside the rq lock: */
341 raw_spinlock_t rt_runtime_lock;
342
343#ifdef CONFIG_RT_GROUP_SCHED
344 unsigned long rt_nr_boosted;
345
346 struct rq *rq;
347 struct list_head leaf_rt_rq_list;
348 struct task_group *tg;
349#endif
350};
351
352#ifdef CONFIG_SMP
353
354/*
355 * We add the notion of a root-domain which will be used to define per-domain
356 * variables. Each exclusive cpuset essentially defines an island domain by
357 * fully partitioning the member cpus from any other cpuset. Whenever a new
358 * exclusive cpuset is created, we also create and attach a new root-domain
359 * object.
360 *
361 */
362struct root_domain {
363 atomic_t refcount;
364 atomic_t rto_count;
365 struct rcu_head rcu;
366 cpumask_var_t span;
367 cpumask_var_t online;
368
369 /*
370 * The "RT overload" flag: it gets set if a CPU has more than
371 * one runnable RT task.
372 */
373 cpumask_var_t rto_mask;
374 struct cpupri cpupri;
375};
376
377extern struct root_domain def_root_domain;
378
379#endif /* CONFIG_SMP */
380
381/*
382 * This is the main, per-CPU runqueue data structure.
383 *
384 * Locking rule: those places that want to lock multiple runqueues
385 * (such as the load balancing or the thread migration code), lock
386 * acquire operations must be ordered by ascending &runqueue.
387 */
388struct rq {
389 /* runqueue lock: */
390 raw_spinlock_t lock;
391
392 /*
393 * nr_running and cpu_load should be in the same cacheline because
394 * remote CPUs use both these fields when doing load calculation.
395 */
Peter Zijlstrac82513e2012-04-26 13:12:27 +0200396 unsigned int nr_running;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200397 #define CPU_LOAD_IDX_MAX 5
398 unsigned long cpu_load[CPU_LOAD_IDX_MAX];
399 unsigned long last_load_update_tick;
400#ifdef CONFIG_NO_HZ
401 u64 nohz_stamp;
Suresh Siddha1c792db2011-12-01 17:07:32 -0800402 unsigned long nohz_flags;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200403#endif
404 int skip_clock_update;
405
406 /* capture load from *all* tasks on this cpu: */
407 struct load_weight load;
408 unsigned long nr_load_updates;
409 u64 nr_switches;
410
411 struct cfs_rq cfs;
412 struct rt_rq rt;
413
414#ifdef CONFIG_FAIR_GROUP_SCHED
415 /* list of leaf cfs_rq on this cpu: */
416 struct list_head leaf_cfs_rq_list;
Peter Zijlstraa35b6462012-08-08 21:46:40 +0200417#ifdef CONFIG_SMP
418 unsigned long h_load_throttle;
419#endif /* CONFIG_SMP */
420#endif /* CONFIG_FAIR_GROUP_SCHED */
421
Peter Zijlstra029632f2011-10-25 10:00:11 +0200422#ifdef CONFIG_RT_GROUP_SCHED
423 struct list_head leaf_rt_rq_list;
424#endif
425
426 /*
427 * This is part of a global counter where only the total sum
428 * over all CPUs matters. A task can increase this counter on
429 * one CPU and if it got migrated afterwards it may decrease
430 * it on another CPU. Always updated under the runqueue lock:
431 */
432 unsigned long nr_uninterruptible;
433
434 struct task_struct *curr, *idle, *stop;
435 unsigned long next_balance;
436 struct mm_struct *prev_mm;
437
438 u64 clock;
439 u64 clock_task;
440
441 atomic_t nr_iowait;
442
443#ifdef CONFIG_SMP
444 struct root_domain *rd;
445 struct sched_domain *sd;
446
447 unsigned long cpu_power;
448
449 unsigned char idle_balance;
450 /* For active balancing */
451 int post_schedule;
452 int active_balance;
453 int push_cpu;
454 struct cpu_stop_work active_balance_work;
455 /* cpu of this runqueue: */
456 int cpu;
457 int online;
458
Peter Zijlstra367456c2012-02-20 21:49:09 +0100459 struct list_head cfs_tasks;
460
Peter Zijlstra029632f2011-10-25 10:00:11 +0200461 u64 rt_avg;
462 u64 age_stamp;
463 u64 idle_stamp;
464 u64 avg_idle;
465#endif
466
467#ifdef CONFIG_IRQ_TIME_ACCOUNTING
468 u64 prev_irq_time;
469#endif
470#ifdef CONFIG_PARAVIRT
471 u64 prev_steal_time;
472#endif
473#ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING
474 u64 prev_steal_time_rq;
475#endif
476
477 /* calc_load related fields */
478 unsigned long calc_load_update;
479 long calc_load_active;
480
481#ifdef CONFIG_SCHED_HRTICK
482#ifdef CONFIG_SMP
483 int hrtick_csd_pending;
484 struct call_single_data hrtick_csd;
485#endif
486 struct hrtimer hrtick_timer;
487#endif
488
489#ifdef CONFIG_SCHEDSTATS
490 /* latency stats */
491 struct sched_info rq_sched_info;
492 unsigned long long rq_cpu_time;
493 /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */
494
495 /* sys_sched_yield() stats */
496 unsigned int yld_count;
497
498 /* schedule() stats */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200499 unsigned int sched_count;
500 unsigned int sched_goidle;
501
502 /* try_to_wake_up() stats */
503 unsigned int ttwu_count;
504 unsigned int ttwu_local;
505#endif
506
507#ifdef CONFIG_SMP
508 struct llist_head wake_list;
509#endif
Ben Segall18bf2802012-10-04 12:51:20 +0200510
511 struct sched_avg avg;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200512};
513
514static inline int cpu_of(struct rq *rq)
515{
516#ifdef CONFIG_SMP
517 return rq->cpu;
518#else
519 return 0;
520#endif
521}
522
523DECLARE_PER_CPU(struct rq, runqueues);
524
Peter Zijlstra518cd622011-12-07 15:07:31 +0100525#define cpu_rq(cpu) (&per_cpu(runqueues, (cpu)))
526#define this_rq() (&__get_cpu_var(runqueues))
527#define task_rq(p) cpu_rq(task_cpu(p))
528#define cpu_curr(cpu) (cpu_rq(cpu)->curr)
529#define raw_rq() (&__raw_get_cpu_var(runqueues))
530
531#ifdef CONFIG_SMP
532
Peter Zijlstra029632f2011-10-25 10:00:11 +0200533#define rcu_dereference_check_sched_domain(p) \
534 rcu_dereference_check((p), \
535 lockdep_is_held(&sched_domains_mutex))
536
537/*
538 * The domain tree (rq->sd) is protected by RCU's quiescent state transition.
539 * See detach_destroy_domains: synchronize_sched for details.
540 *
541 * The domain tree of any CPU may only be accessed from within
542 * preempt-disabled sections.
543 */
544#define for_each_domain(cpu, __sd) \
Peter Zijlstra518cd622011-12-07 15:07:31 +0100545 for (__sd = rcu_dereference_check_sched_domain(cpu_rq(cpu)->sd); \
546 __sd; __sd = __sd->parent)
Peter Zijlstra029632f2011-10-25 10:00:11 +0200547
Suresh Siddha77e81362011-11-17 11:08:23 -0800548#define for_each_lower_domain(sd) for (; sd; sd = sd->child)
549
Peter Zijlstra518cd622011-12-07 15:07:31 +0100550/**
551 * highest_flag_domain - Return highest sched_domain containing flag.
552 * @cpu: The cpu whose highest level of sched domain is to
553 * be returned.
554 * @flag: The flag to check for the highest sched_domain
555 * for the given cpu.
556 *
557 * Returns the highest sched_domain of a cpu which contains the given flag.
558 */
559static inline struct sched_domain *highest_flag_domain(int cpu, int flag)
560{
561 struct sched_domain *sd, *hsd = NULL;
562
563 for_each_domain(cpu, sd) {
564 if (!(sd->flags & flag))
565 break;
566 hsd = sd;
567 }
568
569 return hsd;
570}
571
572DECLARE_PER_CPU(struct sched_domain *, sd_llc);
573DECLARE_PER_CPU(int, sd_llc_id);
574
Li Zefan5e6521e2013-03-05 16:06:23 +0800575struct sched_group_power {
576 atomic_t ref;
577 /*
578 * CPU power of this group, SCHED_LOAD_SCALE being max power for a
579 * single CPU.
580 */
581 unsigned int power, power_orig;
582 unsigned long next_update;
583 /*
584 * Number of busy cpus in this group.
585 */
586 atomic_t nr_busy_cpus;
587
588 unsigned long cpumask[0]; /* iteration mask */
589};
590
591struct sched_group {
592 struct sched_group *next; /* Must be a circular list */
593 atomic_t ref;
594
595 unsigned int group_weight;
596 struct sched_group_power *sgp;
597
598 /*
599 * The CPUs this group covers.
600 *
601 * NOTE: this field is variable length. (Allocated dynamically
602 * by attaching extra space to the end of the structure,
603 * depending on how many CPUs the kernel has booted up with)
604 */
605 unsigned long cpumask[0];
606};
607
608static inline struct cpumask *sched_group_cpus(struct sched_group *sg)
609{
610 return to_cpumask(sg->cpumask);
611}
612
613/*
614 * cpumask masking which cpus in the group are allowed to iterate up the domain
615 * tree.
616 */
617static inline struct cpumask *sched_group_mask(struct sched_group *sg)
618{
619 return to_cpumask(sg->sgp->cpumask);
620}
621
622/**
623 * group_first_cpu - Returns the first cpu in the cpumask of a sched_group.
624 * @group: The group whose first cpu is to be returned.
625 */
626static inline unsigned int group_first_cpu(struct sched_group *group)
627{
628 return cpumask_first(sched_group_cpus(group));
629}
630
Peter Zijlstrac1174872012-05-31 14:47:33 +0200631extern int group_balance_cpu(struct sched_group *sg);
632
Peter Zijlstra518cd622011-12-07 15:07:31 +0100633#endif /* CONFIG_SMP */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200634
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100635#include "stats.h"
636#include "auto_group.h"
Peter Zijlstra029632f2011-10-25 10:00:11 +0200637
638#ifdef CONFIG_CGROUP_SCHED
639
640/*
641 * Return the group to which this tasks belongs.
642 *
Peter Zijlstra8323f262012-06-22 13:36:05 +0200643 * We cannot use task_subsys_state() and friends because the cgroup
644 * subsystem changes that value before the cgroup_subsys::attach() method
645 * is called, therefore we cannot pin it and might observe the wrong value.
646 *
647 * The same is true for autogroup's p->signal->autogroup->tg, the autogroup
648 * core changes this before calling sched_move_task().
649 *
650 * Instead we use a 'copy' which is updated from sched_move_task() while
651 * holding both task_struct::pi_lock and rq::lock.
Peter Zijlstra029632f2011-10-25 10:00:11 +0200652 */
653static inline struct task_group *task_group(struct task_struct *p)
654{
Peter Zijlstra8323f262012-06-22 13:36:05 +0200655 return p->sched_task_group;
Peter Zijlstra029632f2011-10-25 10:00:11 +0200656}
657
658/* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */
659static inline void set_task_rq(struct task_struct *p, unsigned int cpu)
660{
661#if defined(CONFIG_FAIR_GROUP_SCHED) || defined(CONFIG_RT_GROUP_SCHED)
662 struct task_group *tg = task_group(p);
663#endif
664
665#ifdef CONFIG_FAIR_GROUP_SCHED
666 p->se.cfs_rq = tg->cfs_rq[cpu];
667 p->se.parent = tg->se[cpu];
668#endif
669
670#ifdef CONFIG_RT_GROUP_SCHED
671 p->rt.rt_rq = tg->rt_rq[cpu];
672 p->rt.parent = tg->rt_se[cpu];
673#endif
674}
675
676#else /* CONFIG_CGROUP_SCHED */
677
678static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { }
679static inline struct task_group *task_group(struct task_struct *p)
680{
681 return NULL;
682}
683
684#endif /* CONFIG_CGROUP_SCHED */
685
686static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu)
687{
688 set_task_rq(p, cpu);
689#ifdef CONFIG_SMP
690 /*
691 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be
692 * successfuly executed on another CPU. We must ensure that updates of
693 * per-task data have been completed by this moment.
694 */
695 smp_wmb();
696 task_thread_info(p)->cpu = cpu;
697#endif
698}
699
700/*
701 * Tunables that become constants when CONFIG_SCHED_DEBUG is off:
702 */
703#ifdef CONFIG_SCHED_DEBUG
Ingo Molnarc5905af2012-02-24 08:31:31 +0100704# include <linux/static_key.h>
Peter Zijlstra029632f2011-10-25 10:00:11 +0200705# define const_debug __read_mostly
706#else
707# define const_debug const
708#endif
709
710extern const_debug unsigned int sysctl_sched_features;
711
712#define SCHED_FEAT(name, enabled) \
713 __SCHED_FEAT_##name ,
714
715enum {
Peter Zijlstra391e43d2011-11-15 17:14:39 +0100716#include "features.h"
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200717 __SCHED_FEAT_NR,
Peter Zijlstra029632f2011-10-25 10:00:11 +0200718};
719
720#undef SCHED_FEAT
721
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200722#if defined(CONFIG_SCHED_DEBUG) && defined(HAVE_JUMP_LABEL)
Ingo Molnarc5905af2012-02-24 08:31:31 +0100723static __always_inline bool static_branch__true(struct static_key *key)
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200724{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100725 return static_key_true(key); /* Not out of line branch. */
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200726}
727
Ingo Molnarc5905af2012-02-24 08:31:31 +0100728static __always_inline bool static_branch__false(struct static_key *key)
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200729{
Ingo Molnarc5905af2012-02-24 08:31:31 +0100730 return static_key_false(key); /* Out of line branch. */
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200731}
732
733#define SCHED_FEAT(name, enabled) \
Ingo Molnarc5905af2012-02-24 08:31:31 +0100734static __always_inline bool static_branch_##name(struct static_key *key) \
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200735{ \
736 return static_branch__##enabled(key); \
737}
738
739#include "features.h"
740
741#undef SCHED_FEAT
742
Ingo Molnarc5905af2012-02-24 08:31:31 +0100743extern struct static_key sched_feat_keys[__SCHED_FEAT_NR];
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200744#define sched_feat(x) (static_branch_##x(&sched_feat_keys[__SCHED_FEAT_##x]))
745#else /* !(SCHED_DEBUG && HAVE_JUMP_LABEL) */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200746#define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x))
Peter Zijlstraf8b6d1c2011-07-06 14:20:14 +0200747#endif /* SCHED_DEBUG && HAVE_JUMP_LABEL */
Peter Zijlstra029632f2011-10-25 10:00:11 +0200748
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200749#ifdef CONFIG_NUMA_BALANCING
750#define sched_feat_numa(x) sched_feat(x)
Mel Gorman3105b862012-11-23 11:23:49 +0000751#ifdef CONFIG_SCHED_DEBUG
752#define numabalancing_enabled sched_feat_numa(NUMA)
753#else
754extern bool numabalancing_enabled;
755#endif /* CONFIG_SCHED_DEBUG */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200756#else
757#define sched_feat_numa(x) (0)
Mel Gorman3105b862012-11-23 11:23:49 +0000758#define numabalancing_enabled (0)
759#endif /* CONFIG_NUMA_BALANCING */
Peter Zijlstracbee9f82012-10-25 14:16:43 +0200760
Peter Zijlstra029632f2011-10-25 10:00:11 +0200761static inline u64 global_rt_period(void)
762{
763 return (u64)sysctl_sched_rt_period * NSEC_PER_USEC;
764}
765
766static inline u64 global_rt_runtime(void)
767{
768 if (sysctl_sched_rt_runtime < 0)
769 return RUNTIME_INF;
770
771 return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC;
772}
773
774
775
776static inline int task_current(struct rq *rq, struct task_struct *p)
777{
778 return rq->curr == p;
779}
780
781static inline int task_running(struct rq *rq, struct task_struct *p)
782{
783#ifdef CONFIG_SMP
784 return p->on_cpu;
785#else
786 return task_current(rq, p);
787#endif
788}
789
790
791#ifndef prepare_arch_switch
792# define prepare_arch_switch(next) do { } while (0)
793#endif
794#ifndef finish_arch_switch
795# define finish_arch_switch(prev) do { } while (0)
796#endif
Catalin Marinas01f23e12011-11-27 21:43:10 +0000797#ifndef finish_arch_post_lock_switch
798# define finish_arch_post_lock_switch() do { } while (0)
799#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +0200800
801#ifndef __ARCH_WANT_UNLOCKED_CTXSW
802static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
803{
804#ifdef CONFIG_SMP
805 /*
806 * We can optimise this out completely for !SMP, because the
807 * SMP rebalancing from interrupt is the only thing that cares
808 * here.
809 */
810 next->on_cpu = 1;
811#endif
812}
813
814static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
815{
816#ifdef CONFIG_SMP
817 /*
818 * After ->on_cpu is cleared, the task can be moved to a different CPU.
819 * We must ensure this doesn't happen until the switch is completely
820 * finished.
821 */
822 smp_wmb();
823 prev->on_cpu = 0;
824#endif
825#ifdef CONFIG_DEBUG_SPINLOCK
826 /* this is a valid case when another task releases the spinlock */
827 rq->lock.owner = current;
828#endif
829 /*
830 * If we are tracking spinlock dependencies then we have to
831 * fix up the runqueue lock - which gets 'carried over' from
832 * prev into current:
833 */
834 spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_);
835
836 raw_spin_unlock_irq(&rq->lock);
837}
838
839#else /* __ARCH_WANT_UNLOCKED_CTXSW */
840static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next)
841{
842#ifdef CONFIG_SMP
843 /*
844 * We can optimise this out completely for !SMP, because the
845 * SMP rebalancing from interrupt is the only thing that cares
846 * here.
847 */
848 next->on_cpu = 1;
849#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +0200850 raw_spin_unlock(&rq->lock);
Peter Zijlstra029632f2011-10-25 10:00:11 +0200851}
852
853static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev)
854{
855#ifdef CONFIG_SMP
856 /*
857 * After ->on_cpu is cleared, the task can be moved to a different CPU.
858 * We must ensure this doesn't happen until the switch is completely
859 * finished.
860 */
861 smp_wmb();
862 prev->on_cpu = 0;
863#endif
Peter Zijlstra029632f2011-10-25 10:00:11 +0200864 local_irq_enable();
Peter Zijlstra029632f2011-10-25 10:00:11 +0200865}
866#endif /* __ARCH_WANT_UNLOCKED_CTXSW */
867
Li Zefanb13095f2013-03-05 16:06:38 +0800868/*
869 * wake flags
870 */
871#define WF_SYNC 0x01 /* waker goes to sleep after wakeup */
872#define WF_FORK 0x02 /* child wakeup after fork */
873#define WF_MIGRATED 0x4 /* internal use, task got migrated */
874
Peter Zijlstra029632f2011-10-25 10:00:11 +0200875static inline void update_load_add(struct load_weight *lw, unsigned long inc)
876{
877 lw->weight += inc;
878 lw->inv_weight = 0;
879}
880
881static inline void update_load_sub(struct load_weight *lw, unsigned long dec)
882{
883 lw->weight -= dec;
884 lw->inv_weight = 0;
885}
886
887static inline void update_load_set(struct load_weight *lw, unsigned long w)
888{
889 lw->weight = w;
890 lw->inv_weight = 0;
891}
892
893/*
894 * To aid in avoiding the subversion of "niceness" due to uneven distribution
895 * of tasks with abnormal "nice" values across CPUs the contribution that
896 * each task makes to its run queue's load is weighted according to its
897 * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a
898 * scaled version of the new time slice allocation that they receive on time
899 * slice expiry etc.
900 */
901
902#define WEIGHT_IDLEPRIO 3
903#define WMULT_IDLEPRIO 1431655765
904
905/*
906 * Nice levels are multiplicative, with a gentle 10% change for every
907 * nice level changed. I.e. when a CPU-bound task goes from nice 0 to
908 * nice 1, it will get ~10% less CPU time than another CPU-bound task
909 * that remained on nice 0.
910 *
911 * The "10% effect" is relative and cumulative: from _any_ nice level,
912 * if you go up 1 level, it's -10% CPU usage, if you go down 1 level
913 * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25.
914 * If a task goes up by ~10% and another task goes down by ~10% then
915 * the relative distance between them is ~25%.)
916 */
917static const int prio_to_weight[40] = {
918 /* -20 */ 88761, 71755, 56483, 46273, 36291,
919 /* -15 */ 29154, 23254, 18705, 14949, 11916,
920 /* -10 */ 9548, 7620, 6100, 4904, 3906,
921 /* -5 */ 3121, 2501, 1991, 1586, 1277,
922 /* 0 */ 1024, 820, 655, 526, 423,
923 /* 5 */ 335, 272, 215, 172, 137,
924 /* 10 */ 110, 87, 70, 56, 45,
925 /* 15 */ 36, 29, 23, 18, 15,
926};
927
928/*
929 * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated.
930 *
931 * In cases where the weight does not change often, we can use the
932 * precalculated inverse to speed up arithmetics by turning divisions
933 * into multiplications:
934 */
935static const u32 prio_to_wmult[40] = {
936 /* -20 */ 48388, 59856, 76040, 92818, 118348,
937 /* -15 */ 147320, 184698, 229616, 287308, 360437,
938 /* -10 */ 449829, 563644, 704093, 875809, 1099582,
939 /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326,
940 /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587,
941 /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126,
942 /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717,
943 /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153,
944};
945
946/* Time spent by the tasks of the cpu accounting group executing in ... */
947enum cpuacct_stat_index {
948 CPUACCT_STAT_USER, /* ... user mode */
949 CPUACCT_STAT_SYSTEM, /* ... kernel mode */
950
951 CPUACCT_STAT_NSTATS,
952};
953
Li Zefanc82ba9f2013-03-05 16:06:55 +0800954#define ENQUEUE_WAKEUP 1
955#define ENQUEUE_HEAD 2
956#ifdef CONFIG_SMP
957#define ENQUEUE_WAKING 4 /* sched_class::task_waking was called */
958#else
959#define ENQUEUE_WAKING 0
960#endif
961
962#define DEQUEUE_SLEEP 1
963
964struct sched_class {
965 const struct sched_class *next;
966
967 void (*enqueue_task) (struct rq *rq, struct task_struct *p, int flags);
968 void (*dequeue_task) (struct rq *rq, struct task_struct *p, int flags);
969 void (*yield_task) (struct rq *rq);
970 bool (*yield_to_task) (struct rq *rq, struct task_struct *p, bool preempt);
971
972 void (*check_preempt_curr) (struct rq *rq, struct task_struct *p, int flags);
973
974 struct task_struct * (*pick_next_task) (struct rq *rq);
975 void (*put_prev_task) (struct rq *rq, struct task_struct *p);
976
977#ifdef CONFIG_SMP
978 int (*select_task_rq)(struct task_struct *p, int sd_flag, int flags);
979 void (*migrate_task_rq)(struct task_struct *p, int next_cpu);
980
981 void (*pre_schedule) (struct rq *this_rq, struct task_struct *task);
982 void (*post_schedule) (struct rq *this_rq);
983 void (*task_waking) (struct task_struct *task);
984 void (*task_woken) (struct rq *this_rq, struct task_struct *task);
985
986 void (*set_cpus_allowed)(struct task_struct *p,
987 const struct cpumask *newmask);
988
989 void (*rq_online)(struct rq *rq);
990 void (*rq_offline)(struct rq *rq);
991#endif
992
993 void (*set_curr_task) (struct rq *rq);
994 void (*task_tick) (struct rq *rq, struct task_struct *p, int queued);
995 void (*task_fork) (struct task_struct *p);
996
997 void (*switched_from) (struct rq *this_rq, struct task_struct *task);
998 void (*switched_to) (struct rq *this_rq, struct task_struct *task);
999 void (*prio_changed) (struct rq *this_rq, struct task_struct *task,
1000 int oldprio);
1001
1002 unsigned int (*get_rr_interval) (struct rq *rq,
1003 struct task_struct *task);
1004
1005#ifdef CONFIG_FAIR_GROUP_SCHED
1006 void (*task_move_group) (struct task_struct *p, int on_rq);
1007#endif
1008};
Peter Zijlstra029632f2011-10-25 10:00:11 +02001009
1010#define sched_class_highest (&stop_sched_class)
1011#define for_each_class(class) \
1012 for (class = sched_class_highest; class; class = class->next)
1013
1014extern const struct sched_class stop_sched_class;
1015extern const struct sched_class rt_sched_class;
1016extern const struct sched_class fair_sched_class;
1017extern const struct sched_class idle_sched_class;
1018
1019
1020#ifdef CONFIG_SMP
1021
1022extern void trigger_load_balance(struct rq *rq, int cpu);
1023extern void idle_balance(int this_cpu, struct rq *this_rq);
1024
1025#else /* CONFIG_SMP */
1026
1027static inline void idle_balance(int cpu, struct rq *rq)
1028{
1029}
1030
1031#endif
1032
1033extern void sysrq_sched_debug_show(void);
1034extern void sched_init_granularity(void);
1035extern void update_max_interval(void);
1036extern void update_group_power(struct sched_domain *sd, int cpu);
1037extern int update_runtime(struct notifier_block *nfb, unsigned long action, void *hcpu);
1038extern void init_sched_rt_class(void);
1039extern void init_sched_fair_class(void);
1040
1041extern void resched_task(struct task_struct *p);
1042extern void resched_cpu(int cpu);
1043
1044extern struct rt_bandwidth def_rt_bandwidth;
1045extern void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime);
1046
Peter Zijlstra556061b2012-05-11 17:31:26 +02001047extern void update_idle_cpu_load(struct rq *this_rq);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001048
1049#ifdef CONFIG_CGROUP_CPUACCT
Glauber Costa54c707e2011-11-28 14:45:19 -02001050#include <linux/cgroup.h>
1051/* track cpu usage of a group of tasks and its child groups */
1052struct cpuacct {
1053 struct cgroup_subsys_state css;
1054 /* cpuusage holds pointer to a u64-type object on every cpu */
1055 u64 __percpu *cpuusage;
1056 struct kernel_cpustat __percpu *cpustat;
1057};
1058
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02001059extern struct cgroup_subsys cpuacct_subsys;
1060extern struct cpuacct root_cpuacct;
1061
Glauber Costa54c707e2011-11-28 14:45:19 -02001062/* return cpu accounting group corresponding to this container */
1063static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp)
1064{
1065 return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id),
1066 struct cpuacct, css);
1067}
1068
1069/* return cpu accounting group to which this task belongs */
1070static inline struct cpuacct *task_ca(struct task_struct *tsk)
1071{
1072 return container_of(task_subsys_state(tsk, cpuacct_subsys_id),
1073 struct cpuacct, css);
1074}
1075
1076static inline struct cpuacct *parent_ca(struct cpuacct *ca)
1077{
1078 if (!ca || !ca->css.cgroup->parent)
1079 return NULL;
1080 return cgroup_ca(ca->css.cgroup->parent);
1081}
1082
Peter Zijlstra029632f2011-10-25 10:00:11 +02001083extern void cpuacct_charge(struct task_struct *tsk, u64 cputime);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001084#else
1085static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {}
Peter Zijlstra029632f2011-10-25 10:00:11 +02001086#endif
1087
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02001088#ifdef CONFIG_PARAVIRT
1089static inline u64 steal_ticks(u64 steal)
1090{
1091 if (unlikely(steal > NSEC_PER_SEC))
1092 return div_u64(steal, TICK_NSEC);
1093
1094 return __iter_div_u64_rem(steal, TICK_NSEC, &steal);
1095}
1096#endif
1097
Peter Zijlstra029632f2011-10-25 10:00:11 +02001098static inline void inc_nr_running(struct rq *rq)
1099{
1100 rq->nr_running++;
1101}
1102
1103static inline void dec_nr_running(struct rq *rq)
1104{
1105 rq->nr_running--;
1106}
1107
1108extern void update_rq_clock(struct rq *rq);
1109
1110extern void activate_task(struct rq *rq, struct task_struct *p, int flags);
1111extern void deactivate_task(struct rq *rq, struct task_struct *p, int flags);
1112
1113extern void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags);
1114
1115extern const_debug unsigned int sysctl_sched_time_avg;
1116extern const_debug unsigned int sysctl_sched_nr_migrate;
1117extern const_debug unsigned int sysctl_sched_migration_cost;
1118
1119static inline u64 sched_avg_period(void)
1120{
1121 return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2;
1122}
1123
Peter Zijlstra029632f2011-10-25 10:00:11 +02001124#ifdef CONFIG_SCHED_HRTICK
1125
1126/*
1127 * Use hrtick when:
1128 * - enabled by features
1129 * - hrtimer is actually high res
1130 */
1131static inline int hrtick_enabled(struct rq *rq)
1132{
1133 if (!sched_feat(HRTICK))
1134 return 0;
1135 if (!cpu_active(cpu_of(rq)))
1136 return 0;
1137 return hrtimer_is_hres_active(&rq->hrtick_timer);
1138}
1139
1140void hrtick_start(struct rq *rq, u64 delay);
1141
Mike Galbraithb39e66e2011-11-22 15:20:07 +01001142#else
1143
1144static inline int hrtick_enabled(struct rq *rq)
1145{
1146 return 0;
1147}
1148
Peter Zijlstra029632f2011-10-25 10:00:11 +02001149#endif /* CONFIG_SCHED_HRTICK */
1150
1151#ifdef CONFIG_SMP
1152extern void sched_avg_update(struct rq *rq);
1153static inline void sched_rt_avg_update(struct rq *rq, u64 rt_delta)
1154{
1155 rq->rt_avg += rt_delta;
1156 sched_avg_update(rq);
1157}
1158#else
1159static inline void sched_rt_avg_update(struct rq *rq, u64 rt_delta) { }
1160static inline void sched_avg_update(struct rq *rq) { }
1161#endif
1162
1163extern void start_bandwidth_timer(struct hrtimer *period_timer, ktime_t period);
1164
1165#ifdef CONFIG_SMP
1166#ifdef CONFIG_PREEMPT
1167
1168static inline void double_rq_lock(struct rq *rq1, struct rq *rq2);
1169
1170/*
1171 * fair double_lock_balance: Safely acquires both rq->locks in a fair
1172 * way at the expense of forcing extra atomic operations in all
1173 * invocations. This assures that the double_lock is acquired using the
1174 * same underlying policy as the spinlock_t on this architecture, which
1175 * reduces latency compared to the unfair variant below. However, it
1176 * also adds more overhead and therefore may reduce throughput.
1177 */
1178static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1179 __releases(this_rq->lock)
1180 __acquires(busiest->lock)
1181 __acquires(this_rq->lock)
1182{
1183 raw_spin_unlock(&this_rq->lock);
1184 double_rq_lock(this_rq, busiest);
1185
1186 return 1;
1187}
1188
1189#else
1190/*
1191 * Unfair double_lock_balance: Optimizes throughput at the expense of
1192 * latency by eliminating extra atomic operations when the locks are
1193 * already in proper order on entry. This favors lower cpu-ids and will
1194 * grant the double lock to lower cpus over higher ids under contention,
1195 * regardless of entry order into the function.
1196 */
1197static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest)
1198 __releases(this_rq->lock)
1199 __acquires(busiest->lock)
1200 __acquires(this_rq->lock)
1201{
1202 int ret = 0;
1203
1204 if (unlikely(!raw_spin_trylock(&busiest->lock))) {
1205 if (busiest < this_rq) {
1206 raw_spin_unlock(&this_rq->lock);
1207 raw_spin_lock(&busiest->lock);
1208 raw_spin_lock_nested(&this_rq->lock,
1209 SINGLE_DEPTH_NESTING);
1210 ret = 1;
1211 } else
1212 raw_spin_lock_nested(&busiest->lock,
1213 SINGLE_DEPTH_NESTING);
1214 }
1215 return ret;
1216}
1217
1218#endif /* CONFIG_PREEMPT */
1219
1220/*
1221 * double_lock_balance - lock the busiest runqueue, this_rq is locked already.
1222 */
1223static inline int double_lock_balance(struct rq *this_rq, struct rq *busiest)
1224{
1225 if (unlikely(!irqs_disabled())) {
1226 /* printk() doesn't work good under rq->lock */
1227 raw_spin_unlock(&this_rq->lock);
1228 BUG_ON(1);
1229 }
1230
1231 return _double_lock_balance(this_rq, busiest);
1232}
1233
1234static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest)
1235 __releases(busiest->lock)
1236{
1237 raw_spin_unlock(&busiest->lock);
1238 lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_);
1239}
1240
1241/*
1242 * double_rq_lock - safely lock two runqueues
1243 *
1244 * Note this does not disable interrupts like task_rq_lock,
1245 * you need to do so manually before calling.
1246 */
1247static inline void double_rq_lock(struct rq *rq1, struct rq *rq2)
1248 __acquires(rq1->lock)
1249 __acquires(rq2->lock)
1250{
1251 BUG_ON(!irqs_disabled());
1252 if (rq1 == rq2) {
1253 raw_spin_lock(&rq1->lock);
1254 __acquire(rq2->lock); /* Fake it out ;) */
1255 } else {
1256 if (rq1 < rq2) {
1257 raw_spin_lock(&rq1->lock);
1258 raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING);
1259 } else {
1260 raw_spin_lock(&rq2->lock);
1261 raw_spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING);
1262 }
1263 }
1264}
1265
1266/*
1267 * double_rq_unlock - safely unlock two runqueues
1268 *
1269 * Note this does not restore interrupts like task_rq_unlock,
1270 * you need to do so manually after calling.
1271 */
1272static inline void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1273 __releases(rq1->lock)
1274 __releases(rq2->lock)
1275{
1276 raw_spin_unlock(&rq1->lock);
1277 if (rq1 != rq2)
1278 raw_spin_unlock(&rq2->lock);
1279 else
1280 __release(rq2->lock);
1281}
1282
1283#else /* CONFIG_SMP */
1284
1285/*
1286 * double_rq_lock - safely lock two runqueues
1287 *
1288 * Note this does not disable interrupts like task_rq_lock,
1289 * you need to do so manually before calling.
1290 */
1291static inline void double_rq_lock(struct rq *rq1, struct rq *rq2)
1292 __acquires(rq1->lock)
1293 __acquires(rq2->lock)
1294{
1295 BUG_ON(!irqs_disabled());
1296 BUG_ON(rq1 != rq2);
1297 raw_spin_lock(&rq1->lock);
1298 __acquire(rq2->lock); /* Fake it out ;) */
1299}
1300
1301/*
1302 * double_rq_unlock - safely unlock two runqueues
1303 *
1304 * Note this does not restore interrupts like task_rq_unlock,
1305 * you need to do so manually after calling.
1306 */
1307static inline void double_rq_unlock(struct rq *rq1, struct rq *rq2)
1308 __releases(rq1->lock)
1309 __releases(rq2->lock)
1310{
1311 BUG_ON(rq1 != rq2);
1312 raw_spin_unlock(&rq1->lock);
1313 __release(rq2->lock);
1314}
1315
1316#endif
1317
1318extern struct sched_entity *__pick_first_entity(struct cfs_rq *cfs_rq);
1319extern struct sched_entity *__pick_last_entity(struct cfs_rq *cfs_rq);
1320extern void print_cfs_stats(struct seq_file *m, int cpu);
1321extern void print_rt_stats(struct seq_file *m, int cpu);
1322
1323extern void init_cfs_rq(struct cfs_rq *cfs_rq);
1324extern void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq);
Peter Zijlstra029632f2011-10-25 10:00:11 +02001325
1326extern void account_cfs_bandwidth_used(int enabled, int was_enabled);
Suresh Siddha1c792db2011-12-01 17:07:32 -08001327
1328#ifdef CONFIG_NO_HZ
1329enum rq_nohz_flag_bits {
1330 NOHZ_TICK_STOPPED,
1331 NOHZ_BALANCE_KICK,
Suresh Siddha69e1e812011-12-01 17:07:33 -08001332 NOHZ_IDLE,
Suresh Siddha1c792db2011-12-01 17:07:32 -08001333};
1334
1335#define nohz_flags(cpu) (&cpu_rq(cpu)->nohz_flags)
1336#endif
Frederic Weisbecker73fbec62012-06-16 15:57:37 +02001337
1338#ifdef CONFIG_IRQ_TIME_ACCOUNTING
1339
1340DECLARE_PER_CPU(u64, cpu_hardirq_time);
1341DECLARE_PER_CPU(u64, cpu_softirq_time);
1342
1343#ifndef CONFIG_64BIT
1344DECLARE_PER_CPU(seqcount_t, irq_time_seq);
1345
1346static inline void irq_time_write_begin(void)
1347{
1348 __this_cpu_inc(irq_time_seq.sequence);
1349 smp_wmb();
1350}
1351
1352static inline void irq_time_write_end(void)
1353{
1354 smp_wmb();
1355 __this_cpu_inc(irq_time_seq.sequence);
1356}
1357
1358static inline u64 irq_time_read(int cpu)
1359{
1360 u64 irq_time;
1361 unsigned seq;
1362
1363 do {
1364 seq = read_seqcount_begin(&per_cpu(irq_time_seq, cpu));
1365 irq_time = per_cpu(cpu_softirq_time, cpu) +
1366 per_cpu(cpu_hardirq_time, cpu);
1367 } while (read_seqcount_retry(&per_cpu(irq_time_seq, cpu), seq));
1368
1369 return irq_time;
1370}
1371#else /* CONFIG_64BIT */
1372static inline void irq_time_write_begin(void)
1373{
1374}
1375
1376static inline void irq_time_write_end(void)
1377{
1378}
1379
1380static inline u64 irq_time_read(int cpu)
1381{
1382 return per_cpu(cpu_softirq_time, cpu) + per_cpu(cpu_hardirq_time, cpu);
1383}
1384#endif /* CONFIG_64BIT */
1385#endif /* CONFIG_IRQ_TIME_ACCOUNTING */