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