Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kernel/sched.c |
| 3 | * |
| 4 | * Kernel scheduler and related syscalls |
| 5 | * |
| 6 | * Copyright (C) 1991-2002 Linus Torvalds |
| 7 | * |
| 8 | * 1996-12-23 Modified by Dave Grothe to fix bugs in semaphores and |
| 9 | * make semaphores SMP safe |
| 10 | * 1998-11-19 Implemented schedule_timeout() and related stuff |
| 11 | * by Andrea Arcangeli |
| 12 | * 2002-01-04 New ultra-scalable O(1) scheduler by Ingo Molnar: |
| 13 | * hybrid priority-list and round-robin design with |
| 14 | * an array-switch method of distributing timeslices |
| 15 | * and per-CPU runqueues. Cleanups and useful suggestions |
| 16 | * by Davide Libenzi, preemptible kernel bits by Robert Love. |
| 17 | * 2003-09-03 Interactivity tuning by Con Kolivas. |
| 18 | * 2004-04-02 Scheduler domains code by Nick Piggin |
Ingo Molnar | c31f2e8 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 19 | * 2007-04-15 Work begun on replacing all interactivity tuning with a |
| 20 | * fair scheduling design by Con Kolivas. |
| 21 | * 2007-05-05 Load balancing (smp-nice) and other improvements |
| 22 | * by Peter Williams |
| 23 | * 2007-05-06 Interactivity improvements to CFS by Mike Galbraith |
| 24 | * 2007-07-01 Group scheduling enhancements by Srivatsa Vaddagiri |
Ingo Molnar | b913176 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 25 | * 2007-11-29 RT balancing improvements by Steven Rostedt, Gregory Haskins, |
| 26 | * Thomas Gleixner, Mike Kravetz |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | */ |
| 28 | |
| 29 | #include <linux/mm.h> |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/nmi.h> |
| 32 | #include <linux/init.h> |
Ingo Molnar | dff06c1 | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 33 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/highmem.h> |
| 35 | #include <linux/smp_lock.h> |
| 36 | #include <asm/mmu_context.h> |
| 37 | #include <linux/interrupt.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 38 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <linux/completion.h> |
| 40 | #include <linux/kernel_stat.h> |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 41 | #include <linux/debug_locks.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/security.h> |
| 43 | #include <linux/notifier.h> |
| 44 | #include <linux/profile.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 45 | #include <linux/freezer.h> |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 46 | #include <linux/vmalloc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <linux/blkdev.h> |
| 48 | #include <linux/delay.h> |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 49 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <linux/smp.h> |
| 51 | #include <linux/threads.h> |
| 52 | #include <linux/timer.h> |
| 53 | #include <linux/rcupdate.h> |
| 54 | #include <linux/cpu.h> |
| 55 | #include <linux/cpuset.h> |
| 56 | #include <linux/percpu.h> |
| 57 | #include <linux/kthread.h> |
| 58 | #include <linux/seq_file.h> |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 59 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #include <linux/syscalls.h> |
| 61 | #include <linux/times.h> |
Jay Lan | 8f0ab51 | 2006-09-30 23:28:59 -0700 | [diff] [blame] | 62 | #include <linux/tsacct_kern.h> |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 63 | #include <linux/kprobes.h> |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 64 | #include <linux/delayacct.h> |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 65 | #include <linux/reciprocal_div.h> |
Ingo Molnar | dff06c1 | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 66 | #include <linux/unistd.h> |
Jens Axboe | f5ff842 | 2007-09-21 09:19:54 +0200 | [diff] [blame] | 67 | #include <linux/pagemap.h> |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 68 | #include <linux/hrtimer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 70 | #include <asm/tlb.h> |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 71 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | /* |
Alexey Dobriyan | b035b6d | 2007-02-10 01:45:10 -0800 | [diff] [blame] | 74 | * Scheduler clock - returns current time in nanosec units. |
| 75 | * This is default implementation. |
| 76 | * Architectures and sub-architectures can override this. |
| 77 | */ |
| 78 | unsigned long long __attribute__((weak)) sched_clock(void) |
| 79 | { |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 80 | return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ); |
Alexey Dobriyan | b035b6d | 2007-02-10 01:45:10 -0800 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
| 85 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
| 86 | * and back. |
| 87 | */ |
| 88 | #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20) |
| 89 | #define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20) |
| 90 | #define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio) |
| 91 | |
| 92 | /* |
| 93 | * 'User priority' is the nice value converted to something we |
| 94 | * can work with better when scaling various scheduler parameters, |
| 95 | * it's a [ 0 ... 39 ] range. |
| 96 | */ |
| 97 | #define USER_PRIO(p) ((p)-MAX_RT_PRIO) |
| 98 | #define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio) |
| 99 | #define MAX_USER_PRIO (USER_PRIO(MAX_PRIO)) |
| 100 | |
| 101 | /* |
Ingo Molnar | d7876a0 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 102 | * Helpers for converting nanosecond timing to jiffy resolution |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | */ |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 104 | #define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 106 | #define NICE_0_LOAD SCHED_LOAD_SCALE |
| 107 | #define NICE_0_SHIFT SCHED_LOAD_SHIFT |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /* |
| 110 | * These are the 'tuning knobs' of the scheduler: |
| 111 | * |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 112 | * default timeslice is 100 msecs (used only for SCHED_RR tasks). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | * Timeslices get refilled after they expire. |
| 114 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | #define DEF_TIMESLICE (100 * HZ / 1000) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 116 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 117 | #ifdef CONFIG_SMP |
| 118 | /* |
| 119 | * Divide a load by a sched group cpu_power : (load / sg->__cpu_power) |
| 120 | * Since cpu_power is a 'constant', we can use a reciprocal divide. |
| 121 | */ |
| 122 | static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load) |
| 123 | { |
| 124 | return reciprocal_divide(load, sg->reciprocal_cpu_power); |
| 125 | } |
| 126 | |
| 127 | /* |
| 128 | * Each time a sched group cpu_power is changed, |
| 129 | * we must compute its reciprocal value |
| 130 | */ |
| 131 | static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val) |
| 132 | { |
| 133 | sg->__cpu_power += val; |
| 134 | sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power); |
| 135 | } |
| 136 | #endif |
| 137 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 138 | static inline int rt_policy(int policy) |
| 139 | { |
| 140 | if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR)) |
| 141 | return 1; |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static inline int task_has_rt_policy(struct task_struct *p) |
| 146 | { |
| 147 | return rt_policy(p->policy); |
| 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | /* |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 151 | * This is the priority-queue data structure of the RT scheduling class: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 153 | struct rt_prio_array { |
| 154 | DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */ |
| 155 | struct list_head queue[MAX_RT_PRIO]; |
| 156 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 158 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 159 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 160 | #include <linux/cgroup.h> |
| 161 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 162 | struct cfs_rq; |
| 163 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 164 | static LIST_HEAD(task_groups); |
| 165 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 166 | /* task group related information */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 167 | struct task_group { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 168 | #ifdef CONFIG_FAIR_CGROUP_SCHED |
| 169 | struct cgroup_subsys_state css; |
| 170 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 171 | /* schedulable entities of this group on each cpu */ |
| 172 | struct sched_entity **se; |
| 173 | /* runqueue "owned" by this group on each cpu */ |
| 174 | struct cfs_rq **cfs_rq; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 175 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 176 | struct sched_rt_entity **rt_se; |
| 177 | struct rt_rq **rt_rq; |
| 178 | |
| 179 | unsigned int rt_ratio; |
| 180 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 181 | /* |
| 182 | * shares assigned to a task group governs how much of cpu bandwidth |
| 183 | * is allocated to the group. The more shares a group has, the more is |
| 184 | * the cpu bandwidth allocated to it. |
| 185 | * |
| 186 | * For ex, lets say that there are three task groups, A, B and C which |
| 187 | * have been assigned shares 1000, 2000 and 3000 respectively. Then, |
| 188 | * cpu bandwidth allocated by the scheduler to task groups A, B and C |
| 189 | * should be: |
| 190 | * |
| 191 | * Bw(A) = 1000/(1000+2000+3000) * 100 = 16.66% |
| 192 | * Bw(B) = 2000/(1000+2000+3000) * 100 = 33.33% |
Ingo Molnar | 03319ec | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 193 | * Bw(C) = 3000/(1000+2000+3000) * 100 = 50% |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 194 | * |
| 195 | * The weight assigned to a task group's schedulable entities on every |
| 196 | * cpu (task_group.se[a_cpu]->load.weight) is derived from the task |
| 197 | * group's shares. For ex: lets say that task group A has been |
| 198 | * assigned shares of 1000 and there are two CPUs in a system. Then, |
| 199 | * |
| 200 | * tg_A->se[0]->load.weight = tg_A->se[1]->load.weight = 1000; |
| 201 | * |
| 202 | * Note: It's not necessary that each of a task's group schedulable |
Ingo Molnar | 03319ec | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 203 | * entity have the same weight on all CPUs. If the group |
| 204 | * has 2 of its tasks on CPU0 and 1 task on CPU1, then a |
| 205 | * better distribution of weight could be: |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 206 | * |
| 207 | * tg_A->se[0]->load.weight = 2/3 * 2000 = 1333 |
| 208 | * tg_A->se[1]->load.weight = 1/2 * 2000 = 667 |
| 209 | * |
| 210 | * rebalance_shares() is responsible for distributing the shares of a |
| 211 | * task groups like this among the group's schedulable entities across |
| 212 | * cpus. |
| 213 | * |
| 214 | */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 215 | unsigned long shares; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 216 | |
Srivatsa Vaddagiri | ae8393e | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 217 | struct rcu_head rcu; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 218 | struct list_head list; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 219 | }; |
| 220 | |
| 221 | /* Default task group's sched entity on each cpu */ |
| 222 | static DEFINE_PER_CPU(struct sched_entity, init_sched_entity); |
| 223 | /* Default task group's cfs_rq on each cpu */ |
| 224 | static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp; |
| 225 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 226 | static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity); |
| 227 | static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp; |
| 228 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 229 | static struct sched_entity *init_sched_entity_p[NR_CPUS]; |
| 230 | static struct cfs_rq *init_cfs_rq_p[NR_CPUS]; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 231 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 232 | static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS]; |
| 233 | static struct rt_rq *init_rt_rq_p[NR_CPUS]; |
| 234 | |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 235 | /* task_group_mutex serializes add/remove of task groups and also changes to |
| 236 | * a task group's cpu shares. |
| 237 | */ |
| 238 | static DEFINE_MUTEX(task_group_mutex); |
| 239 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 240 | /* doms_cur_mutex serializes access to doms_cur[] array */ |
| 241 | static DEFINE_MUTEX(doms_cur_mutex); |
| 242 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 243 | #ifdef CONFIG_SMP |
| 244 | /* kernel thread that runs rebalance_shares() periodically */ |
| 245 | static struct task_struct *lb_monitor_task; |
| 246 | static int load_balance_monitor(void *unused); |
| 247 | #endif |
| 248 | |
| 249 | static void set_se_shares(struct sched_entity *se, unsigned long shares); |
| 250 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 251 | /* Default task group. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 252 | * Every task in system belong to this group at bootup. |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 253 | */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 254 | struct task_group init_task_group = { |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 255 | .se = init_sched_entity_p, |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 256 | .cfs_rq = init_cfs_rq_p, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 257 | |
| 258 | .rt_se = init_sched_rt_entity_p, |
| 259 | .rt_rq = init_rt_rq_p, |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 260 | }; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 261 | |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 262 | #ifdef CONFIG_FAIR_USER_SCHED |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 263 | # define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD) |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 264 | #else |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 265 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 266 | #endif |
| 267 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 268 | #define MIN_GROUP_SHARES 2 |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 269 | |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 270 | static int init_task_group_load = INIT_TASK_GROUP_LOAD; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 271 | |
| 272 | /* return group to which a task belongs */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 273 | static inline struct task_group *task_group(struct task_struct *p) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 274 | { |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 275 | struct task_group *tg; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 276 | |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 277 | #ifdef CONFIG_FAIR_USER_SCHED |
| 278 | tg = p->user->tg; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 279 | #elif defined(CONFIG_FAIR_CGROUP_SCHED) |
| 280 | tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id), |
| 281 | struct task_group, css); |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 282 | #else |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 283 | tg = &init_task_group; |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 284 | #endif |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 285 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 289 | static inline void set_task_rq(struct task_struct *p, unsigned int cpu) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 290 | { |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 291 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 292 | p->se.parent = task_group(p)->se[cpu]; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 293 | |
| 294 | p->rt.rt_rq = task_group(p)->rt_rq[cpu]; |
| 295 | p->rt.parent = task_group(p)->rt_se[cpu]; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 296 | } |
| 297 | |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 298 | static inline void lock_task_group_list(void) |
| 299 | { |
| 300 | mutex_lock(&task_group_mutex); |
| 301 | } |
| 302 | |
| 303 | static inline void unlock_task_group_list(void) |
| 304 | { |
| 305 | mutex_unlock(&task_group_mutex); |
| 306 | } |
| 307 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 308 | static inline void lock_doms_cur(void) |
| 309 | { |
| 310 | mutex_lock(&doms_cur_mutex); |
| 311 | } |
| 312 | |
| 313 | static inline void unlock_doms_cur(void) |
| 314 | { |
| 315 | mutex_unlock(&doms_cur_mutex); |
| 316 | } |
| 317 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 318 | #else |
| 319 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 320 | static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { } |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 321 | static inline void lock_task_group_list(void) { } |
| 322 | static inline void unlock_task_group_list(void) { } |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 323 | static inline void lock_doms_cur(void) { } |
| 324 | static inline void unlock_doms_cur(void) { } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 325 | |
| 326 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 327 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 328 | /* CFS-related fields in a runqueue */ |
| 329 | struct cfs_rq { |
| 330 | struct load_weight load; |
| 331 | unsigned long nr_running; |
| 332 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 333 | u64 exec_clock; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 334 | u64 min_vruntime; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 335 | |
| 336 | struct rb_root tasks_timeline; |
| 337 | struct rb_node *rb_leftmost; |
| 338 | struct rb_node *rb_load_balance_curr; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 339 | /* 'curr' points to currently running entity on this cfs_rq. |
| 340 | * It is set to NULL otherwise (i.e when none are currently running). |
| 341 | */ |
| 342 | struct sched_entity *curr; |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 343 | |
| 344 | unsigned long nr_spread_over; |
| 345 | |
Ingo Molnar | 62160e3 | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 346 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 347 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
| 348 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 349 | /* |
| 350 | * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 351 | * a hierarchy). Non-leaf lrqs hold other higher schedulable entities |
| 352 | * (like users, containers etc.) |
| 353 | * |
| 354 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
| 355 | * list is used during load balance. |
| 356 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 357 | struct list_head leaf_cfs_rq_list; |
| 358 | struct task_group *tg; /* group that "owns" this runqueue */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 359 | #endif |
| 360 | }; |
| 361 | |
| 362 | /* Real-Time classes' related field in a runqueue: */ |
| 363 | struct rt_rq { |
| 364 | struct rt_prio_array active; |
Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 365 | unsigned long rt_nr_running; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 366 | #if defined CONFIG_SMP || defined CONFIG_FAIR_GROUP_SCHED |
| 367 | int highest_prio; /* highest queued rt task prio */ |
| 368 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 369 | #ifdef CONFIG_SMP |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 370 | unsigned long rt_nr_migratory; |
Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 371 | int overloaded; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 372 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 373 | int rt_throttled; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 374 | u64 rt_time; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 375 | |
| 376 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 377 | struct rq *rq; |
| 378 | struct list_head leaf_rt_rq_list; |
| 379 | struct task_group *tg; |
| 380 | struct sched_rt_entity *rt_se; |
| 381 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 382 | }; |
| 383 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 384 | #ifdef CONFIG_SMP |
| 385 | |
| 386 | /* |
| 387 | * We add the notion of a root-domain which will be used to define per-domain |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 388 | * variables. Each exclusive cpuset essentially defines an island domain by |
| 389 | * fully partitioning the member cpus from any other cpuset. Whenever a new |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 390 | * exclusive cpuset is created, we also create and attach a new root-domain |
| 391 | * object. |
| 392 | * |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 393 | */ |
| 394 | struct root_domain { |
| 395 | atomic_t refcount; |
| 396 | cpumask_t span; |
| 397 | cpumask_t online; |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 398 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 399 | /* |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 400 | * The "RT overload" flag: it gets set if a CPU has more than |
| 401 | * one runnable RT task. |
| 402 | */ |
| 403 | cpumask_t rto_mask; |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 404 | atomic_t rto_count; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 405 | }; |
| 406 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 407 | /* |
| 408 | * By default the system creates a single root-domain with all cpus as |
| 409 | * members (mimicking the global state we have today). |
| 410 | */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 411 | static struct root_domain def_root_domain; |
| 412 | |
| 413 | #endif |
| 414 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 415 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | * This is the main, per-CPU runqueue data structure. |
| 417 | * |
| 418 | * Locking rule: those places that want to lock multiple runqueues |
| 419 | * (such as the load balancing or the thread migration code), lock |
| 420 | * acquire operations must be ordered by ascending &runqueue. |
| 421 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 422 | struct rq { |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 423 | /* runqueue lock: */ |
| 424 | spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
| 426 | /* |
| 427 | * nr_running and cpu_load should be in the same cacheline because |
| 428 | * remote CPUs use both these fields when doing load calculation. |
| 429 | */ |
| 430 | unsigned long nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 431 | #define CPU_LOAD_IDX_MAX 5 |
| 432 | unsigned long cpu_load[CPU_LOAD_IDX_MAX]; |
Siddha, Suresh B | bdecea3 | 2007-05-08 00:32:48 -0700 | [diff] [blame] | 433 | unsigned char idle_at_tick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 434 | #ifdef CONFIG_NO_HZ |
| 435 | unsigned char in_nohz_recently; |
| 436 | #endif |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 437 | /* capture load from *all* tasks on this cpu: */ |
| 438 | struct load_weight load; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 439 | unsigned long nr_load_updates; |
| 440 | u64 nr_switches; |
| 441 | |
| 442 | struct cfs_rq cfs; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 443 | struct rt_rq rt; |
| 444 | u64 rt_period_expire; |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 445 | int rt_throttled; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 446 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 447 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 448 | /* list of leaf cfs_rq on this cpu: */ |
| 449 | struct list_head leaf_cfs_rq_list; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 450 | struct list_head leaf_rt_rq_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | /* |
| 454 | * This is part of a global counter where only the total sum |
| 455 | * over all CPUs matters. A task can increase this counter on |
| 456 | * one CPU and if it got migrated afterwards it may decrease |
| 457 | * it on another CPU. Always updated under the runqueue lock: |
| 458 | */ |
| 459 | unsigned long nr_uninterruptible; |
| 460 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 461 | struct task_struct *curr, *idle; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 462 | unsigned long next_balance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | struct mm_struct *prev_mm; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 464 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 465 | u64 clock, prev_clock_raw; |
| 466 | s64 clock_max_delta; |
| 467 | |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 468 | unsigned int clock_warps, clock_overflows, clock_underflows; |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 469 | u64 idle_clock; |
| 470 | unsigned int clock_deep_idle_events; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 471 | u64 tick_timestamp; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | atomic_t nr_iowait; |
| 474 | |
| 475 | #ifdef CONFIG_SMP |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 476 | struct root_domain *rd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | struct sched_domain *sd; |
| 478 | |
| 479 | /* For active balancing */ |
| 480 | int active_balance; |
| 481 | int push_cpu; |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 482 | /* cpu of this runqueue: */ |
| 483 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 485 | struct task_struct *migration_thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | struct list_head migration_queue; |
| 487 | #endif |
| 488 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 489 | #ifdef CONFIG_SCHED_HRTICK |
| 490 | unsigned long hrtick_flags; |
| 491 | ktime_t hrtick_expire; |
| 492 | struct hrtimer hrtick_timer; |
| 493 | #endif |
| 494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | #ifdef CONFIG_SCHEDSTATS |
| 496 | /* latency stats */ |
| 497 | struct sched_info rq_sched_info; |
| 498 | |
| 499 | /* sys_sched_yield() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 500 | unsigned int yld_exp_empty; |
| 501 | unsigned int yld_act_empty; |
| 502 | unsigned int yld_both_empty; |
| 503 | unsigned int yld_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | |
| 505 | /* schedule() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 506 | unsigned int sched_switch; |
| 507 | unsigned int sched_count; |
| 508 | unsigned int sched_goidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | /* try_to_wake_up() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 511 | unsigned int ttwu_count; |
| 512 | unsigned int ttwu_local; |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 513 | |
| 514 | /* BKL stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 515 | unsigned int bkl_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | #endif |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 517 | struct lock_class_key rq_lock_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | }; |
| 519 | |
Fenghua Yu | f34e3b6 | 2007-07-19 01:48:13 -0700 | [diff] [blame] | 520 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 522 | static inline void check_preempt_curr(struct rq *rq, struct task_struct *p) |
| 523 | { |
| 524 | rq->curr->sched_class->check_preempt_curr(rq, p); |
| 525 | } |
| 526 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 527 | static inline int cpu_of(struct rq *rq) |
| 528 | { |
| 529 | #ifdef CONFIG_SMP |
| 530 | return rq->cpu; |
| 531 | #else |
| 532 | return 0; |
| 533 | #endif |
| 534 | } |
| 535 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 536 | /* |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 537 | * Update the per-runqueue clock, as finegrained as the platform can give |
| 538 | * us, but without assuming monotonicity, etc.: |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 539 | */ |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 540 | static void __update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 541 | { |
| 542 | u64 prev_raw = rq->prev_clock_raw; |
| 543 | u64 now = sched_clock(); |
| 544 | s64 delta = now - prev_raw; |
| 545 | u64 clock = rq->clock; |
| 546 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 547 | #ifdef CONFIG_SCHED_DEBUG |
| 548 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 549 | #endif |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 550 | /* |
| 551 | * Protect against sched_clock() occasionally going backwards: |
| 552 | */ |
| 553 | if (unlikely(delta < 0)) { |
| 554 | clock++; |
| 555 | rq->clock_warps++; |
| 556 | } else { |
| 557 | /* |
| 558 | * Catch too large forward jumps too: |
| 559 | */ |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 560 | if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) { |
| 561 | if (clock < rq->tick_timestamp + TICK_NSEC) |
| 562 | clock = rq->tick_timestamp + TICK_NSEC; |
| 563 | else |
| 564 | clock++; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 565 | rq->clock_overflows++; |
| 566 | } else { |
| 567 | if (unlikely(delta > rq->clock_max_delta)) |
| 568 | rq->clock_max_delta = delta; |
| 569 | clock += delta; |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | rq->prev_clock_raw = now; |
| 574 | rq->clock = clock; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 575 | } |
| 576 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 577 | static void update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 578 | { |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 579 | if (likely(smp_processor_id() == cpu_of(rq))) |
| 580 | __update_rq_clock(rq); |
| 581 | } |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 582 | |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 583 | /* |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 584 | * The domain tree (rq->sd) is protected by RCU's quiescent state transition. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 585 | * See detach_destroy_domains: synchronize_sched for details. |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 586 | * |
| 587 | * The domain tree of any CPU may only be accessed from within |
| 588 | * preempt-disabled sections. |
| 589 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 590 | #define for_each_domain(cpu, __sd) \ |
| 591 | for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
| 593 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu))) |
| 594 | #define this_rq() (&__get_cpu_var(runqueues)) |
| 595 | #define task_rq(p) cpu_rq(task_cpu(p)) |
| 596 | #define cpu_curr(cpu) (cpu_rq(cpu)->curr) |
| 597 | |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 598 | unsigned long rt_needs_cpu(int cpu) |
| 599 | { |
| 600 | struct rq *rq = cpu_rq(cpu); |
| 601 | u64 delta; |
| 602 | |
| 603 | if (!rq->rt_throttled) |
| 604 | return 0; |
| 605 | |
| 606 | if (rq->clock > rq->rt_period_expire) |
| 607 | return 1; |
| 608 | |
| 609 | delta = rq->rt_period_expire - rq->clock; |
| 610 | do_div(delta, NSEC_PER_SEC / HZ); |
| 611 | |
| 612 | return (unsigned long)delta; |
| 613 | } |
| 614 | |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 615 | /* |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 616 | * Tunables that become constants when CONFIG_SCHED_DEBUG is off: |
| 617 | */ |
| 618 | #ifdef CONFIG_SCHED_DEBUG |
| 619 | # define const_debug __read_mostly |
| 620 | #else |
| 621 | # define const_debug static const |
| 622 | #endif |
| 623 | |
| 624 | /* |
| 625 | * Debugging: various feature bits |
| 626 | */ |
| 627 | enum { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 628 | SCHED_FEAT_NEW_FAIR_SLEEPERS = 1, |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 629 | SCHED_FEAT_WAKEUP_PREEMPT = 2, |
| 630 | SCHED_FEAT_START_DEBIT = 4, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 631 | SCHED_FEAT_TREE_AVG = 8, |
| 632 | SCHED_FEAT_APPROX_AVG = 16, |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 633 | SCHED_FEAT_HRTICK = 32, |
| 634 | SCHED_FEAT_DOUBLE_TICK = 64, |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 635 | }; |
| 636 | |
| 637 | const_debug unsigned int sysctl_sched_features = |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 638 | SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 | |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 639 | SCHED_FEAT_WAKEUP_PREEMPT * 1 | |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 640 | SCHED_FEAT_START_DEBIT * 1 | |
| 641 | SCHED_FEAT_TREE_AVG * 0 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 642 | SCHED_FEAT_APPROX_AVG * 0 | |
| 643 | SCHED_FEAT_HRTICK * 1 | |
| 644 | SCHED_FEAT_DOUBLE_TICK * 0; |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 645 | |
| 646 | #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) |
| 647 | |
| 648 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 649 | * Number of tasks to iterate in a single balance run. |
| 650 | * Limited because this is done with IRQs disabled. |
| 651 | */ |
| 652 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
| 653 | |
| 654 | /* |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 655 | * period over which we measure -rt task cpu usage in ms. |
| 656 | * default: 1s |
| 657 | */ |
| 658 | const_debug unsigned int sysctl_sched_rt_period = 1000; |
| 659 | |
| 660 | #define SCHED_RT_FRAC_SHIFT 16 |
| 661 | #define SCHED_RT_FRAC (1UL << SCHED_RT_FRAC_SHIFT) |
| 662 | |
| 663 | /* |
| 664 | * ratio of time -rt tasks may consume. |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 665 | * default: 95% |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 666 | */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 667 | const_debug unsigned int sysctl_sched_rt_ratio = 62259; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 668 | |
| 669 | /* |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 670 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
| 671 | * clock constructed from sched_clock(): |
| 672 | */ |
| 673 | unsigned long long cpu_clock(int cpu) |
| 674 | { |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 675 | unsigned long long now; |
| 676 | unsigned long flags; |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 677 | struct rq *rq; |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 678 | |
Ingo Molnar | 2cd4d0e | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 679 | local_irq_save(flags); |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 680 | rq = cpu_rq(cpu); |
Ingo Molnar | 8ced5f6 | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 681 | /* |
| 682 | * Only call sched_clock() if the scheduler has already been |
| 683 | * initialized (some code might call cpu_clock() very early): |
| 684 | */ |
| 685 | if (rq->idle) |
| 686 | update_rq_clock(rq); |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 687 | now = rq->clock; |
Ingo Molnar | 2cd4d0e | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 688 | local_irq_restore(flags); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 689 | |
| 690 | return now; |
| 691 | } |
Paul E. McKenney | a58f6f2 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 692 | EXPORT_SYMBOL_GPL(cpu_clock); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | #ifndef prepare_arch_switch |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 695 | # define prepare_arch_switch(next) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 696 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 697 | #ifndef finish_arch_switch |
| 698 | # define finish_arch_switch(prev) do { } while (0) |
| 699 | #endif |
| 700 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 701 | static inline int task_current(struct rq *rq, struct task_struct *p) |
| 702 | { |
| 703 | return rq->curr == p; |
| 704 | } |
| 705 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 706 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 707 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 708 | { |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 709 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 710 | } |
| 711 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 712 | static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 713 | { |
| 714 | } |
| 715 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 716 | static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 717 | { |
Ingo Molnar | da04c03 | 2005-09-13 11:17:59 +0200 | [diff] [blame] | 718 | #ifdef CONFIG_DEBUG_SPINLOCK |
| 719 | /* this is a valid case when another task releases the spinlock */ |
| 720 | rq->lock.owner = current; |
| 721 | #endif |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 722 | /* |
| 723 | * If we are tracking spinlock dependencies then we have to |
| 724 | * fix up the runqueue lock - which gets 'carried over' from |
| 725 | * prev into current: |
| 726 | */ |
| 727 | spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_); |
| 728 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 729 | spin_unlock_irq(&rq->lock); |
| 730 | } |
| 731 | |
| 732 | #else /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 733 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 734 | { |
| 735 | #ifdef CONFIG_SMP |
| 736 | return p->oncpu; |
| 737 | #else |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 738 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 739 | #endif |
| 740 | } |
| 741 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 742 | static inline void prepare_lock_switch(struct rq *rq, struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 743 | { |
| 744 | #ifdef CONFIG_SMP |
| 745 | /* |
| 746 | * We can optimise this out completely for !SMP, because the |
| 747 | * SMP rebalancing from interrupt is the only thing that cares |
| 748 | * here. |
| 749 | */ |
| 750 | next->oncpu = 1; |
| 751 | #endif |
| 752 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 753 | spin_unlock_irq(&rq->lock); |
| 754 | #else |
| 755 | spin_unlock(&rq->lock); |
| 756 | #endif |
| 757 | } |
| 758 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 759 | static inline void finish_lock_switch(struct rq *rq, struct task_struct *prev) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 760 | { |
| 761 | #ifdef CONFIG_SMP |
| 762 | /* |
| 763 | * After ->oncpu is cleared, the task can be moved to a different CPU. |
| 764 | * We must ensure this doesn't happen until the switch is completely |
| 765 | * finished. |
| 766 | */ |
| 767 | smp_wmb(); |
| 768 | prev->oncpu = 0; |
| 769 | #endif |
| 770 | #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 771 | local_irq_enable(); |
| 772 | #endif |
| 773 | } |
| 774 | #endif /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | |
| 776 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 777 | * __task_rq_lock - lock the runqueue a given task resides on. |
| 778 | * Must be called interrupts disabled. |
| 779 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 780 | static inline struct rq *__task_rq_lock(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 781 | __acquires(rq->lock) |
| 782 | { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 783 | for (;;) { |
| 784 | struct rq *rq = task_rq(p); |
| 785 | spin_lock(&rq->lock); |
| 786 | if (likely(rq == task_rq(p))) |
| 787 | return rq; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 788 | spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 789 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 790 | } |
| 791 | |
| 792 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | * task_rq_lock - lock the runqueue a given task resides on and disable |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 794 | * interrupts. Note the ordering: we can safely lookup the task_rq without |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | * explicitly disabling preemption. |
| 796 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 797 | static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 798 | __acquires(rq->lock) |
| 799 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 800 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 802 | for (;;) { |
| 803 | local_irq_save(*flags); |
| 804 | rq = task_rq(p); |
| 805 | spin_lock(&rq->lock); |
| 806 | if (likely(rq == task_rq(p))) |
| 807 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | spin_unlock_irqrestore(&rq->lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
| 811 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 812 | static void __task_rq_unlock(struct rq *rq) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 813 | __releases(rq->lock) |
| 814 | { |
| 815 | spin_unlock(&rq->lock); |
| 816 | } |
| 817 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 818 | static inline void task_rq_unlock(struct rq *rq, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | __releases(rq->lock) |
| 820 | { |
| 821 | spin_unlock_irqrestore(&rq->lock, *flags); |
| 822 | } |
| 823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | /* |
Robert P. J. Day | cc2a73b | 2006-12-10 02:20:00 -0800 | [diff] [blame] | 825 | * this_rq_lock - lock this runqueue and disable interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 827 | static struct rq *this_rq_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | __acquires(rq->lock) |
| 829 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 830 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | |
| 832 | local_irq_disable(); |
| 833 | rq = this_rq(); |
| 834 | spin_lock(&rq->lock); |
| 835 | |
| 836 | return rq; |
| 837 | } |
| 838 | |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 839 | /* |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 840 | * We are going deep-idle (irqs are disabled): |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 841 | */ |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 842 | void sched_clock_idle_sleep_event(void) |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 843 | { |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 844 | struct rq *rq = cpu_rq(smp_processor_id()); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 845 | |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 846 | spin_lock(&rq->lock); |
| 847 | __update_rq_clock(rq); |
| 848 | spin_unlock(&rq->lock); |
| 849 | rq->clock_deep_idle_events++; |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 850 | } |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 851 | EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event); |
| 852 | |
| 853 | /* |
| 854 | * We just idled delta nanoseconds (called with irqs disabled): |
| 855 | */ |
| 856 | void sched_clock_idle_wakeup_event(u64 delta_ns) |
| 857 | { |
| 858 | struct rq *rq = cpu_rq(smp_processor_id()); |
| 859 | u64 now = sched_clock(); |
| 860 | |
| 861 | rq->idle_clock += delta_ns; |
| 862 | /* |
| 863 | * Override the previous timestamp and ignore all |
| 864 | * sched_clock() deltas that occured while we idled, |
| 865 | * and use the PM-provided delta_ns to advance the |
| 866 | * rq clock: |
| 867 | */ |
| 868 | spin_lock(&rq->lock); |
| 869 | rq->prev_clock_raw = now; |
| 870 | rq->clock += delta_ns; |
| 871 | spin_unlock(&rq->lock); |
Guillaume Chazarain | 782daee | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 872 | touch_softlockup_watchdog(); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 873 | } |
| 874 | EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 875 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 876 | static void __resched_task(struct task_struct *p, int tif_bit); |
| 877 | |
| 878 | static inline void resched_task(struct task_struct *p) |
| 879 | { |
| 880 | __resched_task(p, TIF_NEED_RESCHED); |
| 881 | } |
| 882 | |
| 883 | #ifdef CONFIG_SCHED_HRTICK |
| 884 | /* |
| 885 | * Use HR-timers to deliver accurate preemption points. |
| 886 | * |
| 887 | * Its all a bit involved since we cannot program an hrt while holding the |
| 888 | * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a |
| 889 | * reschedule event. |
| 890 | * |
| 891 | * When we get rescheduled we reprogram the hrtick_timer outside of the |
| 892 | * rq->lock. |
| 893 | */ |
| 894 | static inline void resched_hrt(struct task_struct *p) |
| 895 | { |
| 896 | __resched_task(p, TIF_HRTICK_RESCHED); |
| 897 | } |
| 898 | |
| 899 | static inline void resched_rq(struct rq *rq) |
| 900 | { |
| 901 | unsigned long flags; |
| 902 | |
| 903 | spin_lock_irqsave(&rq->lock, flags); |
| 904 | resched_task(rq->curr); |
| 905 | spin_unlock_irqrestore(&rq->lock, flags); |
| 906 | } |
| 907 | |
| 908 | enum { |
| 909 | HRTICK_SET, /* re-programm hrtick_timer */ |
| 910 | HRTICK_RESET, /* not a new slice */ |
| 911 | }; |
| 912 | |
| 913 | /* |
| 914 | * Use hrtick when: |
| 915 | * - enabled by features |
| 916 | * - hrtimer is actually high res |
| 917 | */ |
| 918 | static inline int hrtick_enabled(struct rq *rq) |
| 919 | { |
| 920 | if (!sched_feat(HRTICK)) |
| 921 | return 0; |
| 922 | return hrtimer_is_hres_active(&rq->hrtick_timer); |
| 923 | } |
| 924 | |
| 925 | /* |
| 926 | * Called to set the hrtick timer state. |
| 927 | * |
| 928 | * called with rq->lock held and irqs disabled |
| 929 | */ |
| 930 | static void hrtick_start(struct rq *rq, u64 delay, int reset) |
| 931 | { |
| 932 | assert_spin_locked(&rq->lock); |
| 933 | |
| 934 | /* |
| 935 | * preempt at: now + delay |
| 936 | */ |
| 937 | rq->hrtick_expire = |
| 938 | ktime_add_ns(rq->hrtick_timer.base->get_time(), delay); |
| 939 | /* |
| 940 | * indicate we need to program the timer |
| 941 | */ |
| 942 | __set_bit(HRTICK_SET, &rq->hrtick_flags); |
| 943 | if (reset) |
| 944 | __set_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 945 | |
| 946 | /* |
| 947 | * New slices are called from the schedule path and don't need a |
| 948 | * forced reschedule. |
| 949 | */ |
| 950 | if (reset) |
| 951 | resched_hrt(rq->curr); |
| 952 | } |
| 953 | |
| 954 | static void hrtick_clear(struct rq *rq) |
| 955 | { |
| 956 | if (hrtimer_active(&rq->hrtick_timer)) |
| 957 | hrtimer_cancel(&rq->hrtick_timer); |
| 958 | } |
| 959 | |
| 960 | /* |
| 961 | * Update the timer from the possible pending state. |
| 962 | */ |
| 963 | static void hrtick_set(struct rq *rq) |
| 964 | { |
| 965 | ktime_t time; |
| 966 | int set, reset; |
| 967 | unsigned long flags; |
| 968 | |
| 969 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 970 | |
| 971 | spin_lock_irqsave(&rq->lock, flags); |
| 972 | set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags); |
| 973 | reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 974 | time = rq->hrtick_expire; |
| 975 | clear_thread_flag(TIF_HRTICK_RESCHED); |
| 976 | spin_unlock_irqrestore(&rq->lock, flags); |
| 977 | |
| 978 | if (set) { |
| 979 | hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS); |
| 980 | if (reset && !hrtimer_active(&rq->hrtick_timer)) |
| 981 | resched_rq(rq); |
| 982 | } else |
| 983 | hrtick_clear(rq); |
| 984 | } |
| 985 | |
| 986 | /* |
| 987 | * High-resolution timer tick. |
| 988 | * Runs from hardirq context with interrupts disabled. |
| 989 | */ |
| 990 | static enum hrtimer_restart hrtick(struct hrtimer *timer) |
| 991 | { |
| 992 | struct rq *rq = container_of(timer, struct rq, hrtick_timer); |
| 993 | |
| 994 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 995 | |
| 996 | spin_lock(&rq->lock); |
| 997 | __update_rq_clock(rq); |
| 998 | rq->curr->sched_class->task_tick(rq, rq->curr, 1); |
| 999 | spin_unlock(&rq->lock); |
| 1000 | |
| 1001 | return HRTIMER_NORESTART; |
| 1002 | } |
| 1003 | |
| 1004 | static inline void init_rq_hrtick(struct rq *rq) |
| 1005 | { |
| 1006 | rq->hrtick_flags = 0; |
| 1007 | hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1008 | rq->hrtick_timer.function = hrtick; |
| 1009 | rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 1010 | } |
| 1011 | |
| 1012 | void hrtick_resched(void) |
| 1013 | { |
| 1014 | struct rq *rq; |
| 1015 | unsigned long flags; |
| 1016 | |
| 1017 | if (!test_thread_flag(TIF_HRTICK_RESCHED)) |
| 1018 | return; |
| 1019 | |
| 1020 | local_irq_save(flags); |
| 1021 | rq = cpu_rq(smp_processor_id()); |
| 1022 | hrtick_set(rq); |
| 1023 | local_irq_restore(flags); |
| 1024 | } |
| 1025 | #else |
| 1026 | static inline void hrtick_clear(struct rq *rq) |
| 1027 | { |
| 1028 | } |
| 1029 | |
| 1030 | static inline void hrtick_set(struct rq *rq) |
| 1031 | { |
| 1032 | } |
| 1033 | |
| 1034 | static inline void init_rq_hrtick(struct rq *rq) |
| 1035 | { |
| 1036 | } |
| 1037 | |
| 1038 | void hrtick_resched(void) |
| 1039 | { |
| 1040 | } |
| 1041 | #endif |
| 1042 | |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1043 | /* |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1044 | * resched_task - mark a task 'to be rescheduled now'. |
| 1045 | * |
| 1046 | * On UP this means the setting of the need_resched flag, on SMP it |
| 1047 | * might also involve a cross-CPU call to trigger the scheduler on |
| 1048 | * the target CPU. |
| 1049 | */ |
| 1050 | #ifdef CONFIG_SMP |
| 1051 | |
| 1052 | #ifndef tsk_is_polling |
| 1053 | #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG) |
| 1054 | #endif |
| 1055 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1056 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1057 | { |
| 1058 | int cpu; |
| 1059 | |
| 1060 | assert_spin_locked(&task_rq(p)->lock); |
| 1061 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1062 | if (unlikely(test_tsk_thread_flag(p, tif_bit))) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1063 | return; |
| 1064 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1065 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1066 | |
| 1067 | cpu = task_cpu(p); |
| 1068 | if (cpu == smp_processor_id()) |
| 1069 | return; |
| 1070 | |
| 1071 | /* NEED_RESCHED must be visible before we test polling */ |
| 1072 | smp_mb(); |
| 1073 | if (!tsk_is_polling(p)) |
| 1074 | smp_send_reschedule(cpu); |
| 1075 | } |
| 1076 | |
| 1077 | static void resched_cpu(int cpu) |
| 1078 | { |
| 1079 | struct rq *rq = cpu_rq(cpu); |
| 1080 | unsigned long flags; |
| 1081 | |
| 1082 | if (!spin_trylock_irqsave(&rq->lock, flags)) |
| 1083 | return; |
| 1084 | resched_task(cpu_curr(cpu)); |
| 1085 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1086 | } |
| 1087 | #else |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1088 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1089 | { |
| 1090 | assert_spin_locked(&task_rq(p)->lock); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1091 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1092 | } |
| 1093 | #endif |
| 1094 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1095 | #if BITS_PER_LONG == 32 |
| 1096 | # define WMULT_CONST (~0UL) |
| 1097 | #else |
| 1098 | # define WMULT_CONST (1UL << 32) |
| 1099 | #endif |
| 1100 | |
| 1101 | #define WMULT_SHIFT 32 |
| 1102 | |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1103 | /* |
| 1104 | * Shift right and round: |
| 1105 | */ |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1106 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1107 | |
Ingo Molnar | cb1c4fc | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1108 | static unsigned long |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1109 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 1110 | struct load_weight *lw) |
| 1111 | { |
| 1112 | u64 tmp; |
| 1113 | |
| 1114 | if (unlikely(!lw->inv_weight)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1115 | lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1116 | |
| 1117 | tmp = (u64)delta_exec * weight; |
| 1118 | /* |
| 1119 | * Check whether we'd overflow the 64-bit multiplication: |
| 1120 | */ |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1121 | if (unlikely(tmp > WMULT_CONST)) |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1122 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1123 | WMULT_SHIFT/2); |
| 1124 | else |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1125 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1126 | |
Ingo Molnar | ecf691d | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1127 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1128 | } |
| 1129 | |
| 1130 | static inline unsigned long |
| 1131 | calc_delta_fair(unsigned long delta_exec, struct load_weight *lw) |
| 1132 | { |
| 1133 | return calc_delta_mine(delta_exec, NICE_0_LOAD, lw); |
| 1134 | } |
| 1135 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1136 | static inline void update_load_add(struct load_weight *lw, unsigned long inc) |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1137 | { |
| 1138 | lw->weight += inc; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1139 | } |
| 1140 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1141 | static inline void update_load_sub(struct load_weight *lw, unsigned long dec) |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1142 | { |
| 1143 | lw->weight -= dec; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1144 | } |
| 1145 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1147 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
| 1148 | * of tasks with abnormal "nice" values across CPUs the contribution that |
| 1149 | * each task makes to its run queue's load is weighted according to its |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 1150 | * scheduling class and "nice" value. For SCHED_NORMAL tasks this is just a |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1151 | * scaled version of the new time slice allocation that they receive on time |
| 1152 | * slice expiry etc. |
| 1153 | */ |
| 1154 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1155 | #define WEIGHT_IDLEPRIO 2 |
| 1156 | #define WMULT_IDLEPRIO (1 << 31) |
| 1157 | |
| 1158 | /* |
| 1159 | * Nice levels are multiplicative, with a gentle 10% change for every |
| 1160 | * nice level changed. I.e. when a CPU-bound task goes from nice 0 to |
| 1161 | * nice 1, it will get ~10% less CPU time than another CPU-bound task |
| 1162 | * that remained on nice 0. |
| 1163 | * |
| 1164 | * The "10% effect" is relative and cumulative: from _any_ nice level, |
| 1165 | * if you go up 1 level, it's -10% CPU usage, if you go down 1 level |
Ingo Molnar | f9153ee | 2007-07-16 09:46:30 +0200 | [diff] [blame] | 1166 | * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25. |
| 1167 | * If a task goes up by ~10% and another task goes down by ~10% then |
| 1168 | * the relative distance between them is ~25%.) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1169 | */ |
| 1170 | static const int prio_to_weight[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1171 | /* -20 */ 88761, 71755, 56483, 46273, 36291, |
| 1172 | /* -15 */ 29154, 23254, 18705, 14949, 11916, |
| 1173 | /* -10 */ 9548, 7620, 6100, 4904, 3906, |
| 1174 | /* -5 */ 3121, 2501, 1991, 1586, 1277, |
| 1175 | /* 0 */ 1024, 820, 655, 526, 423, |
| 1176 | /* 5 */ 335, 272, 215, 172, 137, |
| 1177 | /* 10 */ 110, 87, 70, 56, 45, |
| 1178 | /* 15 */ 36, 29, 23, 18, 15, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1179 | }; |
| 1180 | |
Ingo Molnar | 5714d2d | 2007-07-16 09:46:31 +0200 | [diff] [blame] | 1181 | /* |
| 1182 | * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated. |
| 1183 | * |
| 1184 | * In cases where the weight does not change often, we can use the |
| 1185 | * precalculated inverse to speed up arithmetics by turning divisions |
| 1186 | * into multiplications: |
| 1187 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1188 | static const u32 prio_to_wmult[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1189 | /* -20 */ 48388, 59856, 76040, 92818, 118348, |
| 1190 | /* -15 */ 147320, 184698, 229616, 287308, 360437, |
| 1191 | /* -10 */ 449829, 563644, 704093, 875809, 1099582, |
| 1192 | /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326, |
| 1193 | /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587, |
| 1194 | /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126, |
| 1195 | /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717, |
| 1196 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1197 | }; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1198 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1199 | static void activate_task(struct rq *rq, struct task_struct *p, int wakeup); |
| 1200 | |
| 1201 | /* |
| 1202 | * runqueue iterator, to support SMP load-balancing between different |
| 1203 | * scheduling classes, without having to expose their internal data |
| 1204 | * structures to the load-balancing proper: |
| 1205 | */ |
| 1206 | struct rq_iterator { |
| 1207 | void *arg; |
| 1208 | struct task_struct *(*start)(void *); |
| 1209 | struct task_struct *(*next)(void *); |
| 1210 | }; |
| 1211 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1212 | #ifdef CONFIG_SMP |
| 1213 | static unsigned long |
| 1214 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1215 | unsigned long max_load_move, struct sched_domain *sd, |
| 1216 | enum cpu_idle_type idle, int *all_pinned, |
| 1217 | int *this_best_prio, struct rq_iterator *iterator); |
| 1218 | |
| 1219 | static int |
| 1220 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1221 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 1222 | struct rq_iterator *iterator); |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1223 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1224 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1225 | #ifdef CONFIG_CGROUP_CPUACCT |
| 1226 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime); |
| 1227 | #else |
| 1228 | static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {} |
| 1229 | #endif |
| 1230 | |
Srivatsa Vaddagiri | 58e2d4c | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 1231 | static inline void inc_cpu_load(struct rq *rq, unsigned long load) |
| 1232 | { |
| 1233 | update_load_add(&rq->load, load); |
| 1234 | } |
| 1235 | |
| 1236 | static inline void dec_cpu_load(struct rq *rq, unsigned long load) |
| 1237 | { |
| 1238 | update_load_sub(&rq->load, load); |
| 1239 | } |
| 1240 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1241 | #ifdef CONFIG_SMP |
| 1242 | static unsigned long source_load(int cpu, int type); |
| 1243 | static unsigned long target_load(int cpu, int type); |
| 1244 | static unsigned long cpu_avg_load_per_task(int cpu); |
| 1245 | static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd); |
| 1246 | #endif /* CONFIG_SMP */ |
| 1247 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1248 | #include "sched_stats.h" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1249 | #include "sched_idletask.c" |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1250 | #include "sched_fair.c" |
| 1251 | #include "sched_rt.c" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1252 | #ifdef CONFIG_SCHED_DEBUG |
| 1253 | # include "sched_debug.c" |
| 1254 | #endif |
| 1255 | |
| 1256 | #define sched_class_highest (&rt_sched_class) |
| 1257 | |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1258 | static void inc_nr_running(struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1259 | { |
| 1260 | rq->nr_running++; |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1261 | } |
| 1262 | |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1263 | static void dec_nr_running(struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1264 | { |
| 1265 | rq->nr_running--; |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1266 | } |
| 1267 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1268 | static void set_load_weight(struct task_struct *p) |
| 1269 | { |
| 1270 | if (task_has_rt_policy(p)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1271 | p->se.load.weight = prio_to_weight[0] * 2; |
| 1272 | p->se.load.inv_weight = prio_to_wmult[0] >> 1; |
| 1273 | return; |
| 1274 | } |
| 1275 | |
| 1276 | /* |
| 1277 | * SCHED_IDLE tasks get minimal weight: |
| 1278 | */ |
| 1279 | if (p->policy == SCHED_IDLE) { |
| 1280 | p->se.load.weight = WEIGHT_IDLEPRIO; |
| 1281 | p->se.load.inv_weight = WMULT_IDLEPRIO; |
| 1282 | return; |
| 1283 | } |
| 1284 | |
| 1285 | p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO]; |
| 1286 | p->se.load.inv_weight = prio_to_wmult[p->static_prio - MAX_RT_PRIO]; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1287 | } |
| 1288 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1289 | static void enqueue_task(struct rq *rq, struct task_struct *p, int wakeup) |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1290 | { |
| 1291 | sched_info_queued(p); |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1292 | p->sched_class->enqueue_task(rq, p, wakeup); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1293 | p->se.on_rq = 1; |
| 1294 | } |
| 1295 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1296 | static void dequeue_task(struct rq *rq, struct task_struct *p, int sleep) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1297 | { |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1298 | p->sched_class->dequeue_task(rq, p, sleep); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1299 | p->se.on_rq = 0; |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1300 | } |
| 1301 | |
| 1302 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1303 | * __normal_prio - return the priority that is based on the static prio |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1304 | */ |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1305 | static inline int __normal_prio(struct task_struct *p) |
| 1306 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1307 | return p->static_prio; |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1308 | } |
| 1309 | |
| 1310 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1311 | * Calculate the expected normal priority: i.e. priority |
| 1312 | * without taking RT-inheritance into account. Might be |
| 1313 | * boosted by interactivity modifiers. Changes upon fork, |
| 1314 | * setprio syscalls, and whenever the interactivity |
| 1315 | * estimator recalculates. |
| 1316 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1317 | static inline int normal_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1318 | { |
| 1319 | int prio; |
| 1320 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1321 | if (task_has_rt_policy(p)) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1322 | prio = MAX_RT_PRIO-1 - p->rt_priority; |
| 1323 | else |
| 1324 | prio = __normal_prio(p); |
| 1325 | return prio; |
| 1326 | } |
| 1327 | |
| 1328 | /* |
| 1329 | * Calculate the current priority, i.e. the priority |
| 1330 | * taken into account by the scheduler. This value might |
| 1331 | * be boosted by RT tasks, or might be boosted by |
| 1332 | * interactivity modifiers. Will be RT if the task got |
| 1333 | * RT-boosted. If not then it returns p->normal_prio. |
| 1334 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1335 | static int effective_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1336 | { |
| 1337 | p->normal_prio = normal_prio(p); |
| 1338 | /* |
| 1339 | * If we are RT tasks or we were boosted to RT priority, |
| 1340 | * keep the priority unchanged. Otherwise, update priority |
| 1341 | * to the normal priority: |
| 1342 | */ |
| 1343 | if (!rt_prio(p->prio)) |
| 1344 | return p->normal_prio; |
| 1345 | return p->prio; |
| 1346 | } |
| 1347 | |
| 1348 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1349 | * activate_task - move a task to the runqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1350 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1351 | static void activate_task(struct rq *rq, struct task_struct *p, int wakeup) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1352 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1353 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1354 | rq->nr_uninterruptible--; |
| 1355 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1356 | enqueue_task(rq, p, wakeup); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1357 | inc_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | } |
| 1359 | |
| 1360 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | * deactivate_task - remove a task from the runqueue. |
| 1362 | */ |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1363 | static void deactivate_task(struct rq *rq, struct task_struct *p, int sleep) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1364 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1365 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1366 | rq->nr_uninterruptible++; |
| 1367 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1368 | dequeue_task(rq, p, sleep); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1369 | dec_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1370 | } |
| 1371 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1372 | /** |
| 1373 | * task_curr - is this task currently executing on a CPU? |
| 1374 | * @p: the task in question. |
| 1375 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1376 | inline int task_curr(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | { |
| 1378 | return cpu_curr(task_cpu(p)) == p; |
| 1379 | } |
| 1380 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1381 | /* Used instead of source_load when we know the type == 0 */ |
| 1382 | unsigned long weighted_cpuload(const int cpu) |
| 1383 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1384 | return cpu_rq(cpu)->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1385 | } |
| 1386 | |
| 1387 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1388 | { |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 1389 | set_task_rq(p, cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1390 | #ifdef CONFIG_SMP |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 1391 | /* |
| 1392 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
| 1393 | * successfuly executed on another CPU. We must ensure that updates of |
| 1394 | * per-task data have been completed by this moment. |
| 1395 | */ |
| 1396 | smp_wmb(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1397 | task_thread_info(p)->cpu = cpu; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1398 | #endif |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1399 | } |
| 1400 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1401 | static inline void check_class_changed(struct rq *rq, struct task_struct *p, |
| 1402 | const struct sched_class *prev_class, |
| 1403 | int oldprio, int running) |
| 1404 | { |
| 1405 | if (prev_class != p->sched_class) { |
| 1406 | if (prev_class->switched_from) |
| 1407 | prev_class->switched_from(rq, p, running); |
| 1408 | p->sched_class->switched_to(rq, p, running); |
| 1409 | } else |
| 1410 | p->sched_class->prio_changed(rq, p, oldprio, running); |
| 1411 | } |
| 1412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | #ifdef CONFIG_SMP |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1414 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1415 | /* |
| 1416 | * Is this task likely cache-hot: |
| 1417 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1418 | static int |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1419 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 1420 | { |
| 1421 | s64 delta; |
| 1422 | |
| 1423 | if (p->sched_class != &fair_sched_class) |
| 1424 | return 0; |
| 1425 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1426 | if (sysctl_sched_migration_cost == -1) |
| 1427 | return 1; |
| 1428 | if (sysctl_sched_migration_cost == 0) |
| 1429 | return 0; |
| 1430 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1431 | delta = now - p->se.exec_start; |
| 1432 | |
| 1433 | return delta < (s64)sysctl_sched_migration_cost; |
| 1434 | } |
| 1435 | |
| 1436 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1437 | void set_task_cpu(struct task_struct *p, unsigned int new_cpu) |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1438 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1439 | int old_cpu = task_cpu(p); |
| 1440 | struct rq *old_rq = cpu_rq(old_cpu), *new_rq = cpu_rq(new_cpu); |
Srivatsa Vaddagiri | 2830cf8 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1441 | struct cfs_rq *old_cfsrq = task_cfs_rq(p), |
| 1442 | *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu); |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1443 | u64 clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1444 | |
| 1445 | clock_offset = old_rq->clock - new_rq->clock; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1446 | |
| 1447 | #ifdef CONFIG_SCHEDSTATS |
| 1448 | if (p->se.wait_start) |
| 1449 | p->se.wait_start -= clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1450 | if (p->se.sleep_start) |
| 1451 | p->se.sleep_start -= clock_offset; |
| 1452 | if (p->se.block_start) |
| 1453 | p->se.block_start -= clock_offset; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1454 | if (old_cpu != new_cpu) { |
| 1455 | schedstat_inc(p, se.nr_migrations); |
| 1456 | if (task_hot(p, old_rq->clock, NULL)) |
| 1457 | schedstat_inc(p, se.nr_forced2_migrations); |
| 1458 | } |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1459 | #endif |
Srivatsa Vaddagiri | 2830cf8 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1460 | p->se.vruntime -= old_cfsrq->min_vruntime - |
| 1461 | new_cfsrq->min_vruntime; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1462 | |
| 1463 | __set_task_cpu(p, new_cpu); |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1464 | } |
| 1465 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1466 | struct migration_req { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1467 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1468 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1469 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | int dest_cpu; |
| 1471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | struct completion done; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1473 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1474 | |
| 1475 | /* |
| 1476 | * The task's runqueue lock must be held. |
| 1477 | * Returns true if you have to wait for migration thread. |
| 1478 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1479 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1480 | migrate_task(struct task_struct *p, int dest_cpu, struct migration_req *req) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1482 | struct rq *rq = task_rq(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | |
| 1484 | /* |
| 1485 | * If the task is not on a runqueue (and not running), then |
| 1486 | * it is sufficient to simply update the task's cpu field. |
| 1487 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1488 | if (!p->se.on_rq && !task_running(rq, p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | set_task_cpu(p, dest_cpu); |
| 1490 | return 0; |
| 1491 | } |
| 1492 | |
| 1493 | init_completion(&req->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1494 | req->task = p; |
| 1495 | req->dest_cpu = dest_cpu; |
| 1496 | list_add(&req->list, &rq->migration_queue); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 1497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | return 1; |
| 1499 | } |
| 1500 | |
| 1501 | /* |
| 1502 | * wait_task_inactive - wait for a thread to unschedule. |
| 1503 | * |
| 1504 | * The caller must ensure that the task *will* unschedule sometime soon, |
| 1505 | * else this function might spin for a *long* time. This function can't |
| 1506 | * be called with interrupts off, or it may introduce deadlock with |
| 1507 | * smp_call_function() if an IPI is sent by the same process we are |
| 1508 | * waiting to become inactive. |
| 1509 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1510 | void wait_task_inactive(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | { |
| 1512 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1513 | int running, on_rq; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1514 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1516 | for (;;) { |
| 1517 | /* |
| 1518 | * We do the initial early heuristics without holding |
| 1519 | * any task-queue locks at all. We'll only try to get |
| 1520 | * the runqueue lock when things look like they will |
| 1521 | * work out! |
| 1522 | */ |
| 1523 | rq = task_rq(p); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1524 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1525 | /* |
| 1526 | * If the task is actively running on another CPU |
| 1527 | * still, just relax and busy-wait without holding |
| 1528 | * any locks. |
| 1529 | * |
| 1530 | * NOTE! Since we don't hold any locks, it's not |
| 1531 | * even sure that "rq" stays as the right runqueue! |
| 1532 | * But we don't care, since "task_running()" will |
| 1533 | * return false if the runqueue has changed and p |
| 1534 | * is actually now running somewhere else! |
| 1535 | */ |
| 1536 | while (task_running(rq, p)) |
| 1537 | cpu_relax(); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1538 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1539 | /* |
| 1540 | * Ok, time to look more closely! We need the rq |
| 1541 | * lock now, to be *sure*. If we're wrong, we'll |
| 1542 | * just go back and repeat. |
| 1543 | */ |
| 1544 | rq = task_rq_lock(p, &flags); |
| 1545 | running = task_running(rq, p); |
| 1546 | on_rq = p->se.on_rq; |
| 1547 | task_rq_unlock(rq, &flags); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1548 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1549 | /* |
| 1550 | * Was it really running after all now that we |
| 1551 | * checked with the proper locks actually held? |
| 1552 | * |
| 1553 | * Oops. Go back and try again.. |
| 1554 | */ |
| 1555 | if (unlikely(running)) { |
| 1556 | cpu_relax(); |
| 1557 | continue; |
| 1558 | } |
| 1559 | |
| 1560 | /* |
| 1561 | * It's not enough that it's not actively running, |
| 1562 | * it must be off the runqueue _entirely_, and not |
| 1563 | * preempted! |
| 1564 | * |
| 1565 | * So if it wa still runnable (but just not actively |
| 1566 | * running right now), it's preempted, and we should |
| 1567 | * yield - it could be a while. |
| 1568 | */ |
| 1569 | if (unlikely(on_rq)) { |
| 1570 | schedule_timeout_uninterruptible(1); |
| 1571 | continue; |
| 1572 | } |
| 1573 | |
| 1574 | /* |
| 1575 | * Ahh, all good. It wasn't running, and it wasn't |
| 1576 | * runnable, which means that it will never become |
| 1577 | * running in the future either. We're all done! |
| 1578 | */ |
| 1579 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | } |
| 1582 | |
| 1583 | /*** |
| 1584 | * kick_process - kick a running thread to enter/exit the kernel |
| 1585 | * @p: the to-be-kicked thread |
| 1586 | * |
| 1587 | * Cause a process which is running on another CPU to enter |
| 1588 | * kernel-mode, without any delay. (to get signals handled.) |
| 1589 | * |
| 1590 | * NOTE: this function doesnt have to take the runqueue lock, |
| 1591 | * because all it wants to ensure is that the remote task enters |
| 1592 | * the kernel. If the IPI races and the task has been migrated |
| 1593 | * to another CPU then no harm is done and the purpose has been |
| 1594 | * achieved as well. |
| 1595 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1596 | void kick_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | { |
| 1598 | int cpu; |
| 1599 | |
| 1600 | preempt_disable(); |
| 1601 | cpu = task_cpu(p); |
| 1602 | if ((cpu != smp_processor_id()) && task_curr(p)) |
| 1603 | smp_send_reschedule(cpu); |
| 1604 | preempt_enable(); |
| 1605 | } |
| 1606 | |
| 1607 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1608 | * Return a low guess at the load of a migration-source cpu weighted |
| 1609 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | * |
| 1611 | * We want to under-estimate the load of migration sources, to |
| 1612 | * balance conservatively. |
| 1613 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1614 | static unsigned long source_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1615 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1616 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1617 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1618 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1619 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1620 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1621 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1622 | return min(rq->cpu_load[type-1], total); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
| 1625 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1626 | * Return a high guess at the load of a migration-target cpu weighted |
| 1627 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1629 | static unsigned long target_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1630 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1631 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1632 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1633 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1634 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1635 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1636 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1637 | return max(rq->cpu_load[type-1], total); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1638 | } |
| 1639 | |
| 1640 | /* |
| 1641 | * Return the average load per task on the cpu's run queue |
| 1642 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1643 | static unsigned long cpu_avg_load_per_task(int cpu) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1644 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1645 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1646 | unsigned long total = weighted_cpuload(cpu); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1647 | unsigned long n = rq->nr_running; |
| 1648 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1649 | return n ? total / n : SCHED_LOAD_SCALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | } |
| 1651 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1652 | /* |
| 1653 | * find_idlest_group finds and returns the least busy CPU group within the |
| 1654 | * domain. |
| 1655 | */ |
| 1656 | static struct sched_group * |
| 1657 | find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu) |
| 1658 | { |
| 1659 | struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups; |
| 1660 | unsigned long min_load = ULONG_MAX, this_load = 0; |
| 1661 | int load_idx = sd->forkexec_idx; |
| 1662 | int imbalance = 100 + (sd->imbalance_pct-100)/2; |
| 1663 | |
| 1664 | do { |
| 1665 | unsigned long load, avg_load; |
| 1666 | int local_group; |
| 1667 | int i; |
| 1668 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1669 | /* Skip over this group if it has no CPUs allowed */ |
| 1670 | if (!cpus_intersects(group->cpumask, p->cpus_allowed)) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1671 | continue; |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1672 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1673 | local_group = cpu_isset(this_cpu, group->cpumask); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1674 | |
| 1675 | /* Tally up the load of all CPUs in the group */ |
| 1676 | avg_load = 0; |
| 1677 | |
| 1678 | for_each_cpu_mask(i, group->cpumask) { |
| 1679 | /* Bias balancing toward cpus of our domain */ |
| 1680 | if (local_group) |
| 1681 | load = source_load(i, load_idx); |
| 1682 | else |
| 1683 | load = target_load(i, load_idx); |
| 1684 | |
| 1685 | avg_load += load; |
| 1686 | } |
| 1687 | |
| 1688 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 1689 | avg_load = sg_div_cpu_power(group, |
| 1690 | avg_load * SCHED_LOAD_SCALE); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1691 | |
| 1692 | if (local_group) { |
| 1693 | this_load = avg_load; |
| 1694 | this = group; |
| 1695 | } else if (avg_load < min_load) { |
| 1696 | min_load = avg_load; |
| 1697 | idlest = group; |
| 1698 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1699 | } while (group = group->next, group != sd->groups); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1700 | |
| 1701 | if (!idlest || 100*this_load < imbalance*min_load) |
| 1702 | return NULL; |
| 1703 | return idlest; |
| 1704 | } |
| 1705 | |
| 1706 | /* |
Satoru Takeuchi | 0feaece | 2006-10-03 01:14:10 -0700 | [diff] [blame] | 1707 | * find_idlest_cpu - find the idlest cpu among the cpus in group. |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1708 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 1709 | static int |
| 1710 | find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu) |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1711 | { |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1712 | cpumask_t tmp; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1713 | unsigned long load, min_load = ULONG_MAX; |
| 1714 | int idlest = -1; |
| 1715 | int i; |
| 1716 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1717 | /* Traverse only the allowed CPUs */ |
| 1718 | cpus_and(tmp, group->cpumask, p->cpus_allowed); |
| 1719 | |
| 1720 | for_each_cpu_mask(i, tmp) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1721 | load = weighted_cpuload(i); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1722 | |
| 1723 | if (load < min_load || (load == min_load && i == this_cpu)) { |
| 1724 | min_load = load; |
| 1725 | idlest = i; |
| 1726 | } |
| 1727 | } |
| 1728 | |
| 1729 | return idlest; |
| 1730 | } |
| 1731 | |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1732 | /* |
| 1733 | * sched_balance_self: balance the current task (running on cpu) in domains |
| 1734 | * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and |
| 1735 | * SD_BALANCE_EXEC. |
| 1736 | * |
| 1737 | * Balance, ie. select the least loaded group. |
| 1738 | * |
| 1739 | * Returns the target CPU number, or the same CPU if no balancing is needed. |
| 1740 | * |
| 1741 | * preempt must be disabled. |
| 1742 | */ |
| 1743 | static int sched_balance_self(int cpu, int flag) |
| 1744 | { |
| 1745 | struct task_struct *t = current; |
| 1746 | struct sched_domain *tmp, *sd = NULL; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1747 | |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1748 | for_each_domain(cpu, tmp) { |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1749 | /* |
| 1750 | * If power savings logic is enabled for a domain, stop there. |
| 1751 | */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 1752 | if (tmp->flags & SD_POWERSAVINGS_BALANCE) |
| 1753 | break; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1754 | if (tmp->flags & flag) |
| 1755 | sd = tmp; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1756 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1757 | |
| 1758 | while (sd) { |
| 1759 | cpumask_t span; |
| 1760 | struct sched_group *group; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1761 | int new_cpu, weight; |
| 1762 | |
| 1763 | if (!(sd->flags & flag)) { |
| 1764 | sd = sd->child; |
| 1765 | continue; |
| 1766 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1767 | |
| 1768 | span = sd->span; |
| 1769 | group = find_idlest_group(sd, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1770 | if (!group) { |
| 1771 | sd = sd->child; |
| 1772 | continue; |
| 1773 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1774 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1775 | new_cpu = find_idlest_cpu(group, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1776 | if (new_cpu == -1 || new_cpu == cpu) { |
| 1777 | /* Now try balancing at a lower domain level of cpu */ |
| 1778 | sd = sd->child; |
| 1779 | continue; |
| 1780 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1781 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1782 | /* Now try balancing at a lower domain level of new_cpu */ |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1783 | cpu = new_cpu; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1784 | sd = NULL; |
| 1785 | weight = cpus_weight(span); |
| 1786 | for_each_domain(cpu, tmp) { |
| 1787 | if (weight <= cpus_weight(tmp->span)) |
| 1788 | break; |
| 1789 | if (tmp->flags & flag) |
| 1790 | sd = tmp; |
| 1791 | } |
| 1792 | /* while loop will break here if sd == NULL */ |
| 1793 | } |
| 1794 | |
| 1795 | return cpu; |
| 1796 | } |
| 1797 | |
| 1798 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1800 | /*** |
| 1801 | * try_to_wake_up - wake up a thread |
| 1802 | * @p: the to-be-woken-up thread |
| 1803 | * @state: the mask of task states that can be woken |
| 1804 | * @sync: do a synchronous wakeup? |
| 1805 | * |
| 1806 | * Put it on the run-queue if it's not already there. The "current" |
| 1807 | * thread is always on the run-queue (except when the actual |
| 1808 | * re-schedule is in progress), and as such you're allowed to do |
| 1809 | * the simpler "current->state = TASK_RUNNING" to mark yourself |
| 1810 | * runnable without the overhead of this. |
| 1811 | * |
| 1812 | * returns failure only if the task is already active. |
| 1813 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1814 | static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1815 | { |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1816 | int cpu, orig_cpu, this_cpu, success = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | unsigned long flags; |
| 1818 | long old_state; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1819 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1820 | |
| 1821 | rq = task_rq_lock(p, &flags); |
| 1822 | old_state = p->state; |
| 1823 | if (!(old_state & state)) |
| 1824 | goto out; |
| 1825 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1826 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1827 | goto out_running; |
| 1828 | |
| 1829 | cpu = task_cpu(p); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1830 | orig_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | this_cpu = smp_processor_id(); |
| 1832 | |
| 1833 | #ifdef CONFIG_SMP |
| 1834 | if (unlikely(task_running(rq, p))) |
| 1835 | goto out_activate; |
| 1836 | |
Dmitry Adamushko | 5d2f5a6 | 2008-01-25 21:08:21 +0100 | [diff] [blame] | 1837 | cpu = p->sched_class->select_task_rq(p, sync); |
| 1838 | if (cpu != orig_cpu) { |
| 1839 | set_task_cpu(p, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | task_rq_unlock(rq, &flags); |
| 1841 | /* might preempt at this point */ |
| 1842 | rq = task_rq_lock(p, &flags); |
| 1843 | old_state = p->state; |
| 1844 | if (!(old_state & state)) |
| 1845 | goto out; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1846 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1847 | goto out_running; |
| 1848 | |
| 1849 | this_cpu = smp_processor_id(); |
| 1850 | cpu = task_cpu(p); |
| 1851 | } |
| 1852 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1853 | #ifdef CONFIG_SCHEDSTATS |
| 1854 | schedstat_inc(rq, ttwu_count); |
| 1855 | if (cpu == this_cpu) |
| 1856 | schedstat_inc(rq, ttwu_local); |
| 1857 | else { |
| 1858 | struct sched_domain *sd; |
| 1859 | for_each_domain(this_cpu, sd) { |
| 1860 | if (cpu_isset(cpu, sd->span)) { |
| 1861 | schedstat_inc(sd, ttwu_wake_remote); |
| 1862 | break; |
| 1863 | } |
| 1864 | } |
| 1865 | } |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1866 | #endif |
| 1867 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1868 | out_activate: |
| 1869 | #endif /* CONFIG_SMP */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1870 | schedstat_inc(p, se.nr_wakeups); |
| 1871 | if (sync) |
| 1872 | schedstat_inc(p, se.nr_wakeups_sync); |
| 1873 | if (orig_cpu != cpu) |
| 1874 | schedstat_inc(p, se.nr_wakeups_migrate); |
| 1875 | if (cpu == this_cpu) |
| 1876 | schedstat_inc(p, se.nr_wakeups_local); |
| 1877 | else |
| 1878 | schedstat_inc(p, se.nr_wakeups_remote); |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1879 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1880 | activate_task(rq, p, 1); |
Ingo Molnar | 9c63d9c | 2007-10-15 17:00:20 +0200 | [diff] [blame] | 1881 | check_preempt_curr(rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1882 | success = 1; |
| 1883 | |
| 1884 | out_running: |
| 1885 | p->state = TASK_RUNNING; |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1886 | #ifdef CONFIG_SMP |
| 1887 | if (p->sched_class->task_wake_up) |
| 1888 | p->sched_class->task_wake_up(rq, p); |
| 1889 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | out: |
| 1891 | task_rq_unlock(rq, &flags); |
| 1892 | |
| 1893 | return success; |
| 1894 | } |
| 1895 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1896 | int fastcall wake_up_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1897 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1898 | return try_to_wake_up(p, TASK_ALL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1899 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | EXPORT_SYMBOL(wake_up_process); |
| 1901 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1902 | int fastcall wake_up_state(struct task_struct *p, unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | { |
| 1904 | return try_to_wake_up(p, state, 0); |
| 1905 | } |
| 1906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | /* |
| 1908 | * Perform scheduler related setup for a newly forked process p. |
| 1909 | * p is forked by current. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1910 | * |
| 1911 | * __sched_fork() is basic setup used by init_idle() too: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1912 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1913 | static void __sched_fork(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1914 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1915 | p->se.exec_start = 0; |
| 1916 | p->se.sum_exec_runtime = 0; |
Ingo Molnar | f6cf891 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 1917 | p->se.prev_sum_exec_runtime = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1918 | |
| 1919 | #ifdef CONFIG_SCHEDSTATS |
| 1920 | p->se.wait_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1921 | p->se.sum_sleep_runtime = 0; |
| 1922 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1923 | p->se.block_start = 0; |
| 1924 | p->se.sleep_max = 0; |
| 1925 | p->se.block_max = 0; |
| 1926 | p->se.exec_max = 0; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 1927 | p->se.slice_max = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1928 | p->se.wait_max = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1929 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1930 | |
Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1931 | INIT_LIST_HEAD(&p->rt.run_list); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1932 | p->se.on_rq = 0; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1933 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 1934 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 1935 | INIT_HLIST_HEAD(&p->preempt_notifiers); |
| 1936 | #endif |
| 1937 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1938 | /* |
| 1939 | * We mark the process as running here, but have not actually |
| 1940 | * inserted it onto the runqueue yet. This guarantees that |
| 1941 | * nobody will actually run it, and a signal or other external |
| 1942 | * event cannot wake it up and insert it on the runqueue either. |
| 1943 | */ |
| 1944 | p->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1945 | } |
| 1946 | |
| 1947 | /* |
| 1948 | * fork()/clone()-time setup: |
| 1949 | */ |
| 1950 | void sched_fork(struct task_struct *p, int clone_flags) |
| 1951 | { |
| 1952 | int cpu = get_cpu(); |
| 1953 | |
| 1954 | __sched_fork(p); |
| 1955 | |
| 1956 | #ifdef CONFIG_SMP |
| 1957 | cpu = sched_balance_self(cpu, SD_BALANCE_FORK); |
| 1958 | #endif |
Ingo Molnar | 02e4bac | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 1959 | set_task_cpu(p, cpu); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1960 | |
| 1961 | /* |
| 1962 | * Make sure we do not leak PI boosting priority to the child: |
| 1963 | */ |
| 1964 | p->prio = current->normal_prio; |
Hiroshi Shimamoto | 2ddbf95 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 1965 | if (!rt_prio(p->prio)) |
| 1966 | p->sched_class = &fair_sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1967 | |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 1968 | #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1969 | if (likely(sched_info_on())) |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 1970 | memset(&p->sched_info, 0, sizeof(p->sched_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | #endif |
Chen, Kenneth W | d6077cb | 2006-02-14 13:53:10 -0800 | [diff] [blame] | 1972 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 1973 | p->oncpu = 0; |
| 1974 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | #ifdef CONFIG_PREEMPT |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 1976 | /* Want to start with kernel preemption disabled. */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 1977 | task_thread_info(p)->preempt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1978 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1979 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1980 | } |
| 1981 | |
| 1982 | /* |
| 1983 | * wake_up_new_task - wake up a newly created task for the first time. |
| 1984 | * |
| 1985 | * This function will do some initial scheduler statistics housekeeping |
| 1986 | * that must be done for every newly created context, then puts the task |
| 1987 | * on the runqueue and wakes it. |
| 1988 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1989 | void fastcall wake_up_new_task(struct task_struct *p, unsigned long clone_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | { |
| 1991 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1992 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | |
| 1994 | rq = task_rq_lock(p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | BUG_ON(p->state != TASK_RUNNING); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 1996 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
| 1998 | p->prio = effective_prio(p); |
| 1999 | |
Srivatsa Vaddagiri | b9dca1e | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2000 | if (!p->sched_class->task_new || !current->se.on_rq) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2001 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2004 | * Let the scheduling class do new task startup |
| 2005 | * management (if any): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2007 | p->sched_class->task_new(rq, p); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 2008 | inc_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2010 | check_preempt_curr(rq, p); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2011 | #ifdef CONFIG_SMP |
| 2012 | if (p->sched_class->task_wake_up) |
| 2013 | p->sched_class->task_wake_up(rq, p); |
| 2014 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2015 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2016 | } |
| 2017 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2018 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2019 | |
| 2020 | /** |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2021 | * preempt_notifier_register - tell me when current is being being preempted & rescheduled |
| 2022 | * @notifier: notifier struct to register |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2023 | */ |
| 2024 | void preempt_notifier_register(struct preempt_notifier *notifier) |
| 2025 | { |
| 2026 | hlist_add_head(¬ifier->link, ¤t->preempt_notifiers); |
| 2027 | } |
| 2028 | EXPORT_SYMBOL_GPL(preempt_notifier_register); |
| 2029 | |
| 2030 | /** |
| 2031 | * preempt_notifier_unregister - no longer interested in preemption notifications |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2032 | * @notifier: notifier struct to unregister |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2033 | * |
| 2034 | * This is safe to call from within a preemption notifier. |
| 2035 | */ |
| 2036 | void preempt_notifier_unregister(struct preempt_notifier *notifier) |
| 2037 | { |
| 2038 | hlist_del(¬ifier->link); |
| 2039 | } |
| 2040 | EXPORT_SYMBOL_GPL(preempt_notifier_unregister); |
| 2041 | |
| 2042 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2043 | { |
| 2044 | struct preempt_notifier *notifier; |
| 2045 | struct hlist_node *node; |
| 2046 | |
| 2047 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2048 | notifier->ops->sched_in(notifier, raw_smp_processor_id()); |
| 2049 | } |
| 2050 | |
| 2051 | static void |
| 2052 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2053 | struct task_struct *next) |
| 2054 | { |
| 2055 | struct preempt_notifier *notifier; |
| 2056 | struct hlist_node *node; |
| 2057 | |
| 2058 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2059 | notifier->ops->sched_out(notifier, next); |
| 2060 | } |
| 2061 | |
| 2062 | #else |
| 2063 | |
| 2064 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2065 | { |
| 2066 | } |
| 2067 | |
| 2068 | static void |
| 2069 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2070 | struct task_struct *next) |
| 2071 | { |
| 2072 | } |
| 2073 | |
| 2074 | #endif |
| 2075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2076 | /** |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2077 | * prepare_task_switch - prepare to switch tasks |
| 2078 | * @rq: the runqueue preparing to switch |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2079 | * @prev: the current task that is being switched out |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2080 | * @next: the task we are going to switch to. |
| 2081 | * |
| 2082 | * This is called with the rq lock held and interrupts off. It must |
| 2083 | * be paired with a subsequent finish_task_switch after the context |
| 2084 | * switch. |
| 2085 | * |
| 2086 | * prepare_task_switch sets up locking and calls architecture specific |
| 2087 | * hooks. |
| 2088 | */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2089 | static inline void |
| 2090 | prepare_task_switch(struct rq *rq, struct task_struct *prev, |
| 2091 | struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2092 | { |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2093 | fire_sched_out_preempt_notifiers(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2094 | prepare_lock_switch(rq, next); |
| 2095 | prepare_arch_switch(next); |
| 2096 | } |
| 2097 | |
| 2098 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | * finish_task_switch - clean up after a task-switch |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 2100 | * @rq: runqueue associated with task-switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2101 | * @prev: the thread we just switched away from. |
| 2102 | * |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2103 | * finish_task_switch must be called after the context switch, paired |
| 2104 | * with a prepare_task_switch call before the context switch. |
| 2105 | * finish_task_switch will reconcile locking set up by prepare_task_switch, |
| 2106 | * and do any other architecture-specific cleanup actions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | * |
| 2108 | * Note that we may have delayed dropping an mm in context_switch(). If |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2109 | * so, we finish that here outside of the runqueue lock. (Doing it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | * with the lock held can cause deadlocks; see schedule() for |
| 2111 | * details.) |
| 2112 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 2113 | static void finish_task_switch(struct rq *rq, struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | __releases(rq->lock) |
| 2115 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | struct mm_struct *mm = rq->prev_mm; |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2117 | long prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2118 | |
| 2119 | rq->prev_mm = NULL; |
| 2120 | |
| 2121 | /* |
| 2122 | * A task struct has one reference for the use as "current". |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2123 | * If a task dies, then it sets TASK_DEAD in tsk->state and calls |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2124 | * schedule one last time. The schedule call will never return, and |
| 2125 | * the scheduled task must drop that reference. |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2126 | * The test for TASK_DEAD must occur while the runqueue locks are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | * still held, otherwise prev could be scheduled on another cpu, die |
| 2128 | * there before we look at prev->state, and then the reference would |
| 2129 | * be dropped twice. |
| 2130 | * Manfred Spraul <manfred@colorfullife.com> |
| 2131 | */ |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2132 | prev_state = prev->state; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2133 | finish_arch_switch(prev); |
| 2134 | finish_lock_switch(rq, prev); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2135 | #ifdef CONFIG_SMP |
| 2136 | if (current->sched_class->post_schedule) |
| 2137 | current->sched_class->post_schedule(rq); |
| 2138 | #endif |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2139 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2140 | fire_sched_in_preempt_notifiers(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | if (mm) |
| 2142 | mmdrop(mm); |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2143 | if (unlikely(prev_state == TASK_DEAD)) { |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2144 | /* |
| 2145 | * Remove function-return probe instances associated with this |
| 2146 | * task and put them back on the free list. |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2147 | */ |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2148 | kprobe_flush_task(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | put_task_struct(prev); |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2150 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | } |
| 2152 | |
| 2153 | /** |
| 2154 | * schedule_tail - first thing a freshly forked thread must call. |
| 2155 | * @prev: the thread we just switched away from. |
| 2156 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2157 | asmlinkage void schedule_tail(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | __releases(rq->lock) |
| 2159 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2160 | struct rq *rq = this_rq(); |
| 2161 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2162 | finish_task_switch(rq, prev); |
| 2163 | #ifdef __ARCH_WANT_UNLOCKED_CTXSW |
| 2164 | /* In this case, finish_task_switch does not reenable preemption */ |
| 2165 | preempt_enable(); |
| 2166 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | if (current->set_child_tid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2168 | put_user(task_pid_vnr(current), current->set_child_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | } |
| 2170 | |
| 2171 | /* |
| 2172 | * context_switch - switch to the new MM and the new |
| 2173 | * thread's register state. |
| 2174 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2175 | static inline void |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2176 | context_switch(struct rq *rq, struct task_struct *prev, |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2177 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2179 | struct mm_struct *mm, *oldmm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2181 | prepare_task_switch(rq, prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2182 | mm = next->mm; |
| 2183 | oldmm = prev->active_mm; |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 2184 | /* |
| 2185 | * For paravirt, this is coupled with an exit in switch_to to |
| 2186 | * combine the page table reload and the switch backend into |
| 2187 | * one hypercall. |
| 2188 | */ |
| 2189 | arch_enter_lazy_cpu_mode(); |
| 2190 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2191 | if (unlikely(!mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | next->active_mm = oldmm; |
| 2193 | atomic_inc(&oldmm->mm_count); |
| 2194 | enter_lazy_tlb(oldmm, next); |
| 2195 | } else |
| 2196 | switch_mm(oldmm, mm, next); |
| 2197 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2198 | if (unlikely(!prev->mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | prev->active_mm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2200 | rq->prev_mm = oldmm; |
| 2201 | } |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2202 | /* |
| 2203 | * Since the runqueue lock will be released by the next |
| 2204 | * task (which is an invalid locking op but in the case |
| 2205 | * of the scheduler it's an obvious special-case), so we |
| 2206 | * do an early lockdep release here: |
| 2207 | */ |
| 2208 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 2209 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2210 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | |
| 2212 | /* Here we just switch the register state and the stack. */ |
| 2213 | switch_to(prev, next, prev); |
| 2214 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2215 | barrier(); |
| 2216 | /* |
| 2217 | * this_rq must be evaluated again because prev may have moved |
| 2218 | * CPUs since it called schedule(), thus the 'rq' on its stack |
| 2219 | * frame will be invalid. |
| 2220 | */ |
| 2221 | finish_task_switch(this_rq(), prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | } |
| 2223 | |
| 2224 | /* |
| 2225 | * nr_running, nr_uninterruptible and nr_context_switches: |
| 2226 | * |
| 2227 | * externally visible scheduler statistics: current number of runnable |
| 2228 | * threads, current number of uninterruptible-sleeping threads, total |
| 2229 | * number of context switches performed since bootup. |
| 2230 | */ |
| 2231 | unsigned long nr_running(void) |
| 2232 | { |
| 2233 | unsigned long i, sum = 0; |
| 2234 | |
| 2235 | for_each_online_cpu(i) |
| 2236 | sum += cpu_rq(i)->nr_running; |
| 2237 | |
| 2238 | return sum; |
| 2239 | } |
| 2240 | |
| 2241 | unsigned long nr_uninterruptible(void) |
| 2242 | { |
| 2243 | unsigned long i, sum = 0; |
| 2244 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2245 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | sum += cpu_rq(i)->nr_uninterruptible; |
| 2247 | |
| 2248 | /* |
| 2249 | * Since we read the counters lockless, it might be slightly |
| 2250 | * inaccurate. Do not allow it to go below zero though: |
| 2251 | */ |
| 2252 | if (unlikely((long)sum < 0)) |
| 2253 | sum = 0; |
| 2254 | |
| 2255 | return sum; |
| 2256 | } |
| 2257 | |
| 2258 | unsigned long long nr_context_switches(void) |
| 2259 | { |
Steven Rostedt | cc94abf | 2006-06-27 02:54:31 -0700 | [diff] [blame] | 2260 | int i; |
| 2261 | unsigned long long sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2263 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2264 | sum += cpu_rq(i)->nr_switches; |
| 2265 | |
| 2266 | return sum; |
| 2267 | } |
| 2268 | |
| 2269 | unsigned long nr_iowait(void) |
| 2270 | { |
| 2271 | unsigned long i, sum = 0; |
| 2272 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2273 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2274 | sum += atomic_read(&cpu_rq(i)->nr_iowait); |
| 2275 | |
| 2276 | return sum; |
| 2277 | } |
| 2278 | |
Jack Steiner | db1b1fe | 2006-03-31 02:31:21 -0800 | [diff] [blame] | 2279 | unsigned long nr_active(void) |
| 2280 | { |
| 2281 | unsigned long i, running = 0, uninterruptible = 0; |
| 2282 | |
| 2283 | for_each_online_cpu(i) { |
| 2284 | running += cpu_rq(i)->nr_running; |
| 2285 | uninterruptible += cpu_rq(i)->nr_uninterruptible; |
| 2286 | } |
| 2287 | |
| 2288 | if (unlikely((long)uninterruptible < 0)) |
| 2289 | uninterruptible = 0; |
| 2290 | |
| 2291 | return running + uninterruptible; |
| 2292 | } |
| 2293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2295 | * Update rq->cpu_load[] statistics. This function is usually called every |
| 2296 | * scheduler tick (TICK_NSEC). |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2297 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2298 | static void update_cpu_load(struct rq *this_rq) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2299 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 2300 | unsigned long this_load = this_rq->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2301 | int i, scale; |
| 2302 | |
| 2303 | this_rq->nr_load_updates++; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2304 | |
| 2305 | /* Update our load: */ |
| 2306 | for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) { |
| 2307 | unsigned long old_load, new_load; |
| 2308 | |
| 2309 | /* scale is effectively 1 << i now, and >> i divides by scale */ |
| 2310 | |
| 2311 | old_load = this_rq->cpu_load[i]; |
| 2312 | new_load = this_load; |
Ingo Molnar | a25707f | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 2313 | /* |
| 2314 | * Round up the averaging division if load is increasing. This |
| 2315 | * prevents us from getting stuck on 9 if the load is 10, for |
| 2316 | * example. |
| 2317 | */ |
| 2318 | if (new_load > old_load) |
| 2319 | new_load += scale-1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2320 | this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i; |
| 2321 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2322 | } |
| 2323 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2324 | #ifdef CONFIG_SMP |
| 2325 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2326 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | * double_rq_lock - safely lock two runqueues |
| 2328 | * |
| 2329 | * Note this does not disable interrupts like task_rq_lock, |
| 2330 | * you need to do so manually before calling. |
| 2331 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2332 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | __acquires(rq1->lock) |
| 2334 | __acquires(rq2->lock) |
| 2335 | { |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2336 | BUG_ON(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2337 | if (rq1 == rq2) { |
| 2338 | spin_lock(&rq1->lock); |
| 2339 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 2340 | } else { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2341 | if (rq1 < rq2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | spin_lock(&rq1->lock); |
| 2343 | spin_lock(&rq2->lock); |
| 2344 | } else { |
| 2345 | spin_lock(&rq2->lock); |
| 2346 | spin_lock(&rq1->lock); |
| 2347 | } |
| 2348 | } |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2349 | update_rq_clock(rq1); |
| 2350 | update_rq_clock(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | } |
| 2352 | |
| 2353 | /* |
| 2354 | * double_rq_unlock - safely unlock two runqueues |
| 2355 | * |
| 2356 | * Note this does not restore interrupts like task_rq_unlock, |
| 2357 | * you need to do so manually after calling. |
| 2358 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2359 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | __releases(rq1->lock) |
| 2361 | __releases(rq2->lock) |
| 2362 | { |
| 2363 | spin_unlock(&rq1->lock); |
| 2364 | if (rq1 != rq2) |
| 2365 | spin_unlock(&rq2->lock); |
| 2366 | else |
| 2367 | __release(rq2->lock); |
| 2368 | } |
| 2369 | |
| 2370 | /* |
| 2371 | * double_lock_balance - lock the busiest runqueue, this_rq is locked already. |
| 2372 | */ |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2373 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | __releases(this_rq->lock) |
| 2375 | __acquires(busiest->lock) |
| 2376 | __acquires(this_rq->lock) |
| 2377 | { |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2378 | int ret = 0; |
| 2379 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2380 | if (unlikely(!irqs_disabled())) { |
| 2381 | /* printk() doesn't work good under rq->lock */ |
| 2382 | spin_unlock(&this_rq->lock); |
| 2383 | BUG_ON(1); |
| 2384 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2385 | if (unlikely(!spin_trylock(&busiest->lock))) { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2386 | if (busiest < this_rq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | spin_unlock(&this_rq->lock); |
| 2388 | spin_lock(&busiest->lock); |
| 2389 | spin_lock(&this_rq->lock); |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2390 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | } else |
| 2392 | spin_lock(&busiest->lock); |
| 2393 | } |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2394 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | } |
| 2396 | |
| 2397 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2398 | * If dest_cpu is allowed for this process, migrate the task to it. |
| 2399 | * This is accomplished by forcing the cpu_allowed mask to only |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2400 | * allow dest_cpu, which will force the cpu onto dest_cpu. Then |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2401 | * the cpu_allowed mask is restored. |
| 2402 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2403 | static void sched_migrate_task(struct task_struct *p, int dest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2405 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2407 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2408 | |
| 2409 | rq = task_rq_lock(p, &flags); |
| 2410 | if (!cpu_isset(dest_cpu, p->cpus_allowed) |
| 2411 | || unlikely(cpu_is_offline(dest_cpu))) |
| 2412 | goto out; |
| 2413 | |
| 2414 | /* force the process onto the specified CPU */ |
| 2415 | if (migrate_task(p, dest_cpu, &req)) { |
| 2416 | /* Need to wait for migration thread (might exit: take ref). */ |
| 2417 | struct task_struct *mt = rq->migration_thread; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | get_task_struct(mt); |
| 2420 | task_rq_unlock(rq, &flags); |
| 2421 | wake_up_process(mt); |
| 2422 | put_task_struct(mt); |
| 2423 | wait_for_completion(&req.done); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2424 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2425 | return; |
| 2426 | } |
| 2427 | out: |
| 2428 | task_rq_unlock(rq, &flags); |
| 2429 | } |
| 2430 | |
| 2431 | /* |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2432 | * sched_exec - execve() is a valuable balancing opportunity, because at |
| 2433 | * this point the task has the smallest effective memory and cache footprint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2434 | */ |
| 2435 | void sched_exec(void) |
| 2436 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | int new_cpu, this_cpu = get_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2438 | new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2439 | put_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2440 | if (new_cpu != this_cpu) |
| 2441 | sched_migrate_task(current, new_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | } |
| 2443 | |
| 2444 | /* |
| 2445 | * pull_task - move a task from a remote runqueue to the local runqueue. |
| 2446 | * Both runqueues must be locked. |
| 2447 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2448 | static void pull_task(struct rq *src_rq, struct task_struct *p, |
| 2449 | struct rq *this_rq, int this_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2450 | { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2451 | deactivate_task(src_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | set_task_cpu(p, this_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2453 | activate_task(this_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | /* |
| 2455 | * Note that idle threads have a prio of MAX_PRIO, for this test |
| 2456 | * to be always true for them. |
| 2457 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2458 | check_preempt_curr(this_rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2459 | } |
| 2460 | |
| 2461 | /* |
| 2462 | * can_migrate_task - may task p from runqueue rq be migrated to this_cpu? |
| 2463 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 2464 | static |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2465 | int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2466 | struct sched_domain *sd, enum cpu_idle_type idle, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 2467 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | { |
| 2469 | /* |
| 2470 | * We do not migrate tasks that are: |
| 2471 | * 1) running (obviously), or |
| 2472 | * 2) cannot be migrated to this CPU due to cpus_allowed, or |
| 2473 | * 3) are cache-hot on their current CPU. |
| 2474 | */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2475 | if (!cpu_isset(this_cpu, p->cpus_allowed)) { |
| 2476 | schedstat_inc(p, se.nr_failed_migrations_affine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2478 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2479 | *all_pinned = 0; |
| 2480 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2481 | if (task_running(rq, p)) { |
| 2482 | schedstat_inc(p, se.nr_failed_migrations_running); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2483 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2484 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2485 | |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2486 | /* |
| 2487 | * Aggressive migration if: |
| 2488 | * 1) task is cache cold, or |
| 2489 | * 2) too many balance attempts have failed. |
| 2490 | */ |
| 2491 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2492 | if (!task_hot(p, rq->clock, sd) || |
| 2493 | sd->nr_balance_failed > sd->cache_nice_tries) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2494 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2495 | if (task_hot(p, rq->clock, sd)) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2496 | schedstat_inc(sd, lb_hot_gained[idle]); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2497 | schedstat_inc(p, se.nr_forced_migrations); |
| 2498 | } |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2499 | #endif |
| 2500 | return 1; |
| 2501 | } |
| 2502 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2503 | if (task_hot(p, rq->clock, sd)) { |
| 2504 | schedstat_inc(p, se.nr_failed_migrations_hot); |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2505 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2506 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | return 1; |
| 2508 | } |
| 2509 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2510 | static unsigned long |
| 2511 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2512 | unsigned long max_load_move, struct sched_domain *sd, |
| 2513 | enum cpu_idle_type idle, int *all_pinned, |
| 2514 | int *this_best_prio, struct rq_iterator *iterator) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2515 | { |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2516 | int loops = 0, pulled = 0, pinned = 0, skip_for_load; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2517 | struct task_struct *p; |
| 2518 | long rem_load_move = max_load_move; |
| 2519 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2520 | if (max_load_move == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2521 | goto out; |
| 2522 | |
| 2523 | pinned = 1; |
| 2524 | |
| 2525 | /* |
| 2526 | * Start the load-balancing iterator: |
| 2527 | */ |
| 2528 | p = iterator->start(iterator->arg); |
| 2529 | next: |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2530 | if (!p || loops++ > sysctl_sched_nr_migrate) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2531 | goto out; |
| 2532 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2533 | * To help distribute high priority tasks across CPUs we don't |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2534 | * skip a task if it will be the highest priority task (i.e. smallest |
| 2535 | * prio value) on its new queue regardless of its load weight |
| 2536 | */ |
| 2537 | skip_for_load = (p->se.load.weight >> 1) > rem_load_move + |
| 2538 | SCHED_LOAD_SCALE_FUZZ; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2539 | if ((skip_for_load && p->prio >= *this_best_prio) || |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2540 | !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2541 | p = iterator->next(iterator->arg); |
| 2542 | goto next; |
| 2543 | } |
| 2544 | |
| 2545 | pull_task(busiest, p, this_rq, this_cpu); |
| 2546 | pulled++; |
| 2547 | rem_load_move -= p->se.load.weight; |
| 2548 | |
| 2549 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2550 | * We only want to steal up to the prescribed amount of weighted load. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2551 | */ |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2552 | if (rem_load_move > 0) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2553 | if (p->prio < *this_best_prio) |
| 2554 | *this_best_prio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2555 | p = iterator->next(iterator->arg); |
| 2556 | goto next; |
| 2557 | } |
| 2558 | out: |
| 2559 | /* |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2560 | * Right now, this is one of only two places pull_task() is called, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2561 | * so we can safely collect pull_task() stats here rather than |
| 2562 | * inside pull_task(). |
| 2563 | */ |
| 2564 | schedstat_add(sd, lb_gained[idle], pulled); |
| 2565 | |
| 2566 | if (all_pinned) |
| 2567 | *all_pinned = pinned; |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2568 | |
| 2569 | return max_load_move - rem_load_move; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2570 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2571 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | /* |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2573 | * move_tasks tries to move up to max_load_move weighted load from busiest to |
| 2574 | * this_rq, as part of a balancing operation within domain "sd". |
| 2575 | * Returns 1 if successful and 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2576 | * |
| 2577 | * Called with both runqueues locked. |
| 2578 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2579 | static int move_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2580 | unsigned long max_load_move, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2581 | struct sched_domain *sd, enum cpu_idle_type idle, |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2582 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2583 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2584 | const struct sched_class *class = sched_class_highest; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2585 | unsigned long total_load_moved = 0; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2586 | int this_best_prio = this_rq->curr->prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2587 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2588 | do { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2589 | total_load_moved += |
| 2590 | class->load_balance(this_rq, this_cpu, busiest, |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2591 | max_load_move - total_load_moved, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2592 | sd, idle, all_pinned, &this_best_prio); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2593 | class = class->next; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2594 | } while (class && max_load_move > total_load_moved); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2596 | return total_load_moved > 0; |
| 2597 | } |
| 2598 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2599 | static int |
| 2600 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2601 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 2602 | struct rq_iterator *iterator) |
| 2603 | { |
| 2604 | struct task_struct *p = iterator->start(iterator->arg); |
| 2605 | int pinned = 0; |
| 2606 | |
| 2607 | while (p) { |
| 2608 | if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
| 2609 | pull_task(busiest, p, this_rq, this_cpu); |
| 2610 | /* |
| 2611 | * Right now, this is only the second place pull_task() |
| 2612 | * is called, so we can safely collect pull_task() |
| 2613 | * stats here rather than inside pull_task(). |
| 2614 | */ |
| 2615 | schedstat_inc(sd, lb_gained[idle]); |
| 2616 | |
| 2617 | return 1; |
| 2618 | } |
| 2619 | p = iterator->next(iterator->arg); |
| 2620 | } |
| 2621 | |
| 2622 | return 0; |
| 2623 | } |
| 2624 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2625 | /* |
| 2626 | * move_one_task tries to move exactly one task from busiest to this_rq, as |
| 2627 | * part of active balancing operations within "domain". |
| 2628 | * Returns 1 if successful and 0 otherwise. |
| 2629 | * |
| 2630 | * Called with both runqueues locked. |
| 2631 | */ |
| 2632 | static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2633 | struct sched_domain *sd, enum cpu_idle_type idle) |
| 2634 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2635 | const struct sched_class *class; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2636 | |
| 2637 | for (class = sched_class_highest; class; class = class->next) |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2638 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2639 | return 1; |
| 2640 | |
| 2641 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | } |
| 2643 | |
| 2644 | /* |
| 2645 | * find_busiest_group finds and returns the busiest CPU group within the |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2646 | * domain. It calculates and returns the amount of weighted load which |
| 2647 | * should be moved to restore balance via the imbalance parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2648 | */ |
| 2649 | static struct sched_group * |
| 2650 | find_busiest_group(struct sched_domain *sd, int this_cpu, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2651 | unsigned long *imbalance, enum cpu_idle_type idle, |
| 2652 | int *sd_idle, cpumask_t *cpus, int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | { |
| 2654 | struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups; |
| 2655 | unsigned long max_load, avg_load, total_load, this_load, total_pwr; |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 2656 | unsigned long max_pull; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2657 | unsigned long busiest_load_per_task, busiest_nr_running; |
| 2658 | unsigned long this_load_per_task, this_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2659 | int load_idx, group_imb = 0; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2660 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2661 | int power_savings_balance = 1; |
| 2662 | unsigned long leader_nr_running = 0, min_load_per_task = 0; |
| 2663 | unsigned long min_nr_running = ULONG_MAX; |
| 2664 | struct sched_group *group_min = NULL, *group_leader = NULL; |
| 2665 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | |
| 2667 | max_load = this_load = total_load = total_pwr = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2668 | busiest_load_per_task = busiest_nr_running = 0; |
| 2669 | this_load_per_task = this_nr_running = 0; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2670 | if (idle == CPU_NOT_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2671 | load_idx = sd->busy_idx; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2672 | else if (idle == CPU_NEWLY_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2673 | load_idx = sd->newidle_idx; |
| 2674 | else |
| 2675 | load_idx = sd->idle_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | |
| 2677 | do { |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2678 | unsigned long load, group_capacity, max_cpu_load, min_cpu_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | int local_group; |
| 2680 | int i; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2681 | int __group_imb = 0; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2682 | unsigned int balance_cpu = -1, first_idle_cpu = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2683 | unsigned long sum_nr_running, sum_weighted_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | |
| 2685 | local_group = cpu_isset(this_cpu, group->cpumask); |
| 2686 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2687 | if (local_group) |
| 2688 | balance_cpu = first_cpu(group->cpumask); |
| 2689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | /* Tally up the load of all CPUs in the group */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2691 | sum_weighted_load = sum_nr_running = avg_load = 0; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2692 | max_cpu_load = 0; |
| 2693 | min_cpu_load = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | |
| 2695 | for_each_cpu_mask(i, group->cpumask) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2696 | struct rq *rq; |
| 2697 | |
| 2698 | if (!cpu_isset(i, *cpus)) |
| 2699 | continue; |
| 2700 | |
| 2701 | rq = cpu_rq(i); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2702 | |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2703 | if (*sd_idle && rq->nr_running) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 2704 | *sd_idle = 0; |
| 2705 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2706 | /* Bias balancing toward cpus of our domain */ |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2707 | if (local_group) { |
| 2708 | if (idle_cpu(i) && !first_idle_cpu) { |
| 2709 | first_idle_cpu = 1; |
| 2710 | balance_cpu = i; |
| 2711 | } |
| 2712 | |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2713 | load = target_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2714 | } else { |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2715 | load = source_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2716 | if (load > max_cpu_load) |
| 2717 | max_cpu_load = load; |
| 2718 | if (min_cpu_load > load) |
| 2719 | min_cpu_load = load; |
| 2720 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2721 | |
| 2722 | avg_load += load; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2723 | sum_nr_running += rq->nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2724 | sum_weighted_load += weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | } |
| 2726 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2727 | /* |
| 2728 | * First idle cpu or the first cpu(busiest) in this sched group |
| 2729 | * is eligible for doing load balancing at this and above |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2730 | * domains. In the newly idle case, we will allow all the cpu's |
| 2731 | * to do the newly idle load balance. |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2732 | */ |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2733 | if (idle != CPU_NEWLY_IDLE && local_group && |
| 2734 | balance_cpu != this_cpu && balance) { |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2735 | *balance = 0; |
| 2736 | goto ret; |
| 2737 | } |
| 2738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | total_load += avg_load; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2740 | total_pwr += group->__cpu_power; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | |
| 2742 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2743 | avg_load = sg_div_cpu_power(group, |
| 2744 | avg_load * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2746 | if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE) |
| 2747 | __group_imb = 1; |
| 2748 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2749 | group_capacity = group->__cpu_power / SCHED_LOAD_SCALE; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2750 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | if (local_group) { |
| 2752 | this_load = avg_load; |
| 2753 | this = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2754 | this_nr_running = sum_nr_running; |
| 2755 | this_load_per_task = sum_weighted_load; |
| 2756 | } else if (avg_load > max_load && |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2757 | (sum_nr_running > group_capacity || __group_imb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | max_load = avg_load; |
| 2759 | busiest = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2760 | busiest_nr_running = sum_nr_running; |
| 2761 | busiest_load_per_task = sum_weighted_load; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2762 | group_imb = __group_imb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2764 | |
| 2765 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2766 | /* |
| 2767 | * Busy processors will not participate in power savings |
| 2768 | * balance. |
| 2769 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2770 | if (idle == CPU_NOT_IDLE || |
| 2771 | !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
| 2772 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2773 | |
| 2774 | /* |
| 2775 | * If the local group is idle or completely loaded |
| 2776 | * no need to do power savings balance at this domain |
| 2777 | */ |
| 2778 | if (local_group && (this_nr_running >= group_capacity || |
| 2779 | !this_nr_running)) |
| 2780 | power_savings_balance = 0; |
| 2781 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2782 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2783 | * If a group is already running at full capacity or idle, |
| 2784 | * don't include that group in power savings calculations |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2785 | */ |
| 2786 | if (!power_savings_balance || sum_nr_running >= group_capacity |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2787 | || !sum_nr_running) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2788 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2789 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2790 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2791 | * Calculate the group which has the least non-idle load. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2792 | * This is the group from where we need to pick up the load |
| 2793 | * for saving power |
| 2794 | */ |
| 2795 | if ((sum_nr_running < min_nr_running) || |
| 2796 | (sum_nr_running == min_nr_running && |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2797 | first_cpu(group->cpumask) < |
| 2798 | first_cpu(group_min->cpumask))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2799 | group_min = group; |
| 2800 | min_nr_running = sum_nr_running; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2801 | min_load_per_task = sum_weighted_load / |
| 2802 | sum_nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2803 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2804 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2805 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2806 | * Calculate the group which is almost near its |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2807 | * capacity but still has some space to pick up some load |
| 2808 | * from other group and save more power |
| 2809 | */ |
| 2810 | if (sum_nr_running <= group_capacity - 1) { |
| 2811 | if (sum_nr_running > leader_nr_running || |
| 2812 | (sum_nr_running == leader_nr_running && |
| 2813 | first_cpu(group->cpumask) > |
| 2814 | first_cpu(group_leader->cpumask))) { |
| 2815 | group_leader = group; |
| 2816 | leader_nr_running = sum_nr_running; |
| 2817 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2818 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2819 | group_next: |
| 2820 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | group = group->next; |
| 2822 | } while (group != sd->groups); |
| 2823 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2824 | if (!busiest || this_load >= max_load || busiest_nr_running == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | goto out_balanced; |
| 2826 | |
| 2827 | avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr; |
| 2828 | |
| 2829 | if (this_load >= avg_load || |
| 2830 | 100*max_load <= sd->imbalance_pct*this_load) |
| 2831 | goto out_balanced; |
| 2832 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2833 | busiest_load_per_task /= busiest_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2834 | if (group_imb) |
| 2835 | busiest_load_per_task = min(busiest_load_per_task, avg_load); |
| 2836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | /* |
| 2838 | * We're trying to get all the cpus to the average_load, so we don't |
| 2839 | * want to push ourselves above the average load, nor do we wish to |
| 2840 | * reduce the max loaded cpu below the average load, as either of these |
| 2841 | * actions would just result in more rebalancing later, and ping-pong |
| 2842 | * tasks around. Thus we look for the minimum possible imbalance. |
| 2843 | * Negative imbalances (*we* are more loaded than anyone else) will |
| 2844 | * be counted as no imbalance for these purposes -- we can't fix that |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2845 | * by pulling tasks to us. Be careful of negative numbers as they'll |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | * appear as very large values with unsigned longs. |
| 2847 | */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2848 | if (max_load <= busiest_load_per_task) |
| 2849 | goto out_balanced; |
| 2850 | |
| 2851 | /* |
| 2852 | * In the presence of smp nice balancing, certain scenarios can have |
| 2853 | * max load less than avg load(as we skip the groups at or below |
| 2854 | * its cpu_power, while calculating max_load..) |
| 2855 | */ |
| 2856 | if (max_load < avg_load) { |
| 2857 | *imbalance = 0; |
| 2858 | goto small_imbalance; |
| 2859 | } |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 2860 | |
| 2861 | /* Don't want to pull so many tasks that a group would go idle */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2862 | max_pull = min(max_load - avg_load, max_load - busiest_load_per_task); |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 2863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2864 | /* How much load to actually move to equalise the imbalance */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2865 | *imbalance = min(max_pull * busiest->__cpu_power, |
| 2866 | (avg_load - this_load) * this->__cpu_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | / SCHED_LOAD_SCALE; |
| 2868 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2869 | /* |
| 2870 | * if *imbalance is less than the average load per runnable task |
| 2871 | * there is no gaurantee that any tasks will be moved so we'll have |
| 2872 | * a think about bumping its value to force at least one task to be |
| 2873 | * moved |
| 2874 | */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 2875 | if (*imbalance < busiest_load_per_task) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2876 | unsigned long tmp, pwr_now, pwr_move; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2877 | unsigned int imbn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2878 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2879 | small_imbalance: |
| 2880 | pwr_move = pwr_now = 0; |
| 2881 | imbn = 2; |
| 2882 | if (this_nr_running) { |
| 2883 | this_load_per_task /= this_nr_running; |
| 2884 | if (busiest_load_per_task > this_load_per_task) |
| 2885 | imbn = 1; |
| 2886 | } else |
| 2887 | this_load_per_task = SCHED_LOAD_SCALE; |
| 2888 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2889 | if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >= |
| 2890 | busiest_load_per_task * imbn) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2891 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2892 | return busiest; |
| 2893 | } |
| 2894 | |
| 2895 | /* |
| 2896 | * OK, we don't have enough imbalance to justify moving tasks, |
| 2897 | * however we may be able to increase total CPU power used by |
| 2898 | * moving them. |
| 2899 | */ |
| 2900 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2901 | pwr_now += busiest->__cpu_power * |
| 2902 | min(busiest_load_per_task, max_load); |
| 2903 | pwr_now += this->__cpu_power * |
| 2904 | min(this_load_per_task, this_load); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2905 | pwr_now /= SCHED_LOAD_SCALE; |
| 2906 | |
| 2907 | /* Amount of load we'd subtract */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2908 | tmp = sg_div_cpu_power(busiest, |
| 2909 | busiest_load_per_task * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | if (max_load > tmp) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2911 | pwr_move += busiest->__cpu_power * |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2912 | min(busiest_load_per_task, max_load - tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2913 | |
| 2914 | /* Amount of load we'd add */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2915 | if (max_load * busiest->__cpu_power < |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 2916 | busiest_load_per_task * SCHED_LOAD_SCALE) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2917 | tmp = sg_div_cpu_power(this, |
| 2918 | max_load * busiest->__cpu_power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | else |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2920 | tmp = sg_div_cpu_power(this, |
| 2921 | busiest_load_per_task * SCHED_LOAD_SCALE); |
| 2922 | pwr_move += this->__cpu_power * |
| 2923 | min(this_load_per_task, this_load + tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2924 | pwr_move /= SCHED_LOAD_SCALE; |
| 2925 | |
| 2926 | /* Move if we gain throughput */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 2927 | if (pwr_move > pwr_now) |
| 2928 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | } |
| 2930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | return busiest; |
| 2932 | |
| 2933 | out_balanced: |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2934 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2935 | if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2936 | goto ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2938 | if (this == group_leader && group_leader != group_min) { |
| 2939 | *imbalance = min_load_per_task; |
| 2940 | return group_min; |
| 2941 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2942 | #endif |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2943 | ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2944 | *imbalance = 0; |
| 2945 | return NULL; |
| 2946 | } |
| 2947 | |
| 2948 | /* |
| 2949 | * find_busiest_queue - find the busiest runqueue among the cpus in group. |
| 2950 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2951 | static struct rq * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2952 | find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2953 | unsigned long imbalance, cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2955 | struct rq *busiest = NULL, *rq; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2956 | unsigned long max_load = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | int i; |
| 2958 | |
| 2959 | for_each_cpu_mask(i, group->cpumask) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2960 | unsigned long wl; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2961 | |
| 2962 | if (!cpu_isset(i, *cpus)) |
| 2963 | continue; |
| 2964 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2965 | rq = cpu_rq(i); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2966 | wl = weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2968 | if (rq->nr_running == 1 && wl > imbalance) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2969 | continue; |
| 2970 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2971 | if (wl > max_load) { |
| 2972 | max_load = wl; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2973 | busiest = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2974 | } |
| 2975 | } |
| 2976 | |
| 2977 | return busiest; |
| 2978 | } |
| 2979 | |
| 2980 | /* |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 2981 | * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but |
| 2982 | * so long as it is large enough. |
| 2983 | */ |
| 2984 | #define MAX_PINNED_INTERVAL 512 |
| 2985 | |
| 2986 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2987 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 2988 | * tasks if there is an imbalance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2990 | static int load_balance(int this_cpu, struct rq *this_rq, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2991 | struct sched_domain *sd, enum cpu_idle_type idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2992 | int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2993 | { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2994 | int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | struct sched_group *group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2996 | unsigned long imbalance; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2997 | struct rq *busiest; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2998 | cpumask_t cpus = CPU_MASK_ALL; |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 2999 | unsigned long flags; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3000 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3001 | /* |
| 3002 | * When power savings policy is enabled for the parent domain, idle |
| 3003 | * sibling can pick up load irrespective of busy siblings. In this case, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3004 | * let the state of idle sibling percolate up as CPU_IDLE, instead of |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3005 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3006 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3007 | if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3008 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3009 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3011 | schedstat_inc(sd, lb_count[idle]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3013 | redo: |
| 3014 | group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3015 | &cpus, balance); |
| 3016 | |
Chen, Kenneth W | 0606671 | 2006-12-10 02:20:35 -0800 | [diff] [blame] | 3017 | if (*balance == 0) |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3018 | goto out_balanced; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3019 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | if (!group) { |
| 3021 | schedstat_inc(sd, lb_nobusyg[idle]); |
| 3022 | goto out_balanced; |
| 3023 | } |
| 3024 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3025 | busiest = find_busiest_queue(group, idle, imbalance, &cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3026 | if (!busiest) { |
| 3027 | schedstat_inc(sd, lb_nobusyq[idle]); |
| 3028 | goto out_balanced; |
| 3029 | } |
| 3030 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3031 | BUG_ON(busiest == this_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | |
| 3033 | schedstat_add(sd, lb_imbalance[idle], imbalance); |
| 3034 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3035 | ld_moved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | if (busiest->nr_running > 1) { |
| 3037 | /* |
| 3038 | * Attempt to move tasks. If find_busiest_group has found |
| 3039 | * an imbalance but busiest->nr_running <= 1, the group is |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3040 | * still unbalanced. ld_moved simply stays zero, so it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3041 | * correctly treated as an imbalance. |
| 3042 | */ |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3043 | local_irq_save(flags); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3044 | double_rq_lock(this_rq, busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3045 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3046 | imbalance, sd, idle, &all_pinned); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3047 | double_rq_unlock(this_rq, busiest); |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3048 | local_irq_restore(flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3049 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3050 | /* |
| 3051 | * some other cpu did the load balance for us. |
| 3052 | */ |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3053 | if (ld_moved && this_cpu != smp_processor_id()) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3054 | resched_cpu(this_cpu); |
| 3055 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3056 | /* All tasks on this runqueue were pinned by CPU affinity */ |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3057 | if (unlikely(all_pinned)) { |
| 3058 | cpu_clear(cpu_of(busiest), cpus); |
| 3059 | if (!cpus_empty(cpus)) |
| 3060 | goto redo; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3061 | goto out_balanced; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3062 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3063 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3064 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3065 | if (!ld_moved) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | schedstat_inc(sd, lb_failed[idle]); |
| 3067 | sd->nr_balance_failed++; |
| 3068 | |
| 3069 | if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3070 | |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3071 | spin_lock_irqsave(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3072 | |
| 3073 | /* don't kick the migration_thread, if the curr |
| 3074 | * task on busiest cpu can't be moved to this_cpu |
| 3075 | */ |
| 3076 | if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) { |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3077 | spin_unlock_irqrestore(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3078 | all_pinned = 1; |
| 3079 | goto out_one_pinned; |
| 3080 | } |
| 3081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | if (!busiest->active_balance) { |
| 3083 | busiest->active_balance = 1; |
| 3084 | busiest->push_cpu = this_cpu; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3085 | active_balance = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3086 | } |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3087 | spin_unlock_irqrestore(&busiest->lock, flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3088 | if (active_balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | wake_up_process(busiest->migration_thread); |
| 3090 | |
| 3091 | /* |
| 3092 | * We've kicked active balancing, reset the failure |
| 3093 | * counter. |
| 3094 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3095 | sd->nr_balance_failed = sd->cache_nice_tries+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3096 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3097 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | sd->nr_balance_failed = 0; |
| 3099 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3100 | if (likely(!active_balance)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3101 | /* We were unbalanced, so reset the balancing interval */ |
| 3102 | sd->balance_interval = sd->min_interval; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3103 | } else { |
| 3104 | /* |
| 3105 | * If we've begun active balancing, start to back off. This |
| 3106 | * case may not be covered by the all_pinned logic if there |
| 3107 | * is only 1 task on the busy runqueue (because we don't call |
| 3108 | * move_tasks). |
| 3109 | */ |
| 3110 | if (sd->balance_interval < sd->max_interval) |
| 3111 | sd->balance_interval *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3112 | } |
| 3113 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3114 | if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3115 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3116 | return -1; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3117 | return ld_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3118 | |
| 3119 | out_balanced: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | schedstat_inc(sd, lb_balanced[idle]); |
| 3121 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3122 | sd->nr_balance_failed = 0; |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3123 | |
| 3124 | out_one_pinned: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3125 | /* tune up the balancing interval */ |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3126 | if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) || |
| 3127 | (sd->balance_interval < sd->max_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3128 | sd->balance_interval *= 2; |
| 3129 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3130 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3131 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3132 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3133 | return 0; |
| 3134 | } |
| 3135 | |
| 3136 | /* |
| 3137 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3138 | * tasks if there is an imbalance. |
| 3139 | * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3140 | * Called from schedule when this_rq is about to become idle (CPU_NEWLY_IDLE). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3141 | * this_rq is locked. |
| 3142 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3143 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3144 | load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3145 | { |
| 3146 | struct sched_group *group; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3147 | struct rq *busiest = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3148 | unsigned long imbalance; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3149 | int ld_moved = 0; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3150 | int sd_idle = 0; |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3151 | int all_pinned = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3152 | cpumask_t cpus = CPU_MASK_ALL; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3153 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3154 | /* |
| 3155 | * When power savings policy is enabled for the parent domain, idle |
| 3156 | * sibling can pick up load irrespective of busy siblings. In this case, |
| 3157 | * let the state of idle sibling percolate up as IDLE, instead of |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3158 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3159 | */ |
| 3160 | if (sd->flags & SD_SHARE_CPUPOWER && |
| 3161 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3162 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3163 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3164 | schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3165 | redo: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3166 | group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3167 | &sd_idle, &cpus, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3168 | if (!group) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3169 | schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3170 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3171 | } |
| 3172 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3173 | busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3174 | &cpus); |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3175 | if (!busiest) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3176 | schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3177 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3178 | } |
| 3179 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3180 | BUG_ON(busiest == this_rq); |
| 3181 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3182 | schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3183 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3184 | ld_moved = 0; |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3185 | if (busiest->nr_running > 1) { |
| 3186 | /* Attempt to move tasks */ |
| 3187 | double_lock_balance(this_rq, busiest); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3188 | /* this_rq->clock is already updated */ |
| 3189 | update_rq_clock(busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3190 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3191 | imbalance, sd, CPU_NEWLY_IDLE, |
| 3192 | &all_pinned); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3193 | spin_unlock(&busiest->lock); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3194 | |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3195 | if (unlikely(all_pinned)) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3196 | cpu_clear(cpu_of(busiest), cpus); |
| 3197 | if (!cpus_empty(cpus)) |
| 3198 | goto redo; |
| 3199 | } |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3200 | } |
| 3201 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3202 | if (!ld_moved) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3203 | schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3204 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
| 3205 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3206 | return -1; |
| 3207 | } else |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3208 | sd->nr_balance_failed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3209 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3210 | return ld_moved; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3211 | |
| 3212 | out_balanced: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3213 | schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3214 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3215 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3216 | return -1; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3217 | sd->nr_balance_failed = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3218 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3219 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3220 | } |
| 3221 | |
| 3222 | /* |
| 3223 | * idle_balance is called by schedule() if this_cpu is about to become |
| 3224 | * idle. Attempts to pull tasks from other CPUs. |
| 3225 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3226 | static void idle_balance(int this_cpu, struct rq *this_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3227 | { |
| 3228 | struct sched_domain *sd; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3229 | int pulled_task = -1; |
| 3230 | unsigned long next_balance = jiffies + HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | |
| 3232 | for_each_domain(this_cpu, sd) { |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3233 | unsigned long interval; |
| 3234 | |
| 3235 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3236 | continue; |
| 3237 | |
| 3238 | if (sd->flags & SD_BALANCE_NEWIDLE) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3239 | /* If we've pulled tasks over stop searching: */ |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3240 | pulled_task = load_balance_newidle(this_cpu, |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3241 | this_rq, sd); |
| 3242 | |
| 3243 | interval = msecs_to_jiffies(sd->balance_interval); |
| 3244 | if (time_after(next_balance, sd->last_balance + interval)) |
| 3245 | next_balance = sd->last_balance + interval; |
| 3246 | if (pulled_task) |
| 3247 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3248 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3249 | if (pulled_task || time_after(jiffies, this_rq->next_balance)) { |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3250 | /* |
| 3251 | * We are going idle. next_balance may be set based on |
| 3252 | * a busy processor. So reset next_balance. |
| 3253 | */ |
| 3254 | this_rq->next_balance = next_balance; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3255 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3256 | } |
| 3257 | |
| 3258 | /* |
| 3259 | * active_load_balance is run by migration threads. It pushes running tasks |
| 3260 | * off the busiest CPU onto idle CPUs. It requires at least 1 task to be |
| 3261 | * running on each physical CPU where possible, and avoids physical / |
| 3262 | * logical imbalances. |
| 3263 | * |
| 3264 | * Called with busiest_rq locked. |
| 3265 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3266 | static void active_load_balance(struct rq *busiest_rq, int busiest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 | { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3268 | int target_cpu = busiest_rq->push_cpu; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3269 | struct sched_domain *sd; |
| 3270 | struct rq *target_rq; |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3271 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3272 | /* Is there any task to move? */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3273 | if (busiest_rq->nr_running <= 1) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3274 | return; |
| 3275 | |
| 3276 | target_rq = cpu_rq(target_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | |
| 3278 | /* |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3279 | * This condition is "impossible", if it occurs |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3280 | * we need to fix it. Originally reported by |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3281 | * Bjorn Helgaas on a 128-cpu setup. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3283 | BUG_ON(busiest_rq == target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3285 | /* move a task from busiest_rq to target_rq */ |
| 3286 | double_lock_balance(busiest_rq, target_rq); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3287 | update_rq_clock(busiest_rq); |
| 3288 | update_rq_clock(target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3290 | /* Search for an sd spanning us and the target CPU. */ |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3291 | for_each_domain(target_cpu, sd) { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3292 | if ((sd->flags & SD_LOAD_BALANCE) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3293 | cpu_isset(busiest_cpu, sd->span)) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3294 | break; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3295 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3297 | if (likely(sd)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3298 | schedstat_inc(sd, alb_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3300 | if (move_one_task(target_rq, target_cpu, busiest_rq, |
| 3301 | sd, CPU_IDLE)) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3302 | schedstat_inc(sd, alb_pushed); |
| 3303 | else |
| 3304 | schedstat_inc(sd, alb_failed); |
| 3305 | } |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3306 | spin_unlock(&target_rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3307 | } |
| 3308 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3309 | #ifdef CONFIG_NO_HZ |
| 3310 | static struct { |
| 3311 | atomic_t load_balancer; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3312 | cpumask_t cpu_mask; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3313 | } nohz ____cacheline_aligned = { |
| 3314 | .load_balancer = ATOMIC_INIT(-1), |
| 3315 | .cpu_mask = CPU_MASK_NONE, |
| 3316 | }; |
| 3317 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3318 | /* |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3319 | * This routine will try to nominate the ilb (idle load balancing) |
| 3320 | * owner among the cpus whose ticks are stopped. ilb owner will do the idle |
| 3321 | * load balancing on behalf of all those cpus. If all the cpus in the system |
| 3322 | * go into this tickless mode, then there will be no ilb owner (as there is |
| 3323 | * no need for one) and all the cpus will sleep till the next wakeup event |
| 3324 | * arrives... |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3325 | * |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3326 | * For the ilb owner, tick is not stopped. And this tick will be used |
| 3327 | * for idle load balancing. ilb owner will still be part of |
| 3328 | * nohz.cpu_mask.. |
| 3329 | * |
| 3330 | * While stopping the tick, this cpu will become the ilb owner if there |
| 3331 | * is no other owner. And will be the owner till that cpu becomes busy |
| 3332 | * or if all cpus in the system stop their ticks at which point |
| 3333 | * there is no need for ilb owner. |
| 3334 | * |
| 3335 | * When the ilb owner becomes busy, it nominates another owner, during the |
| 3336 | * next busy scheduler_tick() |
| 3337 | */ |
| 3338 | int select_nohz_load_balancer(int stop_tick) |
| 3339 | { |
| 3340 | int cpu = smp_processor_id(); |
| 3341 | |
| 3342 | if (stop_tick) { |
| 3343 | cpu_set(cpu, nohz.cpu_mask); |
| 3344 | cpu_rq(cpu)->in_nohz_recently = 1; |
| 3345 | |
| 3346 | /* |
| 3347 | * If we are going offline and still the leader, give up! |
| 3348 | */ |
| 3349 | if (cpu_is_offline(cpu) && |
| 3350 | atomic_read(&nohz.load_balancer) == cpu) { |
| 3351 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3352 | BUG(); |
| 3353 | return 0; |
| 3354 | } |
| 3355 | |
| 3356 | /* time for ilb owner also to sleep */ |
| 3357 | if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3358 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3359 | atomic_set(&nohz.load_balancer, -1); |
| 3360 | return 0; |
| 3361 | } |
| 3362 | |
| 3363 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3364 | /* make me the ilb owner */ |
| 3365 | if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1) |
| 3366 | return 1; |
| 3367 | } else if (atomic_read(&nohz.load_balancer) == cpu) |
| 3368 | return 1; |
| 3369 | } else { |
| 3370 | if (!cpu_isset(cpu, nohz.cpu_mask)) |
| 3371 | return 0; |
| 3372 | |
| 3373 | cpu_clear(cpu, nohz.cpu_mask); |
| 3374 | |
| 3375 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3376 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3377 | BUG(); |
| 3378 | } |
| 3379 | return 0; |
| 3380 | } |
| 3381 | #endif |
| 3382 | |
| 3383 | static DEFINE_SPINLOCK(balancing); |
| 3384 | |
| 3385 | /* |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3386 | * It checks each scheduling domain to see if it is due to be balanced, |
| 3387 | * and initiates a balancing operation if so. |
| 3388 | * |
| 3389 | * Balancing parameters are set up in arch_init_sched_domains. |
| 3390 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3391 | static void rebalance_domains(int cpu, enum cpu_idle_type idle) |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3392 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3393 | int balance = 1; |
| 3394 | struct rq *rq = cpu_rq(cpu); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3395 | unsigned long interval; |
| 3396 | struct sched_domain *sd; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3397 | /* Earliest time when we have to do rebalance again */ |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3398 | unsigned long next_balance = jiffies + 60*HZ; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3399 | int update_next_balance = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3401 | for_each_domain(cpu, sd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3403 | continue; |
| 3404 | |
| 3405 | interval = sd->balance_interval; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3406 | if (idle != CPU_IDLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3407 | interval *= sd->busy_factor; |
| 3408 | |
| 3409 | /* scale ms to jiffies */ |
| 3410 | interval = msecs_to_jiffies(interval); |
| 3411 | if (unlikely(!interval)) |
| 3412 | interval = 1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3413 | if (interval > HZ*NR_CPUS/10) |
| 3414 | interval = HZ*NR_CPUS/10; |
| 3415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3416 | |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3417 | if (sd->flags & SD_SERIALIZE) { |
| 3418 | if (!spin_trylock(&balancing)) |
| 3419 | goto out; |
| 3420 | } |
| 3421 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3422 | if (time_after_eq(jiffies, sd->last_balance + interval)) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3423 | if (load_balance(cpu, rq, sd, idle, &balance)) { |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3424 | /* |
| 3425 | * We've pulled tasks over so either we're no |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3426 | * longer idle, or one of our SMT siblings is |
| 3427 | * not idle. |
| 3428 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3429 | idle = CPU_NOT_IDLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | } |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3431 | sd->last_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3432 | } |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3433 | if (sd->flags & SD_SERIALIZE) |
| 3434 | spin_unlock(&balancing); |
| 3435 | out: |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3436 | if (time_after(next_balance, sd->last_balance + interval)) { |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3437 | next_balance = sd->last_balance + interval; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3438 | update_next_balance = 1; |
| 3439 | } |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3440 | |
| 3441 | /* |
| 3442 | * Stop the load balance at this level. There is another |
| 3443 | * CPU in our sched group which is doing load balancing more |
| 3444 | * actively. |
| 3445 | */ |
| 3446 | if (!balance) |
| 3447 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3448 | } |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3449 | |
| 3450 | /* |
| 3451 | * next_balance will be updated only when there is a need. |
| 3452 | * When the cpu is attached to null domain for ex, it will not be |
| 3453 | * updated. |
| 3454 | */ |
| 3455 | if (likely(update_next_balance)) |
| 3456 | rq->next_balance = next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3457 | } |
| 3458 | |
| 3459 | /* |
| 3460 | * run_rebalance_domains is triggered when needed from the scheduler tick. |
| 3461 | * In CONFIG_NO_HZ case, the idle load balance owner will do the |
| 3462 | * rebalancing for all the cpus for whom scheduler ticks are stopped. |
| 3463 | */ |
| 3464 | static void run_rebalance_domains(struct softirq_action *h) |
| 3465 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3466 | int this_cpu = smp_processor_id(); |
| 3467 | struct rq *this_rq = cpu_rq(this_cpu); |
| 3468 | enum cpu_idle_type idle = this_rq->idle_at_tick ? |
| 3469 | CPU_IDLE : CPU_NOT_IDLE; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3470 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3471 | rebalance_domains(this_cpu, idle); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3472 | |
| 3473 | #ifdef CONFIG_NO_HZ |
| 3474 | /* |
| 3475 | * If this cpu is the owner for idle load balancing, then do the |
| 3476 | * balancing on behalf of the other idle cpus whose ticks are |
| 3477 | * stopped. |
| 3478 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3479 | if (this_rq->idle_at_tick && |
| 3480 | atomic_read(&nohz.load_balancer) == this_cpu) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3481 | cpumask_t cpus = nohz.cpu_mask; |
| 3482 | struct rq *rq; |
| 3483 | int balance_cpu; |
| 3484 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3485 | cpu_clear(this_cpu, cpus); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3486 | for_each_cpu_mask(balance_cpu, cpus) { |
| 3487 | /* |
| 3488 | * If this cpu gets work to do, stop the load balancing |
| 3489 | * work being done for other cpus. Next load |
| 3490 | * balancing owner will pick it up. |
| 3491 | */ |
| 3492 | if (need_resched()) |
| 3493 | break; |
| 3494 | |
Oleg Nesterov | de0cf89 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 3495 | rebalance_domains(balance_cpu, CPU_IDLE); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3496 | |
| 3497 | rq = cpu_rq(balance_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3498 | if (time_after(this_rq->next_balance, rq->next_balance)) |
| 3499 | this_rq->next_balance = rq->next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3500 | } |
| 3501 | } |
| 3502 | #endif |
| 3503 | } |
| 3504 | |
| 3505 | /* |
| 3506 | * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing. |
| 3507 | * |
| 3508 | * In case of CONFIG_NO_HZ, this is the place where we nominate a new |
| 3509 | * idle load balancing owner or decide to stop the periodic load balancing, |
| 3510 | * if the whole system is idle. |
| 3511 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3512 | static inline void trigger_load_balance(struct rq *rq, int cpu) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3513 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3514 | #ifdef CONFIG_NO_HZ |
| 3515 | /* |
| 3516 | * If we were in the nohz mode recently and busy at the current |
| 3517 | * scheduler tick, then check if we need to nominate new idle |
| 3518 | * load balancer. |
| 3519 | */ |
| 3520 | if (rq->in_nohz_recently && !rq->idle_at_tick) { |
| 3521 | rq->in_nohz_recently = 0; |
| 3522 | |
| 3523 | if (atomic_read(&nohz.load_balancer) == cpu) { |
| 3524 | cpu_clear(cpu, nohz.cpu_mask); |
| 3525 | atomic_set(&nohz.load_balancer, -1); |
| 3526 | } |
| 3527 | |
| 3528 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3529 | /* |
| 3530 | * simple selection for now: Nominate the |
| 3531 | * first cpu in the nohz list to be the next |
| 3532 | * ilb owner. |
| 3533 | * |
| 3534 | * TBD: Traverse the sched domains and nominate |
| 3535 | * the nearest cpu in the nohz.cpu_mask. |
| 3536 | */ |
| 3537 | int ilb = first_cpu(nohz.cpu_mask); |
| 3538 | |
| 3539 | if (ilb != NR_CPUS) |
| 3540 | resched_cpu(ilb); |
| 3541 | } |
| 3542 | } |
| 3543 | |
| 3544 | /* |
| 3545 | * If this cpu is idle and doing idle load balancing for all the |
| 3546 | * cpus with ticks stopped, is it time for that to stop? |
| 3547 | */ |
| 3548 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu && |
| 3549 | cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3550 | resched_cpu(cpu); |
| 3551 | return; |
| 3552 | } |
| 3553 | |
| 3554 | /* |
| 3555 | * If this cpu is idle and the idle load balancing is done by |
| 3556 | * someone else, then no need raise the SCHED_SOFTIRQ |
| 3557 | */ |
| 3558 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu && |
| 3559 | cpu_isset(cpu, nohz.cpu_mask)) |
| 3560 | return; |
| 3561 | #endif |
| 3562 | if (time_after_eq(jiffies, rq->next_balance)) |
| 3563 | raise_softirq(SCHED_SOFTIRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3564 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3565 | |
| 3566 | #else /* CONFIG_SMP */ |
| 3567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3568 | /* |
| 3569 | * on UP we do not need to balance between CPUs: |
| 3570 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3571 | static inline void idle_balance(int cpu, struct rq *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | { |
| 3573 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | #endif |
| 3576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3577 | DEFINE_PER_CPU(struct kernel_stat, kstat); |
| 3578 | |
| 3579 | EXPORT_PER_CPU_SYMBOL(kstat); |
| 3580 | |
| 3581 | /* |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3582 | * Return p->sum_exec_runtime plus any more ns on the sched_clock |
| 3583 | * that have not yet been banked in case the task is currently running. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3584 | */ |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3585 | unsigned long long task_sched_runtime(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3587 | unsigned long flags; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3588 | u64 ns, delta_exec; |
| 3589 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3590 | |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3591 | rq = task_rq_lock(p, &flags); |
| 3592 | ns = p->se.sum_exec_runtime; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 3593 | if (task_current(rq, p)) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3594 | update_rq_clock(rq); |
| 3595 | delta_exec = rq->clock - p->se.exec_start; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3596 | if ((s64)delta_exec > 0) |
| 3597 | ns += delta_exec; |
| 3598 | } |
| 3599 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3601 | return ns; |
| 3602 | } |
| 3603 | |
| 3604 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | * Account user cpu time to a process. |
| 3606 | * @p: the process that the cpu time gets accounted to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3607 | * @cputime: the cpu time spent in user space since the last update |
| 3608 | */ |
| 3609 | void account_user_time(struct task_struct *p, cputime_t cputime) |
| 3610 | { |
| 3611 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3612 | cputime64_t tmp; |
| 3613 | |
| 3614 | p->utime = cputime_add(p->utime, cputime); |
| 3615 | |
| 3616 | /* Add user time to cpustat. */ |
| 3617 | tmp = cputime_to_cputime64(cputime); |
| 3618 | if (TASK_NICE(p) > 0) |
| 3619 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3620 | else |
| 3621 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3622 | } |
| 3623 | |
| 3624 | /* |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3625 | * Account guest cpu time to a process. |
| 3626 | * @p: the process that the cpu time gets accounted to |
| 3627 | * @cputime: the cpu time spent in virtual machine since the last update |
| 3628 | */ |
Adrian Bunk | f7402e0 | 2007-10-29 21:18:10 +0100 | [diff] [blame] | 3629 | static void account_guest_time(struct task_struct *p, cputime_t cputime) |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3630 | { |
| 3631 | cputime64_t tmp; |
| 3632 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3633 | |
| 3634 | tmp = cputime_to_cputime64(cputime); |
| 3635 | |
| 3636 | p->utime = cputime_add(p->utime, cputime); |
| 3637 | p->gtime = cputime_add(p->gtime, cputime); |
| 3638 | |
| 3639 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3640 | cpustat->guest = cputime64_add(cpustat->guest, tmp); |
| 3641 | } |
| 3642 | |
| 3643 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3644 | * Account scaled user cpu time to a process. |
| 3645 | * @p: the process that the cpu time gets accounted to |
| 3646 | * @cputime: the cpu time spent in user space since the last update |
| 3647 | */ |
| 3648 | void account_user_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3649 | { |
| 3650 | p->utimescaled = cputime_add(p->utimescaled, cputime); |
| 3651 | } |
| 3652 | |
| 3653 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | * Account system cpu time to a process. |
| 3655 | * @p: the process that the cpu time gets accounted to |
| 3656 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3657 | * @cputime: the cpu time spent in kernel space since the last update |
| 3658 | */ |
| 3659 | void account_system_time(struct task_struct *p, int hardirq_offset, |
| 3660 | cputime_t cputime) |
| 3661 | { |
| 3662 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3663 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3664 | cputime64_t tmp; |
| 3665 | |
Christian Borntraeger | 9778385 | 2007-11-15 20:57:39 +0100 | [diff] [blame] | 3666 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) |
| 3667 | return account_guest_time(p, cputime); |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3669 | p->stime = cputime_add(p->stime, cputime); |
| 3670 | |
| 3671 | /* Add system time to cpustat. */ |
| 3672 | tmp = cputime_to_cputime64(cputime); |
| 3673 | if (hardirq_count() - hardirq_offset) |
| 3674 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3675 | else if (softirq_count()) |
| 3676 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3677 | else if (p != rq->idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | cpustat->system = cputime64_add(cpustat->system, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3679 | else if (atomic_read(&rq->nr_iowait) > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3681 | else |
| 3682 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| 3683 | /* Account for system time used */ |
| 3684 | acct_update_integrals(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | } |
| 3686 | |
| 3687 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3688 | * Account scaled system cpu time to a process. |
| 3689 | * @p: the process that the cpu time gets accounted to |
| 3690 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3691 | * @cputime: the cpu time spent in kernel space since the last update |
| 3692 | */ |
| 3693 | void account_system_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3694 | { |
| 3695 | p->stimescaled = cputime_add(p->stimescaled, cputime); |
| 3696 | } |
| 3697 | |
| 3698 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3699 | * Account for involuntary wait time. |
| 3700 | * @p: the process from which the cpu time has been stolen |
| 3701 | * @steal: the cpu time spent in involuntary wait |
| 3702 | */ |
| 3703 | void account_steal_time(struct task_struct *p, cputime_t steal) |
| 3704 | { |
| 3705 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3706 | cputime64_t tmp = cputime_to_cputime64(steal); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3707 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3708 | |
| 3709 | if (p == rq->idle) { |
| 3710 | p->stime = cputime_add(p->stime, steal); |
| 3711 | if (atomic_read(&rq->nr_iowait) > 0) |
| 3712 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3713 | else |
| 3714 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3715 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | cpustat->steal = cputime64_add(cpustat->steal, tmp); |
| 3717 | } |
| 3718 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3719 | /* |
| 3720 | * This function gets called by the timer code, with HZ frequency. |
| 3721 | * We call it with interrupts disabled. |
| 3722 | * |
| 3723 | * It also gets called by the fork code, when changing the parent's |
| 3724 | * timeslices. |
| 3725 | */ |
| 3726 | void scheduler_tick(void) |
| 3727 | { |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3728 | int cpu = smp_processor_id(); |
| 3729 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3730 | struct task_struct *curr = rq->curr; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3731 | u64 next_tick = rq->tick_timestamp + TICK_NSEC; |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3732 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3733 | spin_lock(&rq->lock); |
Ingo Molnar | 546fe3c | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3734 | __update_rq_clock(rq); |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3735 | /* |
| 3736 | * Let rq->clock advance by at least TICK_NSEC: |
| 3737 | */ |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3738 | if (unlikely(rq->clock < next_tick)) { |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3739 | rq->clock = next_tick; |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3740 | rq->clock_underflows++; |
| 3741 | } |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3742 | rq->tick_timestamp = rq->clock; |
Ingo Molnar | f1a438d | 2007-08-09 11:16:45 +0200 | [diff] [blame] | 3743 | update_cpu_load(rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3744 | curr->sched_class->task_tick(rq, curr, 0); |
| 3745 | update_sched_rt_period(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3746 | spin_unlock(&rq->lock); |
| 3747 | |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3748 | #ifdef CONFIG_SMP |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3749 | rq->idle_at_tick = idle_cpu(cpu); |
| 3750 | trigger_load_balance(rq, cpu); |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3751 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3752 | } |
| 3753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3754 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) |
| 3755 | |
| 3756 | void fastcall add_preempt_count(int val) |
| 3757 | { |
| 3758 | /* |
| 3759 | * Underflow? |
| 3760 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3761 | if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0))) |
| 3762 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3763 | preempt_count() += val; |
| 3764 | /* |
| 3765 | * Spinlock count overflowing soon? |
| 3766 | */ |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 3767 | DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= |
| 3768 | PREEMPT_MASK - 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3769 | } |
| 3770 | EXPORT_SYMBOL(add_preempt_count); |
| 3771 | |
| 3772 | void fastcall sub_preempt_count(int val) |
| 3773 | { |
| 3774 | /* |
| 3775 | * Underflow? |
| 3776 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3777 | if (DEBUG_LOCKS_WARN_ON(val > preempt_count())) |
| 3778 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3779 | /* |
| 3780 | * Is the spinlock portion underflowing? |
| 3781 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3782 | if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) && |
| 3783 | !(preempt_count() & PREEMPT_MASK))) |
| 3784 | return; |
| 3785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3786 | preempt_count() -= val; |
| 3787 | } |
| 3788 | EXPORT_SYMBOL(sub_preempt_count); |
| 3789 | |
| 3790 | #endif |
| 3791 | |
| 3792 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3793 | * Print scheduling while atomic bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3794 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3795 | static noinline void __schedule_bug(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | { |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3797 | struct pt_regs *regs = get_irq_regs(); |
| 3798 | |
| 3799 | printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n", |
| 3800 | prev->comm, prev->pid, preempt_count()); |
| 3801 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3802 | debug_show_held_locks(prev); |
| 3803 | if (irqs_disabled()) |
| 3804 | print_irqtrace_events(prev); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3805 | |
| 3806 | if (regs) |
| 3807 | show_regs(regs); |
| 3808 | else |
| 3809 | dump_stack(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3812 | /* |
| 3813 | * Various schedule()-time debugging checks and statistics: |
| 3814 | */ |
| 3815 | static inline void schedule_debug(struct task_struct *prev) |
| 3816 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3817 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3818 | * Test if we are atomic. Since do_exit() needs to call into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3819 | * schedule() atomically, we ignore that path for now. |
| 3820 | * Otherwise, whine if we are scheduling when we should not be. |
| 3821 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3822 | if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state)) |
| 3823 | __schedule_bug(prev); |
| 3824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3825 | profile_hit(SCHED_PROFILING, __builtin_return_address(0)); |
| 3826 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3827 | schedstat_inc(this_rq(), sched_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 3828 | #ifdef CONFIG_SCHEDSTATS |
| 3829 | if (unlikely(prev->lock_depth >= 0)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3830 | schedstat_inc(this_rq(), bkl_count); |
| 3831 | schedstat_inc(prev, sched_info.bkl_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 3832 | } |
| 3833 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3834 | } |
| 3835 | |
| 3836 | /* |
| 3837 | * Pick up the highest-prio task: |
| 3838 | */ |
| 3839 | static inline struct task_struct * |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3840 | pick_next_task(struct rq *rq, struct task_struct *prev) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3841 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3842 | const struct sched_class *class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3843 | struct task_struct *p; |
| 3844 | |
| 3845 | /* |
| 3846 | * Optimization: we know that if all tasks are in |
| 3847 | * the fair class we can call that function directly: |
| 3848 | */ |
| 3849 | if (likely(rq->nr_running == rq->cfs.nr_running)) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3850 | p = fair_sched_class.pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3851 | if (likely(p)) |
| 3852 | return p; |
| 3853 | } |
| 3854 | |
| 3855 | class = sched_class_highest; |
| 3856 | for ( ; ; ) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3857 | p = class->pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3858 | if (p) |
| 3859 | return p; |
| 3860 | /* |
| 3861 | * Will never be NULL as the idle class always |
| 3862 | * returns a non-NULL p: |
| 3863 | */ |
| 3864 | class = class->next; |
| 3865 | } |
| 3866 | } |
| 3867 | |
| 3868 | /* |
| 3869 | * schedule() is the main scheduler function. |
| 3870 | */ |
| 3871 | asmlinkage void __sched schedule(void) |
| 3872 | { |
| 3873 | struct task_struct *prev, *next; |
| 3874 | long *switch_count; |
| 3875 | struct rq *rq; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3876 | int cpu; |
| 3877 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3878 | need_resched: |
| 3879 | preempt_disable(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3880 | cpu = smp_processor_id(); |
| 3881 | rq = cpu_rq(cpu); |
| 3882 | rcu_qsctr_inc(cpu); |
| 3883 | prev = rq->curr; |
| 3884 | switch_count = &prev->nivcsw; |
| 3885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | release_kernel_lock(prev); |
| 3887 | need_resched_nonpreemptible: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3888 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3889 | schedule_debug(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3890 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3891 | hrtick_clear(rq); |
| 3892 | |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3893 | /* |
| 3894 | * Do the rq-clock update outside the rq lock: |
| 3895 | */ |
| 3896 | local_irq_disable(); |
Ingo Molnar | c1b3da3 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3897 | __update_rq_clock(rq); |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3898 | spin_lock(&rq->lock); |
| 3899 | clear_tsk_need_resched(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3900 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3901 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |
| 3902 | if (unlikely((prev->state & TASK_INTERRUPTIBLE) && |
| 3903 | unlikely(signal_pending(prev)))) { |
| 3904 | prev->state = TASK_RUNNING; |
| 3905 | } else { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3906 | deactivate_task(rq, prev, 1); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3907 | } |
| 3908 | switch_count = &prev->nvcsw; |
| 3909 | } |
| 3910 | |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 3911 | #ifdef CONFIG_SMP |
| 3912 | if (prev->sched_class->pre_schedule) |
| 3913 | prev->sched_class->pre_schedule(rq, prev); |
| 3914 | #endif |
Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 3915 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3916 | if (unlikely(!rq->nr_running)) |
| 3917 | idle_balance(cpu, rq); |
| 3918 | |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3919 | prev->sched_class->put_prev_task(rq, prev); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3920 | next = pick_next_task(rq, prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | |
| 3922 | sched_info_switch(prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3923 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3924 | if (likely(prev != next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | rq->nr_switches++; |
| 3926 | rq->curr = next; |
| 3927 | ++*switch_count; |
| 3928 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3929 | context_switch(rq, prev, next); /* unlocks the rq */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3930 | /* |
| 3931 | * the context switch might have flipped the stack from under |
| 3932 | * us, hence refresh the local variables. |
| 3933 | */ |
| 3934 | cpu = smp_processor_id(); |
| 3935 | rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3936 | } else |
| 3937 | spin_unlock_irq(&rq->lock); |
| 3938 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3939 | hrtick_set(rq); |
| 3940 | |
| 3941 | if (unlikely(reacquire_kernel_lock(current) < 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | goto need_resched_nonpreemptible; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3944 | preempt_enable_no_resched(); |
| 3945 | if (unlikely(test_thread_flag(TIF_NEED_RESCHED))) |
| 3946 | goto need_resched; |
| 3947 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | EXPORT_SYMBOL(schedule); |
| 3949 | |
| 3950 | #ifdef CONFIG_PREEMPT |
| 3951 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 3952 | * this is the entry point to schedule() from in-kernel preemption |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3953 | * off of preempt_enable. Kernel preemptions off return from interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | * occur there and call schedule directly. |
| 3955 | */ |
| 3956 | asmlinkage void __sched preempt_schedule(void) |
| 3957 | { |
| 3958 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | struct task_struct *task = current; |
| 3960 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | /* |
| 3963 | * If there is a non-zero preempt_count or interrupts are disabled, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3964 | * we do not want to preempt the current task. Just return.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | */ |
Nick Piggin | beed33a | 2006-10-11 01:21:52 -0700 | [diff] [blame] | 3966 | if (likely(ti->preempt_count || irqs_disabled())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3967 | return; |
| 3968 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3969 | do { |
| 3970 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3971 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3972 | /* |
| 3973 | * We keep the big kernel semaphore locked, but we |
| 3974 | * clear ->lock_depth so that schedule() doesnt |
| 3975 | * auto-release the semaphore: |
| 3976 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3977 | saved_lock_depth = task->lock_depth; |
| 3978 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3979 | schedule(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3980 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3981 | sub_preempt_count(PREEMPT_ACTIVE); |
| 3982 | |
| 3983 | /* |
| 3984 | * Check again in case we missed a preemption opportunity |
| 3985 | * between schedule and now. |
| 3986 | */ |
| 3987 | barrier(); |
| 3988 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3990 | EXPORT_SYMBOL(preempt_schedule); |
| 3991 | |
| 3992 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 3993 | * this is the entry point to schedule() from kernel preemption |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | * off of irq context. |
| 3995 | * Note, that this is called and return with irqs disabled. This will |
| 3996 | * protect us against recursive calling from irq. |
| 3997 | */ |
| 3998 | asmlinkage void __sched preempt_schedule_irq(void) |
| 3999 | { |
| 4000 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4001 | struct task_struct *task = current; |
| 4002 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4003 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4004 | /* Catch callers which need to be fixed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4005 | BUG_ON(ti->preempt_count || !irqs_disabled()); |
| 4006 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4007 | do { |
| 4008 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4009 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4010 | /* |
| 4011 | * We keep the big kernel semaphore locked, but we |
| 4012 | * clear ->lock_depth so that schedule() doesnt |
| 4013 | * auto-release the semaphore: |
| 4014 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4015 | saved_lock_depth = task->lock_depth; |
| 4016 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4017 | local_irq_enable(); |
| 4018 | schedule(); |
| 4019 | local_irq_disable(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4020 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4021 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4022 | |
| 4023 | /* |
| 4024 | * Check again in case we missed a preemption opportunity |
| 4025 | * between schedule and now. |
| 4026 | */ |
| 4027 | barrier(); |
| 4028 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4029 | } |
| 4030 | |
| 4031 | #endif /* CONFIG_PREEMPT */ |
| 4032 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4033 | int default_wake_function(wait_queue_t *curr, unsigned mode, int sync, |
| 4034 | void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4035 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4036 | return try_to_wake_up(curr->private, mode, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4037 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4038 | EXPORT_SYMBOL(default_wake_function); |
| 4039 | |
| 4040 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4041 | * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just |
| 4042 | * wake everything up. If it's an exclusive wakeup (nr_exclusive == small +ve |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4043 | * number) then we wake all the non-exclusive tasks and one exclusive task. |
| 4044 | * |
| 4045 | * There are circumstances in which we can try to wake a task which has already |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4046 | * started to run but is not in state TASK_RUNNING. try_to_wake_up() returns |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | * zero in this (rare) case, and we handle it by continuing to scan the queue. |
| 4048 | */ |
| 4049 | static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, |
| 4050 | int nr_exclusive, int sync, void *key) |
| 4051 | { |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4052 | wait_queue_t *curr, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4053 | |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4054 | list_for_each_entry_safe(curr, next, &q->task_list, task_list) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4055 | unsigned flags = curr->flags; |
| 4056 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4057 | if (curr->func(curr, mode, sync, key) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4058 | (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | break; |
| 4060 | } |
| 4061 | } |
| 4062 | |
| 4063 | /** |
| 4064 | * __wake_up - wake up threads blocked on a waitqueue. |
| 4065 | * @q: the waitqueue |
| 4066 | * @mode: which threads |
| 4067 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 4068 | * @key: is directly passed to the wakeup function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4069 | */ |
| 4070 | void fastcall __wake_up(wait_queue_head_t *q, unsigned int mode, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4071 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4072 | { |
| 4073 | unsigned long flags; |
| 4074 | |
| 4075 | spin_lock_irqsave(&q->lock, flags); |
| 4076 | __wake_up_common(q, mode, nr_exclusive, 0, key); |
| 4077 | spin_unlock_irqrestore(&q->lock, flags); |
| 4078 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4079 | EXPORT_SYMBOL(__wake_up); |
| 4080 | |
| 4081 | /* |
| 4082 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
| 4083 | */ |
| 4084 | void fastcall __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
| 4085 | { |
| 4086 | __wake_up_common(q, mode, 1, 0, NULL); |
| 4087 | } |
| 4088 | |
| 4089 | /** |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 4090 | * __wake_up_sync - wake up threads blocked on a waitqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4091 | * @q: the waitqueue |
| 4092 | * @mode: which threads |
| 4093 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
| 4094 | * |
| 4095 | * The sync wakeup differs that the waker knows that it will schedule |
| 4096 | * away soon, so while the target thread will be woken up, it will not |
| 4097 | * be migrated to another CPU - ie. the two threads are 'synchronized' |
| 4098 | * with each other. This can prevent needless bouncing between CPUs. |
| 4099 | * |
| 4100 | * On UP it can prevent extra preemption. |
| 4101 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4102 | void fastcall |
| 4103 | __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4104 | { |
| 4105 | unsigned long flags; |
| 4106 | int sync = 1; |
| 4107 | |
| 4108 | if (unlikely(!q)) |
| 4109 | return; |
| 4110 | |
| 4111 | if (unlikely(!nr_exclusive)) |
| 4112 | sync = 0; |
| 4113 | |
| 4114 | spin_lock_irqsave(&q->lock, flags); |
| 4115 | __wake_up_common(q, mode, nr_exclusive, sync, NULL); |
| 4116 | spin_unlock_irqrestore(&q->lock, flags); |
| 4117 | } |
| 4118 | EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */ |
| 4119 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4120 | void complete(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4121 | { |
| 4122 | unsigned long flags; |
| 4123 | |
| 4124 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4125 | x->done++; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4126 | __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4127 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4128 | } |
| 4129 | EXPORT_SYMBOL(complete); |
| 4130 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4131 | void complete_all(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4132 | { |
| 4133 | unsigned long flags; |
| 4134 | |
| 4135 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4136 | x->done += UINT_MAX/2; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4137 | __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4138 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4139 | } |
| 4140 | EXPORT_SYMBOL(complete_all); |
| 4141 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4142 | static inline long __sched |
| 4143 | do_wait_for_common(struct completion *x, long timeout, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4145 | if (!x->done) { |
| 4146 | DECLARE_WAITQUEUE(wait, current); |
| 4147 | |
| 4148 | wait.flags |= WQ_FLAG_EXCLUSIVE; |
| 4149 | __add_wait_queue_tail(&x->wait, &wait); |
| 4150 | do { |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4151 | if ((state == TASK_INTERRUPTIBLE && |
| 4152 | signal_pending(current)) || |
| 4153 | (state == TASK_KILLABLE && |
| 4154 | fatal_signal_pending(current))) { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4155 | __remove_wait_queue(&x->wait, &wait); |
| 4156 | return -ERESTARTSYS; |
| 4157 | } |
| 4158 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4160 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4161 | spin_lock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4162 | if (!timeout) { |
| 4163 | __remove_wait_queue(&x->wait, &wait); |
| 4164 | return timeout; |
| 4165 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4166 | } while (!x->done); |
| 4167 | __remove_wait_queue(&x->wait, &wait); |
| 4168 | } |
| 4169 | x->done--; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4170 | return timeout; |
| 4171 | } |
| 4172 | |
| 4173 | static long __sched |
| 4174 | wait_for_common(struct completion *x, long timeout, int state) |
| 4175 | { |
| 4176 | might_sleep(); |
| 4177 | |
| 4178 | spin_lock_irq(&x->wait.lock); |
| 4179 | timeout = do_wait_for_common(x, timeout, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4180 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4181 | return timeout; |
| 4182 | } |
| 4183 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4184 | void __sched wait_for_completion(struct completion *x) |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4185 | { |
| 4186 | wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4187 | } |
| 4188 | EXPORT_SYMBOL(wait_for_completion); |
| 4189 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4190 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4191 | wait_for_completion_timeout(struct completion *x, unsigned long timeout) |
| 4192 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4193 | return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4194 | } |
| 4195 | EXPORT_SYMBOL(wait_for_completion_timeout); |
| 4196 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4197 | int __sched wait_for_completion_interruptible(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4198 | { |
Andi Kleen | 51e9799 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 4199 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE); |
| 4200 | if (t == -ERESTARTSYS) |
| 4201 | return t; |
| 4202 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4203 | } |
| 4204 | EXPORT_SYMBOL(wait_for_completion_interruptible); |
| 4205 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4206 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4207 | wait_for_completion_interruptible_timeout(struct completion *x, |
| 4208 | unsigned long timeout) |
| 4209 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4210 | return wait_for_common(x, timeout, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4211 | } |
| 4212 | EXPORT_SYMBOL(wait_for_completion_interruptible_timeout); |
| 4213 | |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4214 | int __sched wait_for_completion_killable(struct completion *x) |
| 4215 | { |
| 4216 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE); |
| 4217 | if (t == -ERESTARTSYS) |
| 4218 | return t; |
| 4219 | return 0; |
| 4220 | } |
| 4221 | EXPORT_SYMBOL(wait_for_completion_killable); |
| 4222 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4223 | static long __sched |
| 4224 | sleep_on_common(wait_queue_head_t *q, int state, long timeout) |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4225 | { |
| 4226 | unsigned long flags; |
| 4227 | wait_queue_t wait; |
| 4228 | |
| 4229 | init_waitqueue_entry(&wait, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4231 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4232 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4233 | spin_lock_irqsave(&q->lock, flags); |
| 4234 | __add_wait_queue(q, &wait); |
| 4235 | spin_unlock(&q->lock); |
| 4236 | timeout = schedule_timeout(timeout); |
| 4237 | spin_lock_irq(&q->lock); |
| 4238 | __remove_wait_queue(q, &wait); |
| 4239 | spin_unlock_irqrestore(&q->lock, flags); |
| 4240 | |
| 4241 | return timeout; |
| 4242 | } |
| 4243 | |
| 4244 | void __sched interruptible_sleep_on(wait_queue_head_t *q) |
| 4245 | { |
| 4246 | sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | EXPORT_SYMBOL(interruptible_sleep_on); |
| 4249 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4250 | long __sched |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4251 | interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4252 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4253 | return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4254 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4255 | EXPORT_SYMBOL(interruptible_sleep_on_timeout); |
| 4256 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4257 | void __sched sleep_on(wait_queue_head_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4258 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4259 | sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4261 | EXPORT_SYMBOL(sleep_on); |
| 4262 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4263 | long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4264 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4265 | return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4267 | EXPORT_SYMBOL(sleep_on_timeout); |
| 4268 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4269 | #ifdef CONFIG_RT_MUTEXES |
| 4270 | |
| 4271 | /* |
| 4272 | * rt_mutex_setprio - set the current priority of a task |
| 4273 | * @p: task |
| 4274 | * @prio: prio value (kernel-internal form) |
| 4275 | * |
| 4276 | * This function changes the 'effective' priority of a task. It does |
| 4277 | * not touch ->normal_prio like __setscheduler(). |
| 4278 | * |
| 4279 | * Used by the rt_mutex code to implement priority inheritance logic. |
| 4280 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4281 | void rt_mutex_setprio(struct task_struct *p, int prio) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4282 | { |
| 4283 | unsigned long flags; |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4284 | int oldprio, on_rq, running; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4285 | struct rq *rq; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4286 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4287 | |
| 4288 | BUG_ON(prio < 0 || prio > MAX_PRIO); |
| 4289 | |
| 4290 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4291 | update_rq_clock(rq); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4292 | |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4293 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4294 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4295 | running = task_current(rq, p); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4296 | if (on_rq) { |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4297 | dequeue_task(rq, p, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4298 | if (running) |
| 4299 | p->sched_class->put_prev_task(rq, p); |
| 4300 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4301 | |
| 4302 | if (rt_prio(prio)) |
| 4303 | p->sched_class = &rt_sched_class; |
| 4304 | else |
| 4305 | p->sched_class = &fair_sched_class; |
| 4306 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4307 | p->prio = prio; |
| 4308 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4309 | if (on_rq) { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4310 | if (running) |
| 4311 | p->sched_class->set_curr_task(rq); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4312 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4313 | enqueue_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4314 | |
| 4315 | check_class_changed(rq, p, prev_class, oldprio, running); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4316 | } |
| 4317 | task_rq_unlock(rq, &flags); |
| 4318 | } |
| 4319 | |
| 4320 | #endif |
| 4321 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4322 | void set_user_nice(struct task_struct *p, long nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4324 | int old_prio, delta, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4325 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4326 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4327 | |
| 4328 | if (TASK_NICE(p) == nice || nice < -20 || nice > 19) |
| 4329 | return; |
| 4330 | /* |
| 4331 | * We have to be careful, if called from sys_setpriority(), |
| 4332 | * the task might be in the middle of scheduling on another CPU. |
| 4333 | */ |
| 4334 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4335 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4336 | /* |
| 4337 | * The RT priorities are set via sched_setscheduler(), but we still |
| 4338 | * allow the 'normal' nice value to be set - but as expected |
| 4339 | * it wont have any effect on scheduling until the task is |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4340 | * SCHED_FIFO/SCHED_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4341 | */ |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4342 | if (task_has_rt_policy(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | p->static_prio = NICE_TO_PRIO(nice); |
| 4344 | goto out_unlock; |
| 4345 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4346 | on_rq = p->se.on_rq; |
Srivatsa Vaddagiri | 58e2d4c | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 4347 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4348 | dequeue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4349 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4350 | p->static_prio = NICE_TO_PRIO(nice); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4351 | set_load_weight(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4352 | old_prio = p->prio; |
| 4353 | p->prio = effective_prio(p); |
| 4354 | delta = p->prio - old_prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4355 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4356 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4357 | enqueue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4358 | /* |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4359 | * If the task increased its priority or is running and |
| 4360 | * lowered its priority, then reschedule its CPU: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4361 | */ |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4362 | if (delta < 0 || (delta > 0 && task_running(rq, p))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4363 | resched_task(rq->curr); |
| 4364 | } |
| 4365 | out_unlock: |
| 4366 | task_rq_unlock(rq, &flags); |
| 4367 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4368 | EXPORT_SYMBOL(set_user_nice); |
| 4369 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4370 | /* |
| 4371 | * can_nice - check if a task can reduce its nice value |
| 4372 | * @p: task |
| 4373 | * @nice: nice value |
| 4374 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4375 | int can_nice(const struct task_struct *p, const int nice) |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4376 | { |
Matt Mackall | 024f474 | 2005-08-18 11:24:19 -0700 | [diff] [blame] | 4377 | /* convert nice value [19,-20] to rlimit style value [1,40] */ |
| 4378 | int nice_rlim = 20 - nice; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4379 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4380 | return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur || |
| 4381 | capable(CAP_SYS_NICE)); |
| 4382 | } |
| 4383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4384 | #ifdef __ARCH_WANT_SYS_NICE |
| 4385 | |
| 4386 | /* |
| 4387 | * sys_nice - change the priority of the current process. |
| 4388 | * @increment: priority increment |
| 4389 | * |
| 4390 | * sys_setpriority is a more generic, but much slower function that |
| 4391 | * does similar things. |
| 4392 | */ |
| 4393 | asmlinkage long sys_nice(int increment) |
| 4394 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4395 | long nice, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4396 | |
| 4397 | /* |
| 4398 | * Setpriority might change our priority at the same moment. |
| 4399 | * We don't have to worry. Conceptually one call occurs first |
| 4400 | * and we have a single winner. |
| 4401 | */ |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4402 | if (increment < -40) |
| 4403 | increment = -40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4404 | if (increment > 40) |
| 4405 | increment = 40; |
| 4406 | |
| 4407 | nice = PRIO_TO_NICE(current->static_prio) + increment; |
| 4408 | if (nice < -20) |
| 4409 | nice = -20; |
| 4410 | if (nice > 19) |
| 4411 | nice = 19; |
| 4412 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4413 | if (increment < 0 && !can_nice(current, nice)) |
| 4414 | return -EPERM; |
| 4415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4416 | retval = security_task_setnice(current, nice); |
| 4417 | if (retval) |
| 4418 | return retval; |
| 4419 | |
| 4420 | set_user_nice(current, nice); |
| 4421 | return 0; |
| 4422 | } |
| 4423 | |
| 4424 | #endif |
| 4425 | |
| 4426 | /** |
| 4427 | * task_prio - return the priority value of a given task. |
| 4428 | * @p: the task in question. |
| 4429 | * |
| 4430 | * This is the priority value as seen by users in /proc. |
| 4431 | * RT tasks are offset by -200. Normal tasks are centered |
| 4432 | * around 0, value goes from -16 to +15. |
| 4433 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4434 | int task_prio(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4435 | { |
| 4436 | return p->prio - MAX_RT_PRIO; |
| 4437 | } |
| 4438 | |
| 4439 | /** |
| 4440 | * task_nice - return the nice value of a given task. |
| 4441 | * @p: the task in question. |
| 4442 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4443 | int task_nice(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4444 | { |
| 4445 | return TASK_NICE(p); |
| 4446 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4447 | EXPORT_SYMBOL_GPL(task_nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | |
| 4449 | /** |
| 4450 | * idle_cpu - is a given cpu idle currently? |
| 4451 | * @cpu: the processor in question. |
| 4452 | */ |
| 4453 | int idle_cpu(int cpu) |
| 4454 | { |
| 4455 | return cpu_curr(cpu) == cpu_rq(cpu)->idle; |
| 4456 | } |
| 4457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4458 | /** |
| 4459 | * idle_task - return the idle task for a given cpu. |
| 4460 | * @cpu: the processor in question. |
| 4461 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4462 | struct task_struct *idle_task(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4463 | { |
| 4464 | return cpu_rq(cpu)->idle; |
| 4465 | } |
| 4466 | |
| 4467 | /** |
| 4468 | * find_process_by_pid - find a process with a matching PID value. |
| 4469 | * @pid: the pid in question. |
| 4470 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4471 | static struct task_struct *find_process_by_pid(pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4472 | { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 4473 | return pid ? find_task_by_vpid(pid) : current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4474 | } |
| 4475 | |
| 4476 | /* Actually do priority change: must hold rq lock. */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4477 | static void |
| 4478 | __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4479 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4480 | BUG_ON(p->se.on_rq); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4481 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4482 | p->policy = policy; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4483 | switch (p->policy) { |
| 4484 | case SCHED_NORMAL: |
| 4485 | case SCHED_BATCH: |
| 4486 | case SCHED_IDLE: |
| 4487 | p->sched_class = &fair_sched_class; |
| 4488 | break; |
| 4489 | case SCHED_FIFO: |
| 4490 | case SCHED_RR: |
| 4491 | p->sched_class = &rt_sched_class; |
| 4492 | break; |
| 4493 | } |
| 4494 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4495 | p->rt_priority = prio; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4496 | p->normal_prio = normal_prio(p); |
| 4497 | /* we are holding p->pi_lock already */ |
| 4498 | p->prio = rt_mutex_getprio(p); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4499 | set_load_weight(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | } |
| 4501 | |
| 4502 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4503 | * sched_setscheduler - change the scheduling policy and/or RT priority of a thread. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4504 | * @p: the task in question. |
| 4505 | * @policy: new policy. |
| 4506 | * @param: structure containing the new RT priority. |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4507 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4508 | * NOTE that the task may be already dead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4509 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4510 | int sched_setscheduler(struct task_struct *p, int policy, |
| 4511 | struct sched_param *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4513 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4514 | unsigned long flags; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4515 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4516 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4517 | |
Steven Rostedt | 66e5393 | 2006-06-27 02:54:44 -0700 | [diff] [blame] | 4518 | /* may grab non-irq protected spin_locks */ |
| 4519 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4520 | recheck: |
| 4521 | /* double check policy once rq lock held */ |
| 4522 | if (policy < 0) |
| 4523 | policy = oldpolicy = p->policy; |
| 4524 | else if (policy != SCHED_FIFO && policy != SCHED_RR && |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4525 | policy != SCHED_NORMAL && policy != SCHED_BATCH && |
| 4526 | policy != SCHED_IDLE) |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 4527 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4528 | /* |
| 4529 | * Valid priorities for SCHED_FIFO and SCHED_RR are |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4530 | * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL, |
| 4531 | * SCHED_BATCH and SCHED_IDLE is 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4532 | */ |
| 4533 | if (param->sched_priority < 0 || |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4534 | (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) || |
Steven Rostedt | d46523e | 2005-07-25 16:28:39 -0400 | [diff] [blame] | 4535 | (!p->mm && param->sched_priority > MAX_RT_PRIO-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4536 | return -EINVAL; |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4537 | if (rt_policy(policy) != (param->sched_priority != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | return -EINVAL; |
| 4539 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4540 | /* |
| 4541 | * Allow unprivileged RT tasks to decrease priority: |
| 4542 | */ |
| 4543 | if (!capable(CAP_SYS_NICE)) { |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4544 | if (rt_policy(policy)) { |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4545 | unsigned long rlim_rtprio; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4546 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4547 | if (!lock_task_sighand(p, &flags)) |
| 4548 | return -ESRCH; |
| 4549 | rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur; |
| 4550 | unlock_task_sighand(p, &flags); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4551 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4552 | /* can't set/change the rt policy */ |
| 4553 | if (policy != p->policy && !rlim_rtprio) |
| 4554 | return -EPERM; |
| 4555 | |
| 4556 | /* can't increase priority */ |
| 4557 | if (param->sched_priority > p->rt_priority && |
| 4558 | param->sched_priority > rlim_rtprio) |
| 4559 | return -EPERM; |
| 4560 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4561 | /* |
| 4562 | * Like positive nice levels, dont allow tasks to |
| 4563 | * move out of SCHED_IDLE either: |
| 4564 | */ |
| 4565 | if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) |
| 4566 | return -EPERM; |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4567 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4568 | /* can't change other user's priorities */ |
| 4569 | if ((current->euid != p->euid) && |
| 4570 | (current->euid != p->uid)) |
| 4571 | return -EPERM; |
| 4572 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4573 | |
| 4574 | retval = security_task_setscheduler(p, policy, param); |
| 4575 | if (retval) |
| 4576 | return retval; |
| 4577 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4578 | * make sure no PI-waiters arrive (or leave) while we are |
| 4579 | * changing the priority of the task: |
| 4580 | */ |
| 4581 | spin_lock_irqsave(&p->pi_lock, flags); |
| 4582 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4583 | * To be able to change p->policy safely, the apropriate |
| 4584 | * runqueue lock must be held. |
| 4585 | */ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4586 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4587 | /* recheck policy now with rq lock held */ |
| 4588 | if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) { |
| 4589 | policy = oldpolicy = -1; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4590 | __task_rq_unlock(rq); |
| 4591 | spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | goto recheck; |
| 4593 | } |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 4594 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4595 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4596 | running = task_current(rq, p); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4597 | if (on_rq) { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4598 | deactivate_task(rq, p, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4599 | if (running) |
| 4600 | p->sched_class->put_prev_task(rq, p); |
| 4601 | } |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4602 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4604 | __setscheduler(rq, p, policy, param->sched_priority); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4605 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4606 | if (on_rq) { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4607 | if (running) |
| 4608 | p->sched_class->set_curr_task(rq); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4609 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4610 | activate_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4611 | |
| 4612 | check_class_changed(rq, p, prev_class, oldprio, running); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4613 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4614 | __task_rq_unlock(rq); |
| 4615 | spin_unlock_irqrestore(&p->pi_lock, flags); |
| 4616 | |
Thomas Gleixner | 95e02ca | 2006-06-27 02:55:02 -0700 | [diff] [blame] | 4617 | rt_mutex_adjust_pi(p); |
| 4618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4619 | return 0; |
| 4620 | } |
| 4621 | EXPORT_SYMBOL_GPL(sched_setscheduler); |
| 4622 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4623 | static int |
| 4624 | do_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4625 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4626 | struct sched_param lparam; |
| 4627 | struct task_struct *p; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4628 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4629 | |
| 4630 | if (!param || pid < 0) |
| 4631 | return -EINVAL; |
| 4632 | if (copy_from_user(&lparam, param, sizeof(struct sched_param))) |
| 4633 | return -EFAULT; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4634 | |
| 4635 | rcu_read_lock(); |
| 4636 | retval = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4637 | p = find_process_by_pid(pid); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4638 | if (p != NULL) |
| 4639 | retval = sched_setscheduler(p, policy, &lparam); |
| 4640 | rcu_read_unlock(); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4641 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4642 | return retval; |
| 4643 | } |
| 4644 | |
| 4645 | /** |
| 4646 | * sys_sched_setscheduler - set/change the scheduler policy and RT priority |
| 4647 | * @pid: the pid in question. |
| 4648 | * @policy: new policy. |
| 4649 | * @param: structure containing the new RT priority. |
| 4650 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4651 | asmlinkage long |
| 4652 | sys_sched_setscheduler(pid_t pid, int policy, struct sched_param __user *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4653 | { |
Jason Baron | c21761f | 2006-01-18 17:43:03 -0800 | [diff] [blame] | 4654 | /* negative values for policy are not valid */ |
| 4655 | if (policy < 0) |
| 4656 | return -EINVAL; |
| 4657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4658 | return do_sched_setscheduler(pid, policy, param); |
| 4659 | } |
| 4660 | |
| 4661 | /** |
| 4662 | * sys_sched_setparam - set/change the RT priority of a thread |
| 4663 | * @pid: the pid in question. |
| 4664 | * @param: structure containing the new RT priority. |
| 4665 | */ |
| 4666 | asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param) |
| 4667 | { |
| 4668 | return do_sched_setscheduler(pid, -1, param); |
| 4669 | } |
| 4670 | |
| 4671 | /** |
| 4672 | * sys_sched_getscheduler - get the policy (scheduling class) of a thread |
| 4673 | * @pid: the pid in question. |
| 4674 | */ |
| 4675 | asmlinkage long sys_sched_getscheduler(pid_t pid) |
| 4676 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4677 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4678 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4679 | |
| 4680 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4681 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4682 | |
| 4683 | retval = -ESRCH; |
| 4684 | read_lock(&tasklist_lock); |
| 4685 | p = find_process_by_pid(pid); |
| 4686 | if (p) { |
| 4687 | retval = security_task_getscheduler(p); |
| 4688 | if (!retval) |
| 4689 | retval = p->policy; |
| 4690 | } |
| 4691 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4692 | return retval; |
| 4693 | } |
| 4694 | |
| 4695 | /** |
| 4696 | * sys_sched_getscheduler - get the RT priority of a thread |
| 4697 | * @pid: the pid in question. |
| 4698 | * @param: structure containing the RT priority. |
| 4699 | */ |
| 4700 | asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param) |
| 4701 | { |
| 4702 | struct sched_param lp; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4703 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4704 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4705 | |
| 4706 | if (!param || pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4707 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4708 | |
| 4709 | read_lock(&tasklist_lock); |
| 4710 | p = find_process_by_pid(pid); |
| 4711 | retval = -ESRCH; |
| 4712 | if (!p) |
| 4713 | goto out_unlock; |
| 4714 | |
| 4715 | retval = security_task_getscheduler(p); |
| 4716 | if (retval) |
| 4717 | goto out_unlock; |
| 4718 | |
| 4719 | lp.sched_priority = p->rt_priority; |
| 4720 | read_unlock(&tasklist_lock); |
| 4721 | |
| 4722 | /* |
| 4723 | * This one might sleep, we cannot do it with a spinlock held ... |
| 4724 | */ |
| 4725 | retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0; |
| 4726 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | return retval; |
| 4728 | |
| 4729 | out_unlock: |
| 4730 | read_unlock(&tasklist_lock); |
| 4731 | return retval; |
| 4732 | } |
| 4733 | |
| 4734 | long sched_setaffinity(pid_t pid, cpumask_t new_mask) |
| 4735 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4736 | cpumask_t cpus_allowed; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4737 | struct task_struct *p; |
| 4738 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4740 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4741 | read_lock(&tasklist_lock); |
| 4742 | |
| 4743 | p = find_process_by_pid(pid); |
| 4744 | if (!p) { |
| 4745 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4746 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | return -ESRCH; |
| 4748 | } |
| 4749 | |
| 4750 | /* |
| 4751 | * It is not safe to call set_cpus_allowed with the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4752 | * tasklist_lock held. We will bump the task_struct's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | * usage count and then drop tasklist_lock. |
| 4754 | */ |
| 4755 | get_task_struct(p); |
| 4756 | read_unlock(&tasklist_lock); |
| 4757 | |
| 4758 | retval = -EPERM; |
| 4759 | if ((current->euid != p->euid) && (current->euid != p->uid) && |
| 4760 | !capable(CAP_SYS_NICE)) |
| 4761 | goto out_unlock; |
| 4762 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 4763 | retval = security_task_setscheduler(p, 0, NULL); |
| 4764 | if (retval) |
| 4765 | goto out_unlock; |
| 4766 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4768 | cpus_and(new_mask, new_mask, cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4769 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4770 | retval = set_cpus_allowed(p, new_mask); |
| 4771 | |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4772 | if (!retval) { |
| 4773 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4774 | if (!cpus_subset(new_mask, cpus_allowed)) { |
| 4775 | /* |
| 4776 | * We must have raced with a concurrent cpuset |
| 4777 | * update. Just reset the cpus_allowed to the |
| 4778 | * cpuset's cpus_allowed |
| 4779 | */ |
| 4780 | new_mask = cpus_allowed; |
| 4781 | goto again; |
| 4782 | } |
| 4783 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4784 | out_unlock: |
| 4785 | put_task_struct(p); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4786 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4787 | return retval; |
| 4788 | } |
| 4789 | |
| 4790 | static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len, |
| 4791 | cpumask_t *new_mask) |
| 4792 | { |
| 4793 | if (len < sizeof(cpumask_t)) { |
| 4794 | memset(new_mask, 0, sizeof(cpumask_t)); |
| 4795 | } else if (len > sizeof(cpumask_t)) { |
| 4796 | len = sizeof(cpumask_t); |
| 4797 | } |
| 4798 | return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0; |
| 4799 | } |
| 4800 | |
| 4801 | /** |
| 4802 | * sys_sched_setaffinity - set the cpu affinity of a process |
| 4803 | * @pid: pid of the process |
| 4804 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 4805 | * @user_mask_ptr: user-space pointer to the new cpu mask |
| 4806 | */ |
| 4807 | asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len, |
| 4808 | unsigned long __user *user_mask_ptr) |
| 4809 | { |
| 4810 | cpumask_t new_mask; |
| 4811 | int retval; |
| 4812 | |
| 4813 | retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask); |
| 4814 | if (retval) |
| 4815 | return retval; |
| 4816 | |
| 4817 | return sched_setaffinity(pid, new_mask); |
| 4818 | } |
| 4819 | |
| 4820 | /* |
| 4821 | * Represents all cpu's present in the system |
| 4822 | * In systems capable of hotplug, this map could dynamically grow |
| 4823 | * as new cpu's are detected in the system via any platform specific |
| 4824 | * method, such as ACPI for e.g. |
| 4825 | */ |
| 4826 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4827 | cpumask_t cpu_present_map __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4828 | EXPORT_SYMBOL(cpu_present_map); |
| 4829 | |
| 4830 | #ifndef CONFIG_SMP |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4831 | cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 4832 | EXPORT_SYMBOL(cpu_online_map); |
| 4833 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4834 | cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 4835 | EXPORT_SYMBOL(cpu_possible_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4836 | #endif |
| 4837 | |
| 4838 | long sched_getaffinity(pid_t pid, cpumask_t *mask) |
| 4839 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4840 | struct task_struct *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4841 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4842 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4843 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4844 | read_lock(&tasklist_lock); |
| 4845 | |
| 4846 | retval = -ESRCH; |
| 4847 | p = find_process_by_pid(pid); |
| 4848 | if (!p) |
| 4849 | goto out_unlock; |
| 4850 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 4851 | retval = security_task_getscheduler(p); |
| 4852 | if (retval) |
| 4853 | goto out_unlock; |
| 4854 | |
Jack Steiner | 2f7016d | 2006-02-01 03:05:18 -0800 | [diff] [blame] | 4855 | cpus_and(*mask, p->cpus_allowed, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | |
| 4857 | out_unlock: |
| 4858 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4859 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4860 | |
Ulrich Drepper | 9531b62 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 4861 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4862 | } |
| 4863 | |
| 4864 | /** |
| 4865 | * sys_sched_getaffinity - get the cpu affinity of a process |
| 4866 | * @pid: pid of the process |
| 4867 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 4868 | * @user_mask_ptr: user-space pointer to hold the current cpu mask |
| 4869 | */ |
| 4870 | asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len, |
| 4871 | unsigned long __user *user_mask_ptr) |
| 4872 | { |
| 4873 | int ret; |
| 4874 | cpumask_t mask; |
| 4875 | |
| 4876 | if (len < sizeof(cpumask_t)) |
| 4877 | return -EINVAL; |
| 4878 | |
| 4879 | ret = sched_getaffinity(pid, &mask); |
| 4880 | if (ret < 0) |
| 4881 | return ret; |
| 4882 | |
| 4883 | if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t))) |
| 4884 | return -EFAULT; |
| 4885 | |
| 4886 | return sizeof(cpumask_t); |
| 4887 | } |
| 4888 | |
| 4889 | /** |
| 4890 | * sys_sched_yield - yield the current processor to other threads. |
| 4891 | * |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4892 | * This function yields the current CPU to other tasks. If there are no |
| 4893 | * other threads running on this CPU then this function will return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4894 | */ |
| 4895 | asmlinkage long sys_sched_yield(void) |
| 4896 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4897 | struct rq *rq = this_rq_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4898 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4899 | schedstat_inc(rq, yld_count); |
Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4900 | current->sched_class->yield_task(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4901 | |
| 4902 | /* |
| 4903 | * Since we are going to call schedule() anyway, there's |
| 4904 | * no need to preempt or enable interrupts: |
| 4905 | */ |
| 4906 | __release(rq->lock); |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 4907 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4908 | _raw_spin_unlock(&rq->lock); |
| 4909 | preempt_enable_no_resched(); |
| 4910 | |
| 4911 | schedule(); |
| 4912 | |
| 4913 | return 0; |
| 4914 | } |
| 4915 | |
Andrew Morton | e7b3840 | 2006-06-30 01:56:00 -0700 | [diff] [blame] | 4916 | static void __cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4917 | { |
Ingo Molnar | 8e0a43d | 2006-06-23 02:05:23 -0700 | [diff] [blame] | 4918 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 4919 | __might_sleep(__FILE__, __LINE__); |
| 4920 | #endif |
Ingo Molnar | 5bbcfd9 | 2005-07-07 17:57:04 -0700 | [diff] [blame] | 4921 | /* |
| 4922 | * The BKS might be reacquired before we have dropped |
| 4923 | * PREEMPT_ACTIVE, which could trigger a second |
| 4924 | * cond_resched() call. |
| 4925 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4926 | do { |
| 4927 | add_preempt_count(PREEMPT_ACTIVE); |
| 4928 | schedule(); |
| 4929 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4930 | } while (need_resched()); |
| 4931 | } |
| 4932 | |
Herbert Xu | 02b67cc | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 4933 | #if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY) |
| 4934 | int __sched _cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4935 | { |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 4936 | if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) && |
| 4937 | system_state == SYSTEM_RUNNING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4938 | __cond_resched(); |
| 4939 | return 1; |
| 4940 | } |
| 4941 | return 0; |
| 4942 | } |
Herbert Xu | 02b67cc | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 4943 | EXPORT_SYMBOL(_cond_resched); |
| 4944 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4945 | |
| 4946 | /* |
| 4947 | * cond_resched_lock() - if a reschedule is pending, drop the given lock, |
| 4948 | * call schedule, and on return reacquire the lock. |
| 4949 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4950 | * This works OK both with and without CONFIG_PREEMPT. We do strange low-level |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4951 | * operations here to prevent schedule() from being called twice (once via |
| 4952 | * spin_unlock(), once by hand). |
| 4953 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4954 | int cond_resched_lock(spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | { |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4956 | int resched = need_resched() && system_state == SYSTEM_RUNNING; |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4957 | int ret = 0; |
| 4958 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4959 | if (spin_needbreak(lock) || resched) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4960 | spin_unlock(lock); |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4961 | if (resched && need_resched()) |
| 4962 | __cond_resched(); |
| 4963 | else |
| 4964 | cpu_relax(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4965 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4966 | spin_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4967 | } |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4968 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4969 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4970 | EXPORT_SYMBOL(cond_resched_lock); |
| 4971 | |
| 4972 | int __sched cond_resched_softirq(void) |
| 4973 | { |
| 4974 | BUG_ON(!in_softirq()); |
| 4975 | |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 4976 | if (need_resched() && system_state == SYSTEM_RUNNING) { |
Thomas Gleixner | 98d82567 | 2007-05-23 13:58:18 -0700 | [diff] [blame] | 4977 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | __cond_resched(); |
| 4979 | local_bh_disable(); |
| 4980 | return 1; |
| 4981 | } |
| 4982 | return 0; |
| 4983 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4984 | EXPORT_SYMBOL(cond_resched_softirq); |
| 4985 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4986 | /** |
| 4987 | * yield - yield the current processor to other threads. |
| 4988 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4989 | * This is a shortcut for kernel-space yielding - it marks the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4990 | * thread runnable and calls sys_sched_yield(). |
| 4991 | */ |
| 4992 | void __sched yield(void) |
| 4993 | { |
| 4994 | set_current_state(TASK_RUNNING); |
| 4995 | sys_sched_yield(); |
| 4996 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4997 | EXPORT_SYMBOL(yield); |
| 4998 | |
| 4999 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5000 | * This task is about to go to sleep on IO. Increment rq->nr_iowait so |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5001 | * that process accounting knows that this is a task in IO wait state. |
| 5002 | * |
| 5003 | * But don't do that if it is a deliberate, throttling IO wait (this task |
| 5004 | * has set its backing_dev_info: the queue against which it should throttle) |
| 5005 | */ |
| 5006 | void __sched io_schedule(void) |
| 5007 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5008 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5009 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5010 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5011 | atomic_inc(&rq->nr_iowait); |
| 5012 | schedule(); |
| 5013 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5014 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5016 | EXPORT_SYMBOL(io_schedule); |
| 5017 | |
| 5018 | long __sched io_schedule_timeout(long timeout) |
| 5019 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5020 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5021 | long ret; |
| 5022 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5023 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5024 | atomic_inc(&rq->nr_iowait); |
| 5025 | ret = schedule_timeout(timeout); |
| 5026 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5027 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | return ret; |
| 5029 | } |
| 5030 | |
| 5031 | /** |
| 5032 | * sys_sched_get_priority_max - return maximum RT priority. |
| 5033 | * @policy: scheduling class. |
| 5034 | * |
| 5035 | * this syscall returns the maximum rt_priority that can be used |
| 5036 | * by a given scheduling class. |
| 5037 | */ |
| 5038 | asmlinkage long sys_sched_get_priority_max(int policy) |
| 5039 | { |
| 5040 | int ret = -EINVAL; |
| 5041 | |
| 5042 | switch (policy) { |
| 5043 | case SCHED_FIFO: |
| 5044 | case SCHED_RR: |
| 5045 | ret = MAX_USER_RT_PRIO-1; |
| 5046 | break; |
| 5047 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5048 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5049 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5050 | ret = 0; |
| 5051 | break; |
| 5052 | } |
| 5053 | return ret; |
| 5054 | } |
| 5055 | |
| 5056 | /** |
| 5057 | * sys_sched_get_priority_min - return minimum RT priority. |
| 5058 | * @policy: scheduling class. |
| 5059 | * |
| 5060 | * this syscall returns the minimum rt_priority that can be used |
| 5061 | * by a given scheduling class. |
| 5062 | */ |
| 5063 | asmlinkage long sys_sched_get_priority_min(int policy) |
| 5064 | { |
| 5065 | int ret = -EINVAL; |
| 5066 | |
| 5067 | switch (policy) { |
| 5068 | case SCHED_FIFO: |
| 5069 | case SCHED_RR: |
| 5070 | ret = 1; |
| 5071 | break; |
| 5072 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5073 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5074 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | ret = 0; |
| 5076 | } |
| 5077 | return ret; |
| 5078 | } |
| 5079 | |
| 5080 | /** |
| 5081 | * sys_sched_rr_get_interval - return the default timeslice of a process. |
| 5082 | * @pid: pid of the process. |
| 5083 | * @interval: userspace pointer to the timeslice value. |
| 5084 | * |
| 5085 | * this syscall writes the default timeslice value of a given process |
| 5086 | * into the user-space timespec buffer. A value of '0' means infinity. |
| 5087 | */ |
| 5088 | asmlinkage |
| 5089 | long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval) |
| 5090 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5091 | struct task_struct *p; |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5092 | unsigned int time_slice; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5093 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5094 | struct timespec t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5095 | |
| 5096 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5097 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5098 | |
| 5099 | retval = -ESRCH; |
| 5100 | read_lock(&tasklist_lock); |
| 5101 | p = find_process_by_pid(pid); |
| 5102 | if (!p) |
| 5103 | goto out_unlock; |
| 5104 | |
| 5105 | retval = security_task_getscheduler(p); |
| 5106 | if (retval) |
| 5107 | goto out_unlock; |
| 5108 | |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5109 | /* |
| 5110 | * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER |
| 5111 | * tasks that are on an otherwise idle runqueue: |
| 5112 | */ |
| 5113 | time_slice = 0; |
| 5114 | if (p->policy == SCHED_RR) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5115 | time_slice = DEF_TIMESLICE; |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5116 | } else { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5117 | struct sched_entity *se = &p->se; |
| 5118 | unsigned long flags; |
| 5119 | struct rq *rq; |
| 5120 | |
| 5121 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5122 | if (rq->cfs.load.weight) |
| 5123 | time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se)); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5124 | task_rq_unlock(rq, &flags); |
| 5125 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | read_unlock(&tasklist_lock); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5127 | jiffies_to_timespec(time_slice, &t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5128 | retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5129 | return retval; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | out_unlock: |
| 5132 | read_unlock(&tasklist_lock); |
| 5133 | return retval; |
| 5134 | } |
| 5135 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5136 | static const char stat_nam[] = "RSDTtZX"; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5137 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5138 | void sched_show_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5139 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5140 | unsigned long free = 0; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5141 | unsigned state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5143 | state = p->state ? __ffs(p->state) + 1 : 0; |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5144 | printk(KERN_INFO "%-13.13s %c", p->comm, |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5145 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5146 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5147 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5148 | printk(KERN_CONT " running "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5149 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5150 | printk(KERN_CONT " %08lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5151 | #else |
| 5152 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5153 | printk(KERN_CONT " running task "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5154 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5155 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | #endif |
| 5157 | #ifdef CONFIG_DEBUG_STACK_USAGE |
| 5158 | { |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5159 | unsigned long *n = end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5160 | while (!*n) |
| 5161 | n++; |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5162 | free = (unsigned long)n - (unsigned long)end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5163 | } |
| 5164 | #endif |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 5165 | printk(KERN_CONT "%5lu %5d %6d\n", free, |
Roland McGrath | fcfd50a | 2008-01-09 00:03:23 -0800 | [diff] [blame] | 5166 | task_pid_nr(p), task_pid_nr(p->real_parent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5167 | |
Nick Piggin | 5fb5e6d | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5168 | show_stack(p, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5169 | } |
| 5170 | |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5171 | void show_state_filter(unsigned long state_filter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5172 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5173 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5175 | #if BITS_PER_LONG == 32 |
| 5176 | printk(KERN_INFO |
| 5177 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5178 | #else |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5179 | printk(KERN_INFO |
| 5180 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | #endif |
| 5182 | read_lock(&tasklist_lock); |
| 5183 | do_each_thread(g, p) { |
| 5184 | /* |
| 5185 | * reset the NMI-timeout, listing all files on a slow |
| 5186 | * console might take alot of time: |
| 5187 | */ |
| 5188 | touch_nmi_watchdog(); |
Ingo Molnar | 39bc89f | 2007-04-25 20:50:03 -0700 | [diff] [blame] | 5189 | if (!state_filter || (p->state & state_filter)) |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5190 | sched_show_task(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5191 | } while_each_thread(g, p); |
| 5192 | |
Jeremy Fitzhardinge | 04c9167 | 2007-05-08 00:28:05 -0700 | [diff] [blame] | 5193 | touch_all_softlockup_watchdogs(); |
| 5194 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5195 | #ifdef CONFIG_SCHED_DEBUG |
| 5196 | sysrq_sched_debug_show(); |
| 5197 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5198 | read_unlock(&tasklist_lock); |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5199 | /* |
| 5200 | * Only show locks if all tasks are dumped: |
| 5201 | */ |
| 5202 | if (state_filter == -1) |
| 5203 | debug_show_all_locks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5204 | } |
| 5205 | |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5206 | void __cpuinit init_idle_bootup_task(struct task_struct *idle) |
| 5207 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5208 | idle->sched_class = &idle_sched_class; |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5209 | } |
| 5210 | |
Ingo Molnar | f340c0d | 2005-06-28 16:40:42 +0200 | [diff] [blame] | 5211 | /** |
| 5212 | * init_idle - set up an idle thread for a given CPU |
| 5213 | * @idle: task in question |
| 5214 | * @cpu: cpu the idle task belongs to |
| 5215 | * |
| 5216 | * NOTE: this function does not set the idle thread's NEED_RESCHED |
| 5217 | * flag, to make booting more robust. |
| 5218 | */ |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 5219 | void __cpuinit init_idle(struct task_struct *idle, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5220 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5221 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5222 | unsigned long flags; |
| 5223 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5224 | __sched_fork(idle); |
| 5225 | idle->se.exec_start = sched_clock(); |
| 5226 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5227 | idle->prio = idle->normal_prio = MAX_PRIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5228 | idle->cpus_allowed = cpumask_of_cpu(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5229 | __set_task_cpu(idle, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5230 | |
| 5231 | spin_lock_irqsave(&rq->lock, flags); |
| 5232 | rq->curr = rq->idle = idle; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 5233 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
| 5234 | idle->oncpu = 1; |
| 5235 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5237 | |
| 5238 | /* Set the preempt count _outside_ the spinlocks! */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 5239 | task_thread_info(idle)->preempt_count = 0; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 5240 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5241 | /* |
| 5242 | * The idle tasks have their own, simple scheduling class: |
| 5243 | */ |
| 5244 | idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5245 | } |
| 5246 | |
| 5247 | /* |
| 5248 | * In a system that switches off the HZ timer nohz_cpu_mask |
| 5249 | * indicates which cpus entered this state. This is used |
| 5250 | * in the rcu update to wait only for active cpus. For system |
| 5251 | * which do not switch off the HZ timer nohz_cpu_mask should |
| 5252 | * always be CPU_MASK_NONE. |
| 5253 | */ |
| 5254 | cpumask_t nohz_cpu_mask = CPU_MASK_NONE; |
| 5255 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5256 | /* |
| 5257 | * Increase the granularity value when there are more CPUs, |
| 5258 | * because with more CPUs the 'effective latency' as visible |
| 5259 | * to users decreases. But the relationship is not linear, |
| 5260 | * so pick a second-best guess by going with the log2 of the |
| 5261 | * number of CPUs. |
| 5262 | * |
| 5263 | * This idea comes from the SD scheduler of Con Kolivas: |
| 5264 | */ |
| 5265 | static inline void sched_init_granularity(void) |
| 5266 | { |
| 5267 | unsigned int factor = 1 + ilog2(num_online_cpus()); |
| 5268 | const unsigned long limit = 200000000; |
| 5269 | |
| 5270 | sysctl_sched_min_granularity *= factor; |
| 5271 | if (sysctl_sched_min_granularity > limit) |
| 5272 | sysctl_sched_min_granularity = limit; |
| 5273 | |
| 5274 | sysctl_sched_latency *= factor; |
| 5275 | if (sysctl_sched_latency > limit) |
| 5276 | sysctl_sched_latency = limit; |
| 5277 | |
| 5278 | sysctl_sched_wakeup_granularity *= factor; |
| 5279 | sysctl_sched_batch_wakeup_granularity *= factor; |
| 5280 | } |
| 5281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5282 | #ifdef CONFIG_SMP |
| 5283 | /* |
| 5284 | * This is how migration works: |
| 5285 | * |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5286 | * 1) we queue a struct migration_req structure in the source CPU's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5287 | * runqueue and wake up that CPU's migration thread. |
| 5288 | * 2) we down() the locked semaphore => thread blocks. |
| 5289 | * 3) migration thread wakes up (implicitly it forces the migrated |
| 5290 | * thread off the CPU) |
| 5291 | * 4) it gets the migration request and checks whether the migrated |
| 5292 | * task is still in the wrong runqueue. |
| 5293 | * 5) if it's in the wrong runqueue then the migration thread removes |
| 5294 | * it and puts it into the right queue. |
| 5295 | * 6) migration thread up()s the semaphore. |
| 5296 | * 7) we wake up and the migration is done. |
| 5297 | */ |
| 5298 | |
| 5299 | /* |
| 5300 | * Change a given task's CPU affinity. Migrate the thread to a |
| 5301 | * proper CPU and schedule it away if the CPU it's executing on |
| 5302 | * is removed from the allowed bitmask. |
| 5303 | * |
| 5304 | * NOTE: the caller must have a valid reference to the task, the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5305 | * task must not exit() & deallocate itself prematurely. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5306 | * call is not atomic; no spinlocks may be held. |
| 5307 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5308 | int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5309 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5310 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5311 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5312 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5313 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5314 | |
| 5315 | rq = task_rq_lock(p, &flags); |
| 5316 | if (!cpus_intersects(new_mask, cpu_online_map)) { |
| 5317 | ret = -EINVAL; |
| 5318 | goto out; |
| 5319 | } |
| 5320 | |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5321 | if (p->sched_class->set_cpus_allowed) |
| 5322 | p->sched_class->set_cpus_allowed(p, &new_mask); |
| 5323 | else { |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 5324 | p->cpus_allowed = new_mask; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 5325 | p->rt.nr_cpus_allowed = cpus_weight(new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5326 | } |
| 5327 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5328 | /* Can the task run on the task's current CPU? If so, we're done */ |
| 5329 | if (cpu_isset(task_cpu(p), new_mask)) |
| 5330 | goto out; |
| 5331 | |
| 5332 | if (migrate_task(p, any_online_cpu(new_mask), &req)) { |
| 5333 | /* Need help from migration thread: drop lock and wait. */ |
| 5334 | task_rq_unlock(rq, &flags); |
| 5335 | wake_up_process(rq->migration_thread); |
| 5336 | wait_for_completion(&req.done); |
| 5337 | tlb_migrate_finish(p->mm); |
| 5338 | return 0; |
| 5339 | } |
| 5340 | out: |
| 5341 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5343 | return ret; |
| 5344 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5345 | EXPORT_SYMBOL_GPL(set_cpus_allowed); |
| 5346 | |
| 5347 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5348 | * Move (not current) task off this cpu, onto dest cpu. We're doing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5349 | * this because either it can't run here any more (set_cpus_allowed() |
| 5350 | * away from this CPU, or CPU going down), or because we're |
| 5351 | * attempting to rebalance this task on exec (sched_exec). |
| 5352 | * |
| 5353 | * So we race with normal scheduler movements, but that's OK, as long |
| 5354 | * as the task is no longer on this CPU. |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5355 | * |
| 5356 | * Returns non-zero if task was successfully migrated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5357 | */ |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5358 | static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5359 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5360 | struct rq *rq_dest, *rq_src; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5361 | int ret = 0, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5362 | |
| 5363 | if (unlikely(cpu_is_offline(dest_cpu))) |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5364 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5365 | |
| 5366 | rq_src = cpu_rq(src_cpu); |
| 5367 | rq_dest = cpu_rq(dest_cpu); |
| 5368 | |
| 5369 | double_rq_lock(rq_src, rq_dest); |
| 5370 | /* Already moved. */ |
| 5371 | if (task_cpu(p) != src_cpu) |
| 5372 | goto out; |
| 5373 | /* Affinity changed (again). */ |
| 5374 | if (!cpu_isset(dest_cpu, p->cpus_allowed)) |
| 5375 | goto out; |
| 5376 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5377 | on_rq = p->se.on_rq; |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5378 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5379 | deactivate_task(rq_src, p, 0); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5380 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5381 | set_task_cpu(p, dest_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5382 | if (on_rq) { |
| 5383 | activate_task(rq_dest, p, 0); |
| 5384 | check_preempt_curr(rq_dest, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | } |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5386 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5387 | out: |
| 5388 | double_rq_unlock(rq_src, rq_dest); |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5389 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5390 | } |
| 5391 | |
| 5392 | /* |
| 5393 | * migration_thread - this is a highprio system thread that performs |
| 5394 | * thread migration by bumping thread off CPU then 'pushing' onto |
| 5395 | * another runqueue. |
| 5396 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5397 | static int migration_thread(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5398 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5399 | int cpu = (long)data; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5400 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5401 | |
| 5402 | rq = cpu_rq(cpu); |
| 5403 | BUG_ON(rq->migration_thread != current); |
| 5404 | |
| 5405 | set_current_state(TASK_INTERRUPTIBLE); |
| 5406 | while (!kthread_should_stop()) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5407 | struct migration_req *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5408 | struct list_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5410 | spin_lock_irq(&rq->lock); |
| 5411 | |
| 5412 | if (cpu_is_offline(cpu)) { |
| 5413 | spin_unlock_irq(&rq->lock); |
| 5414 | goto wait_to_die; |
| 5415 | } |
| 5416 | |
| 5417 | if (rq->active_balance) { |
| 5418 | active_load_balance(rq, cpu); |
| 5419 | rq->active_balance = 0; |
| 5420 | } |
| 5421 | |
| 5422 | head = &rq->migration_queue; |
| 5423 | |
| 5424 | if (list_empty(head)) { |
| 5425 | spin_unlock_irq(&rq->lock); |
| 5426 | schedule(); |
| 5427 | set_current_state(TASK_INTERRUPTIBLE); |
| 5428 | continue; |
| 5429 | } |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5430 | req = list_entry(head->next, struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5431 | list_del_init(head->next); |
| 5432 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 5433 | spin_unlock(&rq->lock); |
| 5434 | __migrate_task(req->task, cpu, req->dest_cpu); |
| 5435 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | |
| 5437 | complete(&req->done); |
| 5438 | } |
| 5439 | __set_current_state(TASK_RUNNING); |
| 5440 | return 0; |
| 5441 | |
| 5442 | wait_to_die: |
| 5443 | /* Wait for kthread_stop */ |
| 5444 | set_current_state(TASK_INTERRUPTIBLE); |
| 5445 | while (!kthread_should_stop()) { |
| 5446 | schedule(); |
| 5447 | set_current_state(TASK_INTERRUPTIBLE); |
| 5448 | } |
| 5449 | __set_current_state(TASK_RUNNING); |
| 5450 | return 0; |
| 5451 | } |
| 5452 | |
| 5453 | #ifdef CONFIG_HOTPLUG_CPU |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5454 | |
| 5455 | static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu) |
| 5456 | { |
| 5457 | int ret; |
| 5458 | |
| 5459 | local_irq_disable(); |
| 5460 | ret = __migrate_task(p, src_cpu, dest_cpu); |
| 5461 | local_irq_enable(); |
| 5462 | return ret; |
| 5463 | } |
| 5464 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5465 | /* |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5466 | * Figure out where task on dead CPU should go, use force if necessary. |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5467 | * NOTE: interrupts should be disabled by the caller |
| 5468 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5469 | static void move_task_off_dead_cpu(int dead_cpu, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5470 | { |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5471 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5472 | cpumask_t mask; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5473 | struct rq *rq; |
| 5474 | int dest_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5475 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5476 | do { |
| 5477 | /* On same node? */ |
| 5478 | mask = node_to_cpumask(cpu_to_node(dead_cpu)); |
| 5479 | cpus_and(mask, mask, p->cpus_allowed); |
| 5480 | dest_cpu = any_online_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5481 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5482 | /* On any allowed CPU? */ |
| 5483 | if (dest_cpu == NR_CPUS) |
| 5484 | dest_cpu = any_online_cpu(p->cpus_allowed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5485 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5486 | /* No more Mr. Nice Guy. */ |
| 5487 | if (dest_cpu == NR_CPUS) { |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5488 | cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p); |
| 5489 | /* |
| 5490 | * Try to stay on the same cpuset, where the |
| 5491 | * current cpuset may be a subset of all cpus. |
| 5492 | * The cpuset_cpus_allowed_locked() variant of |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5493 | * cpuset_cpus_allowed() will not block. It must be |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5494 | * called within calls to cpuset_lock/cpuset_unlock. |
| 5495 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5496 | rq = task_rq_lock(p, &flags); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5497 | p->cpus_allowed = cpus_allowed; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5498 | dest_cpu = any_online_cpu(p->cpus_allowed); |
| 5499 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5500 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5501 | /* |
| 5502 | * Don't tell them about moving exiting tasks or |
| 5503 | * kernel threads (both mm NULL), since they never |
| 5504 | * leave kernel. |
| 5505 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5506 | if (p->mm && printk_ratelimit()) { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5507 | printk(KERN_INFO "process %d (%s) no " |
| 5508 | "longer affine to cpu%d\n", |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5509 | task_pid_nr(p), p->comm, dead_cpu); |
| 5510 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5511 | } |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5512 | } while (!__migrate_task_irq(p, dead_cpu, dest_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5513 | } |
| 5514 | |
| 5515 | /* |
| 5516 | * While a dead CPU has no uninterruptible tasks queued at this point, |
| 5517 | * it might still have a nonzero ->nr_uninterruptible counter, because |
| 5518 | * for performance reasons the counter is not stricly tracking tasks to |
| 5519 | * their home CPUs. So we just add the counter to another CPU's counter, |
| 5520 | * to keep the global sum constant after CPU-down: |
| 5521 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5522 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5523 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5524 | struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5525 | unsigned long flags; |
| 5526 | |
| 5527 | local_irq_save(flags); |
| 5528 | double_rq_lock(rq_src, rq_dest); |
| 5529 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
| 5530 | rq_src->nr_uninterruptible = 0; |
| 5531 | double_rq_unlock(rq_src, rq_dest); |
| 5532 | local_irq_restore(flags); |
| 5533 | } |
| 5534 | |
| 5535 | /* Run through task list and migrate tasks from the dead cpu. */ |
| 5536 | static void migrate_live_tasks(int src_cpu) |
| 5537 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5538 | struct task_struct *p, *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5539 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5540 | read_lock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5541 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5542 | do_each_thread(t, p) { |
| 5543 | if (p == current) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5544 | continue; |
| 5545 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5546 | if (task_cpu(p) == src_cpu) |
| 5547 | move_task_off_dead_cpu(src_cpu, p); |
| 5548 | } while_each_thread(t, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5549 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5550 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5551 | } |
| 5552 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5553 | /* |
| 5554 | * Schedules idle task to be the next runnable task on current CPU. |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5555 | * It does so by boosting its priority to highest possible. |
| 5556 | * Used by CPU offline code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | */ |
| 5558 | void sched_idle_next(void) |
| 5559 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5560 | int this_cpu = smp_processor_id(); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5561 | struct rq *rq = cpu_rq(this_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5562 | struct task_struct *p = rq->idle; |
| 5563 | unsigned long flags; |
| 5564 | |
| 5565 | /* cpu has to be offline */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5566 | BUG_ON(cpu_online(this_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5567 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5568 | /* |
| 5569 | * Strictly not necessary since rest of the CPUs are stopped by now |
| 5570 | * and interrupts disabled on the current cpu. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5571 | */ |
| 5572 | spin_lock_irqsave(&rq->lock, flags); |
| 5573 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5574 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5575 | |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5576 | update_rq_clock(rq); |
| 5577 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5578 | |
| 5579 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5580 | } |
| 5581 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5582 | /* |
| 5583 | * Ensures that the idle task is using init_mm right before its cpu goes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5584 | * offline. |
| 5585 | */ |
| 5586 | void idle_task_exit(void) |
| 5587 | { |
| 5588 | struct mm_struct *mm = current->active_mm; |
| 5589 | |
| 5590 | BUG_ON(cpu_online(smp_processor_id())); |
| 5591 | |
| 5592 | if (mm != &init_mm) |
| 5593 | switch_mm(mm, &init_mm, current); |
| 5594 | mmdrop(mm); |
| 5595 | } |
| 5596 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5597 | /* called under rq->lock with disabled interrupts */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5598 | static void migrate_dead(unsigned int dead_cpu, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5599 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5600 | struct rq *rq = cpu_rq(dead_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5601 | |
| 5602 | /* Must be exiting, otherwise would be on tasklist. */ |
Eugene Teo | 270f722 | 2007-10-18 23:40:38 -0700 | [diff] [blame] | 5603 | BUG_ON(!p->exit_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5604 | |
| 5605 | /* Cannot have done final schedule yet: would have vanished. */ |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 5606 | BUG_ON(p->state == TASK_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5607 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5608 | get_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5609 | |
| 5610 | /* |
| 5611 | * Drop lock around migration; if someone else moves it, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5612 | * that's OK. No task can be added to this CPU, so iteration is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5613 | * fine. |
| 5614 | */ |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5615 | spin_unlock_irq(&rq->lock); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5616 | move_task_off_dead_cpu(dead_cpu, p); |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5617 | spin_lock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5618 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5619 | put_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5620 | } |
| 5621 | |
| 5622 | /* release_task() removes task from tasklist, so we won't find dead tasks. */ |
| 5623 | static void migrate_dead_tasks(unsigned int dead_cpu) |
| 5624 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5625 | struct rq *rq = cpu_rq(dead_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5626 | struct task_struct *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5627 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5628 | for ( ; ; ) { |
| 5629 | if (!rq->nr_running) |
| 5630 | break; |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5631 | update_rq_clock(rq); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5632 | next = pick_next_task(rq, rq->curr); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5633 | if (!next) |
| 5634 | break; |
| 5635 | migrate_dead(dead_cpu, next); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5636 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5637 | } |
| 5638 | } |
| 5639 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 5640 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5641 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
| 5642 | |
| 5643 | static struct ctl_table sd_ctl_dir[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5644 | { |
| 5645 | .procname = "sched_domain", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5646 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5647 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5648 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5649 | }; |
| 5650 | |
| 5651 | static struct ctl_table sd_ctl_root[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5652 | { |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5653 | .ctl_name = CTL_KERN, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5654 | .procname = "kernel", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5655 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5656 | .child = sd_ctl_dir, |
| 5657 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5658 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5659 | }; |
| 5660 | |
| 5661 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
| 5662 | { |
| 5663 | struct ctl_table *entry = |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5664 | kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5665 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5666 | return entry; |
| 5667 | } |
| 5668 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5669 | static void sd_free_ctl_entry(struct ctl_table **tablep) |
| 5670 | { |
Milton Miller | cd79007 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5671 | struct ctl_table *entry; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5672 | |
Milton Miller | cd79007 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5673 | /* |
| 5674 | * In the intermediate directories, both the child directory and |
| 5675 | * procname are dynamically allocated and could fail but the mode |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5676 | * will always be set. In the lowest directory the names are |
Milton Miller | cd79007 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5677 | * static strings and all have proc handlers. |
| 5678 | */ |
| 5679 | for (entry = *tablep; entry->mode; entry++) { |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5680 | if (entry->child) |
| 5681 | sd_free_ctl_entry(&entry->child); |
Milton Miller | cd79007 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5682 | if (entry->proc_handler == NULL) |
| 5683 | kfree(entry->procname); |
| 5684 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5685 | |
| 5686 | kfree(*tablep); |
| 5687 | *tablep = NULL; |
| 5688 | } |
| 5689 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5690 | static void |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5691 | set_table_entry(struct ctl_table *entry, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5692 | const char *procname, void *data, int maxlen, |
| 5693 | mode_t mode, proc_handler *proc_handler) |
| 5694 | { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5695 | entry->procname = procname; |
| 5696 | entry->data = data; |
| 5697 | entry->maxlen = maxlen; |
| 5698 | entry->mode = mode; |
| 5699 | entry->proc_handler = proc_handler; |
| 5700 | } |
| 5701 | |
| 5702 | static struct ctl_table * |
| 5703 | sd_alloc_ctl_domain_table(struct sched_domain *sd) |
| 5704 | { |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5705 | struct ctl_table *table = sd_alloc_ctl_entry(12); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5706 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5707 | if (table == NULL) |
| 5708 | return NULL; |
| 5709 | |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5710 | set_table_entry(&table[0], "min_interval", &sd->min_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5711 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5712 | set_table_entry(&table[1], "max_interval", &sd->max_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5713 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5714 | set_table_entry(&table[2], "busy_idx", &sd->busy_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5715 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5716 | set_table_entry(&table[3], "idle_idx", &sd->idle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5717 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5718 | set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5719 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5720 | set_table_entry(&table[5], "wake_idx", &sd->wake_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5721 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5722 | set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5723 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5724 | set_table_entry(&table[7], "busy_factor", &sd->busy_factor, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5725 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5726 | set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5727 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5728 | set_table_entry(&table[9], "cache_nice_tries", |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5729 | &sd->cache_nice_tries, |
| 5730 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5731 | set_table_entry(&table[10], "flags", &sd->flags, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5732 | sizeof(int), 0644, proc_dointvec_minmax); |
Milton Miller | 6323469f | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5733 | /* &table[11] is terminator */ |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5734 | |
| 5735 | return table; |
| 5736 | } |
| 5737 | |
Ingo Molnar | 9a4e715 | 2007-11-28 15:52:56 +0100 | [diff] [blame] | 5738 | static ctl_table *sd_alloc_ctl_cpu_table(int cpu) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5739 | { |
| 5740 | struct ctl_table *entry, *table; |
| 5741 | struct sched_domain *sd; |
| 5742 | int domain_num = 0, i; |
| 5743 | char buf[32]; |
| 5744 | |
| 5745 | for_each_domain(cpu, sd) |
| 5746 | domain_num++; |
| 5747 | entry = table = sd_alloc_ctl_entry(domain_num + 1); |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5748 | if (table == NULL) |
| 5749 | return NULL; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5750 | |
| 5751 | i = 0; |
| 5752 | for_each_domain(cpu, sd) { |
| 5753 | snprintf(buf, 32, "domain%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5754 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5755 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5756 | entry->child = sd_alloc_ctl_domain_table(sd); |
| 5757 | entry++; |
| 5758 | i++; |
| 5759 | } |
| 5760 | return table; |
| 5761 | } |
| 5762 | |
| 5763 | static struct ctl_table_header *sd_sysctl_header; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5764 | static void register_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5765 | { |
| 5766 | int i, cpu_num = num_online_cpus(); |
| 5767 | struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1); |
| 5768 | char buf[32]; |
| 5769 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5770 | WARN_ON(sd_ctl_dir[0].child); |
| 5771 | sd_ctl_dir[0].child = entry; |
| 5772 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5773 | if (entry == NULL) |
| 5774 | return; |
| 5775 | |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5776 | for_each_online_cpu(i) { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5777 | snprintf(buf, 32, "cpu%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5778 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5779 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5780 | entry->child = sd_alloc_ctl_cpu_table(i); |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5781 | entry++; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5782 | } |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5783 | |
| 5784 | WARN_ON(sd_sysctl_header); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5785 | sd_sysctl_header = register_sysctl_table(sd_ctl_root); |
| 5786 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5787 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5788 | /* may be called multiple times per register */ |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5789 | static void unregister_sched_domain_sysctl(void) |
| 5790 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5791 | if (sd_sysctl_header) |
| 5792 | unregister_sysctl_table(sd_sysctl_header); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5793 | sd_sysctl_header = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5794 | if (sd_ctl_dir[0].child) |
| 5795 | sd_free_ctl_entry(&sd_ctl_dir[0].child); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5796 | } |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5797 | #else |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5798 | static void register_sched_domain_sysctl(void) |
| 5799 | { |
| 5800 | } |
| 5801 | static void unregister_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5802 | { |
| 5803 | } |
| 5804 | #endif |
| 5805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5806 | /* |
| 5807 | * migration_call - callback that gets triggered when a CPU is added. |
| 5808 | * Here we can start up the necessary migration thread for the new CPU. |
| 5809 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5810 | static int __cpuinit |
| 5811 | migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5812 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5813 | struct task_struct *p; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5814 | int cpu = (long)hcpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5815 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5816 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5817 | |
| 5818 | switch (action) { |
Gautham R Shenoy | 5be9361 | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 5819 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5820 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5821 | case CPU_UP_PREPARE_FROZEN: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5822 | p = kthread_create(migration_thread, hcpu, "migration/%d", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5823 | if (IS_ERR(p)) |
| 5824 | return NOTIFY_BAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5825 | kthread_bind(p, cpu); |
| 5826 | /* Must be high prio: stop_machine expects to yield to it. */ |
| 5827 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5828 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5829 | task_rq_unlock(rq, &flags); |
| 5830 | cpu_rq(cpu)->migration_thread = p; |
| 5831 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5833 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5834 | case CPU_ONLINE_FROZEN: |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5835 | /* Strictly unnecessary, as first user will wake it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5836 | wake_up_process(cpu_rq(cpu)->migration_thread); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 5837 | |
| 5838 | /* Update our root-domain */ |
| 5839 | rq = cpu_rq(cpu); |
| 5840 | spin_lock_irqsave(&rq->lock, flags); |
| 5841 | if (rq->rd) { |
| 5842 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 5843 | cpu_set(cpu, rq->rd->online); |
| 5844 | } |
| 5845 | spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5846 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5848 | #ifdef CONFIG_HOTPLUG_CPU |
| 5849 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5850 | case CPU_UP_CANCELED_FROZEN: |
Heiko Carstens | fc75cdf | 2006-06-25 05:49:10 -0700 | [diff] [blame] | 5851 | if (!cpu_rq(cpu)->migration_thread) |
| 5852 | break; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5853 | /* Unbind it from offline cpu so it can run. Fall thru. */ |
Heiko Carstens | a4c4af7 | 2005-11-07 00:58:38 -0800 | [diff] [blame] | 5854 | kthread_bind(cpu_rq(cpu)->migration_thread, |
| 5855 | any_online_cpu(cpu_online_map)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5856 | kthread_stop(cpu_rq(cpu)->migration_thread); |
| 5857 | cpu_rq(cpu)->migration_thread = NULL; |
| 5858 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5860 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5861 | case CPU_DEAD_FROZEN: |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5862 | cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5863 | migrate_live_tasks(cpu); |
| 5864 | rq = cpu_rq(cpu); |
| 5865 | kthread_stop(rq->migration_thread); |
| 5866 | rq->migration_thread = NULL; |
| 5867 | /* Idle task back to normal (off runqueue, low prio) */ |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5868 | spin_lock_irq(&rq->lock); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5869 | update_rq_clock(rq); |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5870 | deactivate_task(rq, rq->idle, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5871 | rq->idle->static_prio = MAX_PRIO; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5872 | __setscheduler(rq, rq->idle, SCHED_NORMAL, 0); |
| 5873 | rq->idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5874 | migrate_dead_tasks(cpu); |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5875 | spin_unlock_irq(&rq->lock); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5876 | cpuset_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5877 | migrate_nr_uninterruptible(rq); |
| 5878 | BUG_ON(rq->nr_running != 0); |
| 5879 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5880 | /* |
| 5881 | * No need to migrate the tasks: it was best-effort if |
| 5882 | * they didn't take sched_hotcpu_mutex. Just wake up |
| 5883 | * the requestors. |
| 5884 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5885 | spin_lock_irq(&rq->lock); |
| 5886 | while (!list_empty(&rq->migration_queue)) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5887 | struct migration_req *req; |
| 5888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5889 | req = list_entry(rq->migration_queue.next, |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5890 | struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5891 | list_del_init(&req->list); |
| 5892 | complete(&req->done); |
| 5893 | } |
| 5894 | spin_unlock_irq(&rq->lock); |
| 5895 | break; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 5896 | |
| 5897 | case CPU_DOWN_PREPARE: |
| 5898 | /* Update our root-domain */ |
| 5899 | rq = cpu_rq(cpu); |
| 5900 | spin_lock_irqsave(&rq->lock, flags); |
| 5901 | if (rq->rd) { |
| 5902 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 5903 | cpu_clear(cpu, rq->rd->online); |
| 5904 | } |
| 5905 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5906 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5907 | #endif |
| 5908 | } |
| 5909 | return NOTIFY_OK; |
| 5910 | } |
| 5911 | |
| 5912 | /* Register at highest priority so that task migration (migrate_all_tasks) |
| 5913 | * happens before everything else. |
| 5914 | */ |
Chandra Seetharaman | 26c2143 | 2006-06-27 02:54:10 -0700 | [diff] [blame] | 5915 | static struct notifier_block __cpuinitdata migration_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5916 | .notifier_call = migration_call, |
| 5917 | .priority = 10 |
| 5918 | }; |
| 5919 | |
Adrian Bunk | e6fe664 | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 5920 | void __init migration_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5921 | { |
| 5922 | void *cpu = (void *)(long)smp_processor_id(); |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 5923 | int err; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5924 | |
| 5925 | /* Start one for the boot CPU: */ |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 5926 | err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu); |
| 5927 | BUG_ON(err == NOTIFY_BAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5928 | migration_call(&migration_notifier, CPU_ONLINE, cpu); |
| 5929 | register_cpu_notifier(&migration_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5930 | } |
| 5931 | #endif |
| 5932 | |
| 5933 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 5934 | |
| 5935 | /* Number of possible processor ids */ |
| 5936 | int nr_cpu_ids __read_mostly = NR_CPUS; |
| 5937 | EXPORT_SYMBOL(nr_cpu_ids); |
| 5938 | |
Ingo Molnar | 3e9830d | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5939 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5940 | |
| 5941 | static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level) |
| 5942 | { |
| 5943 | struct sched_group *group = sd->groups; |
| 5944 | cpumask_t groupmask; |
| 5945 | char str[NR_CPUS]; |
| 5946 | |
| 5947 | cpumask_scnprintf(str, NR_CPUS, sd->span); |
| 5948 | cpus_clear(groupmask); |
| 5949 | |
| 5950 | printk(KERN_DEBUG "%*s domain %d: ", level, "", level); |
| 5951 | |
| 5952 | if (!(sd->flags & SD_LOAD_BALANCE)) { |
| 5953 | printk("does not load-balance\n"); |
| 5954 | if (sd->parent) |
| 5955 | printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain" |
| 5956 | " has parent"); |
| 5957 | return -1; |
| 5958 | } |
| 5959 | |
| 5960 | printk(KERN_CONT "span %s\n", str); |
| 5961 | |
| 5962 | if (!cpu_isset(cpu, sd->span)) { |
| 5963 | printk(KERN_ERR "ERROR: domain->span does not contain " |
| 5964 | "CPU%d\n", cpu); |
| 5965 | } |
| 5966 | if (!cpu_isset(cpu, group->cpumask)) { |
| 5967 | printk(KERN_ERR "ERROR: domain->groups does not contain" |
| 5968 | " CPU%d\n", cpu); |
| 5969 | } |
| 5970 | |
| 5971 | printk(KERN_DEBUG "%*s groups:", level + 1, ""); |
| 5972 | do { |
| 5973 | if (!group) { |
| 5974 | printk("\n"); |
| 5975 | printk(KERN_ERR "ERROR: group is NULL\n"); |
| 5976 | break; |
| 5977 | } |
| 5978 | |
| 5979 | if (!group->__cpu_power) { |
| 5980 | printk(KERN_CONT "\n"); |
| 5981 | printk(KERN_ERR "ERROR: domain->cpu_power not " |
| 5982 | "set\n"); |
| 5983 | break; |
| 5984 | } |
| 5985 | |
| 5986 | if (!cpus_weight(group->cpumask)) { |
| 5987 | printk(KERN_CONT "\n"); |
| 5988 | printk(KERN_ERR "ERROR: empty group\n"); |
| 5989 | break; |
| 5990 | } |
| 5991 | |
| 5992 | if (cpus_intersects(groupmask, group->cpumask)) { |
| 5993 | printk(KERN_CONT "\n"); |
| 5994 | printk(KERN_ERR "ERROR: repeated CPUs\n"); |
| 5995 | break; |
| 5996 | } |
| 5997 | |
| 5998 | cpus_or(groupmask, groupmask, group->cpumask); |
| 5999 | |
| 6000 | cpumask_scnprintf(str, NR_CPUS, group->cpumask); |
| 6001 | printk(KERN_CONT " %s", str); |
| 6002 | |
| 6003 | group = group->next; |
| 6004 | } while (group != sd->groups); |
| 6005 | printk(KERN_CONT "\n"); |
| 6006 | |
| 6007 | if (!cpus_equal(sd->span, groupmask)) |
| 6008 | printk(KERN_ERR "ERROR: groups don't span domain->span\n"); |
| 6009 | |
| 6010 | if (sd->parent && !cpus_subset(groupmask, sd->parent->span)) |
| 6011 | printk(KERN_ERR "ERROR: parent span is not a superset " |
| 6012 | "of domain->span\n"); |
| 6013 | return 0; |
| 6014 | } |
| 6015 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6016 | static void sched_domain_debug(struct sched_domain *sd, int cpu) |
| 6017 | { |
| 6018 | int level = 0; |
| 6019 | |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 6020 | if (!sd) { |
| 6021 | printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu); |
| 6022 | return; |
| 6023 | } |
| 6024 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6025 | printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu); |
| 6026 | |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6027 | for (;;) { |
| 6028 | if (sched_domain_debug_one(sd, cpu, level)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6029 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6030 | level++; |
| 6031 | sd = sd->parent; |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 6032 | if (!sd) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6033 | break; |
| 6034 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6035 | } |
| 6036 | #else |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6037 | # define sched_domain_debug(sd, cpu) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6038 | #endif |
| 6039 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6040 | static int sd_degenerate(struct sched_domain *sd) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6041 | { |
| 6042 | if (cpus_weight(sd->span) == 1) |
| 6043 | return 1; |
| 6044 | |
| 6045 | /* Following flags need at least 2 groups */ |
| 6046 | if (sd->flags & (SD_LOAD_BALANCE | |
| 6047 | SD_BALANCE_NEWIDLE | |
| 6048 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6049 | SD_BALANCE_EXEC | |
| 6050 | SD_SHARE_CPUPOWER | |
| 6051 | SD_SHARE_PKG_RESOURCES)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6052 | if (sd->groups != sd->groups->next) |
| 6053 | return 0; |
| 6054 | } |
| 6055 | |
| 6056 | /* Following flags don't use groups */ |
| 6057 | if (sd->flags & (SD_WAKE_IDLE | |
| 6058 | SD_WAKE_AFFINE | |
| 6059 | SD_WAKE_BALANCE)) |
| 6060 | return 0; |
| 6061 | |
| 6062 | return 1; |
| 6063 | } |
| 6064 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6065 | static int |
| 6066 | sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6067 | { |
| 6068 | unsigned long cflags = sd->flags, pflags = parent->flags; |
| 6069 | |
| 6070 | if (sd_degenerate(parent)) |
| 6071 | return 1; |
| 6072 | |
| 6073 | if (!cpus_equal(sd->span, parent->span)) |
| 6074 | return 0; |
| 6075 | |
| 6076 | /* Does parent contain flags not in child? */ |
| 6077 | /* WAKE_BALANCE is a subset of WAKE_AFFINE */ |
| 6078 | if (cflags & SD_WAKE_AFFINE) |
| 6079 | pflags &= ~SD_WAKE_BALANCE; |
| 6080 | /* Flags needing groups don't count if only 1 group in parent */ |
| 6081 | if (parent->groups == parent->groups->next) { |
| 6082 | pflags &= ~(SD_LOAD_BALANCE | |
| 6083 | SD_BALANCE_NEWIDLE | |
| 6084 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6085 | SD_BALANCE_EXEC | |
| 6086 | SD_SHARE_CPUPOWER | |
| 6087 | SD_SHARE_PKG_RESOURCES); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6088 | } |
| 6089 | if (~cflags & pflags) |
| 6090 | return 0; |
| 6091 | |
| 6092 | return 1; |
| 6093 | } |
| 6094 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6095 | static void rq_attach_root(struct rq *rq, struct root_domain *rd) |
| 6096 | { |
| 6097 | unsigned long flags; |
| 6098 | const struct sched_class *class; |
| 6099 | |
| 6100 | spin_lock_irqsave(&rq->lock, flags); |
| 6101 | |
| 6102 | if (rq->rd) { |
| 6103 | struct root_domain *old_rd = rq->rd; |
| 6104 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6105 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6106 | if (class->leave_domain) |
| 6107 | class->leave_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6108 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6109 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6110 | cpu_clear(rq->cpu, old_rd->span); |
| 6111 | cpu_clear(rq->cpu, old_rd->online); |
| 6112 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6113 | if (atomic_dec_and_test(&old_rd->refcount)) |
| 6114 | kfree(old_rd); |
| 6115 | } |
| 6116 | |
| 6117 | atomic_inc(&rd->refcount); |
| 6118 | rq->rd = rd; |
| 6119 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6120 | cpu_set(rq->cpu, rd->span); |
| 6121 | if (cpu_isset(rq->cpu, cpu_online_map)) |
| 6122 | cpu_set(rq->cpu, rd->online); |
| 6123 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6124 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6125 | if (class->join_domain) |
| 6126 | class->join_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6127 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6128 | |
| 6129 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6130 | } |
| 6131 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6132 | static void init_rootdomain(struct root_domain *rd) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6133 | { |
| 6134 | memset(rd, 0, sizeof(*rd)); |
| 6135 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6136 | cpus_clear(rd->span); |
| 6137 | cpus_clear(rd->online); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6138 | } |
| 6139 | |
| 6140 | static void init_defrootdomain(void) |
| 6141 | { |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6142 | init_rootdomain(&def_root_domain); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6143 | atomic_set(&def_root_domain.refcount, 1); |
| 6144 | } |
| 6145 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6146 | static struct root_domain *alloc_rootdomain(void) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6147 | { |
| 6148 | struct root_domain *rd; |
| 6149 | |
| 6150 | rd = kmalloc(sizeof(*rd), GFP_KERNEL); |
| 6151 | if (!rd) |
| 6152 | return NULL; |
| 6153 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6154 | init_rootdomain(rd); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6155 | |
| 6156 | return rd; |
| 6157 | } |
| 6158 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6159 | /* |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6160 | * Attach the domain 'sd' to 'cpu' as its base domain. Callers must |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6161 | * hold the hotplug lock. |
| 6162 | */ |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6163 | static void |
| 6164 | cpu_attach_domain(struct sched_domain *sd, struct root_domain *rd, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6165 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6166 | struct rq *rq = cpu_rq(cpu); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6167 | struct sched_domain *tmp; |
| 6168 | |
| 6169 | /* Remove the sched domains which do not contribute to scheduling. */ |
| 6170 | for (tmp = sd; tmp; tmp = tmp->parent) { |
| 6171 | struct sched_domain *parent = tmp->parent; |
| 6172 | if (!parent) |
| 6173 | break; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6174 | if (sd_parent_degenerate(tmp, parent)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6175 | tmp->parent = parent->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6176 | if (parent->parent) |
| 6177 | parent->parent->child = tmp; |
| 6178 | } |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6179 | } |
| 6180 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6181 | if (sd && sd_degenerate(sd)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6182 | sd = sd->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6183 | if (sd) |
| 6184 | sd->child = NULL; |
| 6185 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6186 | |
| 6187 | sched_domain_debug(sd, cpu); |
| 6188 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6189 | rq_attach_root(rq, rd); |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 6190 | rcu_assign_pointer(rq->sd, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6191 | } |
| 6192 | |
| 6193 | /* cpus with isolated domains */ |
Tim Chen | 67af63a | 2006-12-22 01:07:50 -0800 | [diff] [blame] | 6194 | static cpumask_t cpu_isolated_map = CPU_MASK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6195 | |
| 6196 | /* Setup the mask of cpus configured for isolated domains */ |
| 6197 | static int __init isolated_cpu_setup(char *str) |
| 6198 | { |
| 6199 | int ints[NR_CPUS], i; |
| 6200 | |
| 6201 | str = get_options(str, ARRAY_SIZE(ints), ints); |
| 6202 | cpus_clear(cpu_isolated_map); |
| 6203 | for (i = 1; i <= ints[0]; i++) |
| 6204 | if (ints[i] < NR_CPUS) |
| 6205 | cpu_set(ints[i], cpu_isolated_map); |
| 6206 | return 1; |
| 6207 | } |
| 6208 | |
Ingo Molnar | 8927f49 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6209 | __setup("isolcpus=", isolated_cpu_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6210 | |
| 6211 | /* |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6212 | * init_sched_build_groups takes the cpumask we wish to span, and a pointer |
| 6213 | * to a function which identifies what group(along with sched group) a CPU |
| 6214 | * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS |
| 6215 | * (due to the fact that we keep track of groups covered with a cpumask_t). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6216 | * |
| 6217 | * init_sched_build_groups will build a circular linked list of the groups |
| 6218 | * covered by the given span, and will set each group's ->cpumask correctly, |
| 6219 | * and ->cpu_power to 0. |
| 6220 | */ |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6221 | static void |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6222 | init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map, |
| 6223 | int (*group_fn)(int cpu, const cpumask_t *cpu_map, |
| 6224 | struct sched_group **sg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6225 | { |
| 6226 | struct sched_group *first = NULL, *last = NULL; |
| 6227 | cpumask_t covered = CPU_MASK_NONE; |
| 6228 | int i; |
| 6229 | |
| 6230 | for_each_cpu_mask(i, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6231 | struct sched_group *sg; |
| 6232 | int group = group_fn(i, cpu_map, &sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6233 | int j; |
| 6234 | |
| 6235 | if (cpu_isset(i, covered)) |
| 6236 | continue; |
| 6237 | |
| 6238 | sg->cpumask = CPU_MASK_NONE; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6239 | sg->__cpu_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6240 | |
| 6241 | for_each_cpu_mask(j, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6242 | if (group_fn(j, cpu_map, NULL) != group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6243 | continue; |
| 6244 | |
| 6245 | cpu_set(j, covered); |
| 6246 | cpu_set(j, sg->cpumask); |
| 6247 | } |
| 6248 | if (!first) |
| 6249 | first = sg; |
| 6250 | if (last) |
| 6251 | last->next = sg; |
| 6252 | last = sg; |
| 6253 | } |
| 6254 | last->next = first; |
| 6255 | } |
| 6256 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6257 | #define SD_NODES_PER_DOMAIN 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6258 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6259 | #ifdef CONFIG_NUMA |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 6260 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6261 | /** |
| 6262 | * find_next_best_node - find the next node to include in a sched_domain |
| 6263 | * @node: node whose sched_domain we're building |
| 6264 | * @used_nodes: nodes already in the sched_domain |
| 6265 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6266 | * Find the next node to include in a given scheduling domain. Simply |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6267 | * finds the closest node not already in the @used_nodes map. |
| 6268 | * |
| 6269 | * Should use nodemask_t. |
| 6270 | */ |
| 6271 | static int find_next_best_node(int node, unsigned long *used_nodes) |
| 6272 | { |
| 6273 | int i, n, val, min_val, best_node = 0; |
| 6274 | |
| 6275 | min_val = INT_MAX; |
| 6276 | |
| 6277 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6278 | /* Start at @node */ |
| 6279 | n = (node + i) % MAX_NUMNODES; |
| 6280 | |
| 6281 | if (!nr_cpus_node(n)) |
| 6282 | continue; |
| 6283 | |
| 6284 | /* Skip already used nodes */ |
| 6285 | if (test_bit(n, used_nodes)) |
| 6286 | continue; |
| 6287 | |
| 6288 | /* Simple min distance search */ |
| 6289 | val = node_distance(node, n); |
| 6290 | |
| 6291 | if (val < min_val) { |
| 6292 | min_val = val; |
| 6293 | best_node = n; |
| 6294 | } |
| 6295 | } |
| 6296 | |
| 6297 | set_bit(best_node, used_nodes); |
| 6298 | return best_node; |
| 6299 | } |
| 6300 | |
| 6301 | /** |
| 6302 | * sched_domain_node_span - get a cpumask for a node's sched_domain |
| 6303 | * @node: node whose cpumask we're constructing |
| 6304 | * @size: number of nodes to include in this span |
| 6305 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6306 | * Given a node, construct a good cpumask for its sched_domain to span. It |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6307 | * should be one that prevents unnecessary balancing, but also spreads tasks |
| 6308 | * out optimally. |
| 6309 | */ |
| 6310 | static cpumask_t sched_domain_node_span(int node) |
| 6311 | { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6312 | DECLARE_BITMAP(used_nodes, MAX_NUMNODES); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6313 | cpumask_t span, nodemask; |
| 6314 | int i; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6315 | |
| 6316 | cpus_clear(span); |
| 6317 | bitmap_zero(used_nodes, MAX_NUMNODES); |
| 6318 | |
| 6319 | nodemask = node_to_cpumask(node); |
| 6320 | cpus_or(span, span, nodemask); |
| 6321 | set_bit(node, used_nodes); |
| 6322 | |
| 6323 | for (i = 1; i < SD_NODES_PER_DOMAIN; i++) { |
| 6324 | int next_node = find_next_best_node(node, used_nodes); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6325 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6326 | nodemask = node_to_cpumask(next_node); |
| 6327 | cpus_or(span, span, nodemask); |
| 6328 | } |
| 6329 | |
| 6330 | return span; |
| 6331 | } |
| 6332 | #endif |
| 6333 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6334 | int sched_smt_power_savings = 0, sched_mc_power_savings = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6335 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6336 | /* |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6337 | * SMT sched-domains: |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6338 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6339 | #ifdef CONFIG_SCHED_SMT |
| 6340 | static DEFINE_PER_CPU(struct sched_domain, cpu_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6341 | static DEFINE_PER_CPU(struct sched_group, sched_group_cpus); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6342 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6343 | static int |
| 6344 | cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6345 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6346 | if (sg) |
| 6347 | *sg = &per_cpu(sched_group_cpus, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6348 | return cpu; |
| 6349 | } |
| 6350 | #endif |
| 6351 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6352 | /* |
| 6353 | * multi-core sched-domains: |
| 6354 | */ |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6355 | #ifdef CONFIG_SCHED_MC |
| 6356 | static DEFINE_PER_CPU(struct sched_domain, core_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6357 | static DEFINE_PER_CPU(struct sched_group, sched_group_core); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6358 | #endif |
| 6359 | |
| 6360 | #if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6361 | static int |
| 6362 | cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6363 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6364 | int group; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6365 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6366 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6367 | group = first_cpu(mask); |
| 6368 | if (sg) |
| 6369 | *sg = &per_cpu(sched_group_core, group); |
| 6370 | return group; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6371 | } |
| 6372 | #elif defined(CONFIG_SCHED_MC) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6373 | static int |
| 6374 | cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6375 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6376 | if (sg) |
| 6377 | *sg = &per_cpu(sched_group_core, cpu); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6378 | return cpu; |
| 6379 | } |
| 6380 | #endif |
| 6381 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6382 | static DEFINE_PER_CPU(struct sched_domain, phys_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6383 | static DEFINE_PER_CPU(struct sched_group, sched_group_phys); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6384 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6385 | static int |
| 6386 | cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6387 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6388 | int group; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6389 | #ifdef CONFIG_SCHED_MC |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6390 | cpumask_t mask = cpu_coregroup_map(cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6391 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6392 | group = first_cpu(mask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6393 | #elif defined(CONFIG_SCHED_SMT) |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6394 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6395 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6396 | group = first_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6397 | #else |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6398 | group = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6399 | #endif |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6400 | if (sg) |
| 6401 | *sg = &per_cpu(sched_group_phys, group); |
| 6402 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6403 | } |
| 6404 | |
| 6405 | #ifdef CONFIG_NUMA |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6406 | /* |
| 6407 | * The init_sched_build_groups can't handle what we want to do with node |
| 6408 | * groups, so roll our own. Now each node has its own list of groups which |
| 6409 | * gets dynamically allocated. |
| 6410 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6411 | static DEFINE_PER_CPU(struct sched_domain, node_domains); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6412 | static struct sched_group **sched_group_nodes_bycpu[NR_CPUS]; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6413 | |
| 6414 | static DEFINE_PER_CPU(struct sched_domain, allnodes_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6415 | static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6416 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6417 | static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map, |
| 6418 | struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6419 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6420 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu)); |
| 6421 | int group; |
| 6422 | |
| 6423 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6424 | group = first_cpu(nodemask); |
| 6425 | |
| 6426 | if (sg) |
| 6427 | *sg = &per_cpu(sched_group_allnodes, group); |
| 6428 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6429 | } |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6430 | |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6431 | static void init_numa_sched_groups_power(struct sched_group *group_head) |
| 6432 | { |
| 6433 | struct sched_group *sg = group_head; |
| 6434 | int j; |
| 6435 | |
| 6436 | if (!sg) |
| 6437 | return; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6438 | do { |
| 6439 | for_each_cpu_mask(j, sg->cpumask) { |
| 6440 | struct sched_domain *sd; |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6441 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6442 | sd = &per_cpu(phys_domains, j); |
| 6443 | if (j != first_cpu(sd->groups->cpumask)) { |
| 6444 | /* |
| 6445 | * Only add "power" once for each |
| 6446 | * physical package. |
| 6447 | */ |
| 6448 | continue; |
| 6449 | } |
| 6450 | |
| 6451 | sg_inc_cpu_power(sg, sd->groups->__cpu_power); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6452 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6453 | sg = sg->next; |
| 6454 | } while (sg != group_head); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6455 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6456 | #endif |
| 6457 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6458 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6459 | /* Free memory allocated for various sched_group structures */ |
| 6460 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6461 | { |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6462 | int cpu, i; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6463 | |
| 6464 | for_each_cpu_mask(cpu, *cpu_map) { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6465 | struct sched_group **sched_group_nodes |
| 6466 | = sched_group_nodes_bycpu[cpu]; |
| 6467 | |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6468 | if (!sched_group_nodes) |
| 6469 | continue; |
| 6470 | |
| 6471 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6472 | cpumask_t nodemask = node_to_cpumask(i); |
| 6473 | struct sched_group *oldsg, *sg = sched_group_nodes[i]; |
| 6474 | |
| 6475 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6476 | if (cpus_empty(nodemask)) |
| 6477 | continue; |
| 6478 | |
| 6479 | if (sg == NULL) |
| 6480 | continue; |
| 6481 | sg = sg->next; |
| 6482 | next_sg: |
| 6483 | oldsg = sg; |
| 6484 | sg = sg->next; |
| 6485 | kfree(oldsg); |
| 6486 | if (oldsg != sched_group_nodes[i]) |
| 6487 | goto next_sg; |
| 6488 | } |
| 6489 | kfree(sched_group_nodes); |
| 6490 | sched_group_nodes_bycpu[cpu] = NULL; |
| 6491 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6492 | } |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6493 | #else |
| 6494 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6495 | { |
| 6496 | } |
| 6497 | #endif |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6498 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6499 | /* |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6500 | * Initialize sched groups cpu_power. |
| 6501 | * |
| 6502 | * cpu_power indicates the capacity of sched group, which is used while |
| 6503 | * distributing the load between different sched groups in a sched domain. |
| 6504 | * Typically cpu_power for all the groups in a sched domain will be same unless |
| 6505 | * there are asymmetries in the topology. If there are asymmetries, group |
| 6506 | * having more cpu_power will pickup more load compared to the group having |
| 6507 | * less cpu_power. |
| 6508 | * |
| 6509 | * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents |
| 6510 | * the maximum number of tasks a group can handle in the presence of other idle |
| 6511 | * or lightly loaded groups in the same sched domain. |
| 6512 | */ |
| 6513 | static void init_sched_groups_power(int cpu, struct sched_domain *sd) |
| 6514 | { |
| 6515 | struct sched_domain *child; |
| 6516 | struct sched_group *group; |
| 6517 | |
| 6518 | WARN_ON(!sd || !sd->groups); |
| 6519 | |
| 6520 | if (cpu != first_cpu(sd->groups->cpumask)) |
| 6521 | return; |
| 6522 | |
| 6523 | child = sd->child; |
| 6524 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6525 | sd->groups->__cpu_power = 0; |
| 6526 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6527 | /* |
| 6528 | * For perf policy, if the groups in child domain share resources |
| 6529 | * (for example cores sharing some portions of the cache hierarchy |
| 6530 | * or SMT), then set this domain groups cpu_power such that each group |
| 6531 | * can handle only one task, when there are other idle groups in the |
| 6532 | * same sched domain. |
| 6533 | */ |
| 6534 | if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) && |
| 6535 | (child->flags & |
| 6536 | (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6537 | sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6538 | return; |
| 6539 | } |
| 6540 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6541 | /* |
| 6542 | * add cpu_power of each child group to this groups cpu_power |
| 6543 | */ |
| 6544 | group = child->groups; |
| 6545 | do { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6546 | sg_inc_cpu_power(sd->groups, group->__cpu_power); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6547 | group = group->next; |
| 6548 | } while (group != child->groups); |
| 6549 | } |
| 6550 | |
| 6551 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6552 | * Build sched domains for a given set of cpus and attach the sched domains |
| 6553 | * to the individual cpus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6554 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6555 | static int build_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6556 | { |
| 6557 | int i; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6558 | struct root_domain *rd; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6559 | #ifdef CONFIG_NUMA |
| 6560 | struct sched_group **sched_group_nodes = NULL; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6561 | int sd_allnodes = 0; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6562 | |
| 6563 | /* |
| 6564 | * Allocate the per-node list of sched groups |
| 6565 | */ |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6566 | sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *), |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6567 | GFP_KERNEL); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6568 | if (!sched_group_nodes) { |
| 6569 | printk(KERN_WARNING "Can not alloc sched group node list\n"); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6570 | return -ENOMEM; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6571 | } |
| 6572 | sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes; |
| 6573 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6574 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6575 | rd = alloc_rootdomain(); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6576 | if (!rd) { |
| 6577 | printk(KERN_WARNING "Cannot alloc root domain\n"); |
| 6578 | return -ENOMEM; |
| 6579 | } |
| 6580 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6581 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6582 | * Set up domains for cpus specified by the cpu_map. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6583 | */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6584 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6585 | struct sched_domain *sd = NULL, *p; |
| 6586 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(i)); |
| 6587 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6588 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6589 | |
| 6590 | #ifdef CONFIG_NUMA |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6591 | if (cpus_weight(*cpu_map) > |
| 6592 | SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6593 | sd = &per_cpu(allnodes_domains, i); |
| 6594 | *sd = SD_ALLNODES_INIT; |
| 6595 | sd->span = *cpu_map; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6596 | cpu_to_allnodes_group(i, cpu_map, &sd->groups); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6597 | p = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6598 | sd_allnodes = 1; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6599 | } else |
| 6600 | p = NULL; |
| 6601 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6602 | sd = &per_cpu(node_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6603 | *sd = SD_NODE_INIT; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6604 | sd->span = sched_domain_node_span(cpu_to_node(i)); |
| 6605 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6606 | if (p) |
| 6607 | p->child = sd; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6608 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6609 | #endif |
| 6610 | |
| 6611 | p = sd; |
| 6612 | sd = &per_cpu(phys_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6613 | *sd = SD_CPU_INIT; |
| 6614 | sd->span = nodemask; |
| 6615 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6616 | if (p) |
| 6617 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6618 | cpu_to_phys_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6619 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6620 | #ifdef CONFIG_SCHED_MC |
| 6621 | p = sd; |
| 6622 | sd = &per_cpu(core_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6623 | *sd = SD_MC_INIT; |
| 6624 | sd->span = cpu_coregroup_map(i); |
| 6625 | cpus_and(sd->span, sd->span, *cpu_map); |
| 6626 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6627 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6628 | cpu_to_core_group(i, cpu_map, &sd->groups); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6629 | #endif |
| 6630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6631 | #ifdef CONFIG_SCHED_SMT |
| 6632 | p = sd; |
| 6633 | sd = &per_cpu(cpu_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6634 | *sd = SD_SIBLING_INIT; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6635 | sd->span = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6636 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6637 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6638 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6639 | cpu_to_cpu_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6640 | #endif |
| 6641 | } |
| 6642 | |
| 6643 | #ifdef CONFIG_SCHED_SMT |
| 6644 | /* Set up CPU (sibling) groups */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6645 | for_each_cpu_mask(i, *cpu_map) { |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6646 | cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6647 | cpus_and(this_sibling_map, this_sibling_map, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6648 | if (i != first_cpu(this_sibling_map)) |
| 6649 | continue; |
| 6650 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6651 | init_sched_build_groups(this_sibling_map, cpu_map, |
| 6652 | &cpu_to_cpu_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6653 | } |
| 6654 | #endif |
| 6655 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6656 | #ifdef CONFIG_SCHED_MC |
| 6657 | /* Set up multi-core groups */ |
| 6658 | for_each_cpu_mask(i, *cpu_map) { |
| 6659 | cpumask_t this_core_map = cpu_coregroup_map(i); |
| 6660 | cpus_and(this_core_map, this_core_map, *cpu_map); |
| 6661 | if (i != first_cpu(this_core_map)) |
| 6662 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6663 | init_sched_build_groups(this_core_map, cpu_map, |
| 6664 | &cpu_to_core_group); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6665 | } |
| 6666 | #endif |
| 6667 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6668 | /* Set up physical groups */ |
| 6669 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6670 | cpumask_t nodemask = node_to_cpumask(i); |
| 6671 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6672 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6673 | if (cpus_empty(nodemask)) |
| 6674 | continue; |
| 6675 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6676 | init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6677 | } |
| 6678 | |
| 6679 | #ifdef CONFIG_NUMA |
| 6680 | /* Set up node groups */ |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6681 | if (sd_allnodes) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6682 | init_sched_build_groups(*cpu_map, cpu_map, |
| 6683 | &cpu_to_allnodes_group); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6684 | |
| 6685 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6686 | /* Set up node groups */ |
| 6687 | struct sched_group *sg, *prev; |
| 6688 | cpumask_t nodemask = node_to_cpumask(i); |
| 6689 | cpumask_t domainspan; |
| 6690 | cpumask_t covered = CPU_MASK_NONE; |
| 6691 | int j; |
| 6692 | |
| 6693 | cpus_and(nodemask, nodemask, *cpu_map); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6694 | if (cpus_empty(nodemask)) { |
| 6695 | sched_group_nodes[i] = NULL; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6696 | continue; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6697 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6698 | |
| 6699 | domainspan = sched_domain_node_span(i); |
| 6700 | cpus_and(domainspan, domainspan, *cpu_map); |
| 6701 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6702 | sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6703 | if (!sg) { |
| 6704 | printk(KERN_WARNING "Can not alloc domain group for " |
| 6705 | "node %d\n", i); |
| 6706 | goto error; |
| 6707 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6708 | sched_group_nodes[i] = sg; |
| 6709 | for_each_cpu_mask(j, nodemask) { |
| 6710 | struct sched_domain *sd; |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 6711 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6712 | sd = &per_cpu(node_domains, j); |
| 6713 | sd->groups = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6714 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6715 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6716 | sg->cpumask = nodemask; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6717 | sg->next = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6718 | cpus_or(covered, covered, nodemask); |
| 6719 | prev = sg; |
| 6720 | |
| 6721 | for (j = 0; j < MAX_NUMNODES; j++) { |
| 6722 | cpumask_t tmp, notcovered; |
| 6723 | int n = (i + j) % MAX_NUMNODES; |
| 6724 | |
| 6725 | cpus_complement(notcovered, covered); |
| 6726 | cpus_and(tmp, notcovered, *cpu_map); |
| 6727 | cpus_and(tmp, tmp, domainspan); |
| 6728 | if (cpus_empty(tmp)) |
| 6729 | break; |
| 6730 | |
| 6731 | nodemask = node_to_cpumask(n); |
| 6732 | cpus_and(tmp, tmp, nodemask); |
| 6733 | if (cpus_empty(tmp)) |
| 6734 | continue; |
| 6735 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6736 | sg = kmalloc_node(sizeof(struct sched_group), |
| 6737 | GFP_KERNEL, i); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6738 | if (!sg) { |
| 6739 | printk(KERN_WARNING |
| 6740 | "Can not alloc domain group for node %d\n", j); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6741 | goto error; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6742 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6743 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6744 | sg->cpumask = tmp; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6745 | sg->next = prev->next; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6746 | cpus_or(covered, covered, tmp); |
| 6747 | prev->next = sg; |
| 6748 | prev = sg; |
| 6749 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6750 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6751 | #endif |
| 6752 | |
| 6753 | /* Calculate CPU power for physical packages and nodes */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6754 | #ifdef CONFIG_SCHED_SMT |
| 6755 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6756 | struct sched_domain *sd = &per_cpu(cpu_domains, i); |
| 6757 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6758 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6759 | } |
| 6760 | #endif |
| 6761 | #ifdef CONFIG_SCHED_MC |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6762 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6763 | struct sched_domain *sd = &per_cpu(core_domains, i); |
| 6764 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6765 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6766 | } |
| 6767 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6768 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6769 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6770 | struct sched_domain *sd = &per_cpu(phys_domains, i); |
| 6771 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6772 | init_sched_groups_power(i, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6773 | } |
| 6774 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6775 | #ifdef CONFIG_NUMA |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6776 | for (i = 0; i < MAX_NUMNODES; i++) |
| 6777 | init_numa_sched_groups_power(sched_group_nodes[i]); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6778 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6779 | if (sd_allnodes) { |
| 6780 | struct sched_group *sg; |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6781 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6782 | cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg); |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6783 | init_numa_sched_groups_power(sg); |
| 6784 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6785 | #endif |
| 6786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6787 | /* Attach the domains */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6788 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6789 | struct sched_domain *sd; |
| 6790 | #ifdef CONFIG_SCHED_SMT |
| 6791 | sd = &per_cpu(cpu_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6792 | #elif defined(CONFIG_SCHED_MC) |
| 6793 | sd = &per_cpu(core_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6794 | #else |
| 6795 | sd = &per_cpu(phys_domains, i); |
| 6796 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6797 | cpu_attach_domain(sd, rd, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6798 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6799 | |
| 6800 | return 0; |
| 6801 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6802 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6803 | error: |
| 6804 | free_sched_groups(cpu_map); |
| 6805 | return -ENOMEM; |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6806 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6807 | } |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6808 | |
| 6809 | static cpumask_t *doms_cur; /* current sched domains */ |
| 6810 | static int ndoms_cur; /* number of sched domains in 'doms_cur' */ |
| 6811 | |
| 6812 | /* |
| 6813 | * Special case: If a kmalloc of a doms_cur partition (array of |
| 6814 | * cpumask_t) fails, then fallback to a single sched domain, |
| 6815 | * as determined by the single cpumask_t fallback_doms. |
| 6816 | */ |
| 6817 | static cpumask_t fallback_doms; |
| 6818 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6819 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6820 | * Set up scheduler domains and groups. Callers must hold the hotplug lock. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6821 | * For now this just excludes isolated cpus, but could be used to |
| 6822 | * exclude other special cases in the future. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6823 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6824 | static int arch_init_sched_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6825 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6826 | int err; |
| 6827 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6828 | ndoms_cur = 1; |
| 6829 | doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL); |
| 6830 | if (!doms_cur) |
| 6831 | doms_cur = &fallback_doms; |
| 6832 | cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6833 | err = build_sched_domains(doms_cur); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6834 | register_sched_domain_sysctl(); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6835 | |
| 6836 | return err; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6837 | } |
| 6838 | |
| 6839 | static void arch_destroy_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6840 | { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6841 | free_sched_groups(cpu_map); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6842 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6843 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6844 | /* |
| 6845 | * Detach sched domains from a group of cpus specified in cpu_map |
| 6846 | * These cpus will now be attached to the NULL domain |
| 6847 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 6848 | static void detach_destroy_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6849 | { |
| 6850 | int i; |
| 6851 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6852 | unregister_sched_domain_sysctl(); |
| 6853 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6854 | for_each_cpu_mask(i, *cpu_map) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6855 | cpu_attach_domain(NULL, &def_root_domain, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6856 | synchronize_sched(); |
| 6857 | arch_destroy_sched_domains(cpu_map); |
| 6858 | } |
| 6859 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6860 | /* |
| 6861 | * Partition sched domains as specified by the 'ndoms_new' |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6862 | * cpumasks in the array doms_new[] of cpumasks. This compares |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6863 | * doms_new[] to the current sched domain partitioning, doms_cur[]. |
| 6864 | * It destroys each deleted domain and builds each new domain. |
| 6865 | * |
| 6866 | * 'doms_new' is an array of cpumask_t's of length 'ndoms_new'. |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6867 | * The masks don't intersect (don't overlap.) We should setup one |
| 6868 | * sched domain for each mask. CPUs not in any of the cpumasks will |
| 6869 | * not be load balanced. If the same cpumask appears both in the |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6870 | * current 'doms_cur' domains and in the new 'doms_new', we can leave |
| 6871 | * it as it is. |
| 6872 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6873 | * The passed in 'doms_new' should be kmalloc'd. This routine takes |
| 6874 | * ownership of it and will kfree it when done with it. If the caller |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6875 | * failed the kmalloc call, then it can pass in doms_new == NULL, |
| 6876 | * and partition_sched_domains() will fallback to the single partition |
| 6877 | * 'fallback_doms'. |
| 6878 | * |
| 6879 | * Call with hotplug lock held |
| 6880 | */ |
| 6881 | void partition_sched_domains(int ndoms_new, cpumask_t *doms_new) |
| 6882 | { |
| 6883 | int i, j; |
| 6884 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 6885 | lock_doms_cur(); |
| 6886 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6887 | /* always unregister in case we don't destroy any domains */ |
| 6888 | unregister_sched_domain_sysctl(); |
| 6889 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6890 | if (doms_new == NULL) { |
| 6891 | ndoms_new = 1; |
| 6892 | doms_new = &fallback_doms; |
| 6893 | cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map); |
| 6894 | } |
| 6895 | |
| 6896 | /* Destroy deleted domains */ |
| 6897 | for (i = 0; i < ndoms_cur; i++) { |
| 6898 | for (j = 0; j < ndoms_new; j++) { |
| 6899 | if (cpus_equal(doms_cur[i], doms_new[j])) |
| 6900 | goto match1; |
| 6901 | } |
| 6902 | /* no match - a current sched domain not in new doms_new[] */ |
| 6903 | detach_destroy_domains(doms_cur + i); |
| 6904 | match1: |
| 6905 | ; |
| 6906 | } |
| 6907 | |
| 6908 | /* Build new domains */ |
| 6909 | for (i = 0; i < ndoms_new; i++) { |
| 6910 | for (j = 0; j < ndoms_cur; j++) { |
| 6911 | if (cpus_equal(doms_new[i], doms_cur[j])) |
| 6912 | goto match2; |
| 6913 | } |
| 6914 | /* no match - add a new doms_new */ |
| 6915 | build_sched_domains(doms_new + i); |
| 6916 | match2: |
| 6917 | ; |
| 6918 | } |
| 6919 | |
| 6920 | /* Remember the new sched domains */ |
| 6921 | if (doms_cur != &fallback_doms) |
| 6922 | kfree(doms_cur); |
| 6923 | doms_cur = doms_new; |
| 6924 | ndoms_cur = ndoms_new; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6925 | |
| 6926 | register_sched_domain_sysctl(); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 6927 | |
| 6928 | unlock_doms_cur(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6929 | } |
| 6930 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6931 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 6932 | static int arch_reinit_sched_domains(void) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6933 | { |
| 6934 | int err; |
| 6935 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 6936 | get_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6937 | detach_destroy_domains(&cpu_online_map); |
| 6938 | err = arch_init_sched_domains(&cpu_online_map); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 6939 | put_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6940 | |
| 6941 | return err; |
| 6942 | } |
| 6943 | |
| 6944 | static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt) |
| 6945 | { |
| 6946 | int ret; |
| 6947 | |
| 6948 | if (buf[0] != '0' && buf[0] != '1') |
| 6949 | return -EINVAL; |
| 6950 | |
| 6951 | if (smt) |
| 6952 | sched_smt_power_savings = (buf[0] == '1'); |
| 6953 | else |
| 6954 | sched_mc_power_savings = (buf[0] == '1'); |
| 6955 | |
| 6956 | ret = arch_reinit_sched_domains(); |
| 6957 | |
| 6958 | return ret ? ret : count; |
| 6959 | } |
| 6960 | |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 6961 | #ifdef CONFIG_SCHED_MC |
| 6962 | static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page) |
| 6963 | { |
| 6964 | return sprintf(page, "%u\n", sched_mc_power_savings); |
| 6965 | } |
| 6966 | static ssize_t sched_mc_power_savings_store(struct sys_device *dev, |
| 6967 | const char *buf, size_t count) |
| 6968 | { |
| 6969 | return sched_power_savings_store(buf, count, 0); |
| 6970 | } |
| 6971 | static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show, |
| 6972 | sched_mc_power_savings_store); |
| 6973 | #endif |
| 6974 | |
| 6975 | #ifdef CONFIG_SCHED_SMT |
| 6976 | static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page) |
| 6977 | { |
| 6978 | return sprintf(page, "%u\n", sched_smt_power_savings); |
| 6979 | } |
| 6980 | static ssize_t sched_smt_power_savings_store(struct sys_device *dev, |
| 6981 | const char *buf, size_t count) |
| 6982 | { |
| 6983 | return sched_power_savings_store(buf, count, 1); |
| 6984 | } |
| 6985 | static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show, |
| 6986 | sched_smt_power_savings_store); |
| 6987 | #endif |
| 6988 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6989 | int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls) |
| 6990 | { |
| 6991 | int err = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6992 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6993 | #ifdef CONFIG_SCHED_SMT |
| 6994 | if (smt_capable()) |
| 6995 | err = sysfs_create_file(&cls->kset.kobj, |
| 6996 | &attr_sched_smt_power_savings.attr); |
| 6997 | #endif |
| 6998 | #ifdef CONFIG_SCHED_MC |
| 6999 | if (!err && mc_capable()) |
| 7000 | err = sysfs_create_file(&cls->kset.kobj, |
| 7001 | &attr_sched_mc_power_savings.attr); |
| 7002 | #endif |
| 7003 | return err; |
| 7004 | } |
| 7005 | #endif |
| 7006 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7007 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7008 | * Force a reinitialization of the sched domains hierarchy. The domains |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7009 | * and groups cannot be updated in place without racing with the balancing |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7010 | * code, so we temporarily attach all running cpus to the NULL domain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7011 | * which will prevent rebalancing while the sched domains are recalculated. |
| 7012 | */ |
| 7013 | static int update_sched_domains(struct notifier_block *nfb, |
| 7014 | unsigned long action, void *hcpu) |
| 7015 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7016 | switch (action) { |
| 7017 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7018 | case CPU_UP_PREPARE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7019 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7020 | case CPU_DOWN_PREPARE_FROZEN: |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7021 | detach_destroy_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7022 | return NOTIFY_OK; |
| 7023 | |
| 7024 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7025 | case CPU_UP_CANCELED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7026 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7027 | case CPU_DOWN_FAILED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7028 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7029 | case CPU_ONLINE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7030 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7031 | case CPU_DEAD_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7032 | /* |
| 7033 | * Fall through and re-initialise the domains. |
| 7034 | */ |
| 7035 | break; |
| 7036 | default: |
| 7037 | return NOTIFY_DONE; |
| 7038 | } |
| 7039 | |
| 7040 | /* The hotplug lock is already held by cpu_up/cpu_down */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7041 | arch_init_sched_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7042 | |
| 7043 | return NOTIFY_OK; |
| 7044 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7045 | |
| 7046 | void __init sched_init_smp(void) |
| 7047 | { |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7048 | cpumask_t non_isolated_cpus; |
| 7049 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7050 | get_online_cpus(); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7051 | arch_init_sched_domains(&cpu_online_map); |
Nathan Lynch | e5e5673 | 2007-01-10 23:15:28 -0800 | [diff] [blame] | 7052 | cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7053 | if (cpus_empty(non_isolated_cpus)) |
| 7054 | cpu_set(smp_processor_id(), non_isolated_cpus); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7055 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7056 | /* XXX: Theoretical race here - CPU may be hotplugged now */ |
| 7057 | hotcpu_notifier(update_sched_domains, 0); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7058 | |
| 7059 | /* Move init over to a non-isolated CPU */ |
| 7060 | if (set_cpus_allowed(current, non_isolated_cpus) < 0) |
| 7061 | BUG(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7062 | sched_init_granularity(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7063 | |
| 7064 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7065 | if (nr_cpu_ids == 1) |
| 7066 | return; |
| 7067 | |
| 7068 | lb_monitor_task = kthread_create(load_balance_monitor, NULL, |
| 7069 | "group_balance"); |
| 7070 | if (!IS_ERR(lb_monitor_task)) { |
| 7071 | lb_monitor_task->flags |= PF_NOFREEZE; |
| 7072 | wake_up_process(lb_monitor_task); |
| 7073 | } else { |
| 7074 | printk(KERN_ERR "Could not create load balance monitor thread" |
| 7075 | "(error = %ld) \n", PTR_ERR(lb_monitor_task)); |
| 7076 | } |
| 7077 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7078 | } |
| 7079 | #else |
| 7080 | void __init sched_init_smp(void) |
| 7081 | { |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7082 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7083 | } |
| 7084 | #endif /* CONFIG_SMP */ |
| 7085 | |
| 7086 | int in_sched_functions(unsigned long addr) |
| 7087 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7088 | return in_lock_functions(addr) || |
| 7089 | (addr >= (unsigned long)__sched_text_start |
| 7090 | && addr < (unsigned long)__sched_text_end); |
| 7091 | } |
| 7092 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 7093 | static void init_cfs_rq(struct cfs_rq *cfs_rq, struct rq *rq) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7094 | { |
| 7095 | cfs_rq->tasks_timeline = RB_ROOT; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7096 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7097 | cfs_rq->rq = rq; |
| 7098 | #endif |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 7099 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7100 | } |
| 7101 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7102 | static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) |
| 7103 | { |
| 7104 | struct rt_prio_array *array; |
| 7105 | int i; |
| 7106 | |
| 7107 | array = &rt_rq->active; |
| 7108 | for (i = 0; i < MAX_RT_PRIO; i++) { |
| 7109 | INIT_LIST_HEAD(array->queue + i); |
| 7110 | __clear_bit(i, array->bitmap); |
| 7111 | } |
| 7112 | /* delimiter for bitsearch: */ |
| 7113 | __set_bit(MAX_RT_PRIO, array->bitmap); |
| 7114 | |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7115 | #if defined CONFIG_SMP || defined CONFIG_FAIR_GROUP_SCHED |
| 7116 | rt_rq->highest_prio = MAX_RT_PRIO; |
| 7117 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7118 | #ifdef CONFIG_SMP |
| 7119 | rt_rq->rt_nr_migratory = 0; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7120 | rt_rq->overloaded = 0; |
| 7121 | #endif |
| 7122 | |
| 7123 | rt_rq->rt_time = 0; |
| 7124 | rt_rq->rt_throttled = 0; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7125 | |
| 7126 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7127 | rt_rq->rq = rq; |
| 7128 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7129 | } |
| 7130 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7131 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7132 | static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg, |
| 7133 | struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 7134 | int cpu, int add) |
| 7135 | { |
| 7136 | tg->cfs_rq[cpu] = cfs_rq; |
| 7137 | init_cfs_rq(cfs_rq, rq); |
| 7138 | cfs_rq->tg = tg; |
| 7139 | if (add) |
| 7140 | list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
| 7141 | |
| 7142 | tg->se[cpu] = se; |
| 7143 | se->cfs_rq = &rq->cfs; |
| 7144 | se->my_q = cfs_rq; |
| 7145 | se->load.weight = tg->shares; |
| 7146 | se->load.inv_weight = div64_64(1ULL<<32, se->load.weight); |
| 7147 | se->parent = NULL; |
| 7148 | } |
| 7149 | |
| 7150 | static void init_tg_rt_entry(struct rq *rq, struct task_group *tg, |
| 7151 | struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, |
| 7152 | int cpu, int add) |
| 7153 | { |
| 7154 | tg->rt_rq[cpu] = rt_rq; |
| 7155 | init_rt_rq(rt_rq, rq); |
| 7156 | rt_rq->tg = tg; |
| 7157 | rt_rq->rt_se = rt_se; |
| 7158 | if (add) |
| 7159 | list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); |
| 7160 | |
| 7161 | tg->rt_se[cpu] = rt_se; |
| 7162 | rt_se->rt_rq = &rq->rt; |
| 7163 | rt_se->my_q = rt_rq; |
| 7164 | rt_se->parent = NULL; |
| 7165 | INIT_LIST_HEAD(&rt_se->run_list); |
| 7166 | } |
| 7167 | #endif |
| 7168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7169 | void __init sched_init(void) |
| 7170 | { |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7171 | int highest_cpu = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7172 | int i, j; |
| 7173 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7174 | #ifdef CONFIG_SMP |
| 7175 | init_defrootdomain(); |
| 7176 | #endif |
| 7177 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7178 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7179 | list_add(&init_task_group.list, &task_groups); |
| 7180 | #endif |
| 7181 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 7182 | for_each_possible_cpu(i) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7183 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7184 | |
| 7185 | rq = cpu_rq(i); |
| 7186 | spin_lock_init(&rq->lock); |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 7187 | lockdep_set_class(&rq->lock, &rq->rq_lock_key); |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 7188 | rq->nr_running = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7189 | rq->clock = 1; |
| 7190 | init_cfs_rq(&rq->cfs, rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7191 | init_rt_rq(&rq->rt, rq); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7192 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7193 | init_task_group.shares = init_task_group_load; |
| 7194 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
| 7195 | init_tg_cfs_entry(rq, &init_task_group, |
| 7196 | &per_cpu(init_cfs_rq, i), |
| 7197 | &per_cpu(init_sched_entity, i), i, 1); |
| 7198 | |
| 7199 | init_task_group.rt_ratio = sysctl_sched_rt_ratio; /* XXX */ |
| 7200 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
| 7201 | init_tg_rt_entry(rq, &init_task_group, |
| 7202 | &per_cpu(init_rt_rq, i), |
| 7203 | &per_cpu(init_sched_rt_entity, i), i, 1); |
| 7204 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7205 | rq->rt_period_expire = 0; |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7206 | rq->rt_throttled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7207 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7208 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
| 7209 | rq->cpu_load[j] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7210 | #ifdef CONFIG_SMP |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7211 | rq->sd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7212 | rq->rd = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7213 | rq->active_balance = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7214 | rq->next_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7215 | rq->push_cpu = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 7216 | rq->cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7217 | rq->migration_thread = NULL; |
| 7218 | INIT_LIST_HEAD(&rq->migration_queue); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 7219 | rq_attach_root(rq, &def_root_domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7220 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7221 | init_rq_hrtick(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7222 | atomic_set(&rq->nr_iowait, 0); |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7223 | highest_cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7224 | } |
| 7225 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 7226 | set_load_weight(&init_task); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7227 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 7228 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 7229 | INIT_HLIST_HEAD(&init_task.preempt_notifiers); |
| 7230 | #endif |
| 7231 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7232 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7233 | nr_cpu_ids = highest_cpu + 1; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7234 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL); |
| 7235 | #endif |
| 7236 | |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7237 | #ifdef CONFIG_RT_MUTEXES |
| 7238 | plist_head_init(&init_task.pi_waiters, &init_task.pi_lock); |
| 7239 | #endif |
| 7240 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7241 | /* |
| 7242 | * The boot idle thread does lazy MMU switching as well: |
| 7243 | */ |
| 7244 | atomic_inc(&init_mm.mm_count); |
| 7245 | enter_lazy_tlb(&init_mm, current); |
| 7246 | |
| 7247 | /* |
| 7248 | * Make us the idle thread. Technically, schedule() should not be |
| 7249 | * called from this thread, however somewhere below it might be, |
| 7250 | * but because we are the idle thread, we just pick up running again |
| 7251 | * when this runqueue becomes "idle". |
| 7252 | */ |
| 7253 | init_idle(current, smp_processor_id()); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7254 | /* |
| 7255 | * During early bootup we pretend to be a normal task: |
| 7256 | */ |
| 7257 | current->sched_class = &fair_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7258 | } |
| 7259 | |
| 7260 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 7261 | void __might_sleep(char *file, int line) |
| 7262 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7263 | #ifdef in_atomic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7264 | static unsigned long prev_jiffy; /* ratelimiting */ |
| 7265 | |
| 7266 | if ((in_atomic() || irqs_disabled()) && |
| 7267 | system_state == SYSTEM_RUNNING && !oops_in_progress) { |
| 7268 | if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy) |
| 7269 | return; |
| 7270 | prev_jiffy = jiffies; |
Ingo Molnar | 91368d7 | 2006-03-23 03:00:54 -0800 | [diff] [blame] | 7271 | printk(KERN_ERR "BUG: sleeping function called from invalid" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7272 | " context at %s:%d\n", file, line); |
| 7273 | printk("in_atomic():%d, irqs_disabled():%d\n", |
| 7274 | in_atomic(), irqs_disabled()); |
Peter Zijlstra | a4c410f | 2006-12-06 20:37:21 -0800 | [diff] [blame] | 7275 | debug_show_held_locks(current); |
Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 7276 | if (irqs_disabled()) |
| 7277 | print_irqtrace_events(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7278 | dump_stack(); |
| 7279 | } |
| 7280 | #endif |
| 7281 | } |
| 7282 | EXPORT_SYMBOL(__might_sleep); |
| 7283 | #endif |
| 7284 | |
| 7285 | #ifdef CONFIG_MAGIC_SYSRQ |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7286 | static void normalize_task(struct rq *rq, struct task_struct *p) |
| 7287 | { |
| 7288 | int on_rq; |
| 7289 | update_rq_clock(rq); |
| 7290 | on_rq = p->se.on_rq; |
| 7291 | if (on_rq) |
| 7292 | deactivate_task(rq, p, 0); |
| 7293 | __setscheduler(rq, p, SCHED_NORMAL, 0); |
| 7294 | if (on_rq) { |
| 7295 | activate_task(rq, p, 0); |
| 7296 | resched_task(rq->curr); |
| 7297 | } |
| 7298 | } |
| 7299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7300 | void normalize_rt_tasks(void) |
| 7301 | { |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7302 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7303 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7304 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7305 | |
| 7306 | read_lock_irq(&tasklist_lock); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7307 | do_each_thread(g, p) { |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7308 | /* |
| 7309 | * Only normalize user tasks: |
| 7310 | */ |
| 7311 | if (!p->mm) |
| 7312 | continue; |
| 7313 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7314 | p->se.exec_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7315 | #ifdef CONFIG_SCHEDSTATS |
| 7316 | p->se.wait_start = 0; |
| 7317 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7318 | p->se.block_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7319 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7320 | task_rq(p)->clock = 0; |
| 7321 | |
| 7322 | if (!rt_task(p)) { |
| 7323 | /* |
| 7324 | * Renice negative nice level userspace |
| 7325 | * tasks back to 0: |
| 7326 | */ |
| 7327 | if (TASK_NICE(p) < 0 && p->mm) |
| 7328 | set_user_nice(p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7329 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7330 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7331 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7332 | spin_lock_irqsave(&p->pi_lock, flags); |
| 7333 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7334 | |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7335 | normalize_task(rq, p); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7336 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7337 | __task_rq_unlock(rq); |
| 7338 | spin_unlock_irqrestore(&p->pi_lock, flags); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7339 | } while_each_thread(g, p); |
| 7340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7341 | read_unlock_irq(&tasklist_lock); |
| 7342 | } |
| 7343 | |
| 7344 | #endif /* CONFIG_MAGIC_SYSRQ */ |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7345 | |
| 7346 | #ifdef CONFIG_IA64 |
| 7347 | /* |
| 7348 | * These functions are only useful for the IA64 MCA handling. |
| 7349 | * |
| 7350 | * They can only be called when the whole system has been |
| 7351 | * stopped - every CPU needs to be quiescent, and no scheduling |
| 7352 | * activity can take place. Using them for anything else would |
| 7353 | * be a serious bug, and as a result, they aren't even visible |
| 7354 | * under any other configuration. |
| 7355 | */ |
| 7356 | |
| 7357 | /** |
| 7358 | * curr_task - return the current task for a given cpu. |
| 7359 | * @cpu: the processor in question. |
| 7360 | * |
| 7361 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7362 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7363 | struct task_struct *curr_task(int cpu) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7364 | { |
| 7365 | return cpu_curr(cpu); |
| 7366 | } |
| 7367 | |
| 7368 | /** |
| 7369 | * set_curr_task - set the current task for a given cpu. |
| 7370 | * @cpu: the processor in question. |
| 7371 | * @p: the task pointer to set. |
| 7372 | * |
| 7373 | * Description: This function must only be used when non-maskable interrupts |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7374 | * are serviced on a separate stack. It allows the architecture to switch the |
| 7375 | * notion of the current task on a cpu in a non-blocking manner. This function |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7376 | * must be called with all CPU's synchronized, and interrupts disabled, the |
| 7377 | * and caller must save the original value of the current task (see |
| 7378 | * curr_task() above) and restore that value before reenabling interrupts and |
| 7379 | * re-starting the system. |
| 7380 | * |
| 7381 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7382 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7383 | void set_curr_task(int cpu, struct task_struct *p) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7384 | { |
| 7385 | cpu_curr(cpu) = p; |
| 7386 | } |
| 7387 | |
| 7388 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7389 | |
| 7390 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7391 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7392 | #ifdef CONFIG_SMP |
| 7393 | /* |
| 7394 | * distribute shares of all task groups among their schedulable entities, |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7395 | * to reflect load distribution across cpus. |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7396 | */ |
| 7397 | static int rebalance_shares(struct sched_domain *sd, int this_cpu) |
| 7398 | { |
| 7399 | struct cfs_rq *cfs_rq; |
| 7400 | struct rq *rq = cpu_rq(this_cpu); |
| 7401 | cpumask_t sdspan = sd->span; |
| 7402 | int balanced = 1; |
| 7403 | |
| 7404 | /* Walk thr' all the task groups that we have */ |
| 7405 | for_each_leaf_cfs_rq(rq, cfs_rq) { |
| 7406 | int i; |
| 7407 | unsigned long total_load = 0, total_shares; |
| 7408 | struct task_group *tg = cfs_rq->tg; |
| 7409 | |
| 7410 | /* Gather total task load of this group across cpus */ |
| 7411 | for_each_cpu_mask(i, sdspan) |
| 7412 | total_load += tg->cfs_rq[i]->load.weight; |
| 7413 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 7414 | /* Nothing to do if this group has no load */ |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7415 | if (!total_load) |
| 7416 | continue; |
| 7417 | |
| 7418 | /* |
| 7419 | * tg->shares represents the number of cpu shares the task group |
| 7420 | * is eligible to hold on a single cpu. On N cpus, it is |
| 7421 | * eligible to hold (N * tg->shares) number of cpu shares. |
| 7422 | */ |
| 7423 | total_shares = tg->shares * cpus_weight(sdspan); |
| 7424 | |
| 7425 | /* |
| 7426 | * redistribute total_shares across cpus as per the task load |
| 7427 | * distribution. |
| 7428 | */ |
| 7429 | for_each_cpu_mask(i, sdspan) { |
| 7430 | unsigned long local_load, local_shares; |
| 7431 | |
| 7432 | local_load = tg->cfs_rq[i]->load.weight; |
| 7433 | local_shares = (local_load * total_shares) / total_load; |
| 7434 | if (!local_shares) |
| 7435 | local_shares = MIN_GROUP_SHARES; |
| 7436 | if (local_shares == tg->se[i]->load.weight) |
| 7437 | continue; |
| 7438 | |
| 7439 | spin_lock_irq(&cpu_rq(i)->lock); |
| 7440 | set_se_shares(tg->se[i], local_shares); |
| 7441 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 7442 | balanced = 0; |
| 7443 | } |
| 7444 | } |
| 7445 | |
| 7446 | return balanced; |
| 7447 | } |
| 7448 | |
| 7449 | /* |
| 7450 | * How frequently should we rebalance_shares() across cpus? |
| 7451 | * |
| 7452 | * The more frequently we rebalance shares, the more accurate is the fairness |
| 7453 | * of cpu bandwidth distribution between task groups. However higher frequency |
| 7454 | * also implies increased scheduling overhead. |
| 7455 | * |
| 7456 | * sysctl_sched_min_bal_int_shares represents the minimum interval between |
| 7457 | * consecutive calls to rebalance_shares() in the same sched domain. |
| 7458 | * |
| 7459 | * sysctl_sched_max_bal_int_shares represents the maximum interval between |
| 7460 | * consecutive calls to rebalance_shares() in the same sched domain. |
| 7461 | * |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7462 | * These settings allows for the appropriate trade-off between accuracy of |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7463 | * fairness and the associated overhead. |
| 7464 | * |
| 7465 | */ |
| 7466 | |
| 7467 | /* default: 8ms, units: milliseconds */ |
| 7468 | const_debug unsigned int sysctl_sched_min_bal_int_shares = 8; |
| 7469 | |
| 7470 | /* default: 128ms, units: milliseconds */ |
| 7471 | const_debug unsigned int sysctl_sched_max_bal_int_shares = 128; |
| 7472 | |
| 7473 | /* kernel thread that runs rebalance_shares() periodically */ |
| 7474 | static int load_balance_monitor(void *unused) |
| 7475 | { |
| 7476 | unsigned int timeout = sysctl_sched_min_bal_int_shares; |
| 7477 | struct sched_param schedparm; |
| 7478 | int ret; |
| 7479 | |
| 7480 | /* |
| 7481 | * We don't want this thread's execution to be limited by the shares |
| 7482 | * assigned to default group (init_task_group). Hence make it run |
| 7483 | * as a SCHED_RR RT task at the lowest priority. |
| 7484 | */ |
| 7485 | schedparm.sched_priority = 1; |
| 7486 | ret = sched_setscheduler(current, SCHED_RR, &schedparm); |
| 7487 | if (ret) |
| 7488 | printk(KERN_ERR "Couldn't set SCHED_RR policy for load balance" |
| 7489 | " monitor thread (error = %d) \n", ret); |
| 7490 | |
| 7491 | while (!kthread_should_stop()) { |
| 7492 | int i, cpu, balanced = 1; |
| 7493 | |
| 7494 | /* Prevent cpus going down or coming up */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7495 | get_online_cpus(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7496 | /* lockout changes to doms_cur[] array */ |
| 7497 | lock_doms_cur(); |
| 7498 | /* |
| 7499 | * Enter a rcu read-side critical section to safely walk rq->sd |
| 7500 | * chain on various cpus and to walk task group list |
| 7501 | * (rq->leaf_cfs_rq_list) in rebalance_shares(). |
| 7502 | */ |
| 7503 | rcu_read_lock(); |
| 7504 | |
| 7505 | for (i = 0; i < ndoms_cur; i++) { |
| 7506 | cpumask_t cpumap = doms_cur[i]; |
| 7507 | struct sched_domain *sd = NULL, *sd_prev = NULL; |
| 7508 | |
| 7509 | cpu = first_cpu(cpumap); |
| 7510 | |
| 7511 | /* Find the highest domain at which to balance shares */ |
| 7512 | for_each_domain(cpu, sd) { |
| 7513 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 7514 | continue; |
| 7515 | sd_prev = sd; |
| 7516 | } |
| 7517 | |
| 7518 | sd = sd_prev; |
| 7519 | /* sd == NULL? No load balance reqd in this domain */ |
| 7520 | if (!sd) |
| 7521 | continue; |
| 7522 | |
| 7523 | balanced &= rebalance_shares(sd, cpu); |
| 7524 | } |
| 7525 | |
| 7526 | rcu_read_unlock(); |
| 7527 | |
| 7528 | unlock_doms_cur(); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7529 | put_online_cpus(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7530 | |
| 7531 | if (!balanced) |
| 7532 | timeout = sysctl_sched_min_bal_int_shares; |
| 7533 | else if (timeout < sysctl_sched_max_bal_int_shares) |
| 7534 | timeout *= 2; |
| 7535 | |
| 7536 | msleep_interruptible(timeout); |
| 7537 | } |
| 7538 | |
| 7539 | return 0; |
| 7540 | } |
| 7541 | #endif /* CONFIG_SMP */ |
| 7542 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7543 | static void free_sched_group(struct task_group *tg) |
| 7544 | { |
| 7545 | int i; |
| 7546 | |
| 7547 | for_each_possible_cpu(i) { |
| 7548 | if (tg->cfs_rq) |
| 7549 | kfree(tg->cfs_rq[i]); |
| 7550 | if (tg->se) |
| 7551 | kfree(tg->se[i]); |
| 7552 | if (tg->rt_rq) |
| 7553 | kfree(tg->rt_rq[i]); |
| 7554 | if (tg->rt_se) |
| 7555 | kfree(tg->rt_se[i]); |
| 7556 | } |
| 7557 | |
| 7558 | kfree(tg->cfs_rq); |
| 7559 | kfree(tg->se); |
| 7560 | kfree(tg->rt_rq); |
| 7561 | kfree(tg->rt_se); |
| 7562 | kfree(tg); |
| 7563 | } |
| 7564 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7565 | /* allocate runqueue etc for a new task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7566 | struct task_group *sched_create_group(void) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7567 | { |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7568 | struct task_group *tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7569 | struct cfs_rq *cfs_rq; |
| 7570 | struct sched_entity *se; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7571 | struct rt_rq *rt_rq; |
| 7572 | struct sched_rt_entity *rt_se; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7573 | struct rq *rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7574 | int i; |
| 7575 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7576 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 7577 | if (!tg) |
| 7578 | return ERR_PTR(-ENOMEM); |
| 7579 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7580 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7581 | if (!tg->cfs_rq) |
| 7582 | goto err; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7583 | tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7584 | if (!tg->se) |
| 7585 | goto err; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7586 | tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL); |
| 7587 | if (!tg->rt_rq) |
| 7588 | goto err; |
| 7589 | tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL); |
| 7590 | if (!tg->rt_se) |
| 7591 | goto err; |
| 7592 | |
| 7593 | tg->shares = NICE_0_LOAD; |
| 7594 | tg->rt_ratio = 0; /* XXX */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7595 | |
| 7596 | for_each_possible_cpu(i) { |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7597 | rq = cpu_rq(i); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7598 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7599 | cfs_rq = kmalloc_node(sizeof(struct cfs_rq), |
| 7600 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7601 | if (!cfs_rq) |
| 7602 | goto err; |
| 7603 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7604 | se = kmalloc_node(sizeof(struct sched_entity), |
| 7605 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7606 | if (!se) |
| 7607 | goto err; |
| 7608 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7609 | rt_rq = kmalloc_node(sizeof(struct rt_rq), |
| 7610 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7611 | if (!rt_rq) |
| 7612 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7613 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7614 | rt_se = kmalloc_node(sizeof(struct sched_rt_entity), |
| 7615 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7616 | if (!rt_se) |
| 7617 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7618 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7619 | init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0); |
| 7620 | init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7621 | } |
| 7622 | |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7623 | lock_task_group_list(); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7624 | for_each_possible_cpu(i) { |
| 7625 | rq = cpu_rq(i); |
| 7626 | cfs_rq = tg->cfs_rq[i]; |
| 7627 | list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7628 | rt_rq = tg->rt_rq[i]; |
| 7629 | list_add_rcu(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7630 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7631 | list_add_rcu(&tg->list, &task_groups); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7632 | unlock_task_group_list(); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7633 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7634 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7635 | |
| 7636 | err: |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7637 | free_sched_group(tg); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7638 | return ERR_PTR(-ENOMEM); |
| 7639 | } |
| 7640 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7641 | /* rcu callback to free various structures associated with a task group */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7642 | static void free_sched_group_rcu(struct rcu_head *rhp) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7643 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7644 | /* now it should be safe to free those cfs_rqs */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7645 | free_sched_group(container_of(rhp, struct task_group, rcu)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7646 | } |
| 7647 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7648 | /* Destroy runqueue etc associated with a task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7649 | void sched_destroy_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7650 | { |
James Bottomley | 7bae49d | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 7651 | struct cfs_rq *cfs_rq = NULL; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7652 | struct rt_rq *rt_rq = NULL; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7653 | int i; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7654 | |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7655 | lock_task_group_list(); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7656 | for_each_possible_cpu(i) { |
| 7657 | cfs_rq = tg->cfs_rq[i]; |
| 7658 | list_del_rcu(&cfs_rq->leaf_cfs_rq_list); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7659 | rt_rq = tg->rt_rq[i]; |
| 7660 | list_del_rcu(&rt_rq->leaf_rt_rq_list); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7661 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7662 | list_del_rcu(&tg->list); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7663 | unlock_task_group_list(); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7664 | |
James Bottomley | 7bae49d | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 7665 | BUG_ON(!cfs_rq); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7666 | |
| 7667 | /* wait for possible concurrent references to cfs_rqs complete */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7668 | call_rcu(&tg->rcu, free_sched_group_rcu); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7669 | } |
| 7670 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7671 | /* change task's runqueue when it moves between groups. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 7672 | * The caller of this function should have put the task in its new group |
| 7673 | * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to |
| 7674 | * reflect its new group. |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7675 | */ |
| 7676 | void sched_move_task(struct task_struct *tsk) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7677 | { |
| 7678 | int on_rq, running; |
| 7679 | unsigned long flags; |
| 7680 | struct rq *rq; |
| 7681 | |
| 7682 | rq = task_rq_lock(tsk, &flags); |
| 7683 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7684 | update_rq_clock(rq); |
| 7685 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 7686 | running = task_current(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7687 | on_rq = tsk->se.on_rq; |
| 7688 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7689 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7690 | dequeue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7691 | if (unlikely(running)) |
| 7692 | tsk->sched_class->put_prev_task(rq, tsk); |
| 7693 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7694 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7695 | set_task_rq(tsk, task_cpu(tsk)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7696 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7697 | if (on_rq) { |
| 7698 | if (unlikely(running)) |
| 7699 | tsk->sched_class->set_curr_task(rq); |
Dmitry Adamushko | 7074bad | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7700 | enqueue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7701 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7702 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7703 | task_rq_unlock(rq, &flags); |
| 7704 | } |
| 7705 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7706 | /* rq->lock to be locked by caller */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7707 | static void set_se_shares(struct sched_entity *se, unsigned long shares) |
| 7708 | { |
| 7709 | struct cfs_rq *cfs_rq = se->cfs_rq; |
| 7710 | struct rq *rq = cfs_rq->rq; |
| 7711 | int on_rq; |
| 7712 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7713 | if (!shares) |
| 7714 | shares = MIN_GROUP_SHARES; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7715 | |
| 7716 | on_rq = se->on_rq; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7717 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7718 | dequeue_entity(cfs_rq, se, 0); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7719 | dec_cpu_load(rq, se->load.weight); |
| 7720 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7721 | |
| 7722 | se->load.weight = shares; |
| 7723 | se->load.inv_weight = div64_64((1ULL<<32), shares); |
| 7724 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7725 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7726 | enqueue_entity(cfs_rq, se, 0); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7727 | inc_cpu_load(rq, se->load.weight); |
| 7728 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7729 | } |
| 7730 | |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7731 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7732 | { |
| 7733 | int i; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7734 | struct cfs_rq *cfs_rq; |
| 7735 | struct rq *rq; |
Ingo Molnar | c61935f | 2008-01-22 11:24:58 +0100 | [diff] [blame] | 7736 | |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7737 | lock_task_group_list(); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7738 | if (tg->shares == shares) |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7739 | goto done; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7740 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7741 | if (shares < MIN_GROUP_SHARES) |
| 7742 | shares = MIN_GROUP_SHARES; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7743 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7744 | /* |
| 7745 | * Prevent any load balance activity (rebalance_shares, |
| 7746 | * load_balance_fair) from referring to this group first, |
| 7747 | * by taking it off the rq->leaf_cfs_rq_list on each cpu. |
| 7748 | */ |
| 7749 | for_each_possible_cpu(i) { |
| 7750 | cfs_rq = tg->cfs_rq[i]; |
| 7751 | list_del_rcu(&cfs_rq->leaf_cfs_rq_list); |
| 7752 | } |
| 7753 | |
| 7754 | /* wait for any ongoing reference to this group to finish */ |
| 7755 | synchronize_sched(); |
| 7756 | |
| 7757 | /* |
| 7758 | * Now we are free to modify the group's share on each cpu |
| 7759 | * w/o tripping rebalance_share or load_balance_fair. |
| 7760 | */ |
| 7761 | tg->shares = shares; |
| 7762 | for_each_possible_cpu(i) { |
| 7763 | spin_lock_irq(&cpu_rq(i)->lock); |
| 7764 | set_se_shares(tg->se[i], shares); |
| 7765 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 7766 | } |
| 7767 | |
| 7768 | /* |
| 7769 | * Enable load balance activity on this group, by inserting it back on |
| 7770 | * each cpu's rq->leaf_cfs_rq_list. |
| 7771 | */ |
| 7772 | for_each_possible_cpu(i) { |
| 7773 | rq = cpu_rq(i); |
| 7774 | cfs_rq = tg->cfs_rq[i]; |
| 7775 | list_add_rcu(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
| 7776 | } |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7777 | done: |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 7778 | unlock_task_group_list(); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7779 | return 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7780 | } |
| 7781 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7782 | unsigned long sched_group_shares(struct task_group *tg) |
| 7783 | { |
| 7784 | return tg->shares; |
| 7785 | } |
| 7786 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7787 | /* |
| 7788 | * Ensure the total rt_ratio <= sysctl_sched_rt_ratio |
| 7789 | */ |
| 7790 | int sched_group_set_rt_ratio(struct task_group *tg, unsigned long rt_ratio) |
| 7791 | { |
| 7792 | struct task_group *tgi; |
| 7793 | unsigned long total = 0; |
| 7794 | |
| 7795 | rcu_read_lock(); |
| 7796 | list_for_each_entry_rcu(tgi, &task_groups, list) |
| 7797 | total += tgi->rt_ratio; |
| 7798 | rcu_read_unlock(); |
| 7799 | |
| 7800 | if (total + rt_ratio - tg->rt_ratio > sysctl_sched_rt_ratio) |
| 7801 | return -EINVAL; |
| 7802 | |
| 7803 | tg->rt_ratio = rt_ratio; |
| 7804 | return 0; |
| 7805 | } |
| 7806 | |
| 7807 | unsigned long sched_group_rt_ratio(struct task_group *tg) |
| 7808 | { |
| 7809 | return tg->rt_ratio; |
| 7810 | } |
| 7811 | |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 7812 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7813 | |
| 7814 | #ifdef CONFIG_FAIR_CGROUP_SCHED |
| 7815 | |
| 7816 | /* return corresponding task_group object of a cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7817 | static inline struct task_group *cgroup_tg(struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7818 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7819 | return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id), |
| 7820 | struct task_group, css); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7821 | } |
| 7822 | |
| 7823 | static struct cgroup_subsys_state * |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7824 | cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7825 | { |
| 7826 | struct task_group *tg; |
| 7827 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7828 | if (!cgrp->parent) { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7829 | /* This is early initialization for the top cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7830 | init_task_group.css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7831 | return &init_task_group.css; |
| 7832 | } |
| 7833 | |
| 7834 | /* we support only 1-level deep hierarchical scheduler atm */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7835 | if (cgrp->parent->parent) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7836 | return ERR_PTR(-EINVAL); |
| 7837 | |
| 7838 | tg = sched_create_group(); |
| 7839 | if (IS_ERR(tg)) |
| 7840 | return ERR_PTR(-ENOMEM); |
| 7841 | |
| 7842 | /* Bind the cgroup to task_group object we just created */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7843 | tg->css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7844 | |
| 7845 | return &tg->css; |
| 7846 | } |
| 7847 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7848 | static void |
| 7849 | cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7850 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7851 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7852 | |
| 7853 | sched_destroy_group(tg); |
| 7854 | } |
| 7855 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7856 | static int |
| 7857 | cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
| 7858 | struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7859 | { |
| 7860 | /* We don't support RT-tasks being in separate groups */ |
| 7861 | if (tsk->sched_class != &fair_sched_class) |
| 7862 | return -EINVAL; |
| 7863 | |
| 7864 | return 0; |
| 7865 | } |
| 7866 | |
| 7867 | static void |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7868 | cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7869 | struct cgroup *old_cont, struct task_struct *tsk) |
| 7870 | { |
| 7871 | sched_move_task(tsk); |
| 7872 | } |
| 7873 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7874 | static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 7875 | u64 shareval) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7876 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7877 | return sched_group_set_shares(cgroup_tg(cgrp), shareval); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7878 | } |
| 7879 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7880 | static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7881 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 7882 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7883 | |
| 7884 | return (u64) tg->shares; |
| 7885 | } |
| 7886 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7887 | static int cpu_rt_ratio_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 7888 | u64 rt_ratio_val) |
| 7889 | { |
| 7890 | return sched_group_set_rt_ratio(cgroup_tg(cgrp), rt_ratio_val); |
| 7891 | } |
| 7892 | |
| 7893 | static u64 cpu_rt_ratio_read_uint(struct cgroup *cgrp, struct cftype *cft) |
| 7894 | { |
| 7895 | struct task_group *tg = cgroup_tg(cgrp); |
| 7896 | |
| 7897 | return (u64) tg->rt_ratio; |
| 7898 | } |
| 7899 | |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 7900 | static struct cftype cpu_files[] = { |
| 7901 | { |
| 7902 | .name = "shares", |
| 7903 | .read_uint = cpu_shares_read_uint, |
| 7904 | .write_uint = cpu_shares_write_uint, |
| 7905 | }, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7906 | { |
| 7907 | .name = "rt_ratio", |
| 7908 | .read_uint = cpu_rt_ratio_read_uint, |
| 7909 | .write_uint = cpu_rt_ratio_write_uint, |
| 7910 | }, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7911 | }; |
| 7912 | |
| 7913 | static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 7914 | { |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 7915 | return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7916 | } |
| 7917 | |
| 7918 | struct cgroup_subsys cpu_cgroup_subsys = { |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 7919 | .name = "cpu", |
| 7920 | .create = cpu_cgroup_create, |
| 7921 | .destroy = cpu_cgroup_destroy, |
| 7922 | .can_attach = cpu_cgroup_can_attach, |
| 7923 | .attach = cpu_cgroup_attach, |
| 7924 | .populate = cpu_cgroup_populate, |
| 7925 | .subsys_id = cpu_cgroup_subsys_id, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 7926 | .early_init = 1, |
| 7927 | }; |
| 7928 | |
| 7929 | #endif /* CONFIG_FAIR_CGROUP_SCHED */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 7930 | |
| 7931 | #ifdef CONFIG_CGROUP_CPUACCT |
| 7932 | |
| 7933 | /* |
| 7934 | * CPU accounting code for task groups. |
| 7935 | * |
| 7936 | * Based on the work by Paul Menage (menage@google.com) and Balbir Singh |
| 7937 | * (balbir@in.ibm.com). |
| 7938 | */ |
| 7939 | |
| 7940 | /* track cpu usage of a group of tasks */ |
| 7941 | struct cpuacct { |
| 7942 | struct cgroup_subsys_state css; |
| 7943 | /* cpuusage holds pointer to a u64-type object on every cpu */ |
| 7944 | u64 *cpuusage; |
| 7945 | }; |
| 7946 | |
| 7947 | struct cgroup_subsys cpuacct_subsys; |
| 7948 | |
| 7949 | /* return cpu accounting group corresponding to this container */ |
| 7950 | static inline struct cpuacct *cgroup_ca(struct cgroup *cont) |
| 7951 | { |
| 7952 | return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id), |
| 7953 | struct cpuacct, css); |
| 7954 | } |
| 7955 | |
| 7956 | /* return cpu accounting group to which this task belongs */ |
| 7957 | static inline struct cpuacct *task_ca(struct task_struct *tsk) |
| 7958 | { |
| 7959 | return container_of(task_subsys_state(tsk, cpuacct_subsys_id), |
| 7960 | struct cpuacct, css); |
| 7961 | } |
| 7962 | |
| 7963 | /* create a new cpu accounting group */ |
| 7964 | static struct cgroup_subsys_state *cpuacct_create( |
| 7965 | struct cgroup_subsys *ss, struct cgroup *cont) |
| 7966 | { |
| 7967 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); |
| 7968 | |
| 7969 | if (!ca) |
| 7970 | return ERR_PTR(-ENOMEM); |
| 7971 | |
| 7972 | ca->cpuusage = alloc_percpu(u64); |
| 7973 | if (!ca->cpuusage) { |
| 7974 | kfree(ca); |
| 7975 | return ERR_PTR(-ENOMEM); |
| 7976 | } |
| 7977 | |
| 7978 | return &ca->css; |
| 7979 | } |
| 7980 | |
| 7981 | /* destroy an existing cpu accounting group */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7982 | static void |
| 7983 | cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 7984 | { |
| 7985 | struct cpuacct *ca = cgroup_ca(cont); |
| 7986 | |
| 7987 | free_percpu(ca->cpuusage); |
| 7988 | kfree(ca); |
| 7989 | } |
| 7990 | |
| 7991 | /* return total cpu usage (in nanoseconds) of a group */ |
| 7992 | static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft) |
| 7993 | { |
| 7994 | struct cpuacct *ca = cgroup_ca(cont); |
| 7995 | u64 totalcpuusage = 0; |
| 7996 | int i; |
| 7997 | |
| 7998 | for_each_possible_cpu(i) { |
| 7999 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8000 | |
| 8001 | /* |
| 8002 | * Take rq->lock to make 64-bit addition safe on 32-bit |
| 8003 | * platforms. |
| 8004 | */ |
| 8005 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8006 | totalcpuusage += *cpuusage; |
| 8007 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8008 | } |
| 8009 | |
| 8010 | return totalcpuusage; |
| 8011 | } |
| 8012 | |
| 8013 | static struct cftype files[] = { |
| 8014 | { |
| 8015 | .name = "usage", |
| 8016 | .read_uint = cpuusage_read, |
| 8017 | }, |
| 8018 | }; |
| 8019 | |
| 8020 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 8021 | { |
| 8022 | return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files)); |
| 8023 | } |
| 8024 | |
| 8025 | /* |
| 8026 | * charge this task's execution time to its accounting group. |
| 8027 | * |
| 8028 | * called with rq->lock held. |
| 8029 | */ |
| 8030 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime) |
| 8031 | { |
| 8032 | struct cpuacct *ca; |
| 8033 | |
| 8034 | if (!cpuacct_subsys.active) |
| 8035 | return; |
| 8036 | |
| 8037 | ca = task_ca(tsk); |
| 8038 | if (ca) { |
| 8039 | u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk)); |
| 8040 | |
| 8041 | *cpuusage += cputime; |
| 8042 | } |
| 8043 | } |
| 8044 | |
| 8045 | struct cgroup_subsys cpuacct_subsys = { |
| 8046 | .name = "cpuacct", |
| 8047 | .create = cpuacct_create, |
| 8048 | .destroy = cpuacct_destroy, |
| 8049 | .populate = cpuacct_populate, |
| 8050 | .subsys_id = cpuacct_subsys_id, |
| 8051 | }; |
| 8052 | #endif /* CONFIG_CGROUP_CPUACCT */ |