diff options
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 569 |
1 files changed, 138 insertions, 431 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 260132961a99..04949089e760 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -75,9 +75,11 @@ | |||
75 | 75 | ||
76 | #include <asm/tlb.h> | 76 | #include <asm/tlb.h> |
77 | #include <asm/irq_regs.h> | 77 | #include <asm/irq_regs.h> |
78 | #include <asm/mutex.h> | ||
78 | 79 | ||
79 | #include "sched_cpupri.h" | 80 | #include "sched_cpupri.h" |
80 | #include "workqueue_sched.h" | 81 | #include "workqueue_sched.h" |
82 | #include "sched_autogroup.h" | ||
81 | 83 | ||
82 | #define CREATE_TRACE_POINTS | 84 | #define CREATE_TRACE_POINTS |
83 | #include <trace/events/sched.h> | 85 | #include <trace/events/sched.h> |
@@ -253,6 +255,8 @@ struct task_group { | |||
253 | /* runqueue "owned" by this group on each cpu */ | 255 | /* runqueue "owned" by this group on each cpu */ |
254 | struct cfs_rq **cfs_rq; | 256 | struct cfs_rq **cfs_rq; |
255 | unsigned long shares; | 257 | unsigned long shares; |
258 | |||
259 | atomic_t load_weight; | ||
256 | #endif | 260 | #endif |
257 | 261 | ||
258 | #ifdef CONFIG_RT_GROUP_SCHED | 262 | #ifdef CONFIG_RT_GROUP_SCHED |
@@ -268,24 +272,19 @@ struct task_group { | |||
268 | struct task_group *parent; | 272 | struct task_group *parent; |
269 | struct list_head siblings; | 273 | struct list_head siblings; |
270 | struct list_head children; | 274 | struct list_head children; |
275 | |||
276 | #ifdef CONFIG_SCHED_AUTOGROUP | ||
277 | struct autogroup *autogroup; | ||
278 | #endif | ||
271 | }; | 279 | }; |
272 | 280 | ||
273 | #define root_task_group init_task_group | 281 | #define root_task_group init_task_group |
274 | 282 | ||
275 | /* task_group_lock serializes add/remove of task groups and also changes to | 283 | /* task_group_lock serializes the addition/removal of task groups */ |
276 | * a task group's cpu shares. | ||
277 | */ | ||
278 | static DEFINE_SPINLOCK(task_group_lock); | 284 | static DEFINE_SPINLOCK(task_group_lock); |
279 | 285 | ||
280 | #ifdef CONFIG_FAIR_GROUP_SCHED | 286 | #ifdef CONFIG_FAIR_GROUP_SCHED |
281 | 287 | ||
282 | #ifdef CONFIG_SMP | ||
283 | static int root_task_group_empty(void) | ||
284 | { | ||
285 | return list_empty(&root_task_group.children); | ||
286 | } | ||
287 | #endif | ||
288 | |||
289 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD | 288 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD |
290 | 289 | ||
291 | /* | 290 | /* |
@@ -342,6 +341,7 @@ struct cfs_rq { | |||
342 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This | 341 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
343 | * list is used during load balance. | 342 | * list is used during load balance. |
344 | */ | 343 | */ |
344 | int on_list; | ||
345 | struct list_head leaf_cfs_rq_list; | 345 | struct list_head leaf_cfs_rq_list; |
346 | struct task_group *tg; /* group that "owns" this runqueue */ | 346 | struct task_group *tg; /* group that "owns" this runqueue */ |
347 | 347 | ||
@@ -360,14 +360,17 @@ struct cfs_rq { | |||
360 | unsigned long h_load; | 360 | unsigned long h_load; |
361 | 361 | ||
362 | /* | 362 | /* |
363 | * this cpu's part of tg->shares | 363 | * Maintaining per-cpu shares distribution for group scheduling |
364 | * | ||
365 | * load_stamp is the last time we updated the load average | ||
366 | * load_last is the last time we updated the load average and saw load | ||
367 | * load_unacc_exec_time is currently unaccounted execution time | ||
364 | */ | 368 | */ |
365 | unsigned long shares; | 369 | u64 load_avg; |
370 | u64 load_period; | ||
371 | u64 load_stamp, load_last, load_unacc_exec_time; | ||
366 | 372 | ||
367 | /* | 373 | unsigned long load_contribution; |
368 | * load.weight at the time we set shares | ||
369 | */ | ||
370 | unsigned long rq_weight; | ||
371 | #endif | 374 | #endif |
372 | #endif | 375 | #endif |
373 | }; | 376 | }; |
@@ -605,11 +608,14 @@ static inline int cpu_of(struct rq *rq) | |||
605 | */ | 608 | */ |
606 | static inline struct task_group *task_group(struct task_struct *p) | 609 | static inline struct task_group *task_group(struct task_struct *p) |
607 | { | 610 | { |
611 | struct task_group *tg; | ||
608 | struct cgroup_subsys_state *css; | 612 | struct cgroup_subsys_state *css; |
609 | 613 | ||
610 | css = task_subsys_state_check(p, cpu_cgroup_subsys_id, | 614 | css = task_subsys_state_check(p, cpu_cgroup_subsys_id, |
611 | lockdep_is_held(&task_rq(p)->lock)); | 615 | lockdep_is_held(&task_rq(p)->lock)); |
612 | return container_of(css, struct task_group, css); | 616 | tg = container_of(css, struct task_group, css); |
617 | |||
618 | return autogroup_task_group(p, tg); | ||
613 | } | 619 | } |
614 | 620 | ||
615 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ | 621 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ |
@@ -793,20 +799,6 @@ late_initcall(sched_init_debug); | |||
793 | const_debug unsigned int sysctl_sched_nr_migrate = 32; | 799 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
794 | 800 | ||
795 | /* | 801 | /* |
796 | * ratelimit for updating the group shares. | ||
797 | * default: 0.25ms | ||
798 | */ | ||
799 | unsigned int sysctl_sched_shares_ratelimit = 250000; | ||
800 | unsigned int normalized_sysctl_sched_shares_ratelimit = 250000; | ||
801 | |||
802 | /* | ||
803 | * Inject some fuzzyness into changing the per-cpu group shares | ||
804 | * this avoids remote rq-locks at the expense of fairness. | ||
805 | * default: 4 | ||
806 | */ | ||
807 | unsigned int sysctl_sched_shares_thresh = 4; | ||
808 | |||
809 | /* | ||
810 | * period over which we average the RT time consumption, measured | 802 | * period over which we average the RT time consumption, measured |
811 | * in ms. | 803 | * in ms. |
812 | * | 804 | * |
@@ -1355,6 +1347,12 @@ static inline void update_load_sub(struct load_weight *lw, unsigned long dec) | |||
1355 | lw->inv_weight = 0; | 1347 | lw->inv_weight = 0; |
1356 | } | 1348 | } |
1357 | 1349 | ||
1350 | static inline void update_load_set(struct load_weight *lw, unsigned long w) | ||
1351 | { | ||
1352 | lw->weight = w; | ||
1353 | lw->inv_weight = 0; | ||
1354 | } | ||
1355 | |||
1358 | /* | 1356 | /* |
1359 | * To aid in avoiding the subversion of "niceness" due to uneven distribution | 1357 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
1360 | * of tasks with abnormal "nice" values across CPUs the contribution that | 1358 | * of tasks with abnormal "nice" values across CPUs the contribution that |
@@ -1543,101 +1541,6 @@ static unsigned long cpu_avg_load_per_task(int cpu) | |||
1543 | 1541 | ||
1544 | #ifdef CONFIG_FAIR_GROUP_SCHED | 1542 | #ifdef CONFIG_FAIR_GROUP_SCHED |
1545 | 1543 | ||
1546 | static __read_mostly unsigned long __percpu *update_shares_data; | ||
1547 | |||
1548 | static void __set_se_shares(struct sched_entity *se, unsigned long shares); | ||
1549 | |||
1550 | /* | ||
1551 | * Calculate and set the cpu's group shares. | ||
1552 | */ | ||
1553 | static void update_group_shares_cpu(struct task_group *tg, int cpu, | ||
1554 | unsigned long sd_shares, | ||
1555 | unsigned long sd_rq_weight, | ||
1556 | unsigned long *usd_rq_weight) | ||
1557 | { | ||
1558 | unsigned long shares, rq_weight; | ||
1559 | int boost = 0; | ||
1560 | |||
1561 | rq_weight = usd_rq_weight[cpu]; | ||
1562 | if (!rq_weight) { | ||
1563 | boost = 1; | ||
1564 | rq_weight = NICE_0_LOAD; | ||
1565 | } | ||
1566 | |||
1567 | /* | ||
1568 | * \Sum_j shares_j * rq_weight_i | ||
1569 | * shares_i = ----------------------------- | ||
1570 | * \Sum_j rq_weight_j | ||
1571 | */ | ||
1572 | shares = (sd_shares * rq_weight) / sd_rq_weight; | ||
1573 | shares = clamp_t(unsigned long, shares, MIN_SHARES, MAX_SHARES); | ||
1574 | |||
1575 | if (abs(shares - tg->se[cpu]->load.weight) > | ||
1576 | sysctl_sched_shares_thresh) { | ||
1577 | struct rq *rq = cpu_rq(cpu); | ||
1578 | unsigned long flags; | ||
1579 | |||
1580 | raw_spin_lock_irqsave(&rq->lock, flags); | ||
1581 | tg->cfs_rq[cpu]->rq_weight = boost ? 0 : rq_weight; | ||
1582 | tg->cfs_rq[cpu]->shares = boost ? 0 : shares; | ||
1583 | __set_se_shares(tg->se[cpu], shares); | ||
1584 | raw_spin_unlock_irqrestore(&rq->lock, flags); | ||
1585 | } | ||
1586 | } | ||
1587 | |||
1588 | /* | ||
1589 | * Re-compute the task group their per cpu shares over the given domain. | ||
1590 | * This needs to be done in a bottom-up fashion because the rq weight of a | ||
1591 | * parent group depends on the shares of its child groups. | ||
1592 | */ | ||
1593 | static int tg_shares_up(struct task_group *tg, void *data) | ||
1594 | { | ||
1595 | unsigned long weight, rq_weight = 0, sum_weight = 0, shares = 0; | ||
1596 | unsigned long *usd_rq_weight; | ||
1597 | struct sched_domain *sd = data; | ||
1598 | unsigned long flags; | ||
1599 | int i; | ||
1600 | |||
1601 | if (!tg->se[0]) | ||
1602 | return 0; | ||
1603 | |||
1604 | local_irq_save(flags); | ||
1605 | usd_rq_weight = per_cpu_ptr(update_shares_data, smp_processor_id()); | ||
1606 | |||
1607 | for_each_cpu(i, sched_domain_span(sd)) { | ||
1608 | weight = tg->cfs_rq[i]->load.weight; | ||
1609 | usd_rq_weight[i] = weight; | ||
1610 | |||
1611 | rq_weight += weight; | ||
1612 | /* | ||
1613 | * If there are currently no tasks on the cpu pretend there | ||
1614 | * is one of average load so that when a new task gets to | ||
1615 | * run here it will not get delayed by group starvation. | ||
1616 | */ | ||
1617 | if (!weight) | ||
1618 | weight = NICE_0_LOAD; | ||
1619 | |||
1620 | sum_weight += weight; | ||
1621 | shares += tg->cfs_rq[i]->shares; | ||
1622 | } | ||
1623 | |||
1624 | if (!rq_weight) | ||
1625 | rq_weight = sum_weight; | ||
1626 | |||
1627 | if ((!shares && rq_weight) || shares > tg->shares) | ||
1628 | shares = tg->shares; | ||
1629 | |||
1630 | if (!sd->parent || !(sd->parent->flags & SD_LOAD_BALANCE)) | ||
1631 | shares = tg->shares; | ||
1632 | |||
1633 | for_each_cpu(i, sched_domain_span(sd)) | ||
1634 | update_group_shares_cpu(tg, i, shares, rq_weight, usd_rq_weight); | ||
1635 | |||
1636 | local_irq_restore(flags); | ||
1637 | |||
1638 | return 0; | ||
1639 | } | ||
1640 | |||
1641 | /* | 1544 | /* |
1642 | * Compute the cpu's hierarchical load factor for each task group. | 1545 | * Compute the cpu's hierarchical load factor for each task group. |
1643 | * This needs to be done in a top-down fashion because the load of a child | 1546 | * This needs to be done in a top-down fashion because the load of a child |
@@ -1652,7 +1555,7 @@ static int tg_load_down(struct task_group *tg, void *data) | |||
1652 | load = cpu_rq(cpu)->load.weight; | 1555 | load = cpu_rq(cpu)->load.weight; |
1653 | } else { | 1556 | } else { |
1654 | load = tg->parent->cfs_rq[cpu]->h_load; | 1557 | load = tg->parent->cfs_rq[cpu]->h_load; |
1655 | load *= tg->cfs_rq[cpu]->shares; | 1558 | load *= tg->se[cpu]->load.weight; |
1656 | load /= tg->parent->cfs_rq[cpu]->load.weight + 1; | 1559 | load /= tg->parent->cfs_rq[cpu]->load.weight + 1; |
1657 | } | 1560 | } |
1658 | 1561 | ||
@@ -1661,34 +1564,11 @@ static int tg_load_down(struct task_group *tg, void *data) | |||
1661 | return 0; | 1564 | return 0; |
1662 | } | 1565 | } |
1663 | 1566 | ||
1664 | static void update_shares(struct sched_domain *sd) | ||
1665 | { | ||
1666 | s64 elapsed; | ||
1667 | u64 now; | ||
1668 | |||
1669 | if (root_task_group_empty()) | ||
1670 | return; | ||
1671 | |||
1672 | now = local_clock(); | ||
1673 | elapsed = now - sd->last_update; | ||
1674 | |||
1675 | if (elapsed >= (s64)(u64)sysctl_sched_shares_ratelimit) { | ||
1676 | sd->last_update = now; | ||
1677 | walk_tg_tree(tg_nop, tg_shares_up, sd); | ||
1678 | } | ||
1679 | } | ||
1680 | |||
1681 | static void update_h_load(long cpu) | 1567 | static void update_h_load(long cpu) |
1682 | { | 1568 | { |
1683 | walk_tg_tree(tg_load_down, tg_nop, (void *)cpu); | 1569 | walk_tg_tree(tg_load_down, tg_nop, (void *)cpu); |
1684 | } | 1570 | } |
1685 | 1571 | ||
1686 | #else | ||
1687 | |||
1688 | static inline void update_shares(struct sched_domain *sd) | ||
1689 | { | ||
1690 | } | ||
1691 | |||
1692 | #endif | 1572 | #endif |
1693 | 1573 | ||
1694 | #ifdef CONFIG_PREEMPT | 1574 | #ifdef CONFIG_PREEMPT |
@@ -1810,15 +1690,6 @@ static void double_rq_unlock(struct rq *rq1, struct rq *rq2) | |||
1810 | 1690 | ||
1811 | #endif | 1691 | #endif |
1812 | 1692 | ||
1813 | #ifdef CONFIG_FAIR_GROUP_SCHED | ||
1814 | static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares) | ||
1815 | { | ||
1816 | #ifdef CONFIG_SMP | ||
1817 | cfs_rq->shares = shares; | ||
1818 | #endif | ||
1819 | } | ||
1820 | #endif | ||
1821 | |||
1822 | static void calc_load_account_idle(struct rq *this_rq); | 1693 | static void calc_load_account_idle(struct rq *this_rq); |
1823 | static void update_sysctl(void); | 1694 | static void update_sysctl(void); |
1824 | static int get_update_sysctl_factor(void); | 1695 | static int get_update_sysctl_factor(void); |
@@ -2063,6 +1934,7 @@ static void update_rq_clock_task(struct rq *rq, s64 delta) | |||
2063 | #include "sched_idletask.c" | 1934 | #include "sched_idletask.c" |
2064 | #include "sched_fair.c" | 1935 | #include "sched_fair.c" |
2065 | #include "sched_rt.c" | 1936 | #include "sched_rt.c" |
1937 | #include "sched_autogroup.c" | ||
2066 | #include "sched_stoptask.c" | 1938 | #include "sched_stoptask.c" |
2067 | #ifdef CONFIG_SCHED_DEBUG | 1939 | #ifdef CONFIG_SCHED_DEBUG |
2068 | # include "sched_debug.c" | 1940 | # include "sched_debug.c" |
@@ -2255,10 +2127,8 @@ static int migration_cpu_stop(void *data); | |||
2255 | * The task's runqueue lock must be held. | 2127 | * The task's runqueue lock must be held. |
2256 | * Returns true if you have to wait for migration thread. | 2128 | * Returns true if you have to wait for migration thread. |
2257 | */ | 2129 | */ |
2258 | static bool migrate_task(struct task_struct *p, int dest_cpu) | 2130 | static bool migrate_task(struct task_struct *p, struct rq *rq) |
2259 | { | 2131 | { |
2260 | struct rq *rq = task_rq(p); | ||
2261 | |||
2262 | /* | 2132 | /* |
2263 | * If the task is not on a runqueue (and not running), then | 2133 | * If the task is not on a runqueue (and not running), then |
2264 | * the next wake-up will properly place the task. | 2134 | * the next wake-up will properly place the task. |
@@ -2438,18 +2308,15 @@ static int select_fallback_rq(int cpu, struct task_struct *p) | |||
2438 | return dest_cpu; | 2308 | return dest_cpu; |
2439 | 2309 | ||
2440 | /* No more Mr. Nice Guy. */ | 2310 | /* No more Mr. Nice Guy. */ |
2441 | if (unlikely(dest_cpu >= nr_cpu_ids)) { | 2311 | dest_cpu = cpuset_cpus_allowed_fallback(p); |
2442 | dest_cpu = cpuset_cpus_allowed_fallback(p); | 2312 | /* |
2443 | /* | 2313 | * Don't tell them about moving exiting tasks or |
2444 | * Don't tell them about moving exiting tasks or | 2314 | * kernel threads (both mm NULL), since they never |
2445 | * kernel threads (both mm NULL), since they never | 2315 | * leave kernel. |
2446 | * leave kernel. | 2316 | */ |
2447 | */ | 2317 | if (p->mm && printk_ratelimit()) { |
2448 | if (p->mm && printk_ratelimit()) { | 2318 | printk(KERN_INFO "process %d (%s) no longer affine to cpu%d\n", |
2449 | printk(KERN_INFO "process %d (%s) no " | 2319 | task_pid_nr(p), p->comm, cpu); |
2450 | "longer affine to cpu%d\n", | ||
2451 | task_pid_nr(p), p->comm, cpu); | ||
2452 | } | ||
2453 | } | 2320 | } |
2454 | 2321 | ||
2455 | return dest_cpu; | 2322 | return dest_cpu; |
@@ -2785,7 +2652,9 @@ void sched_fork(struct task_struct *p, int clone_flags) | |||
2785 | /* Want to start with kernel preemption disabled. */ | 2652 | /* Want to start with kernel preemption disabled. */ |
2786 | task_thread_info(p)->preempt_count = 1; | 2653 | task_thread_info(p)->preempt_count = 1; |
2787 | #endif | 2654 | #endif |
2655 | #ifdef CONFIG_SMP | ||
2788 | plist_node_init(&p->pushable_tasks, MAX_PRIO); | 2656 | plist_node_init(&p->pushable_tasks, MAX_PRIO); |
2657 | #endif | ||
2789 | 2658 | ||
2790 | put_cpu(); | 2659 | put_cpu(); |
2791 | } | 2660 | } |
@@ -3549,7 +3418,7 @@ void sched_exec(void) | |||
3549 | * select_task_rq() can race against ->cpus_allowed | 3418 | * select_task_rq() can race against ->cpus_allowed |
3550 | */ | 3419 | */ |
3551 | if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed) && | 3420 | if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed) && |
3552 | likely(cpu_active(dest_cpu)) && migrate_task(p, dest_cpu)) { | 3421 | likely(cpu_active(dest_cpu)) && migrate_task(p, rq)) { |
3553 | struct migration_arg arg = { p, dest_cpu }; | 3422 | struct migration_arg arg = { p, dest_cpu }; |
3554 | 3423 | ||
3555 | task_rq_unlock(rq, &flags); | 3424 | task_rq_unlock(rq, &flags); |
@@ -4214,7 +4083,7 @@ int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner) | |||
4214 | if (task_thread_info(rq->curr) != owner || need_resched()) | 4083 | if (task_thread_info(rq->curr) != owner || need_resched()) |
4215 | return 0; | 4084 | return 0; |
4216 | 4085 | ||
4217 | cpu_relax(); | 4086 | arch_mutex_cpu_relax(); |
4218 | } | 4087 | } |
4219 | 4088 | ||
4220 | return 1; | 4089 | return 1; |
@@ -4526,7 +4395,7 @@ EXPORT_SYMBOL(wait_for_completion_interruptible); | |||
4526 | * This waits for either a completion of a specific task to be signaled or for a | 4395 | * This waits for either a completion of a specific task to be signaled or for a |
4527 | * specified timeout to expire. It is interruptible. The timeout is in jiffies. | 4396 | * specified timeout to expire. It is interruptible. The timeout is in jiffies. |
4528 | */ | 4397 | */ |
4529 | unsigned long __sched | 4398 | long __sched |
4530 | wait_for_completion_interruptible_timeout(struct completion *x, | 4399 | wait_for_completion_interruptible_timeout(struct completion *x, |
4531 | unsigned long timeout) | 4400 | unsigned long timeout) |
4532 | { | 4401 | { |
@@ -4559,7 +4428,7 @@ EXPORT_SYMBOL(wait_for_completion_killable); | |||
4559 | * signaled or for a specified timeout to expire. It can be | 4428 | * signaled or for a specified timeout to expire. It can be |
4560 | * interrupted by a kill signal. The timeout is in jiffies. | 4429 | * interrupted by a kill signal. The timeout is in jiffies. |
4561 | */ | 4430 | */ |
4562 | unsigned long __sched | 4431 | long __sched |
4563 | wait_for_completion_killable_timeout(struct completion *x, | 4432 | wait_for_completion_killable_timeout(struct completion *x, |
4564 | unsigned long timeout) | 4433 | unsigned long timeout) |
4565 | { | 4434 | { |
@@ -4901,7 +4770,7 @@ static bool check_same_owner(struct task_struct *p) | |||
4901 | } | 4770 | } |
4902 | 4771 | ||
4903 | static int __sched_setscheduler(struct task_struct *p, int policy, | 4772 | static int __sched_setscheduler(struct task_struct *p, int policy, |
4904 | struct sched_param *param, bool user) | 4773 | const struct sched_param *param, bool user) |
4905 | { | 4774 | { |
4906 | int retval, oldprio, oldpolicy = -1, on_rq, running; | 4775 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
4907 | unsigned long flags; | 4776 | unsigned long flags; |
@@ -5056,7 +4925,7 @@ recheck: | |||
5056 | * NOTE that the task may be already dead. | 4925 | * NOTE that the task may be already dead. |
5057 | */ | 4926 | */ |
5058 | int sched_setscheduler(struct task_struct *p, int policy, | 4927 | int sched_setscheduler(struct task_struct *p, int policy, |
5059 | struct sched_param *param) | 4928 | const struct sched_param *param) |
5060 | { | 4929 | { |
5061 | return __sched_setscheduler(p, policy, param, true); | 4930 | return __sched_setscheduler(p, policy, param, true); |
5062 | } | 4931 | } |
@@ -5074,7 +4943,7 @@ EXPORT_SYMBOL_GPL(sched_setscheduler); | |||
5074 | * but our caller might not have that capability. | 4943 | * but our caller might not have that capability. |
5075 | */ | 4944 | */ |
5076 | int sched_setscheduler_nocheck(struct task_struct *p, int policy, | 4945 | int sched_setscheduler_nocheck(struct task_struct *p, int policy, |
5077 | struct sched_param *param) | 4946 | const struct sched_param *param) |
5078 | { | 4947 | { |
5079 | return __sched_setscheduler(p, policy, param, false); | 4948 | return __sched_setscheduler(p, policy, param, false); |
5080 | } | 4949 | } |
@@ -5590,7 +5459,7 @@ void sched_show_task(struct task_struct *p) | |||
5590 | unsigned state; | 5459 | unsigned state; |
5591 | 5460 | ||
5592 | state = p->state ? __ffs(p->state) + 1 : 0; | 5461 | state = p->state ? __ffs(p->state) + 1 : 0; |
5593 | printk(KERN_INFO "%-13.13s %c", p->comm, | 5462 | printk(KERN_INFO "%-15.15s %c", p->comm, |
5594 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); | 5463 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
5595 | #if BITS_PER_LONG == 32 | 5464 | #if BITS_PER_LONG == 32 |
5596 | if (state == TASK_RUNNING) | 5465 | if (state == TASK_RUNNING) |
@@ -5754,7 +5623,6 @@ static void update_sysctl(void) | |||
5754 | SET_SYSCTL(sched_min_granularity); | 5623 | SET_SYSCTL(sched_min_granularity); |
5755 | SET_SYSCTL(sched_latency); | 5624 | SET_SYSCTL(sched_latency); |
5756 | SET_SYSCTL(sched_wakeup_granularity); | 5625 | SET_SYSCTL(sched_wakeup_granularity); |
5757 | SET_SYSCTL(sched_shares_ratelimit); | ||
5758 | #undef SET_SYSCTL | 5626 | #undef SET_SYSCTL |
5759 | } | 5627 | } |
5760 | 5628 | ||
@@ -5830,7 +5698,7 @@ again: | |||
5830 | goto out; | 5698 | goto out; |
5831 | 5699 | ||
5832 | dest_cpu = cpumask_any_and(cpu_active_mask, new_mask); | 5700 | dest_cpu = cpumask_any_and(cpu_active_mask, new_mask); |
5833 | if (migrate_task(p, dest_cpu)) { | 5701 | if (migrate_task(p, rq)) { |
5834 | struct migration_arg arg = { p, dest_cpu }; | 5702 | struct migration_arg arg = { p, dest_cpu }; |
5835 | /* Need help from migration thread: drop lock and wait. */ | 5703 | /* Need help from migration thread: drop lock and wait. */ |
5836 | task_rq_unlock(rq, &flags); | 5704 | task_rq_unlock(rq, &flags); |
@@ -5912,29 +5780,20 @@ static int migration_cpu_stop(void *data) | |||
5912 | } | 5780 | } |
5913 | 5781 | ||
5914 | #ifdef CONFIG_HOTPLUG_CPU | 5782 | #ifdef CONFIG_HOTPLUG_CPU |
5783 | |||
5915 | /* | 5784 | /* |
5916 | * Figure out where task on dead CPU should go, use force if necessary. | 5785 | * Ensures that the idle task is using init_mm right before its cpu goes |
5786 | * offline. | ||
5917 | */ | 5787 | */ |
5918 | void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p) | 5788 | void idle_task_exit(void) |
5919 | { | 5789 | { |
5920 | struct rq *rq = cpu_rq(dead_cpu); | 5790 | struct mm_struct *mm = current->active_mm; |
5921 | int needs_cpu, uninitialized_var(dest_cpu); | ||
5922 | unsigned long flags; | ||
5923 | 5791 | ||
5924 | local_irq_save(flags); | 5792 | BUG_ON(cpu_online(smp_processor_id())); |
5925 | 5793 | ||
5926 | raw_spin_lock(&rq->lock); | 5794 | if (mm != &init_mm) |
5927 | needs_cpu = (task_cpu(p) == dead_cpu) && (p->state != TASK_WAKING); | 5795 | switch_mm(mm, &init_mm, current); |
5928 | if (needs_cpu) | 5796 | mmdrop(mm); |
5929 | dest_cpu = select_fallback_rq(dead_cpu, p); | ||
5930 | raw_spin_unlock(&rq->lock); | ||
5931 | /* | ||
5932 | * It can only fail if we race with set_cpus_allowed(), | ||
5933 | * in the racer should migrate the task anyway. | ||
5934 | */ | ||
5935 | if (needs_cpu) | ||
5936 | __migrate_task(p, dead_cpu, dest_cpu); | ||
5937 | local_irq_restore(flags); | ||
5938 | } | 5797 | } |
5939 | 5798 | ||
5940 | /* | 5799 | /* |
@@ -5947,128 +5806,69 @@ void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p) | |||
5947 | static void migrate_nr_uninterruptible(struct rq *rq_src) | 5806 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
5948 | { | 5807 | { |
5949 | struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask)); | 5808 | struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask)); |
5950 | unsigned long flags; | ||
5951 | 5809 | ||
5952 | local_irq_save(flags); | ||
5953 | double_rq_lock(rq_src, rq_dest); | ||
5954 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; | 5810 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
5955 | rq_src->nr_uninterruptible = 0; | 5811 | rq_src->nr_uninterruptible = 0; |
5956 | double_rq_unlock(rq_src, rq_dest); | ||
5957 | local_irq_restore(flags); | ||
5958 | } | ||
5959 | |||
5960 | /* Run through task list and migrate tasks from the dead cpu. */ | ||
5961 | static void migrate_live_tasks(int src_cpu) | ||
5962 | { | ||
5963 | struct task_struct *p, *t; | ||
5964 | |||
5965 | read_lock(&tasklist_lock); | ||
5966 | |||
5967 | do_each_thread(t, p) { | ||
5968 | if (p == current) | ||
5969 | continue; | ||
5970 | |||
5971 | if (task_cpu(p) == src_cpu) | ||
5972 | move_task_off_dead_cpu(src_cpu, p); | ||
5973 | } while_each_thread(t, p); | ||
5974 | |||
5975 | read_unlock(&tasklist_lock); | ||
5976 | } | 5812 | } |
5977 | 5813 | ||
5978 | /* | 5814 | /* |
5979 | * Schedules idle task to be the next runnable task on current CPU. | 5815 | * remove the tasks which were accounted by rq from calc_load_tasks. |
5980 | * It does so by boosting its priority to highest possible. | ||
5981 | * Used by CPU offline code. | ||
5982 | */ | 5816 | */ |
5983 | void sched_idle_next(void) | 5817 | static void calc_global_load_remove(struct rq *rq) |
5984 | { | 5818 | { |
5985 | int this_cpu = smp_processor_id(); | 5819 | atomic_long_sub(rq->calc_load_active, &calc_load_tasks); |
5986 | struct rq *rq = cpu_rq(this_cpu); | 5820 | rq->calc_load_active = 0; |
5987 | struct task_struct *p = rq->idle; | ||
5988 | unsigned long flags; | ||
5989 | |||
5990 | /* cpu has to be offline */ | ||
5991 | BUG_ON(cpu_online(this_cpu)); | ||
5992 | |||
5993 | /* | ||
5994 | * Strictly not necessary since rest of the CPUs are stopped by now | ||
5995 | * and interrupts disabled on the current cpu. | ||
5996 | */ | ||
5997 | raw_spin_lock_irqsave(&rq->lock, flags); | ||
5998 | |||
5999 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); | ||
6000 | |||
6001 | activate_task(rq, p, 0); | ||
6002 | |||
6003 | raw_spin_unlock_irqrestore(&rq->lock, flags); | ||
6004 | } | 5821 | } |
6005 | 5822 | ||
6006 | /* | 5823 | /* |
6007 | * Ensures that the idle task is using init_mm right before its cpu goes | 5824 | * Migrate all tasks from the rq, sleeping tasks will be migrated by |
6008 | * offline. | 5825 | * try_to_wake_up()->select_task_rq(). |
5826 | * | ||
5827 | * Called with rq->lock held even though we'er in stop_machine() and | ||
5828 | * there's no concurrency possible, we hold the required locks anyway | ||
5829 | * because of lock validation efforts. | ||
6009 | */ | 5830 | */ |
6010 | void idle_task_exit(void) | 5831 | static void migrate_tasks(unsigned int dead_cpu) |
6011 | { | ||
6012 | struct mm_struct *mm = current->active_mm; | ||
6013 | |||
6014 | BUG_ON(cpu_online(smp_processor_id())); | ||
6015 | |||
6016 | if (mm != &init_mm) | ||
6017 | switch_mm(mm, &init_mm, current); | ||
6018 | mmdrop(mm); | ||
6019 | } | ||
6020 | |||
6021 | /* called under rq->lock with disabled interrupts */ | ||
6022 | static void migrate_dead(unsigned int dead_cpu, struct task_struct *p) | ||
6023 | { | 5832 | { |
6024 | struct rq *rq = cpu_rq(dead_cpu); | 5833 | struct rq *rq = cpu_rq(dead_cpu); |
6025 | 5834 | struct task_struct *next, *stop = rq->stop; | |
6026 | /* Must be exiting, otherwise would be on tasklist. */ | 5835 | int dest_cpu; |
6027 | BUG_ON(!p->exit_state); | ||
6028 | |||
6029 | /* Cannot have done final schedule yet: would have vanished. */ | ||
6030 | BUG_ON(p->state == TASK_DEAD); | ||
6031 | |||
6032 | get_task_struct(p); | ||
6033 | 5836 | ||
6034 | /* | 5837 | /* |
6035 | * Drop lock around migration; if someone else moves it, | 5838 | * Fudge the rq selection such that the below task selection loop |
6036 | * that's OK. No task can be added to this CPU, so iteration is | 5839 | * doesn't get stuck on the currently eligible stop task. |
6037 | * fine. | 5840 | * |
5841 | * We're currently inside stop_machine() and the rq is either stuck | ||
5842 | * in the stop_machine_cpu_stop() loop, or we're executing this code, | ||
5843 | * either way we should never end up calling schedule() until we're | ||
5844 | * done here. | ||
6038 | */ | 5845 | */ |
6039 | raw_spin_unlock_irq(&rq->lock); | 5846 | rq->stop = NULL; |
6040 | move_task_off_dead_cpu(dead_cpu, p); | ||
6041 | raw_spin_lock_irq(&rq->lock); | ||
6042 | |||
6043 | put_task_struct(p); | ||
6044 | } | ||
6045 | |||
6046 | /* release_task() removes task from tasklist, so we won't find dead tasks. */ | ||
6047 | static void migrate_dead_tasks(unsigned int dead_cpu) | ||
6048 | { | ||
6049 | struct rq *rq = cpu_rq(dead_cpu); | ||
6050 | struct task_struct *next; | ||
6051 | 5847 | ||
6052 | for ( ; ; ) { | 5848 | for ( ; ; ) { |
6053 | if (!rq->nr_running) | 5849 | /* |
5850 | * There's this thread running, bail when that's the only | ||
5851 | * remaining thread. | ||
5852 | */ | ||
5853 | if (rq->nr_running == 1) | ||
6054 | break; | 5854 | break; |
5855 | |||
6055 | next = pick_next_task(rq); | 5856 | next = pick_next_task(rq); |
6056 | if (!next) | 5857 | BUG_ON(!next); |
6057 | break; | ||
6058 | next->sched_class->put_prev_task(rq, next); | 5858 | next->sched_class->put_prev_task(rq, next); |
6059 | migrate_dead(dead_cpu, next); | ||
6060 | 5859 | ||
5860 | /* Find suitable destination for @next, with force if needed. */ | ||
5861 | dest_cpu = select_fallback_rq(dead_cpu, next); | ||
5862 | raw_spin_unlock(&rq->lock); | ||
5863 | |||
5864 | __migrate_task(next, dead_cpu, dest_cpu); | ||
5865 | |||
5866 | raw_spin_lock(&rq->lock); | ||
6061 | } | 5867 | } |
6062 | } | ||
6063 | 5868 | ||
6064 | /* | 5869 | rq->stop = stop; |
6065 | * remove the tasks which were accounted by rq from calc_load_tasks. | ||
6066 | */ | ||
6067 | static void calc_global_load_remove(struct rq *rq) | ||
6068 | { | ||
6069 | atomic_long_sub(rq->calc_load_active, &calc_load_tasks); | ||
6070 | rq->calc_load_active = 0; | ||
6071 | } | 5870 | } |
5871 | |||
6072 | #endif /* CONFIG_HOTPLUG_CPU */ | 5872 | #endif /* CONFIG_HOTPLUG_CPU */ |
6073 | 5873 | ||
6074 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) | 5874 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
@@ -6278,15 +6078,13 @@ migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) | |||
6278 | unsigned long flags; | 6078 | unsigned long flags; |
6279 | struct rq *rq = cpu_rq(cpu); | 6079 | struct rq *rq = cpu_rq(cpu); |
6280 | 6080 | ||
6281 | switch (action) { | 6081 | switch (action & ~CPU_TASKS_FROZEN) { |
6282 | 6082 | ||
6283 | case CPU_UP_PREPARE: | 6083 | case CPU_UP_PREPARE: |
6284 | case CPU_UP_PREPARE_FROZEN: | ||
6285 | rq->calc_load_update = calc_load_update; | 6084 | rq->calc_load_update = calc_load_update; |
6286 | break; | 6085 | break; |
6287 | 6086 | ||
6288 | case CPU_ONLINE: | 6087 | case CPU_ONLINE: |
6289 | case CPU_ONLINE_FROZEN: | ||
6290 | /* Update our root-domain */ | 6088 | /* Update our root-domain */ |
6291 | raw_spin_lock_irqsave(&rq->lock, flags); | 6089 | raw_spin_lock_irqsave(&rq->lock, flags); |
6292 | if (rq->rd) { | 6090 | if (rq->rd) { |
@@ -6298,30 +6096,19 @@ migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) | |||
6298 | break; | 6096 | break; |
6299 | 6097 | ||
6300 | #ifdef CONFIG_HOTPLUG_CPU | 6098 | #ifdef CONFIG_HOTPLUG_CPU |
6301 | case CPU_DEAD: | ||
6302 | case CPU_DEAD_FROZEN: | ||
6303 | migrate_live_tasks(cpu); | ||
6304 | /* Idle task back to normal (off runqueue, low prio) */ | ||
6305 | raw_spin_lock_irq(&rq->lock); | ||
6306 | deactivate_task(rq, rq->idle, 0); | ||
6307 | __setscheduler(rq, rq->idle, SCHED_NORMAL, 0); | ||
6308 | rq->idle->sched_class = &idle_sched_class; | ||
6309 | migrate_dead_tasks(cpu); | ||
6310 | raw_spin_unlock_irq(&rq->lock); | ||
6311 | migrate_nr_uninterruptible(rq); | ||
6312 | BUG_ON(rq->nr_running != 0); | ||
6313 | calc_global_load_remove(rq); | ||
6314 | break; | ||
6315 | |||
6316 | case CPU_DYING: | 6099 | case CPU_DYING: |
6317 | case CPU_DYING_FROZEN: | ||
6318 | /* Update our root-domain */ | 6100 | /* Update our root-domain */ |
6319 | raw_spin_lock_irqsave(&rq->lock, flags); | 6101 | raw_spin_lock_irqsave(&rq->lock, flags); |
6320 | if (rq->rd) { | 6102 | if (rq->rd) { |
6321 | BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span)); | 6103 | BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span)); |
6322 | set_rq_offline(rq); | 6104 | set_rq_offline(rq); |
6323 | } | 6105 | } |
6106 | migrate_tasks(cpu); | ||
6107 | BUG_ON(rq->nr_running != 1); /* the migration thread */ | ||
6324 | raw_spin_unlock_irqrestore(&rq->lock, flags); | 6108 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
6109 | |||
6110 | migrate_nr_uninterruptible(rq); | ||
6111 | calc_global_load_remove(rq); | ||
6325 | break; | 6112 | break; |
6326 | #endif | 6113 | #endif |
6327 | } | 6114 | } |
@@ -8052,15 +7839,13 @@ static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) | |||
8052 | 7839 | ||
8053 | #ifdef CONFIG_FAIR_GROUP_SCHED | 7840 | #ifdef CONFIG_FAIR_GROUP_SCHED |
8054 | static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, | 7841 | static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, |
8055 | struct sched_entity *se, int cpu, int add, | 7842 | struct sched_entity *se, int cpu, |
8056 | struct sched_entity *parent) | 7843 | struct sched_entity *parent) |
8057 | { | 7844 | { |
8058 | struct rq *rq = cpu_rq(cpu); | 7845 | struct rq *rq = cpu_rq(cpu); |
8059 | tg->cfs_rq[cpu] = cfs_rq; | 7846 | tg->cfs_rq[cpu] = cfs_rq; |
8060 | init_cfs_rq(cfs_rq, rq); | 7847 | init_cfs_rq(cfs_rq, rq); |
8061 | cfs_rq->tg = tg; | 7848 | cfs_rq->tg = tg; |
8062 | if (add) | ||
8063 | list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); | ||
8064 | 7849 | ||
8065 | tg->se[cpu] = se; | 7850 | tg->se[cpu] = se; |
8066 | /* se could be NULL for init_task_group */ | 7851 | /* se could be NULL for init_task_group */ |
@@ -8073,15 +7858,14 @@ static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, | |||
8073 | se->cfs_rq = parent->my_q; | 7858 | se->cfs_rq = parent->my_q; |
8074 | 7859 | ||
8075 | se->my_q = cfs_rq; | 7860 | se->my_q = cfs_rq; |
8076 | se->load.weight = tg->shares; | 7861 | update_load_set(&se->load, 0); |
8077 | se->load.inv_weight = 0; | ||
8078 | se->parent = parent; | 7862 | se->parent = parent; |
8079 | } | 7863 | } |
8080 | #endif | 7864 | #endif |
8081 | 7865 | ||
8082 | #ifdef CONFIG_RT_GROUP_SCHED | 7866 | #ifdef CONFIG_RT_GROUP_SCHED |
8083 | static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq, | 7867 | static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq, |
8084 | struct sched_rt_entity *rt_se, int cpu, int add, | 7868 | struct sched_rt_entity *rt_se, int cpu, |
8085 | struct sched_rt_entity *parent) | 7869 | struct sched_rt_entity *parent) |
8086 | { | 7870 | { |
8087 | struct rq *rq = cpu_rq(cpu); | 7871 | struct rq *rq = cpu_rq(cpu); |
@@ -8090,8 +7874,6 @@ static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq, | |||
8090 | init_rt_rq(rt_rq, rq); | 7874 | init_rt_rq(rt_rq, rq); |
8091 | rt_rq->tg = tg; | 7875 | rt_rq->tg = tg; |
8092 | rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime; | 7876 | rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime; |
8093 | if (add) | ||
8094 | list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); | ||
8095 | 7877 | ||
8096 | tg->rt_se[cpu] = rt_se; | 7878 | tg->rt_se[cpu] = rt_se; |
8097 | if (!rt_se) | 7879 | if (!rt_se) |
@@ -8164,13 +7946,9 @@ void __init sched_init(void) | |||
8164 | #ifdef CONFIG_CGROUP_SCHED | 7946 | #ifdef CONFIG_CGROUP_SCHED |
8165 | list_add(&init_task_group.list, &task_groups); | 7947 | list_add(&init_task_group.list, &task_groups); |
8166 | INIT_LIST_HEAD(&init_task_group.children); | 7948 | INIT_LIST_HEAD(&init_task_group.children); |
8167 | 7949 | autogroup_init(&init_task); | |
8168 | #endif /* CONFIG_CGROUP_SCHED */ | 7950 | #endif /* CONFIG_CGROUP_SCHED */ |
8169 | 7951 | ||
8170 | #if defined CONFIG_FAIR_GROUP_SCHED && defined CONFIG_SMP | ||
8171 | update_shares_data = __alloc_percpu(nr_cpu_ids * sizeof(unsigned long), | ||
8172 | __alignof__(unsigned long)); | ||
8173 | #endif | ||
8174 | for_each_possible_cpu(i) { | 7952 | for_each_possible_cpu(i) { |
8175 | struct rq *rq; | 7953 | struct rq *rq; |
8176 | 7954 | ||
@@ -8184,7 +7962,6 @@ void __init sched_init(void) | |||
8184 | #ifdef CONFIG_FAIR_GROUP_SCHED | 7962 | #ifdef CONFIG_FAIR_GROUP_SCHED |
8185 | init_task_group.shares = init_task_group_load; | 7963 | init_task_group.shares = init_task_group_load; |
8186 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); | 7964 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
8187 | #ifdef CONFIG_CGROUP_SCHED | ||
8188 | /* | 7965 | /* |
8189 | * How much cpu bandwidth does init_task_group get? | 7966 | * How much cpu bandwidth does init_task_group get? |
8190 | * | 7967 | * |
@@ -8204,16 +7981,13 @@ void __init sched_init(void) | |||
8204 | * We achieve this by letting init_task_group's tasks sit | 7981 | * We achieve this by letting init_task_group's tasks sit |
8205 | * directly in rq->cfs (i.e init_task_group->se[] = NULL). | 7982 | * directly in rq->cfs (i.e init_task_group->se[] = NULL). |
8206 | */ | 7983 | */ |
8207 | init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL); | 7984 | init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, NULL); |
8208 | #endif | ||
8209 | #endif /* CONFIG_FAIR_GROUP_SCHED */ | 7985 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
8210 | 7986 | ||
8211 | rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime; | 7987 | rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime; |
8212 | #ifdef CONFIG_RT_GROUP_SCHED | 7988 | #ifdef CONFIG_RT_GROUP_SCHED |
8213 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); | 7989 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
8214 | #ifdef CONFIG_CGROUP_SCHED | 7990 | init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, NULL); |
8215 | init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL); | ||
8216 | #endif | ||
8217 | #endif | 7991 | #endif |
8218 | 7992 | ||
8219 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) | 7993 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
@@ -8486,7 +8260,7 @@ int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) | |||
8486 | if (!se) | 8260 | if (!se) |
8487 | goto err_free_rq; | 8261 | goto err_free_rq; |
8488 | 8262 | ||
8489 | init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent->se[i]); | 8263 | init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]); |
8490 | } | 8264 | } |
8491 | 8265 | ||
8492 | return 1; | 8266 | return 1; |
@@ -8497,15 +8271,21 @@ err: | |||
8497 | return 0; | 8271 | return 0; |
8498 | } | 8272 | } |
8499 | 8273 | ||
8500 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) | ||
8501 | { | ||
8502 | list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list, | ||
8503 | &cpu_rq(cpu)->leaf_cfs_rq_list); | ||
8504 | } | ||
8505 | |||
8506 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) | 8274 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
8507 | { | 8275 | { |
8508 | list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list); | 8276 | struct rq *rq = cpu_rq(cpu); |
8277 | unsigned long flags; | ||
8278 | |||
8279 | /* | ||
8280 | * Only empty task groups can be destroyed; so we can speculatively | ||
8281 | * check on_list without danger of it being re-added. | ||
8282 | */ | ||
8283 | if (!tg->cfs_rq[cpu]->on_list) | ||
8284 | return; | ||
8285 | |||
8286 | raw_spin_lock_irqsave(&rq->lock, flags); | ||
8287 | list_del_leaf_cfs_rq(tg->cfs_rq[cpu]); | ||
8288 | raw_spin_unlock_irqrestore(&rq->lock, flags); | ||
8509 | } | 8289 | } |
8510 | #else /* !CONFG_FAIR_GROUP_SCHED */ | 8290 | #else /* !CONFG_FAIR_GROUP_SCHED */ |
8511 | static inline void free_fair_sched_group(struct task_group *tg) | 8291 | static inline void free_fair_sched_group(struct task_group *tg) |
@@ -8518,10 +8298,6 @@ int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) | |||
8518 | return 1; | 8298 | return 1; |
8519 | } | 8299 | } |
8520 | 8300 | ||
8521 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) | ||
8522 | { | ||
8523 | } | ||
8524 | |||
8525 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) | 8301 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
8526 | { | 8302 | { |
8527 | } | 8303 | } |
@@ -8576,7 +8352,7 @@ int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent) | |||
8576 | if (!rt_se) | 8352 | if (!rt_se) |
8577 | goto err_free_rq; | 8353 | goto err_free_rq; |
8578 | 8354 | ||
8579 | init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent->rt_se[i]); | 8355 | init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]); |
8580 | } | 8356 | } |
8581 | 8357 | ||
8582 | return 1; | 8358 | return 1; |
@@ -8586,17 +8362,6 @@ err_free_rq: | |||
8586 | err: | 8362 | err: |
8587 | return 0; | 8363 | return 0; |
8588 | } | 8364 | } |
8589 | |||
8590 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) | ||
8591 | { | ||
8592 | list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list, | ||
8593 | &cpu_rq(cpu)->leaf_rt_rq_list); | ||
8594 | } | ||
8595 | |||
8596 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) | ||
8597 | { | ||
8598 | list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list); | ||
8599 | } | ||
8600 | #else /* !CONFIG_RT_GROUP_SCHED */ | 8365 | #else /* !CONFIG_RT_GROUP_SCHED */ |
8601 | static inline void free_rt_sched_group(struct task_group *tg) | 8366 | static inline void free_rt_sched_group(struct task_group *tg) |
8602 | { | 8367 | { |
@@ -8607,14 +8372,6 @@ int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent) | |||
8607 | { | 8372 | { |
8608 | return 1; | 8373 | return 1; |
8609 | } | 8374 | } |
8610 | |||
8611 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) | ||
8612 | { | ||
8613 | } | ||
8614 | |||
8615 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) | ||
8616 | { | ||
8617 | } | ||
8618 | #endif /* CONFIG_RT_GROUP_SCHED */ | 8375 | #endif /* CONFIG_RT_GROUP_SCHED */ |
8619 | 8376 | ||
8620 | #ifdef CONFIG_CGROUP_SCHED | 8377 | #ifdef CONFIG_CGROUP_SCHED |
@@ -8630,7 +8387,6 @@ struct task_group *sched_create_group(struct task_group *parent) | |||
8630 | { | 8387 | { |
8631 | struct task_group *tg; | 8388 | struct task_group *tg; |
8632 | unsigned long flags; | 8389 | unsigned long flags; |
8633 | int i; | ||
8634 | 8390 | ||
8635 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); | 8391 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
8636 | if (!tg) | 8392 | if (!tg) |
@@ -8643,10 +8399,6 @@ struct task_group *sched_create_group(struct task_group *parent) | |||
8643 | goto err; | 8399 | goto err; |
8644 | 8400 | ||
8645 | spin_lock_irqsave(&task_group_lock, flags); | 8401 | spin_lock_irqsave(&task_group_lock, flags); |
8646 | for_each_possible_cpu(i) { | ||
8647 | register_fair_sched_group(tg, i); | ||
8648 | register_rt_sched_group(tg, i); | ||
8649 | } | ||
8650 | list_add_rcu(&tg->list, &task_groups); | 8402 | list_add_rcu(&tg->list, &task_groups); |
8651 | 8403 | ||
8652 | WARN_ON(!parent); /* root should already exist */ | 8404 | WARN_ON(!parent); /* root should already exist */ |
@@ -8676,11 +8428,11 @@ void sched_destroy_group(struct task_group *tg) | |||
8676 | unsigned long flags; | 8428 | unsigned long flags; |
8677 | int i; | 8429 | int i; |
8678 | 8430 | ||
8679 | spin_lock_irqsave(&task_group_lock, flags); | 8431 | /* end participation in shares distribution */ |
8680 | for_each_possible_cpu(i) { | 8432 | for_each_possible_cpu(i) |
8681 | unregister_fair_sched_group(tg, i); | 8433 | unregister_fair_sched_group(tg, i); |
8682 | unregister_rt_sched_group(tg, i); | 8434 | |
8683 | } | 8435 | spin_lock_irqsave(&task_group_lock, flags); |
8684 | list_del_rcu(&tg->list); | 8436 | list_del_rcu(&tg->list); |
8685 | list_del_rcu(&tg->siblings); | 8437 | list_del_rcu(&tg->siblings); |
8686 | spin_unlock_irqrestore(&task_group_lock, flags); | 8438 | spin_unlock_irqrestore(&task_group_lock, flags); |
@@ -8727,33 +8479,6 @@ void sched_move_task(struct task_struct *tsk) | |||
8727 | #endif /* CONFIG_CGROUP_SCHED */ | 8479 | #endif /* CONFIG_CGROUP_SCHED */ |
8728 | 8480 | ||
8729 | #ifdef CONFIG_FAIR_GROUP_SCHED | 8481 | #ifdef CONFIG_FAIR_GROUP_SCHED |
8730 | static void __set_se_shares(struct sched_entity *se, unsigned long shares) | ||
8731 | { | ||
8732 | struct cfs_rq *cfs_rq = se->cfs_rq; | ||
8733 | int on_rq; | ||
8734 | |||
8735 | on_rq = se->on_rq; | ||
8736 | if (on_rq) | ||
8737 | dequeue_entity(cfs_rq, se, 0); | ||
8738 | |||
8739 | se->load.weight = shares; | ||
8740 | se->load.inv_weight = 0; | ||
8741 | |||
8742 | if (on_rq) | ||
8743 | enqueue_entity(cfs_rq, se, 0); | ||
8744 | } | ||
8745 | |||
8746 | static void set_se_shares(struct sched_entity *se, unsigned long shares) | ||
8747 | { | ||
8748 | struct cfs_rq *cfs_rq = se->cfs_rq; | ||
8749 | struct rq *rq = cfs_rq->rq; | ||
8750 | unsigned long flags; | ||
8751 | |||
8752 | raw_spin_lock_irqsave(&rq->lock, flags); | ||
8753 | __set_se_shares(se, shares); | ||
8754 | raw_spin_unlock_irqrestore(&rq->lock, flags); | ||
8755 | } | ||
8756 | |||
8757 | static DEFINE_MUTEX(shares_mutex); | 8482 | static DEFINE_MUTEX(shares_mutex); |
8758 | 8483 | ||
8759 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) | 8484 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
@@ -8776,37 +8501,19 @@ int sched_group_set_shares(struct task_group *tg, unsigned long shares) | |||
8776 | if (tg->shares == shares) | 8501 | if (tg->shares == shares) |
8777 | goto done; | 8502 | goto done; |
8778 | 8503 | ||
8779 | spin_lock_irqsave(&task_group_lock, flags); | ||
8780 | for_each_possible_cpu(i) | ||
8781 | unregister_fair_sched_group(tg, i); | ||
8782 | list_del_rcu(&tg->siblings); | ||
8783 | spin_unlock_irqrestore(&task_group_lock, flags); | ||
8784 | |||
8785 | /* wait for any ongoing reference to this group to finish */ | ||
8786 | synchronize_sched(); | ||
8787 | |||
8788 | /* | ||
8789 | * Now we are free to modify the group's share on each cpu | ||
8790 | * w/o tripping rebalance_share or load_balance_fair. | ||
8791 | */ | ||
8792 | tg->shares = shares; | 8504 | tg->shares = shares; |
8793 | for_each_possible_cpu(i) { | 8505 | for_each_possible_cpu(i) { |
8794 | /* | 8506 | struct rq *rq = cpu_rq(i); |
8795 | * force a rebalance | 8507 | struct sched_entity *se; |
8796 | */ | 8508 | |
8797 | cfs_rq_set_shares(tg->cfs_rq[i], 0); | 8509 | se = tg->se[i]; |
8798 | set_se_shares(tg->se[i], shares); | 8510 | /* Propagate contribution to hierarchy */ |
8511 | raw_spin_lock_irqsave(&rq->lock, flags); | ||
8512 | for_each_sched_entity(se) | ||
8513 | update_cfs_shares(group_cfs_rq(se), 0); | ||
8514 | raw_spin_unlock_irqrestore(&rq->lock, flags); | ||
8799 | } | 8515 | } |
8800 | 8516 | ||
8801 | /* | ||
8802 | * Enable load balance activity on this group, by inserting it back on | ||
8803 | * each cpu's rq->leaf_cfs_rq_list. | ||
8804 | */ | ||
8805 | spin_lock_irqsave(&task_group_lock, flags); | ||
8806 | for_each_possible_cpu(i) | ||
8807 | register_fair_sched_group(tg, i); | ||
8808 | list_add_rcu(&tg->siblings, &tg->parent->children); | ||
8809 | spin_unlock_irqrestore(&task_group_lock, flags); | ||
8810 | done: | 8517 | done: |
8811 | mutex_unlock(&shares_mutex); | 8518 | mutex_unlock(&shares_mutex); |
8812 | return 0; | 8519 | return 0; |