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 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 158 | #ifdef CONFIG_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 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 { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 168 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 169 | struct cgroup_subsys_state css; |
| 170 | #endif |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 171 | |
| 172 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 173 | /* schedulable entities of this group on each cpu */ |
| 174 | struct sched_entity **se; |
| 175 | /* runqueue "owned" by this group on each cpu */ |
| 176 | struct cfs_rq **cfs_rq; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 177 | |
| 178 | /* |
| 179 | * shares assigned to a task group governs how much of cpu bandwidth |
| 180 | * is allocated to the group. The more shares a group has, the more is |
| 181 | * the cpu bandwidth allocated to it. |
| 182 | * |
| 183 | * For ex, lets say that there are three task groups, A, B and C which |
| 184 | * have been assigned shares 1000, 2000 and 3000 respectively. Then, |
| 185 | * cpu bandwidth allocated by the scheduler to task groups A, B and C |
| 186 | * should be: |
| 187 | * |
| 188 | * Bw(A) = 1000/(1000+2000+3000) * 100 = 16.66% |
| 189 | * Bw(B) = 2000/(1000+2000+3000) * 100 = 33.33% |
Ingo Molnar | 03319ec | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 190 | * Bw(C) = 3000/(1000+2000+3000) * 100 = 50% |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 191 | * |
| 192 | * The weight assigned to a task group's schedulable entities on every |
| 193 | * cpu (task_group.se[a_cpu]->load.weight) is derived from the task |
| 194 | * group's shares. For ex: lets say that task group A has been |
| 195 | * assigned shares of 1000 and there are two CPUs in a system. Then, |
| 196 | * |
| 197 | * tg_A->se[0]->load.weight = tg_A->se[1]->load.weight = 1000; |
| 198 | * |
| 199 | * 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] | 200 | * entity have the same weight on all CPUs. If the group |
| 201 | * has 2 of its tasks on CPU0 and 1 task on CPU1, then a |
| 202 | * better distribution of weight could be: |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 203 | * |
| 204 | * tg_A->se[0]->load.weight = 2/3 * 2000 = 1333 |
| 205 | * tg_A->se[1]->load.weight = 1/2 * 2000 = 667 |
| 206 | * |
| 207 | * rebalance_shares() is responsible for distributing the shares of a |
| 208 | * task groups like this among the group's schedulable entities across |
| 209 | * cpus. |
| 210 | * |
| 211 | */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 212 | unsigned long shares; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 213 | #endif |
| 214 | |
| 215 | #ifdef CONFIG_RT_GROUP_SCHED |
| 216 | struct sched_rt_entity **rt_se; |
| 217 | struct rt_rq **rt_rq; |
| 218 | |
| 219 | u64 rt_runtime; |
| 220 | #endif |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 221 | |
Srivatsa Vaddagiri | ae8393e | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 222 | struct rcu_head rcu; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 223 | struct list_head list; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 224 | }; |
| 225 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 226 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 227 | /* Default task group's sched entity on each cpu */ |
| 228 | static DEFINE_PER_CPU(struct sched_entity, init_sched_entity); |
| 229 | /* Default task group's cfs_rq on each cpu */ |
| 230 | static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp; |
| 231 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 232 | static struct sched_entity *init_sched_entity_p[NR_CPUS]; |
| 233 | static struct cfs_rq *init_cfs_rq_p[NR_CPUS]; |
| 234 | #endif |
| 235 | |
| 236 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 237 | static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity); |
| 238 | static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp; |
| 239 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 240 | static struct sched_rt_entity *init_sched_rt_entity_p[NR_CPUS]; |
| 241 | static struct rt_rq *init_rt_rq_p[NR_CPUS]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 242 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 243 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 244 | /* task_group_lock serializes add/remove of task groups and also changes to |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 245 | * a task group's cpu shares. |
| 246 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 247 | static DEFINE_SPINLOCK(task_group_lock); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 248 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 249 | /* doms_cur_mutex serializes access to doms_cur[] array */ |
| 250 | static DEFINE_MUTEX(doms_cur_mutex); |
| 251 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 252 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 253 | #ifdef CONFIG_SMP |
| 254 | /* kernel thread that runs rebalance_shares() periodically */ |
| 255 | static struct task_struct *lb_monitor_task; |
| 256 | static int load_balance_monitor(void *unused); |
| 257 | #endif |
| 258 | |
| 259 | static void set_se_shares(struct sched_entity *se, unsigned long shares); |
| 260 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 261 | #ifdef CONFIG_USER_SCHED |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 262 | # define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD) |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 263 | #else |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 264 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 265 | #endif |
| 266 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 267 | #define MIN_GROUP_SHARES 2 |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 268 | |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 269 | static int init_task_group_load = INIT_TASK_GROUP_LOAD; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 270 | #endif |
| 271 | |
| 272 | /* Default task group. |
| 273 | * Every task in system belong to this group at bootup. |
| 274 | */ |
| 275 | struct task_group init_task_group = { |
| 276 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 277 | .se = init_sched_entity_p, |
| 278 | .cfs_rq = init_cfs_rq_p, |
| 279 | #endif |
| 280 | |
| 281 | #ifdef CONFIG_RT_GROUP_SCHED |
| 282 | .rt_se = init_sched_rt_entity_p, |
| 283 | .rt_rq = init_rt_rq_p, |
| 284 | #endif |
| 285 | }; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 286 | |
| 287 | /* return group to which a task belongs */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 288 | static inline struct task_group *task_group(struct task_struct *p) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 289 | { |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 290 | struct task_group *tg; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 291 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 292 | #ifdef CONFIG_USER_SCHED |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 293 | tg = p->user->tg; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 294 | #elif defined(CONFIG_CGROUP_SCHED) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 295 | tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id), |
| 296 | struct task_group, css); |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 297 | #else |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 298 | tg = &init_task_group; |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 299 | #endif |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 300 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | /* 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] | 304 | 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] | 305 | { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 306 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 307 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 308 | p->se.parent = task_group(p)->se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 309 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 310 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 311 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 312 | p->rt.rt_rq = task_group(p)->rt_rq[cpu]; |
| 313 | p->rt.parent = task_group(p)->rt_se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 314 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 315 | } |
| 316 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 317 | static inline void lock_doms_cur(void) |
| 318 | { |
| 319 | mutex_lock(&doms_cur_mutex); |
| 320 | } |
| 321 | |
| 322 | static inline void unlock_doms_cur(void) |
| 323 | { |
| 324 | mutex_unlock(&doms_cur_mutex); |
| 325 | } |
| 326 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 327 | #else |
| 328 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 329 | static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { } |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 330 | static inline void lock_doms_cur(void) { } |
| 331 | static inline void unlock_doms_cur(void) { } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 332 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 333 | #endif /* CONFIG_GROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 334 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 335 | /* CFS-related fields in a runqueue */ |
| 336 | struct cfs_rq { |
| 337 | struct load_weight load; |
| 338 | unsigned long nr_running; |
| 339 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 340 | u64 exec_clock; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 341 | u64 min_vruntime; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 342 | |
| 343 | struct rb_root tasks_timeline; |
| 344 | struct rb_node *rb_leftmost; |
| 345 | struct rb_node *rb_load_balance_curr; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 346 | /* 'curr' points to currently running entity on this cfs_rq. |
| 347 | * It is set to NULL otherwise (i.e when none are currently running). |
| 348 | */ |
| 349 | struct sched_entity *curr; |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 350 | |
| 351 | unsigned long nr_spread_over; |
| 352 | |
Ingo Molnar | 62160e3 | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 353 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 354 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
| 355 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 356 | /* |
| 357 | * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 358 | * a hierarchy). Non-leaf lrqs hold other higher schedulable entities |
| 359 | * (like users, containers etc.) |
| 360 | * |
| 361 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
| 362 | * list is used during load balance. |
| 363 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 364 | struct list_head leaf_cfs_rq_list; |
| 365 | struct task_group *tg; /* group that "owns" this runqueue */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 366 | #endif |
| 367 | }; |
| 368 | |
| 369 | /* Real-Time classes' related field in a runqueue: */ |
| 370 | struct rt_rq { |
| 371 | struct rt_prio_array active; |
Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 372 | unsigned long rt_nr_running; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 373 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 374 | int highest_prio; /* highest queued rt task prio */ |
| 375 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 376 | #ifdef CONFIG_SMP |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 377 | unsigned long rt_nr_migratory; |
Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 378 | int overloaded; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 379 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 380 | int rt_throttled; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 381 | u64 rt_time; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 382 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 383 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 384 | unsigned long rt_nr_boosted; |
| 385 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 386 | struct rq *rq; |
| 387 | struct list_head leaf_rt_rq_list; |
| 388 | struct task_group *tg; |
| 389 | struct sched_rt_entity *rt_se; |
| 390 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 391 | }; |
| 392 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 393 | #ifdef CONFIG_SMP |
| 394 | |
| 395 | /* |
| 396 | * 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] | 397 | * variables. Each exclusive cpuset essentially defines an island domain by |
| 398 | * fully partitioning the member cpus from any other cpuset. Whenever a new |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 399 | * exclusive cpuset is created, we also create and attach a new root-domain |
| 400 | * object. |
| 401 | * |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 402 | */ |
| 403 | struct root_domain { |
| 404 | atomic_t refcount; |
| 405 | cpumask_t span; |
| 406 | cpumask_t online; |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 407 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 408 | /* |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 409 | * The "RT overload" flag: it gets set if a CPU has more than |
| 410 | * one runnable RT task. |
| 411 | */ |
| 412 | cpumask_t rto_mask; |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 413 | atomic_t rto_count; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 414 | }; |
| 415 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 416 | /* |
| 417 | * By default the system creates a single root-domain with all cpus as |
| 418 | * members (mimicking the global state we have today). |
| 419 | */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 420 | static struct root_domain def_root_domain; |
| 421 | |
| 422 | #endif |
| 423 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 424 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | * This is the main, per-CPU runqueue data structure. |
| 426 | * |
| 427 | * Locking rule: those places that want to lock multiple runqueues |
| 428 | * (such as the load balancing or the thread migration code), lock |
| 429 | * acquire operations must be ordered by ascending &runqueue. |
| 430 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 431 | struct rq { |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 432 | /* runqueue lock: */ |
| 433 | spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /* |
| 436 | * nr_running and cpu_load should be in the same cacheline because |
| 437 | * remote CPUs use both these fields when doing load calculation. |
| 438 | */ |
| 439 | unsigned long nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 440 | #define CPU_LOAD_IDX_MAX 5 |
| 441 | unsigned long cpu_load[CPU_LOAD_IDX_MAX]; |
Siddha, Suresh B | bdecea3 | 2007-05-08 00:32:48 -0700 | [diff] [blame] | 442 | unsigned char idle_at_tick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 443 | #ifdef CONFIG_NO_HZ |
| 444 | unsigned char in_nohz_recently; |
| 445 | #endif |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 446 | /* capture load from *all* tasks on this cpu: */ |
| 447 | struct load_weight load; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 448 | unsigned long nr_load_updates; |
| 449 | u64 nr_switches; |
| 450 | |
| 451 | struct cfs_rq cfs; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 452 | struct rt_rq rt; |
| 453 | u64 rt_period_expire; |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 454 | int rt_throttled; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 455 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 456 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 457 | /* list of leaf cfs_rq on this cpu: */ |
| 458 | struct list_head leaf_cfs_rq_list; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 459 | #endif |
| 460 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 461 | struct list_head leaf_rt_rq_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | * This is part of a global counter where only the total sum |
| 466 | * over all CPUs matters. A task can increase this counter on |
| 467 | * one CPU and if it got migrated afterwards it may decrease |
| 468 | * it on another CPU. Always updated under the runqueue lock: |
| 469 | */ |
| 470 | unsigned long nr_uninterruptible; |
| 471 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 472 | struct task_struct *curr, *idle; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 473 | unsigned long next_balance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | struct mm_struct *prev_mm; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 475 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 476 | u64 clock, prev_clock_raw; |
| 477 | s64 clock_max_delta; |
| 478 | |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 479 | unsigned int clock_warps, clock_overflows, clock_underflows; |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 480 | u64 idle_clock; |
| 481 | unsigned int clock_deep_idle_events; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 482 | u64 tick_timestamp; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 483 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 484 | atomic_t nr_iowait; |
| 485 | |
| 486 | #ifdef CONFIG_SMP |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 487 | struct root_domain *rd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | struct sched_domain *sd; |
| 489 | |
| 490 | /* For active balancing */ |
| 491 | int active_balance; |
| 492 | int push_cpu; |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 493 | /* cpu of this runqueue: */ |
| 494 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 496 | struct task_struct *migration_thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | struct list_head migration_queue; |
| 498 | #endif |
| 499 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 500 | #ifdef CONFIG_SCHED_HRTICK |
| 501 | unsigned long hrtick_flags; |
| 502 | ktime_t hrtick_expire; |
| 503 | struct hrtimer hrtick_timer; |
| 504 | #endif |
| 505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | #ifdef CONFIG_SCHEDSTATS |
| 507 | /* latency stats */ |
| 508 | struct sched_info rq_sched_info; |
| 509 | |
| 510 | /* sys_sched_yield() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 511 | unsigned int yld_exp_empty; |
| 512 | unsigned int yld_act_empty; |
| 513 | unsigned int yld_both_empty; |
| 514 | unsigned int yld_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | |
| 516 | /* schedule() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 517 | unsigned int sched_switch; |
| 518 | unsigned int sched_count; |
| 519 | unsigned int sched_goidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | /* try_to_wake_up() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 522 | unsigned int ttwu_count; |
| 523 | unsigned int ttwu_local; |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 524 | |
| 525 | /* BKL stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 526 | unsigned int bkl_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | #endif |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 528 | struct lock_class_key rq_lock_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | }; |
| 530 | |
Fenghua Yu | f34e3b6 | 2007-07-19 01:48:13 -0700 | [diff] [blame] | 531 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 533 | static inline void check_preempt_curr(struct rq *rq, struct task_struct *p) |
| 534 | { |
| 535 | rq->curr->sched_class->check_preempt_curr(rq, p); |
| 536 | } |
| 537 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 538 | static inline int cpu_of(struct rq *rq) |
| 539 | { |
| 540 | #ifdef CONFIG_SMP |
| 541 | return rq->cpu; |
| 542 | #else |
| 543 | return 0; |
| 544 | #endif |
| 545 | } |
| 546 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 547 | /* |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 548 | * Update the per-runqueue clock, as finegrained as the platform can give |
| 549 | * us, but without assuming monotonicity, etc.: |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 550 | */ |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 551 | static void __update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 552 | { |
| 553 | u64 prev_raw = rq->prev_clock_raw; |
| 554 | u64 now = sched_clock(); |
| 555 | s64 delta = now - prev_raw; |
| 556 | u64 clock = rq->clock; |
| 557 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 558 | #ifdef CONFIG_SCHED_DEBUG |
| 559 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 560 | #endif |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 561 | /* |
| 562 | * Protect against sched_clock() occasionally going backwards: |
| 563 | */ |
| 564 | if (unlikely(delta < 0)) { |
| 565 | clock++; |
| 566 | rq->clock_warps++; |
| 567 | } else { |
| 568 | /* |
| 569 | * Catch too large forward jumps too: |
| 570 | */ |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 571 | if (unlikely(clock + delta > rq->tick_timestamp + TICK_NSEC)) { |
| 572 | if (clock < rq->tick_timestamp + TICK_NSEC) |
| 573 | clock = rq->tick_timestamp + TICK_NSEC; |
| 574 | else |
| 575 | clock++; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 576 | rq->clock_overflows++; |
| 577 | } else { |
| 578 | if (unlikely(delta > rq->clock_max_delta)) |
| 579 | rq->clock_max_delta = delta; |
| 580 | clock += delta; |
| 581 | } |
| 582 | } |
| 583 | |
| 584 | rq->prev_clock_raw = now; |
| 585 | rq->clock = clock; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 586 | } |
| 587 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 588 | static void update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 589 | { |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 590 | if (likely(smp_processor_id() == cpu_of(rq))) |
| 591 | __update_rq_clock(rq); |
| 592 | } |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 593 | |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 594 | /* |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 595 | * 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] | 596 | * See detach_destroy_domains: synchronize_sched for details. |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 597 | * |
| 598 | * The domain tree of any CPU may only be accessed from within |
| 599 | * preempt-disabled sections. |
| 600 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 601 | #define for_each_domain(cpu, __sd) \ |
| 602 | for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu))) |
| 605 | #define this_rq() (&__get_cpu_var(runqueues)) |
| 606 | #define task_rq(p) cpu_rq(task_cpu(p)) |
| 607 | #define cpu_curr(cpu) (cpu_rq(cpu)->curr) |
| 608 | |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 609 | unsigned long rt_needs_cpu(int cpu) |
| 610 | { |
| 611 | struct rq *rq = cpu_rq(cpu); |
| 612 | u64 delta; |
| 613 | |
| 614 | if (!rq->rt_throttled) |
| 615 | return 0; |
| 616 | |
| 617 | if (rq->clock > rq->rt_period_expire) |
| 618 | return 1; |
| 619 | |
| 620 | delta = rq->rt_period_expire - rq->clock; |
| 621 | do_div(delta, NSEC_PER_SEC / HZ); |
| 622 | |
| 623 | return (unsigned long)delta; |
| 624 | } |
| 625 | |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 626 | /* |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 627 | * Tunables that become constants when CONFIG_SCHED_DEBUG is off: |
| 628 | */ |
| 629 | #ifdef CONFIG_SCHED_DEBUG |
| 630 | # define const_debug __read_mostly |
| 631 | #else |
| 632 | # define const_debug static const |
| 633 | #endif |
| 634 | |
| 635 | /* |
| 636 | * Debugging: various feature bits |
| 637 | */ |
| 638 | enum { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 639 | SCHED_FEAT_NEW_FAIR_SLEEPERS = 1, |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 640 | SCHED_FEAT_WAKEUP_PREEMPT = 2, |
| 641 | SCHED_FEAT_START_DEBIT = 4, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 642 | SCHED_FEAT_TREE_AVG = 8, |
| 643 | SCHED_FEAT_APPROX_AVG = 16, |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 644 | SCHED_FEAT_HRTICK = 32, |
| 645 | SCHED_FEAT_DOUBLE_TICK = 64, |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 646 | }; |
| 647 | |
| 648 | const_debug unsigned int sysctl_sched_features = |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 649 | SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 | |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 650 | SCHED_FEAT_WAKEUP_PREEMPT * 1 | |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 651 | SCHED_FEAT_START_DEBIT * 1 | |
| 652 | SCHED_FEAT_TREE_AVG * 0 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 653 | SCHED_FEAT_APPROX_AVG * 0 | |
| 654 | SCHED_FEAT_HRTICK * 1 | |
| 655 | SCHED_FEAT_DOUBLE_TICK * 0; |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 656 | |
| 657 | #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) |
| 658 | |
| 659 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 660 | * Number of tasks to iterate in a single balance run. |
| 661 | * Limited because this is done with IRQs disabled. |
| 662 | */ |
| 663 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
| 664 | |
| 665 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 666 | * period over which we measure -rt task cpu usage in us. |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 667 | * default: 1s |
| 668 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 669 | unsigned int sysctl_sched_rt_period = 1000000; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 670 | |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 671 | static __read_mostly int scheduler_running; |
| 672 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 673 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 674 | * part of the period that we allow rt tasks to run in us. |
| 675 | * default: 0.95s |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 676 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 677 | int sysctl_sched_rt_runtime = 950000; |
| 678 | |
| 679 | /* |
| 680 | * single value that denotes runtime == period, ie unlimited time. |
| 681 | */ |
| 682 | #define RUNTIME_INF ((u64)~0ULL) |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 683 | |
| 684 | /* |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 685 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
| 686 | * clock constructed from sched_clock(): |
| 687 | */ |
| 688 | unsigned long long cpu_clock(int cpu) |
| 689 | { |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 690 | unsigned long long now; |
| 691 | unsigned long flags; |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 692 | struct rq *rq; |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 693 | |
Ingo Molnar | 8ced5f6 | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 694 | /* |
| 695 | * Only call sched_clock() if the scheduler has already been |
| 696 | * initialized (some code might call cpu_clock() very early): |
| 697 | */ |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 698 | if (unlikely(!scheduler_running)) |
| 699 | return 0; |
| 700 | |
| 701 | local_irq_save(flags); |
| 702 | rq = cpu_rq(cpu); |
| 703 | update_rq_clock(rq); |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 704 | now = rq->clock; |
Ingo Molnar | 2cd4d0e | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 705 | local_irq_restore(flags); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 706 | |
| 707 | return now; |
| 708 | } |
Paul E. McKenney | a58f6f2 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 709 | EXPORT_SYMBOL_GPL(cpu_clock); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | #ifndef prepare_arch_switch |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 712 | # define prepare_arch_switch(next) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 714 | #ifndef finish_arch_switch |
| 715 | # define finish_arch_switch(prev) do { } while (0) |
| 716 | #endif |
| 717 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 718 | static inline int task_current(struct rq *rq, struct task_struct *p) |
| 719 | { |
| 720 | return rq->curr == p; |
| 721 | } |
| 722 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 723 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 724 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 725 | { |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 726 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 729 | 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] | 730 | { |
| 731 | } |
| 732 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 733 | 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] | 734 | { |
Ingo Molnar | da04c03 | 2005-09-13 11:17:59 +0200 | [diff] [blame] | 735 | #ifdef CONFIG_DEBUG_SPINLOCK |
| 736 | /* this is a valid case when another task releases the spinlock */ |
| 737 | rq->lock.owner = current; |
| 738 | #endif |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 739 | /* |
| 740 | * If we are tracking spinlock dependencies then we have to |
| 741 | * fix up the runqueue lock - which gets 'carried over' from |
| 742 | * prev into current: |
| 743 | */ |
| 744 | spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_); |
| 745 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 746 | spin_unlock_irq(&rq->lock); |
| 747 | } |
| 748 | |
| 749 | #else /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 750 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 751 | { |
| 752 | #ifdef CONFIG_SMP |
| 753 | return p->oncpu; |
| 754 | #else |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 755 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 756 | #endif |
| 757 | } |
| 758 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 759 | 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] | 760 | { |
| 761 | #ifdef CONFIG_SMP |
| 762 | /* |
| 763 | * We can optimise this out completely for !SMP, because the |
| 764 | * SMP rebalancing from interrupt is the only thing that cares |
| 765 | * here. |
| 766 | */ |
| 767 | next->oncpu = 1; |
| 768 | #endif |
| 769 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 770 | spin_unlock_irq(&rq->lock); |
| 771 | #else |
| 772 | spin_unlock(&rq->lock); |
| 773 | #endif |
| 774 | } |
| 775 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 776 | 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] | 777 | { |
| 778 | #ifdef CONFIG_SMP |
| 779 | /* |
| 780 | * After ->oncpu is cleared, the task can be moved to a different CPU. |
| 781 | * We must ensure this doesn't happen until the switch is completely |
| 782 | * finished. |
| 783 | */ |
| 784 | smp_wmb(); |
| 785 | prev->oncpu = 0; |
| 786 | #endif |
| 787 | #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 788 | local_irq_enable(); |
| 789 | #endif |
| 790 | } |
| 791 | #endif /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | |
| 793 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 794 | * __task_rq_lock - lock the runqueue a given task resides on. |
| 795 | * Must be called interrupts disabled. |
| 796 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 797 | static inline struct rq *__task_rq_lock(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 798 | __acquires(rq->lock) |
| 799 | { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 800 | for (;;) { |
| 801 | struct rq *rq = task_rq(p); |
| 802 | spin_lock(&rq->lock); |
| 803 | if (likely(rq == task_rq(p))) |
| 804 | return rq; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 805 | spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 806 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 807 | } |
| 808 | |
| 809 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | * 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] | 811 | * interrupts. Note the ordering: we can safely lookup the task_rq without |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | * explicitly disabling preemption. |
| 813 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 814 | 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] | 815 | __acquires(rq->lock) |
| 816 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 817 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 819 | for (;;) { |
| 820 | local_irq_save(*flags); |
| 821 | rq = task_rq(p); |
| 822 | spin_lock(&rq->lock); |
| 823 | if (likely(rq == task_rq(p))) |
| 824 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | spin_unlock_irqrestore(&rq->lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | } |
| 828 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 829 | static void __task_rq_unlock(struct rq *rq) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 830 | __releases(rq->lock) |
| 831 | { |
| 832 | spin_unlock(&rq->lock); |
| 833 | } |
| 834 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 835 | static inline void task_rq_unlock(struct rq *rq, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | __releases(rq->lock) |
| 837 | { |
| 838 | spin_unlock_irqrestore(&rq->lock, *flags); |
| 839 | } |
| 840 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | /* |
Robert P. J. Day | cc2a73b | 2006-12-10 02:20:00 -0800 | [diff] [blame] | 842 | * this_rq_lock - lock this runqueue and disable interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 844 | static struct rq *this_rq_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | __acquires(rq->lock) |
| 846 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 847 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
| 849 | local_irq_disable(); |
| 850 | rq = this_rq(); |
| 851 | spin_lock(&rq->lock); |
| 852 | |
| 853 | return rq; |
| 854 | } |
| 855 | |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 856 | /* |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 857 | * We are going deep-idle (irqs are disabled): |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 858 | */ |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 859 | void sched_clock_idle_sleep_event(void) |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 860 | { |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 861 | struct rq *rq = cpu_rq(smp_processor_id()); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 862 | |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 863 | spin_lock(&rq->lock); |
| 864 | __update_rq_clock(rq); |
| 865 | spin_unlock(&rq->lock); |
| 866 | rq->clock_deep_idle_events++; |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 867 | } |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 868 | EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event); |
| 869 | |
| 870 | /* |
| 871 | * We just idled delta nanoseconds (called with irqs disabled): |
| 872 | */ |
| 873 | void sched_clock_idle_wakeup_event(u64 delta_ns) |
| 874 | { |
| 875 | struct rq *rq = cpu_rq(smp_processor_id()); |
| 876 | u64 now = sched_clock(); |
| 877 | |
| 878 | rq->idle_clock += delta_ns; |
| 879 | /* |
| 880 | * Override the previous timestamp and ignore all |
| 881 | * sched_clock() deltas that occured while we idled, |
| 882 | * and use the PM-provided delta_ns to advance the |
| 883 | * rq clock: |
| 884 | */ |
| 885 | spin_lock(&rq->lock); |
| 886 | rq->prev_clock_raw = now; |
| 887 | rq->clock += delta_ns; |
| 888 | spin_unlock(&rq->lock); |
Guillaume Chazarain | 782daee | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 889 | touch_softlockup_watchdog(); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 890 | } |
| 891 | EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 892 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 893 | static void __resched_task(struct task_struct *p, int tif_bit); |
| 894 | |
| 895 | static inline void resched_task(struct task_struct *p) |
| 896 | { |
| 897 | __resched_task(p, TIF_NEED_RESCHED); |
| 898 | } |
| 899 | |
| 900 | #ifdef CONFIG_SCHED_HRTICK |
| 901 | /* |
| 902 | * Use HR-timers to deliver accurate preemption points. |
| 903 | * |
| 904 | * Its all a bit involved since we cannot program an hrt while holding the |
| 905 | * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a |
| 906 | * reschedule event. |
| 907 | * |
| 908 | * When we get rescheduled we reprogram the hrtick_timer outside of the |
| 909 | * rq->lock. |
| 910 | */ |
| 911 | static inline void resched_hrt(struct task_struct *p) |
| 912 | { |
| 913 | __resched_task(p, TIF_HRTICK_RESCHED); |
| 914 | } |
| 915 | |
| 916 | static inline void resched_rq(struct rq *rq) |
| 917 | { |
| 918 | unsigned long flags; |
| 919 | |
| 920 | spin_lock_irqsave(&rq->lock, flags); |
| 921 | resched_task(rq->curr); |
| 922 | spin_unlock_irqrestore(&rq->lock, flags); |
| 923 | } |
| 924 | |
| 925 | enum { |
| 926 | HRTICK_SET, /* re-programm hrtick_timer */ |
| 927 | HRTICK_RESET, /* not a new slice */ |
| 928 | }; |
| 929 | |
| 930 | /* |
| 931 | * Use hrtick when: |
| 932 | * - enabled by features |
| 933 | * - hrtimer is actually high res |
| 934 | */ |
| 935 | static inline int hrtick_enabled(struct rq *rq) |
| 936 | { |
| 937 | if (!sched_feat(HRTICK)) |
| 938 | return 0; |
| 939 | return hrtimer_is_hres_active(&rq->hrtick_timer); |
| 940 | } |
| 941 | |
| 942 | /* |
| 943 | * Called to set the hrtick timer state. |
| 944 | * |
| 945 | * called with rq->lock held and irqs disabled |
| 946 | */ |
| 947 | static void hrtick_start(struct rq *rq, u64 delay, int reset) |
| 948 | { |
| 949 | assert_spin_locked(&rq->lock); |
| 950 | |
| 951 | /* |
| 952 | * preempt at: now + delay |
| 953 | */ |
| 954 | rq->hrtick_expire = |
| 955 | ktime_add_ns(rq->hrtick_timer.base->get_time(), delay); |
| 956 | /* |
| 957 | * indicate we need to program the timer |
| 958 | */ |
| 959 | __set_bit(HRTICK_SET, &rq->hrtick_flags); |
| 960 | if (reset) |
| 961 | __set_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 962 | |
| 963 | /* |
| 964 | * New slices are called from the schedule path and don't need a |
| 965 | * forced reschedule. |
| 966 | */ |
| 967 | if (reset) |
| 968 | resched_hrt(rq->curr); |
| 969 | } |
| 970 | |
| 971 | static void hrtick_clear(struct rq *rq) |
| 972 | { |
| 973 | if (hrtimer_active(&rq->hrtick_timer)) |
| 974 | hrtimer_cancel(&rq->hrtick_timer); |
| 975 | } |
| 976 | |
| 977 | /* |
| 978 | * Update the timer from the possible pending state. |
| 979 | */ |
| 980 | static void hrtick_set(struct rq *rq) |
| 981 | { |
| 982 | ktime_t time; |
| 983 | int set, reset; |
| 984 | unsigned long flags; |
| 985 | |
| 986 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 987 | |
| 988 | spin_lock_irqsave(&rq->lock, flags); |
| 989 | set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags); |
| 990 | reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 991 | time = rq->hrtick_expire; |
| 992 | clear_thread_flag(TIF_HRTICK_RESCHED); |
| 993 | spin_unlock_irqrestore(&rq->lock, flags); |
| 994 | |
| 995 | if (set) { |
| 996 | hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS); |
| 997 | if (reset && !hrtimer_active(&rq->hrtick_timer)) |
| 998 | resched_rq(rq); |
| 999 | } else |
| 1000 | hrtick_clear(rq); |
| 1001 | } |
| 1002 | |
| 1003 | /* |
| 1004 | * High-resolution timer tick. |
| 1005 | * Runs from hardirq context with interrupts disabled. |
| 1006 | */ |
| 1007 | static enum hrtimer_restart hrtick(struct hrtimer *timer) |
| 1008 | { |
| 1009 | struct rq *rq = container_of(timer, struct rq, hrtick_timer); |
| 1010 | |
| 1011 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1012 | |
| 1013 | spin_lock(&rq->lock); |
| 1014 | __update_rq_clock(rq); |
| 1015 | rq->curr->sched_class->task_tick(rq, rq->curr, 1); |
| 1016 | spin_unlock(&rq->lock); |
| 1017 | |
| 1018 | return HRTIMER_NORESTART; |
| 1019 | } |
| 1020 | |
| 1021 | static inline void init_rq_hrtick(struct rq *rq) |
| 1022 | { |
| 1023 | rq->hrtick_flags = 0; |
| 1024 | hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1025 | rq->hrtick_timer.function = hrtick; |
| 1026 | rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 1027 | } |
| 1028 | |
| 1029 | void hrtick_resched(void) |
| 1030 | { |
| 1031 | struct rq *rq; |
| 1032 | unsigned long flags; |
| 1033 | |
| 1034 | if (!test_thread_flag(TIF_HRTICK_RESCHED)) |
| 1035 | return; |
| 1036 | |
| 1037 | local_irq_save(flags); |
| 1038 | rq = cpu_rq(smp_processor_id()); |
| 1039 | hrtick_set(rq); |
| 1040 | local_irq_restore(flags); |
| 1041 | } |
| 1042 | #else |
| 1043 | static inline void hrtick_clear(struct rq *rq) |
| 1044 | { |
| 1045 | } |
| 1046 | |
| 1047 | static inline void hrtick_set(struct rq *rq) |
| 1048 | { |
| 1049 | } |
| 1050 | |
| 1051 | static inline void init_rq_hrtick(struct rq *rq) |
| 1052 | { |
| 1053 | } |
| 1054 | |
| 1055 | void hrtick_resched(void) |
| 1056 | { |
| 1057 | } |
| 1058 | #endif |
| 1059 | |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1060 | /* |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1061 | * resched_task - mark a task 'to be rescheduled now'. |
| 1062 | * |
| 1063 | * On UP this means the setting of the need_resched flag, on SMP it |
| 1064 | * might also involve a cross-CPU call to trigger the scheduler on |
| 1065 | * the target CPU. |
| 1066 | */ |
| 1067 | #ifdef CONFIG_SMP |
| 1068 | |
| 1069 | #ifndef tsk_is_polling |
| 1070 | #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG) |
| 1071 | #endif |
| 1072 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1073 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1074 | { |
| 1075 | int cpu; |
| 1076 | |
| 1077 | assert_spin_locked(&task_rq(p)->lock); |
| 1078 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1079 | if (unlikely(test_tsk_thread_flag(p, tif_bit))) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1080 | return; |
| 1081 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1082 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1083 | |
| 1084 | cpu = task_cpu(p); |
| 1085 | if (cpu == smp_processor_id()) |
| 1086 | return; |
| 1087 | |
| 1088 | /* NEED_RESCHED must be visible before we test polling */ |
| 1089 | smp_mb(); |
| 1090 | if (!tsk_is_polling(p)) |
| 1091 | smp_send_reschedule(cpu); |
| 1092 | } |
| 1093 | |
| 1094 | static void resched_cpu(int cpu) |
| 1095 | { |
| 1096 | struct rq *rq = cpu_rq(cpu); |
| 1097 | unsigned long flags; |
| 1098 | |
| 1099 | if (!spin_trylock_irqsave(&rq->lock, flags)) |
| 1100 | return; |
| 1101 | resched_task(cpu_curr(cpu)); |
| 1102 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1103 | } |
| 1104 | #else |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1105 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1106 | { |
| 1107 | assert_spin_locked(&task_rq(p)->lock); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1108 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1109 | } |
| 1110 | #endif |
| 1111 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1112 | #if BITS_PER_LONG == 32 |
| 1113 | # define WMULT_CONST (~0UL) |
| 1114 | #else |
| 1115 | # define WMULT_CONST (1UL << 32) |
| 1116 | #endif |
| 1117 | |
| 1118 | #define WMULT_SHIFT 32 |
| 1119 | |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1120 | /* |
| 1121 | * Shift right and round: |
| 1122 | */ |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1123 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1124 | |
Ingo Molnar | cb1c4fc | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1125 | static unsigned long |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1126 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 1127 | struct load_weight *lw) |
| 1128 | { |
| 1129 | u64 tmp; |
| 1130 | |
| 1131 | if (unlikely(!lw->inv_weight)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1132 | lw->inv_weight = (WMULT_CONST - lw->weight/2) / lw->weight + 1; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1133 | |
| 1134 | tmp = (u64)delta_exec * weight; |
| 1135 | /* |
| 1136 | * Check whether we'd overflow the 64-bit multiplication: |
| 1137 | */ |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1138 | if (unlikely(tmp > WMULT_CONST)) |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1139 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1140 | WMULT_SHIFT/2); |
| 1141 | else |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1142 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1143 | |
Ingo Molnar | ecf691d | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1144 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | static inline unsigned long |
| 1148 | calc_delta_fair(unsigned long delta_exec, struct load_weight *lw) |
| 1149 | { |
| 1150 | return calc_delta_mine(delta_exec, NICE_0_LOAD, lw); |
| 1151 | } |
| 1152 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1153 | 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] | 1154 | { |
| 1155 | lw->weight += inc; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1156 | } |
| 1157 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1158 | 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] | 1159 | { |
| 1160 | lw->weight -= dec; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1161 | } |
| 1162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1164 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
| 1165 | * of tasks with abnormal "nice" values across CPUs the contribution that |
| 1166 | * 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] | 1167 | * 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] | 1168 | * scaled version of the new time slice allocation that they receive on time |
| 1169 | * slice expiry etc. |
| 1170 | */ |
| 1171 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1172 | #define WEIGHT_IDLEPRIO 2 |
| 1173 | #define WMULT_IDLEPRIO (1 << 31) |
| 1174 | |
| 1175 | /* |
| 1176 | * Nice levels are multiplicative, with a gentle 10% change for every |
| 1177 | * nice level changed. I.e. when a CPU-bound task goes from nice 0 to |
| 1178 | * nice 1, it will get ~10% less CPU time than another CPU-bound task |
| 1179 | * that remained on nice 0. |
| 1180 | * |
| 1181 | * The "10% effect" is relative and cumulative: from _any_ nice level, |
| 1182 | * 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] | 1183 | * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25. |
| 1184 | * If a task goes up by ~10% and another task goes down by ~10% then |
| 1185 | * the relative distance between them is ~25%.) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1186 | */ |
| 1187 | static const int prio_to_weight[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1188 | /* -20 */ 88761, 71755, 56483, 46273, 36291, |
| 1189 | /* -15 */ 29154, 23254, 18705, 14949, 11916, |
| 1190 | /* -10 */ 9548, 7620, 6100, 4904, 3906, |
| 1191 | /* -5 */ 3121, 2501, 1991, 1586, 1277, |
| 1192 | /* 0 */ 1024, 820, 655, 526, 423, |
| 1193 | /* 5 */ 335, 272, 215, 172, 137, |
| 1194 | /* 10 */ 110, 87, 70, 56, 45, |
| 1195 | /* 15 */ 36, 29, 23, 18, 15, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1196 | }; |
| 1197 | |
Ingo Molnar | 5714d2d | 2007-07-16 09:46:31 +0200 | [diff] [blame] | 1198 | /* |
| 1199 | * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated. |
| 1200 | * |
| 1201 | * In cases where the weight does not change often, we can use the |
| 1202 | * precalculated inverse to speed up arithmetics by turning divisions |
| 1203 | * into multiplications: |
| 1204 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1205 | static const u32 prio_to_wmult[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1206 | /* -20 */ 48388, 59856, 76040, 92818, 118348, |
| 1207 | /* -15 */ 147320, 184698, 229616, 287308, 360437, |
| 1208 | /* -10 */ 449829, 563644, 704093, 875809, 1099582, |
| 1209 | /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326, |
| 1210 | /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587, |
| 1211 | /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126, |
| 1212 | /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717, |
| 1213 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1214 | }; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1215 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1216 | static void activate_task(struct rq *rq, struct task_struct *p, int wakeup); |
| 1217 | |
| 1218 | /* |
| 1219 | * runqueue iterator, to support SMP load-balancing between different |
| 1220 | * scheduling classes, without having to expose their internal data |
| 1221 | * structures to the load-balancing proper: |
| 1222 | */ |
| 1223 | struct rq_iterator { |
| 1224 | void *arg; |
| 1225 | struct task_struct *(*start)(void *); |
| 1226 | struct task_struct *(*next)(void *); |
| 1227 | }; |
| 1228 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1229 | #ifdef CONFIG_SMP |
| 1230 | static unsigned long |
| 1231 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1232 | unsigned long max_load_move, struct sched_domain *sd, |
| 1233 | enum cpu_idle_type idle, int *all_pinned, |
| 1234 | int *this_best_prio, struct rq_iterator *iterator); |
| 1235 | |
| 1236 | static int |
| 1237 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1238 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 1239 | struct rq_iterator *iterator); |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1240 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1241 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1242 | #ifdef CONFIG_CGROUP_CPUACCT |
| 1243 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime); |
| 1244 | #else |
| 1245 | static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {} |
| 1246 | #endif |
| 1247 | |
Srivatsa Vaddagiri | 58e2d4c | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 1248 | static inline void inc_cpu_load(struct rq *rq, unsigned long load) |
| 1249 | { |
| 1250 | update_load_add(&rq->load, load); |
| 1251 | } |
| 1252 | |
| 1253 | static inline void dec_cpu_load(struct rq *rq, unsigned long load) |
| 1254 | { |
| 1255 | update_load_sub(&rq->load, load); |
| 1256 | } |
| 1257 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1258 | #ifdef CONFIG_SMP |
| 1259 | static unsigned long source_load(int cpu, int type); |
| 1260 | static unsigned long target_load(int cpu, int type); |
| 1261 | static unsigned long cpu_avg_load_per_task(int cpu); |
| 1262 | static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd); |
| 1263 | #endif /* CONFIG_SMP */ |
| 1264 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1265 | #include "sched_stats.h" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1266 | #include "sched_idletask.c" |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1267 | #include "sched_fair.c" |
| 1268 | #include "sched_rt.c" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1269 | #ifdef CONFIG_SCHED_DEBUG |
| 1270 | # include "sched_debug.c" |
| 1271 | #endif |
| 1272 | |
| 1273 | #define sched_class_highest (&rt_sched_class) |
| 1274 | |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1275 | static void inc_nr_running(struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1276 | { |
| 1277 | rq->nr_running++; |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1278 | } |
| 1279 | |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1280 | static void dec_nr_running(struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1281 | { |
| 1282 | rq->nr_running--; |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1283 | } |
| 1284 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1285 | static void set_load_weight(struct task_struct *p) |
| 1286 | { |
| 1287 | if (task_has_rt_policy(p)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1288 | p->se.load.weight = prio_to_weight[0] * 2; |
| 1289 | p->se.load.inv_weight = prio_to_wmult[0] >> 1; |
| 1290 | return; |
| 1291 | } |
| 1292 | |
| 1293 | /* |
| 1294 | * SCHED_IDLE tasks get minimal weight: |
| 1295 | */ |
| 1296 | if (p->policy == SCHED_IDLE) { |
| 1297 | p->se.load.weight = WEIGHT_IDLEPRIO; |
| 1298 | p->se.load.inv_weight = WMULT_IDLEPRIO; |
| 1299 | return; |
| 1300 | } |
| 1301 | |
| 1302 | p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO]; |
| 1303 | 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] | 1304 | } |
| 1305 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1306 | 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] | 1307 | { |
| 1308 | sched_info_queued(p); |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1309 | p->sched_class->enqueue_task(rq, p, wakeup); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1310 | p->se.on_rq = 1; |
| 1311 | } |
| 1312 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1313 | 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] | 1314 | { |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1315 | p->sched_class->dequeue_task(rq, p, sleep); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1316 | p->se.on_rq = 0; |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1317 | } |
| 1318 | |
| 1319 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1320 | * __normal_prio - return the priority that is based on the static prio |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1321 | */ |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1322 | static inline int __normal_prio(struct task_struct *p) |
| 1323 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1324 | return p->static_prio; |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1325 | } |
| 1326 | |
| 1327 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1328 | * Calculate the expected normal priority: i.e. priority |
| 1329 | * without taking RT-inheritance into account. Might be |
| 1330 | * boosted by interactivity modifiers. Changes upon fork, |
| 1331 | * setprio syscalls, and whenever the interactivity |
| 1332 | * estimator recalculates. |
| 1333 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1334 | static inline int normal_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1335 | { |
| 1336 | int prio; |
| 1337 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1338 | if (task_has_rt_policy(p)) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1339 | prio = MAX_RT_PRIO-1 - p->rt_priority; |
| 1340 | else |
| 1341 | prio = __normal_prio(p); |
| 1342 | return prio; |
| 1343 | } |
| 1344 | |
| 1345 | /* |
| 1346 | * Calculate the current priority, i.e. the priority |
| 1347 | * taken into account by the scheduler. This value might |
| 1348 | * be boosted by RT tasks, or might be boosted by |
| 1349 | * interactivity modifiers. Will be RT if the task got |
| 1350 | * RT-boosted. If not then it returns p->normal_prio. |
| 1351 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1352 | static int effective_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1353 | { |
| 1354 | p->normal_prio = normal_prio(p); |
| 1355 | /* |
| 1356 | * If we are RT tasks or we were boosted to RT priority, |
| 1357 | * keep the priority unchanged. Otherwise, update priority |
| 1358 | * to the normal priority: |
| 1359 | */ |
| 1360 | if (!rt_prio(p->prio)) |
| 1361 | return p->normal_prio; |
| 1362 | return p->prio; |
| 1363 | } |
| 1364 | |
| 1365 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1366 | * activate_task - move a task to the runqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1368 | 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] | 1369 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1370 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1371 | rq->nr_uninterruptible--; |
| 1372 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1373 | enqueue_task(rq, p, wakeup); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1374 | inc_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | } |
| 1376 | |
| 1377 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | * deactivate_task - remove a task from the runqueue. |
| 1379 | */ |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1380 | 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] | 1381 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1382 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1383 | rq->nr_uninterruptible++; |
| 1384 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1385 | dequeue_task(rq, p, sleep); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 1386 | dec_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1389 | /** |
| 1390 | * task_curr - is this task currently executing on a CPU? |
| 1391 | * @p: the task in question. |
| 1392 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1393 | inline int task_curr(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | { |
| 1395 | return cpu_curr(task_cpu(p)) == p; |
| 1396 | } |
| 1397 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1398 | /* Used instead of source_load when we know the type == 0 */ |
| 1399 | unsigned long weighted_cpuload(const int cpu) |
| 1400 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1401 | return cpu_rq(cpu)->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1402 | } |
| 1403 | |
| 1404 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1405 | { |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 1406 | set_task_rq(p, cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1407 | #ifdef CONFIG_SMP |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 1408 | /* |
| 1409 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
| 1410 | * successfuly executed on another CPU. We must ensure that updates of |
| 1411 | * per-task data have been completed by this moment. |
| 1412 | */ |
| 1413 | smp_wmb(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1414 | task_thread_info(p)->cpu = cpu; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1415 | #endif |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1416 | } |
| 1417 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1418 | static inline void check_class_changed(struct rq *rq, struct task_struct *p, |
| 1419 | const struct sched_class *prev_class, |
| 1420 | int oldprio, int running) |
| 1421 | { |
| 1422 | if (prev_class != p->sched_class) { |
| 1423 | if (prev_class->switched_from) |
| 1424 | prev_class->switched_from(rq, p, running); |
| 1425 | p->sched_class->switched_to(rq, p, running); |
| 1426 | } else |
| 1427 | p->sched_class->prio_changed(rq, p, oldprio, running); |
| 1428 | } |
| 1429 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | #ifdef CONFIG_SMP |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1431 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1432 | /* |
| 1433 | * Is this task likely cache-hot: |
| 1434 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1435 | static int |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1436 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 1437 | { |
| 1438 | s64 delta; |
| 1439 | |
| 1440 | if (p->sched_class != &fair_sched_class) |
| 1441 | return 0; |
| 1442 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1443 | if (sysctl_sched_migration_cost == -1) |
| 1444 | return 1; |
| 1445 | if (sysctl_sched_migration_cost == 0) |
| 1446 | return 0; |
| 1447 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1448 | delta = now - p->se.exec_start; |
| 1449 | |
| 1450 | return delta < (s64)sysctl_sched_migration_cost; |
| 1451 | } |
| 1452 | |
| 1453 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1454 | void set_task_cpu(struct task_struct *p, unsigned int new_cpu) |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1455 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1456 | int old_cpu = task_cpu(p); |
| 1457 | 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] | 1458 | struct cfs_rq *old_cfsrq = task_cfs_rq(p), |
| 1459 | *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu); |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1460 | u64 clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1461 | |
| 1462 | clock_offset = old_rq->clock - new_rq->clock; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1463 | |
| 1464 | #ifdef CONFIG_SCHEDSTATS |
| 1465 | if (p->se.wait_start) |
| 1466 | p->se.wait_start -= clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1467 | if (p->se.sleep_start) |
| 1468 | p->se.sleep_start -= clock_offset; |
| 1469 | if (p->se.block_start) |
| 1470 | p->se.block_start -= clock_offset; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1471 | if (old_cpu != new_cpu) { |
| 1472 | schedstat_inc(p, se.nr_migrations); |
| 1473 | if (task_hot(p, old_rq->clock, NULL)) |
| 1474 | schedstat_inc(p, se.nr_forced2_migrations); |
| 1475 | } |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1476 | #endif |
Srivatsa Vaddagiri | 2830cf8 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1477 | p->se.vruntime -= old_cfsrq->min_vruntime - |
| 1478 | new_cfsrq->min_vruntime; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1479 | |
| 1480 | __set_task_cpu(p, new_cpu); |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1481 | } |
| 1482 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1483 | struct migration_req { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1484 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1486 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1487 | int dest_cpu; |
| 1488 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | struct completion done; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1490 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | |
| 1492 | /* |
| 1493 | * The task's runqueue lock must be held. |
| 1494 | * Returns true if you have to wait for migration thread. |
| 1495 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1496 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1497 | 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] | 1498 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1499 | struct rq *rq = task_rq(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | |
| 1501 | /* |
| 1502 | * If the task is not on a runqueue (and not running), then |
| 1503 | * it is sufficient to simply update the task's cpu field. |
| 1504 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1505 | if (!p->se.on_rq && !task_running(rq, p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | set_task_cpu(p, dest_cpu); |
| 1507 | return 0; |
| 1508 | } |
| 1509 | |
| 1510 | init_completion(&req->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | req->task = p; |
| 1512 | req->dest_cpu = dest_cpu; |
| 1513 | list_add(&req->list, &rq->migration_queue); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 1514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1515 | return 1; |
| 1516 | } |
| 1517 | |
| 1518 | /* |
| 1519 | * wait_task_inactive - wait for a thread to unschedule. |
| 1520 | * |
| 1521 | * The caller must ensure that the task *will* unschedule sometime soon, |
| 1522 | * else this function might spin for a *long* time. This function can't |
| 1523 | * be called with interrupts off, or it may introduce deadlock with |
| 1524 | * smp_call_function() if an IPI is sent by the same process we are |
| 1525 | * waiting to become inactive. |
| 1526 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1527 | void wait_task_inactive(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | { |
| 1529 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1530 | int running, on_rq; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1531 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1533 | for (;;) { |
| 1534 | /* |
| 1535 | * We do the initial early heuristics without holding |
| 1536 | * any task-queue locks at all. We'll only try to get |
| 1537 | * the runqueue lock when things look like they will |
| 1538 | * work out! |
| 1539 | */ |
| 1540 | rq = task_rq(p); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1541 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1542 | /* |
| 1543 | * If the task is actively running on another CPU |
| 1544 | * still, just relax and busy-wait without holding |
| 1545 | * any locks. |
| 1546 | * |
| 1547 | * NOTE! Since we don't hold any locks, it's not |
| 1548 | * even sure that "rq" stays as the right runqueue! |
| 1549 | * But we don't care, since "task_running()" will |
| 1550 | * return false if the runqueue has changed and p |
| 1551 | * is actually now running somewhere else! |
| 1552 | */ |
| 1553 | while (task_running(rq, p)) |
| 1554 | cpu_relax(); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1555 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1556 | /* |
| 1557 | * Ok, time to look more closely! We need the rq |
| 1558 | * lock now, to be *sure*. If we're wrong, we'll |
| 1559 | * just go back and repeat. |
| 1560 | */ |
| 1561 | rq = task_rq_lock(p, &flags); |
| 1562 | running = task_running(rq, p); |
| 1563 | on_rq = p->se.on_rq; |
| 1564 | task_rq_unlock(rq, &flags); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1565 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1566 | /* |
| 1567 | * Was it really running after all now that we |
| 1568 | * checked with the proper locks actually held? |
| 1569 | * |
| 1570 | * Oops. Go back and try again.. |
| 1571 | */ |
| 1572 | if (unlikely(running)) { |
| 1573 | cpu_relax(); |
| 1574 | continue; |
| 1575 | } |
| 1576 | |
| 1577 | /* |
| 1578 | * It's not enough that it's not actively running, |
| 1579 | * it must be off the runqueue _entirely_, and not |
| 1580 | * preempted! |
| 1581 | * |
| 1582 | * So if it wa still runnable (but just not actively |
| 1583 | * running right now), it's preempted, and we should |
| 1584 | * yield - it could be a while. |
| 1585 | */ |
| 1586 | if (unlikely(on_rq)) { |
| 1587 | schedule_timeout_uninterruptible(1); |
| 1588 | continue; |
| 1589 | } |
| 1590 | |
| 1591 | /* |
| 1592 | * Ahh, all good. It wasn't running, and it wasn't |
| 1593 | * runnable, which means that it will never become |
| 1594 | * running in the future either. We're all done! |
| 1595 | */ |
| 1596 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1597 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | } |
| 1599 | |
| 1600 | /*** |
| 1601 | * kick_process - kick a running thread to enter/exit the kernel |
| 1602 | * @p: the to-be-kicked thread |
| 1603 | * |
| 1604 | * Cause a process which is running on another CPU to enter |
| 1605 | * kernel-mode, without any delay. (to get signals handled.) |
| 1606 | * |
| 1607 | * NOTE: this function doesnt have to take the runqueue lock, |
| 1608 | * because all it wants to ensure is that the remote task enters |
| 1609 | * the kernel. If the IPI races and the task has been migrated |
| 1610 | * to another CPU then no harm is done and the purpose has been |
| 1611 | * achieved as well. |
| 1612 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1613 | void kick_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | { |
| 1615 | int cpu; |
| 1616 | |
| 1617 | preempt_disable(); |
| 1618 | cpu = task_cpu(p); |
| 1619 | if ((cpu != smp_processor_id()) && task_curr(p)) |
| 1620 | smp_send_reschedule(cpu); |
| 1621 | preempt_enable(); |
| 1622 | } |
| 1623 | |
| 1624 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1625 | * Return a low guess at the load of a migration-source cpu weighted |
| 1626 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1627 | * |
| 1628 | * We want to under-estimate the load of migration sources, to |
| 1629 | * balance conservatively. |
| 1630 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1631 | static unsigned long source_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1632 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1633 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1634 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1635 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1636 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1637 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1638 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1639 | return min(rq->cpu_load[type-1], total); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | } |
| 1641 | |
| 1642 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1643 | * Return a high guess at the load of a migration-target cpu weighted |
| 1644 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1646 | static unsigned long target_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1647 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1648 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1649 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1650 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1651 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1652 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1653 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1654 | return max(rq->cpu_load[type-1], total); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1655 | } |
| 1656 | |
| 1657 | /* |
| 1658 | * Return the average load per task on the cpu's run queue |
| 1659 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1660 | static unsigned long cpu_avg_load_per_task(int cpu) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1661 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1662 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1663 | unsigned long total = weighted_cpuload(cpu); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1664 | unsigned long n = rq->nr_running; |
| 1665 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1666 | return n ? total / n : SCHED_LOAD_SCALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1667 | } |
| 1668 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1669 | /* |
| 1670 | * find_idlest_group finds and returns the least busy CPU group within the |
| 1671 | * domain. |
| 1672 | */ |
| 1673 | static struct sched_group * |
| 1674 | find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu) |
| 1675 | { |
| 1676 | struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups; |
| 1677 | unsigned long min_load = ULONG_MAX, this_load = 0; |
| 1678 | int load_idx = sd->forkexec_idx; |
| 1679 | int imbalance = 100 + (sd->imbalance_pct-100)/2; |
| 1680 | |
| 1681 | do { |
| 1682 | unsigned long load, avg_load; |
| 1683 | int local_group; |
| 1684 | int i; |
| 1685 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1686 | /* Skip over this group if it has no CPUs allowed */ |
| 1687 | if (!cpus_intersects(group->cpumask, p->cpus_allowed)) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1688 | continue; |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1689 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1690 | local_group = cpu_isset(this_cpu, group->cpumask); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1691 | |
| 1692 | /* Tally up the load of all CPUs in the group */ |
| 1693 | avg_load = 0; |
| 1694 | |
| 1695 | for_each_cpu_mask(i, group->cpumask) { |
| 1696 | /* Bias balancing toward cpus of our domain */ |
| 1697 | if (local_group) |
| 1698 | load = source_load(i, load_idx); |
| 1699 | else |
| 1700 | load = target_load(i, load_idx); |
| 1701 | |
| 1702 | avg_load += load; |
| 1703 | } |
| 1704 | |
| 1705 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 1706 | avg_load = sg_div_cpu_power(group, |
| 1707 | avg_load * SCHED_LOAD_SCALE); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1708 | |
| 1709 | if (local_group) { |
| 1710 | this_load = avg_load; |
| 1711 | this = group; |
| 1712 | } else if (avg_load < min_load) { |
| 1713 | min_load = avg_load; |
| 1714 | idlest = group; |
| 1715 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1716 | } while (group = group->next, group != sd->groups); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1717 | |
| 1718 | if (!idlest || 100*this_load < imbalance*min_load) |
| 1719 | return NULL; |
| 1720 | return idlest; |
| 1721 | } |
| 1722 | |
| 1723 | /* |
Satoru Takeuchi | 0feaece | 2006-10-03 01:14:10 -0700 | [diff] [blame] | 1724 | * find_idlest_cpu - find the idlest cpu among the cpus in group. |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1725 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 1726 | static int |
| 1727 | 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] | 1728 | { |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1729 | cpumask_t tmp; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1730 | unsigned long load, min_load = ULONG_MAX; |
| 1731 | int idlest = -1; |
| 1732 | int i; |
| 1733 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1734 | /* Traverse only the allowed CPUs */ |
| 1735 | cpus_and(tmp, group->cpumask, p->cpus_allowed); |
| 1736 | |
| 1737 | for_each_cpu_mask(i, tmp) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1738 | load = weighted_cpuload(i); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1739 | |
| 1740 | if (load < min_load || (load == min_load && i == this_cpu)) { |
| 1741 | min_load = load; |
| 1742 | idlest = i; |
| 1743 | } |
| 1744 | } |
| 1745 | |
| 1746 | return idlest; |
| 1747 | } |
| 1748 | |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1749 | /* |
| 1750 | * sched_balance_self: balance the current task (running on cpu) in domains |
| 1751 | * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and |
| 1752 | * SD_BALANCE_EXEC. |
| 1753 | * |
| 1754 | * Balance, ie. select the least loaded group. |
| 1755 | * |
| 1756 | * Returns the target CPU number, or the same CPU if no balancing is needed. |
| 1757 | * |
| 1758 | * preempt must be disabled. |
| 1759 | */ |
| 1760 | static int sched_balance_self(int cpu, int flag) |
| 1761 | { |
| 1762 | struct task_struct *t = current; |
| 1763 | struct sched_domain *tmp, *sd = NULL; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1764 | |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1765 | for_each_domain(cpu, tmp) { |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1766 | /* |
| 1767 | * If power savings logic is enabled for a domain, stop there. |
| 1768 | */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 1769 | if (tmp->flags & SD_POWERSAVINGS_BALANCE) |
| 1770 | break; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1771 | if (tmp->flags & flag) |
| 1772 | sd = tmp; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1773 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1774 | |
| 1775 | while (sd) { |
| 1776 | cpumask_t span; |
| 1777 | struct sched_group *group; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1778 | int new_cpu, weight; |
| 1779 | |
| 1780 | if (!(sd->flags & flag)) { |
| 1781 | sd = sd->child; |
| 1782 | continue; |
| 1783 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1784 | |
| 1785 | span = sd->span; |
| 1786 | group = find_idlest_group(sd, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1787 | if (!group) { |
| 1788 | sd = sd->child; |
| 1789 | continue; |
| 1790 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1791 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1792 | new_cpu = find_idlest_cpu(group, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1793 | if (new_cpu == -1 || new_cpu == cpu) { |
| 1794 | /* Now try balancing at a lower domain level of cpu */ |
| 1795 | sd = sd->child; |
| 1796 | continue; |
| 1797 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1798 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1799 | /* Now try balancing at a lower domain level of new_cpu */ |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1800 | cpu = new_cpu; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1801 | sd = NULL; |
| 1802 | weight = cpus_weight(span); |
| 1803 | for_each_domain(cpu, tmp) { |
| 1804 | if (weight <= cpus_weight(tmp->span)) |
| 1805 | break; |
| 1806 | if (tmp->flags & flag) |
| 1807 | sd = tmp; |
| 1808 | } |
| 1809 | /* while loop will break here if sd == NULL */ |
| 1810 | } |
| 1811 | |
| 1812 | return cpu; |
| 1813 | } |
| 1814 | |
| 1815 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1816 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | /*** |
| 1818 | * try_to_wake_up - wake up a thread |
| 1819 | * @p: the to-be-woken-up thread |
| 1820 | * @state: the mask of task states that can be woken |
| 1821 | * @sync: do a synchronous wakeup? |
| 1822 | * |
| 1823 | * Put it on the run-queue if it's not already there. The "current" |
| 1824 | * thread is always on the run-queue (except when the actual |
| 1825 | * re-schedule is in progress), and as such you're allowed to do |
| 1826 | * the simpler "current->state = TASK_RUNNING" to mark yourself |
| 1827 | * runnable without the overhead of this. |
| 1828 | * |
| 1829 | * returns failure only if the task is already active. |
| 1830 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1831 | 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] | 1832 | { |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1833 | int cpu, orig_cpu, this_cpu, success = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1834 | unsigned long flags; |
| 1835 | long old_state; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1836 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1837 | |
Linus Torvalds | 04e2f17 | 2008-02-23 18:05:03 -0800 | [diff] [blame] | 1838 | smp_wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1839 | rq = task_rq_lock(p, &flags); |
| 1840 | old_state = p->state; |
| 1841 | if (!(old_state & state)) |
| 1842 | goto out; |
| 1843 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1844 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | goto out_running; |
| 1846 | |
| 1847 | cpu = task_cpu(p); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1848 | orig_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | this_cpu = smp_processor_id(); |
| 1850 | |
| 1851 | #ifdef CONFIG_SMP |
| 1852 | if (unlikely(task_running(rq, p))) |
| 1853 | goto out_activate; |
| 1854 | |
Dmitry Adamushko | 5d2f5a6 | 2008-01-25 21:08:21 +0100 | [diff] [blame] | 1855 | cpu = p->sched_class->select_task_rq(p, sync); |
| 1856 | if (cpu != orig_cpu) { |
| 1857 | set_task_cpu(p, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | task_rq_unlock(rq, &flags); |
| 1859 | /* might preempt at this point */ |
| 1860 | rq = task_rq_lock(p, &flags); |
| 1861 | old_state = p->state; |
| 1862 | if (!(old_state & state)) |
| 1863 | goto out; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1864 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | goto out_running; |
| 1866 | |
| 1867 | this_cpu = smp_processor_id(); |
| 1868 | cpu = task_cpu(p); |
| 1869 | } |
| 1870 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1871 | #ifdef CONFIG_SCHEDSTATS |
| 1872 | schedstat_inc(rq, ttwu_count); |
| 1873 | if (cpu == this_cpu) |
| 1874 | schedstat_inc(rq, ttwu_local); |
| 1875 | else { |
| 1876 | struct sched_domain *sd; |
| 1877 | for_each_domain(this_cpu, sd) { |
| 1878 | if (cpu_isset(cpu, sd->span)) { |
| 1879 | schedstat_inc(sd, ttwu_wake_remote); |
| 1880 | break; |
| 1881 | } |
| 1882 | } |
| 1883 | } |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1884 | #endif |
| 1885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | out_activate: |
| 1887 | #endif /* CONFIG_SMP */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1888 | schedstat_inc(p, se.nr_wakeups); |
| 1889 | if (sync) |
| 1890 | schedstat_inc(p, se.nr_wakeups_sync); |
| 1891 | if (orig_cpu != cpu) |
| 1892 | schedstat_inc(p, se.nr_wakeups_migrate); |
| 1893 | if (cpu == this_cpu) |
| 1894 | schedstat_inc(p, se.nr_wakeups_local); |
| 1895 | else |
| 1896 | schedstat_inc(p, se.nr_wakeups_remote); |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1897 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1898 | activate_task(rq, p, 1); |
Ingo Molnar | 9c63d9c | 2007-10-15 17:00:20 +0200 | [diff] [blame] | 1899 | check_preempt_curr(rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | success = 1; |
| 1901 | |
| 1902 | out_running: |
| 1903 | p->state = TASK_RUNNING; |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1904 | #ifdef CONFIG_SMP |
| 1905 | if (p->sched_class->task_wake_up) |
| 1906 | p->sched_class->task_wake_up(rq, p); |
| 1907 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | out: |
| 1909 | task_rq_unlock(rq, &flags); |
| 1910 | |
| 1911 | return success; |
| 1912 | } |
| 1913 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1914 | int wake_up_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1916 | return try_to_wake_up(p, TASK_ALL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1917 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | EXPORT_SYMBOL(wake_up_process); |
| 1919 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 1920 | int wake_up_state(struct task_struct *p, unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | { |
| 1922 | return try_to_wake_up(p, state, 0); |
| 1923 | } |
| 1924 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1925 | /* |
| 1926 | * Perform scheduler related setup for a newly forked process p. |
| 1927 | * p is forked by current. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1928 | * |
| 1929 | * __sched_fork() is basic setup used by init_idle() too: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1930 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1931 | static void __sched_fork(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1932 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1933 | p->se.exec_start = 0; |
| 1934 | p->se.sum_exec_runtime = 0; |
Ingo Molnar | f6cf891 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 1935 | p->se.prev_sum_exec_runtime = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1936 | |
| 1937 | #ifdef CONFIG_SCHEDSTATS |
| 1938 | p->se.wait_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1939 | p->se.sum_sleep_runtime = 0; |
| 1940 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1941 | p->se.block_start = 0; |
| 1942 | p->se.sleep_max = 0; |
| 1943 | p->se.block_max = 0; |
| 1944 | p->se.exec_max = 0; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 1945 | p->se.slice_max = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1946 | p->se.wait_max = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1947 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1948 | |
Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 1949 | INIT_LIST_HEAD(&p->rt.run_list); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1950 | p->se.on_rq = 0; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1951 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 1952 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 1953 | INIT_HLIST_HEAD(&p->preempt_notifiers); |
| 1954 | #endif |
| 1955 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1956 | /* |
| 1957 | * We mark the process as running here, but have not actually |
| 1958 | * inserted it onto the runqueue yet. This guarantees that |
| 1959 | * nobody will actually run it, and a signal or other external |
| 1960 | * event cannot wake it up and insert it on the runqueue either. |
| 1961 | */ |
| 1962 | p->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1963 | } |
| 1964 | |
| 1965 | /* |
| 1966 | * fork()/clone()-time setup: |
| 1967 | */ |
| 1968 | void sched_fork(struct task_struct *p, int clone_flags) |
| 1969 | { |
| 1970 | int cpu = get_cpu(); |
| 1971 | |
| 1972 | __sched_fork(p); |
| 1973 | |
| 1974 | #ifdef CONFIG_SMP |
| 1975 | cpu = sched_balance_self(cpu, SD_BALANCE_FORK); |
| 1976 | #endif |
Ingo Molnar | 02e4bac2 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 1977 | set_task_cpu(p, cpu); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1978 | |
| 1979 | /* |
| 1980 | * Make sure we do not leak PI boosting priority to the child: |
| 1981 | */ |
| 1982 | p->prio = current->normal_prio; |
Hiroshi Shimamoto | 2ddbf95 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 1983 | if (!rt_prio(p->prio)) |
| 1984 | p->sched_class = &fair_sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1985 | |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 1986 | #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1987 | if (likely(sched_info_on())) |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 1988 | memset(&p->sched_info, 0, sizeof(p->sched_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | #endif |
Chen, Kenneth W | d6077cb | 2006-02-14 13:53:10 -0800 | [diff] [blame] | 1990 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 1991 | p->oncpu = 0; |
| 1992 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | #ifdef CONFIG_PREEMPT |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 1994 | /* Want to start with kernel preemption disabled. */ |
Al Viro | a1261f54 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 1995 | task_thread_info(p)->preempt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1996 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1997 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | } |
| 1999 | |
| 2000 | /* |
| 2001 | * wake_up_new_task - wake up a newly created task for the first time. |
| 2002 | * |
| 2003 | * This function will do some initial scheduler statistics housekeeping |
| 2004 | * that must be done for every newly created context, then puts the task |
| 2005 | * on the runqueue and wakes it. |
| 2006 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2007 | void wake_up_new_task(struct task_struct *p, unsigned long clone_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2008 | { |
| 2009 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2010 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | |
| 2012 | rq = task_rq_lock(p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | BUG_ON(p->state != TASK_RUNNING); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 2014 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | |
| 2016 | p->prio = effective_prio(p); |
| 2017 | |
Srivatsa Vaddagiri | b9dca1e | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2018 | if (!p->sched_class->task_new || !current->se.on_rq) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2019 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2020 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2021 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2022 | * Let the scheduling class do new task startup |
| 2023 | * management (if any): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2025 | p->sched_class->task_new(rq, p); |
Gerald Stralko | 5aff053 | 2008-01-31 22:45:23 +0100 | [diff] [blame] | 2026 | inc_nr_running(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2028 | check_preempt_curr(rq, p); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2029 | #ifdef CONFIG_SMP |
| 2030 | if (p->sched_class->task_wake_up) |
| 2031 | p->sched_class->task_wake_up(rq, p); |
| 2032 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2033 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | } |
| 2035 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2036 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2037 | |
| 2038 | /** |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2039 | * preempt_notifier_register - tell me when current is being being preempted & rescheduled |
| 2040 | * @notifier: notifier struct to register |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2041 | */ |
| 2042 | void preempt_notifier_register(struct preempt_notifier *notifier) |
| 2043 | { |
| 2044 | hlist_add_head(¬ifier->link, ¤t->preempt_notifiers); |
| 2045 | } |
| 2046 | EXPORT_SYMBOL_GPL(preempt_notifier_register); |
| 2047 | |
| 2048 | /** |
| 2049 | * preempt_notifier_unregister - no longer interested in preemption notifications |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2050 | * @notifier: notifier struct to unregister |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2051 | * |
| 2052 | * This is safe to call from within a preemption notifier. |
| 2053 | */ |
| 2054 | void preempt_notifier_unregister(struct preempt_notifier *notifier) |
| 2055 | { |
| 2056 | hlist_del(¬ifier->link); |
| 2057 | } |
| 2058 | EXPORT_SYMBOL_GPL(preempt_notifier_unregister); |
| 2059 | |
| 2060 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2061 | { |
| 2062 | struct preempt_notifier *notifier; |
| 2063 | struct hlist_node *node; |
| 2064 | |
| 2065 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2066 | notifier->ops->sched_in(notifier, raw_smp_processor_id()); |
| 2067 | } |
| 2068 | |
| 2069 | static void |
| 2070 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2071 | struct task_struct *next) |
| 2072 | { |
| 2073 | struct preempt_notifier *notifier; |
| 2074 | struct hlist_node *node; |
| 2075 | |
| 2076 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2077 | notifier->ops->sched_out(notifier, next); |
| 2078 | } |
| 2079 | |
| 2080 | #else |
| 2081 | |
| 2082 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2083 | { |
| 2084 | } |
| 2085 | |
| 2086 | static void |
| 2087 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2088 | struct task_struct *next) |
| 2089 | { |
| 2090 | } |
| 2091 | |
| 2092 | #endif |
| 2093 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2094 | /** |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2095 | * prepare_task_switch - prepare to switch tasks |
| 2096 | * @rq: the runqueue preparing to switch |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2097 | * @prev: the current task that is being switched out |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2098 | * @next: the task we are going to switch to. |
| 2099 | * |
| 2100 | * This is called with the rq lock held and interrupts off. It must |
| 2101 | * be paired with a subsequent finish_task_switch after the context |
| 2102 | * switch. |
| 2103 | * |
| 2104 | * prepare_task_switch sets up locking and calls architecture specific |
| 2105 | * hooks. |
| 2106 | */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2107 | static inline void |
| 2108 | prepare_task_switch(struct rq *rq, struct task_struct *prev, |
| 2109 | struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2110 | { |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2111 | fire_sched_out_preempt_notifiers(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2112 | prepare_lock_switch(rq, next); |
| 2113 | prepare_arch_switch(next); |
| 2114 | } |
| 2115 | |
| 2116 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | * finish_task_switch - clean up after a task-switch |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 2118 | * @rq: runqueue associated with task-switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | * @prev: the thread we just switched away from. |
| 2120 | * |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2121 | * finish_task_switch must be called after the context switch, paired |
| 2122 | * with a prepare_task_switch call before the context switch. |
| 2123 | * finish_task_switch will reconcile locking set up by prepare_task_switch, |
| 2124 | * and do any other architecture-specific cleanup actions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2125 | * |
| 2126 | * 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] | 2127 | * so, we finish that here outside of the runqueue lock. (Doing it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | * with the lock held can cause deadlocks; see schedule() for |
| 2129 | * details.) |
| 2130 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 2131 | static void finish_task_switch(struct rq *rq, struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | __releases(rq->lock) |
| 2133 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | struct mm_struct *mm = rq->prev_mm; |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2135 | long prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | |
| 2137 | rq->prev_mm = NULL; |
| 2138 | |
| 2139 | /* |
| 2140 | * A task struct has one reference for the use as "current". |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2141 | * 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] | 2142 | * schedule one last time. The schedule call will never return, and |
| 2143 | * the scheduled task must drop that reference. |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2144 | * The test for TASK_DEAD must occur while the runqueue locks are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2145 | * still held, otherwise prev could be scheduled on another cpu, die |
| 2146 | * there before we look at prev->state, and then the reference would |
| 2147 | * be dropped twice. |
| 2148 | * Manfred Spraul <manfred@colorfullife.com> |
| 2149 | */ |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2150 | prev_state = prev->state; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2151 | finish_arch_switch(prev); |
| 2152 | finish_lock_switch(rq, prev); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2153 | #ifdef CONFIG_SMP |
| 2154 | if (current->sched_class->post_schedule) |
| 2155 | current->sched_class->post_schedule(rq); |
| 2156 | #endif |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2157 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2158 | fire_sched_in_preempt_notifiers(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | if (mm) |
| 2160 | mmdrop(mm); |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2161 | if (unlikely(prev_state == TASK_DEAD)) { |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2162 | /* |
| 2163 | * Remove function-return probe instances associated with this |
| 2164 | * task and put them back on the free list. |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2165 | */ |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2166 | kprobe_flush_task(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | put_task_struct(prev); |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2168 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | } |
| 2170 | |
| 2171 | /** |
| 2172 | * schedule_tail - first thing a freshly forked thread must call. |
| 2173 | * @prev: the thread we just switched away from. |
| 2174 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2175 | asmlinkage void schedule_tail(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | __releases(rq->lock) |
| 2177 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2178 | struct rq *rq = this_rq(); |
| 2179 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2180 | finish_task_switch(rq, prev); |
| 2181 | #ifdef __ARCH_WANT_UNLOCKED_CTXSW |
| 2182 | /* In this case, finish_task_switch does not reenable preemption */ |
| 2183 | preempt_enable(); |
| 2184 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | if (current->set_child_tid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2186 | put_user(task_pid_vnr(current), current->set_child_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | } |
| 2188 | |
| 2189 | /* |
| 2190 | * context_switch - switch to the new MM and the new |
| 2191 | * thread's register state. |
| 2192 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2193 | static inline void |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2194 | context_switch(struct rq *rq, struct task_struct *prev, |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2195 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2197 | struct mm_struct *mm, *oldmm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2198 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2199 | prepare_task_switch(rq, prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2200 | mm = next->mm; |
| 2201 | oldmm = prev->active_mm; |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 2202 | /* |
| 2203 | * For paravirt, this is coupled with an exit in switch_to to |
| 2204 | * combine the page table reload and the switch backend into |
| 2205 | * one hypercall. |
| 2206 | */ |
| 2207 | arch_enter_lazy_cpu_mode(); |
| 2208 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2209 | if (unlikely(!mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | next->active_mm = oldmm; |
| 2211 | atomic_inc(&oldmm->mm_count); |
| 2212 | enter_lazy_tlb(oldmm, next); |
| 2213 | } else |
| 2214 | switch_mm(oldmm, mm, next); |
| 2215 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2216 | if (unlikely(!prev->mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | prev->active_mm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2218 | rq->prev_mm = oldmm; |
| 2219 | } |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2220 | /* |
| 2221 | * Since the runqueue lock will be released by the next |
| 2222 | * task (which is an invalid locking op but in the case |
| 2223 | * of the scheduler it's an obvious special-case), so we |
| 2224 | * do an early lockdep release here: |
| 2225 | */ |
| 2226 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 2227 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2228 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | |
| 2230 | /* Here we just switch the register state and the stack. */ |
| 2231 | switch_to(prev, next, prev); |
| 2232 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2233 | barrier(); |
| 2234 | /* |
| 2235 | * this_rq must be evaluated again because prev may have moved |
| 2236 | * CPUs since it called schedule(), thus the 'rq' on its stack |
| 2237 | * frame will be invalid. |
| 2238 | */ |
| 2239 | finish_task_switch(this_rq(), prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2240 | } |
| 2241 | |
| 2242 | /* |
| 2243 | * nr_running, nr_uninterruptible and nr_context_switches: |
| 2244 | * |
| 2245 | * externally visible scheduler statistics: current number of runnable |
| 2246 | * threads, current number of uninterruptible-sleeping threads, total |
| 2247 | * number of context switches performed since bootup. |
| 2248 | */ |
| 2249 | unsigned long nr_running(void) |
| 2250 | { |
| 2251 | unsigned long i, sum = 0; |
| 2252 | |
| 2253 | for_each_online_cpu(i) |
| 2254 | sum += cpu_rq(i)->nr_running; |
| 2255 | |
| 2256 | return sum; |
| 2257 | } |
| 2258 | |
| 2259 | unsigned long nr_uninterruptible(void) |
| 2260 | { |
| 2261 | unsigned long i, sum = 0; |
| 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_uninterruptible; |
| 2265 | |
| 2266 | /* |
| 2267 | * Since we read the counters lockless, it might be slightly |
| 2268 | * inaccurate. Do not allow it to go below zero though: |
| 2269 | */ |
| 2270 | if (unlikely((long)sum < 0)) |
| 2271 | sum = 0; |
| 2272 | |
| 2273 | return sum; |
| 2274 | } |
| 2275 | |
| 2276 | unsigned long long nr_context_switches(void) |
| 2277 | { |
Steven Rostedt | cc94abf | 2006-06-27 02:54:31 -0700 | [diff] [blame] | 2278 | int i; |
| 2279 | unsigned long long sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2280 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2281 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | sum += cpu_rq(i)->nr_switches; |
| 2283 | |
| 2284 | return sum; |
| 2285 | } |
| 2286 | |
| 2287 | unsigned long nr_iowait(void) |
| 2288 | { |
| 2289 | unsigned long i, sum = 0; |
| 2290 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2291 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | sum += atomic_read(&cpu_rq(i)->nr_iowait); |
| 2293 | |
| 2294 | return sum; |
| 2295 | } |
| 2296 | |
Jack Steiner | db1b1fe | 2006-03-31 02:31:21 -0800 | [diff] [blame] | 2297 | unsigned long nr_active(void) |
| 2298 | { |
| 2299 | unsigned long i, running = 0, uninterruptible = 0; |
| 2300 | |
| 2301 | for_each_online_cpu(i) { |
| 2302 | running += cpu_rq(i)->nr_running; |
| 2303 | uninterruptible += cpu_rq(i)->nr_uninterruptible; |
| 2304 | } |
| 2305 | |
| 2306 | if (unlikely((long)uninterruptible < 0)) |
| 2307 | uninterruptible = 0; |
| 2308 | |
| 2309 | return running + uninterruptible; |
| 2310 | } |
| 2311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2312 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2313 | * Update rq->cpu_load[] statistics. This function is usually called every |
| 2314 | * scheduler tick (TICK_NSEC). |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2315 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2316 | static void update_cpu_load(struct rq *this_rq) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2317 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 2318 | unsigned long this_load = this_rq->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2319 | int i, scale; |
| 2320 | |
| 2321 | this_rq->nr_load_updates++; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2322 | |
| 2323 | /* Update our load: */ |
| 2324 | for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) { |
| 2325 | unsigned long old_load, new_load; |
| 2326 | |
| 2327 | /* scale is effectively 1 << i now, and >> i divides by scale */ |
| 2328 | |
| 2329 | old_load = this_rq->cpu_load[i]; |
| 2330 | new_load = this_load; |
Ingo Molnar | a25707f | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 2331 | /* |
| 2332 | * Round up the averaging division if load is increasing. This |
| 2333 | * prevents us from getting stuck on 9 if the load is 10, for |
| 2334 | * example. |
| 2335 | */ |
| 2336 | if (new_load > old_load) |
| 2337 | new_load += scale-1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2338 | this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i; |
| 2339 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2340 | } |
| 2341 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2342 | #ifdef CONFIG_SMP |
| 2343 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2344 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2345 | * double_rq_lock - safely lock two runqueues |
| 2346 | * |
| 2347 | * Note this does not disable interrupts like task_rq_lock, |
| 2348 | * you need to do so manually before calling. |
| 2349 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2350 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | __acquires(rq1->lock) |
| 2352 | __acquires(rq2->lock) |
| 2353 | { |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2354 | BUG_ON(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2355 | if (rq1 == rq2) { |
| 2356 | spin_lock(&rq1->lock); |
| 2357 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 2358 | } else { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2359 | if (rq1 < rq2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2360 | spin_lock(&rq1->lock); |
| 2361 | spin_lock(&rq2->lock); |
| 2362 | } else { |
| 2363 | spin_lock(&rq2->lock); |
| 2364 | spin_lock(&rq1->lock); |
| 2365 | } |
| 2366 | } |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2367 | update_rq_clock(rq1); |
| 2368 | update_rq_clock(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2369 | } |
| 2370 | |
| 2371 | /* |
| 2372 | * double_rq_unlock - safely unlock two runqueues |
| 2373 | * |
| 2374 | * Note this does not restore interrupts like task_rq_unlock, |
| 2375 | * you need to do so manually after calling. |
| 2376 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2377 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | __releases(rq1->lock) |
| 2379 | __releases(rq2->lock) |
| 2380 | { |
| 2381 | spin_unlock(&rq1->lock); |
| 2382 | if (rq1 != rq2) |
| 2383 | spin_unlock(&rq2->lock); |
| 2384 | else |
| 2385 | __release(rq2->lock); |
| 2386 | } |
| 2387 | |
| 2388 | /* |
| 2389 | * double_lock_balance - lock the busiest runqueue, this_rq is locked already. |
| 2390 | */ |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2391 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2392 | __releases(this_rq->lock) |
| 2393 | __acquires(busiest->lock) |
| 2394 | __acquires(this_rq->lock) |
| 2395 | { |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2396 | int ret = 0; |
| 2397 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2398 | if (unlikely(!irqs_disabled())) { |
| 2399 | /* printk() doesn't work good under rq->lock */ |
| 2400 | spin_unlock(&this_rq->lock); |
| 2401 | BUG_ON(1); |
| 2402 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | if (unlikely(!spin_trylock(&busiest->lock))) { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2404 | if (busiest < this_rq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2405 | spin_unlock(&this_rq->lock); |
| 2406 | spin_lock(&busiest->lock); |
| 2407 | spin_lock(&this_rq->lock); |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2408 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | } else |
| 2410 | spin_lock(&busiest->lock); |
| 2411 | } |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2412 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | } |
| 2414 | |
| 2415 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2416 | * If dest_cpu is allowed for this process, migrate the task to it. |
| 2417 | * This is accomplished by forcing the cpu_allowed mask to only |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2418 | * allow dest_cpu, which will force the cpu onto dest_cpu. Then |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2419 | * the cpu_allowed mask is restored. |
| 2420 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2421 | static void sched_migrate_task(struct task_struct *p, int dest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2423 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2425 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | |
| 2427 | rq = task_rq_lock(p, &flags); |
| 2428 | if (!cpu_isset(dest_cpu, p->cpus_allowed) |
| 2429 | || unlikely(cpu_is_offline(dest_cpu))) |
| 2430 | goto out; |
| 2431 | |
| 2432 | /* force the process onto the specified CPU */ |
| 2433 | if (migrate_task(p, dest_cpu, &req)) { |
| 2434 | /* Need to wait for migration thread (might exit: take ref). */ |
| 2435 | struct task_struct *mt = rq->migration_thread; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2437 | get_task_struct(mt); |
| 2438 | task_rq_unlock(rq, &flags); |
| 2439 | wake_up_process(mt); |
| 2440 | put_task_struct(mt); |
| 2441 | wait_for_completion(&req.done); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2442 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | return; |
| 2444 | } |
| 2445 | out: |
| 2446 | task_rq_unlock(rq, &flags); |
| 2447 | } |
| 2448 | |
| 2449 | /* |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2450 | * sched_exec - execve() is a valuable balancing opportunity, because at |
| 2451 | * this point the task has the smallest effective memory and cache footprint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | */ |
| 2453 | void sched_exec(void) |
| 2454 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | int new_cpu, this_cpu = get_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2456 | new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2457 | put_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2458 | if (new_cpu != this_cpu) |
| 2459 | sched_migrate_task(current, new_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2460 | } |
| 2461 | |
| 2462 | /* |
| 2463 | * pull_task - move a task from a remote runqueue to the local runqueue. |
| 2464 | * Both runqueues must be locked. |
| 2465 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2466 | static void pull_task(struct rq *src_rq, struct task_struct *p, |
| 2467 | struct rq *this_rq, int this_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2469 | deactivate_task(src_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2470 | set_task_cpu(p, this_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2471 | activate_task(this_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | /* |
| 2473 | * Note that idle threads have a prio of MAX_PRIO, for this test |
| 2474 | * to be always true for them. |
| 2475 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2476 | check_preempt_curr(this_rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | } |
| 2478 | |
| 2479 | /* |
| 2480 | * can_migrate_task - may task p from runqueue rq be migrated to this_cpu? |
| 2481 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 2482 | static |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2483 | 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] | 2484 | struct sched_domain *sd, enum cpu_idle_type idle, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 2485 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2486 | { |
| 2487 | /* |
| 2488 | * We do not migrate tasks that are: |
| 2489 | * 1) running (obviously), or |
| 2490 | * 2) cannot be migrated to this CPU due to cpus_allowed, or |
| 2491 | * 3) are cache-hot on their current CPU. |
| 2492 | */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2493 | if (!cpu_isset(this_cpu, p->cpus_allowed)) { |
| 2494 | schedstat_inc(p, se.nr_failed_migrations_affine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2496 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2497 | *all_pinned = 0; |
| 2498 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2499 | if (task_running(rq, p)) { |
| 2500 | schedstat_inc(p, se.nr_failed_migrations_running); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2501 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2502 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2503 | |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2504 | /* |
| 2505 | * Aggressive migration if: |
| 2506 | * 1) task is cache cold, or |
| 2507 | * 2) too many balance attempts have failed. |
| 2508 | */ |
| 2509 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2510 | if (!task_hot(p, rq->clock, sd) || |
| 2511 | sd->nr_balance_failed > sd->cache_nice_tries) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2512 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2513 | if (task_hot(p, rq->clock, sd)) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2514 | schedstat_inc(sd, lb_hot_gained[idle]); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2515 | schedstat_inc(p, se.nr_forced_migrations); |
| 2516 | } |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2517 | #endif |
| 2518 | return 1; |
| 2519 | } |
| 2520 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2521 | if (task_hot(p, rq->clock, sd)) { |
| 2522 | schedstat_inc(p, se.nr_failed_migrations_hot); |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2523 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2524 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2525 | return 1; |
| 2526 | } |
| 2527 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2528 | static unsigned long |
| 2529 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2530 | unsigned long max_load_move, struct sched_domain *sd, |
| 2531 | enum cpu_idle_type idle, int *all_pinned, |
| 2532 | int *this_best_prio, struct rq_iterator *iterator) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2533 | { |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2534 | int loops = 0, pulled = 0, pinned = 0, skip_for_load; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2535 | struct task_struct *p; |
| 2536 | long rem_load_move = max_load_move; |
| 2537 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2538 | if (max_load_move == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2539 | goto out; |
| 2540 | |
| 2541 | pinned = 1; |
| 2542 | |
| 2543 | /* |
| 2544 | * Start the load-balancing iterator: |
| 2545 | */ |
| 2546 | p = iterator->start(iterator->arg); |
| 2547 | next: |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2548 | if (!p || loops++ > sysctl_sched_nr_migrate) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2549 | goto out; |
| 2550 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2551 | * To help distribute high priority tasks across CPUs we don't |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2552 | * skip a task if it will be the highest priority task (i.e. smallest |
| 2553 | * prio value) on its new queue regardless of its load weight |
| 2554 | */ |
| 2555 | skip_for_load = (p->se.load.weight >> 1) > rem_load_move + |
| 2556 | SCHED_LOAD_SCALE_FUZZ; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2557 | if ((skip_for_load && p->prio >= *this_best_prio) || |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2558 | !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2559 | p = iterator->next(iterator->arg); |
| 2560 | goto next; |
| 2561 | } |
| 2562 | |
| 2563 | pull_task(busiest, p, this_rq, this_cpu); |
| 2564 | pulled++; |
| 2565 | rem_load_move -= p->se.load.weight; |
| 2566 | |
| 2567 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2568 | * 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] | 2569 | */ |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2570 | if (rem_load_move > 0) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2571 | if (p->prio < *this_best_prio) |
| 2572 | *this_best_prio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2573 | p = iterator->next(iterator->arg); |
| 2574 | goto next; |
| 2575 | } |
| 2576 | out: |
| 2577 | /* |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2578 | * 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] | 2579 | * so we can safely collect pull_task() stats here rather than |
| 2580 | * inside pull_task(). |
| 2581 | */ |
| 2582 | schedstat_add(sd, lb_gained[idle], pulled); |
| 2583 | |
| 2584 | if (all_pinned) |
| 2585 | *all_pinned = pinned; |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2586 | |
| 2587 | return max_load_move - rem_load_move; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2588 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | /* |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2591 | * move_tasks tries to move up to max_load_move weighted load from busiest to |
| 2592 | * this_rq, as part of a balancing operation within domain "sd". |
| 2593 | * Returns 1 if successful and 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | * |
| 2595 | * Called with both runqueues locked. |
| 2596 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2597 | 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] | 2598 | unsigned long max_load_move, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2599 | struct sched_domain *sd, enum cpu_idle_type idle, |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2600 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2601 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2602 | const struct sched_class *class = sched_class_highest; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2603 | unsigned long total_load_moved = 0; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2604 | int this_best_prio = this_rq->curr->prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2605 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2606 | do { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2607 | total_load_moved += |
| 2608 | class->load_balance(this_rq, this_cpu, busiest, |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2609 | max_load_move - total_load_moved, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2610 | sd, idle, all_pinned, &this_best_prio); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2611 | class = class->next; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2612 | } while (class && max_load_move > total_load_moved); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2613 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2614 | return total_load_moved > 0; |
| 2615 | } |
| 2616 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2617 | static int |
| 2618 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2619 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 2620 | struct rq_iterator *iterator) |
| 2621 | { |
| 2622 | struct task_struct *p = iterator->start(iterator->arg); |
| 2623 | int pinned = 0; |
| 2624 | |
| 2625 | while (p) { |
| 2626 | if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
| 2627 | pull_task(busiest, p, this_rq, this_cpu); |
| 2628 | /* |
| 2629 | * Right now, this is only the second place pull_task() |
| 2630 | * is called, so we can safely collect pull_task() |
| 2631 | * stats here rather than inside pull_task(). |
| 2632 | */ |
| 2633 | schedstat_inc(sd, lb_gained[idle]); |
| 2634 | |
| 2635 | return 1; |
| 2636 | } |
| 2637 | p = iterator->next(iterator->arg); |
| 2638 | } |
| 2639 | |
| 2640 | return 0; |
| 2641 | } |
| 2642 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2643 | /* |
| 2644 | * move_one_task tries to move exactly one task from busiest to this_rq, as |
| 2645 | * part of active balancing operations within "domain". |
| 2646 | * Returns 1 if successful and 0 otherwise. |
| 2647 | * |
| 2648 | * Called with both runqueues locked. |
| 2649 | */ |
| 2650 | static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2651 | struct sched_domain *sd, enum cpu_idle_type idle) |
| 2652 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2653 | const struct sched_class *class; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2654 | |
| 2655 | for (class = sched_class_highest; class; class = class->next) |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2656 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2657 | return 1; |
| 2658 | |
| 2659 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | } |
| 2661 | |
| 2662 | /* |
| 2663 | * find_busiest_group finds and returns the busiest CPU group within the |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2664 | * domain. It calculates and returns the amount of weighted load which |
| 2665 | * should be moved to restore balance via the imbalance parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2666 | */ |
| 2667 | static struct sched_group * |
| 2668 | find_busiest_group(struct sched_domain *sd, int this_cpu, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2669 | unsigned long *imbalance, enum cpu_idle_type idle, |
| 2670 | int *sd_idle, cpumask_t *cpus, int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | { |
| 2672 | struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups; |
| 2673 | 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] | 2674 | unsigned long max_pull; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2675 | unsigned long busiest_load_per_task, busiest_nr_running; |
| 2676 | unsigned long this_load_per_task, this_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2677 | int load_idx, group_imb = 0; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2678 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2679 | int power_savings_balance = 1; |
| 2680 | unsigned long leader_nr_running = 0, min_load_per_task = 0; |
| 2681 | unsigned long min_nr_running = ULONG_MAX; |
| 2682 | struct sched_group *group_min = NULL, *group_leader = NULL; |
| 2683 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | |
| 2685 | max_load = this_load = total_load = total_pwr = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2686 | busiest_load_per_task = busiest_nr_running = 0; |
| 2687 | this_load_per_task = this_nr_running = 0; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2688 | if (idle == CPU_NOT_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2689 | load_idx = sd->busy_idx; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2690 | else if (idle == CPU_NEWLY_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2691 | load_idx = sd->newidle_idx; |
| 2692 | else |
| 2693 | load_idx = sd->idle_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2694 | |
| 2695 | do { |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2696 | unsigned long load, group_capacity, max_cpu_load, min_cpu_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2697 | int local_group; |
| 2698 | int i; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2699 | int __group_imb = 0; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2700 | unsigned int balance_cpu = -1, first_idle_cpu = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2701 | unsigned long sum_nr_running, sum_weighted_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2702 | |
| 2703 | local_group = cpu_isset(this_cpu, group->cpumask); |
| 2704 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2705 | if (local_group) |
| 2706 | balance_cpu = first_cpu(group->cpumask); |
| 2707 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2708 | /* Tally up the load of all CPUs in the group */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2709 | sum_weighted_load = sum_nr_running = avg_load = 0; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2710 | max_cpu_load = 0; |
| 2711 | min_cpu_load = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | |
| 2713 | for_each_cpu_mask(i, group->cpumask) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2714 | struct rq *rq; |
| 2715 | |
| 2716 | if (!cpu_isset(i, *cpus)) |
| 2717 | continue; |
| 2718 | |
| 2719 | rq = cpu_rq(i); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2720 | |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2721 | if (*sd_idle && rq->nr_running) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 2722 | *sd_idle = 0; |
| 2723 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2724 | /* Bias balancing toward cpus of our domain */ |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2725 | if (local_group) { |
| 2726 | if (idle_cpu(i) && !first_idle_cpu) { |
| 2727 | first_idle_cpu = 1; |
| 2728 | balance_cpu = i; |
| 2729 | } |
| 2730 | |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2731 | load = target_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2732 | } else { |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2733 | load = source_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2734 | if (load > max_cpu_load) |
| 2735 | max_cpu_load = load; |
| 2736 | if (min_cpu_load > load) |
| 2737 | min_cpu_load = load; |
| 2738 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | |
| 2740 | avg_load += load; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2741 | sum_nr_running += rq->nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2742 | sum_weighted_load += weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2743 | } |
| 2744 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2745 | /* |
| 2746 | * First idle cpu or the first cpu(busiest) in this sched group |
| 2747 | * is eligible for doing load balancing at this and above |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2748 | * domains. In the newly idle case, we will allow all the cpu's |
| 2749 | * to do the newly idle load balance. |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2750 | */ |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2751 | if (idle != CPU_NEWLY_IDLE && local_group && |
| 2752 | balance_cpu != this_cpu && balance) { |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2753 | *balance = 0; |
| 2754 | goto ret; |
| 2755 | } |
| 2756 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2757 | total_load += avg_load; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2758 | total_pwr += group->__cpu_power; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | |
| 2760 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2761 | avg_load = sg_div_cpu_power(group, |
| 2762 | avg_load * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2763 | |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2764 | if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE) |
| 2765 | __group_imb = 1; |
| 2766 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2767 | group_capacity = group->__cpu_power / SCHED_LOAD_SCALE; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2768 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | if (local_group) { |
| 2770 | this_load = avg_load; |
| 2771 | this = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2772 | this_nr_running = sum_nr_running; |
| 2773 | this_load_per_task = sum_weighted_load; |
| 2774 | } else if (avg_load > max_load && |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2775 | (sum_nr_running > group_capacity || __group_imb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2776 | max_load = avg_load; |
| 2777 | busiest = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2778 | busiest_nr_running = sum_nr_running; |
| 2779 | busiest_load_per_task = sum_weighted_load; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2780 | group_imb = __group_imb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2781 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2782 | |
| 2783 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2784 | /* |
| 2785 | * Busy processors will not participate in power savings |
| 2786 | * balance. |
| 2787 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2788 | if (idle == CPU_NOT_IDLE || |
| 2789 | !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
| 2790 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2791 | |
| 2792 | /* |
| 2793 | * If the local group is idle or completely loaded |
| 2794 | * no need to do power savings balance at this domain |
| 2795 | */ |
| 2796 | if (local_group && (this_nr_running >= group_capacity || |
| 2797 | !this_nr_running)) |
| 2798 | power_savings_balance = 0; |
| 2799 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2800 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2801 | * If a group is already running at full capacity or idle, |
| 2802 | * don't include that group in power savings calculations |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2803 | */ |
| 2804 | if (!power_savings_balance || sum_nr_running >= group_capacity |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2805 | || !sum_nr_running) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2806 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2807 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2808 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2809 | * Calculate the group which has the least non-idle load. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2810 | * This is the group from where we need to pick up the load |
| 2811 | * for saving power |
| 2812 | */ |
| 2813 | if ((sum_nr_running < min_nr_running) || |
| 2814 | (sum_nr_running == min_nr_running && |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2815 | first_cpu(group->cpumask) < |
| 2816 | first_cpu(group_min->cpumask))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2817 | group_min = group; |
| 2818 | min_nr_running = sum_nr_running; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2819 | min_load_per_task = sum_weighted_load / |
| 2820 | sum_nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2821 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2822 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2823 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2824 | * Calculate the group which is almost near its |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2825 | * capacity but still has some space to pick up some load |
| 2826 | * from other group and save more power |
| 2827 | */ |
| 2828 | if (sum_nr_running <= group_capacity - 1) { |
| 2829 | if (sum_nr_running > leader_nr_running || |
| 2830 | (sum_nr_running == leader_nr_running && |
| 2831 | first_cpu(group->cpumask) > |
| 2832 | first_cpu(group_leader->cpumask))) { |
| 2833 | group_leader = group; |
| 2834 | leader_nr_running = sum_nr_running; |
| 2835 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2836 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2837 | group_next: |
| 2838 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | group = group->next; |
| 2840 | } while (group != sd->groups); |
| 2841 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2842 | if (!busiest || this_load >= max_load || busiest_nr_running == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | goto out_balanced; |
| 2844 | |
| 2845 | avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr; |
| 2846 | |
| 2847 | if (this_load >= avg_load || |
| 2848 | 100*max_load <= sd->imbalance_pct*this_load) |
| 2849 | goto out_balanced; |
| 2850 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2851 | busiest_load_per_task /= busiest_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2852 | if (group_imb) |
| 2853 | busiest_load_per_task = min(busiest_load_per_task, avg_load); |
| 2854 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | /* |
| 2856 | * We're trying to get all the cpus to the average_load, so we don't |
| 2857 | * want to push ourselves above the average load, nor do we wish to |
| 2858 | * reduce the max loaded cpu below the average load, as either of these |
| 2859 | * actions would just result in more rebalancing later, and ping-pong |
| 2860 | * tasks around. Thus we look for the minimum possible imbalance. |
| 2861 | * Negative imbalances (*we* are more loaded than anyone else) will |
| 2862 | * 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] | 2863 | * 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] | 2864 | * appear as very large values with unsigned longs. |
| 2865 | */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2866 | if (max_load <= busiest_load_per_task) |
| 2867 | goto out_balanced; |
| 2868 | |
| 2869 | /* |
| 2870 | * In the presence of smp nice balancing, certain scenarios can have |
| 2871 | * max load less than avg load(as we skip the groups at or below |
| 2872 | * its cpu_power, while calculating max_load..) |
| 2873 | */ |
| 2874 | if (max_load < avg_load) { |
| 2875 | *imbalance = 0; |
| 2876 | goto small_imbalance; |
| 2877 | } |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 2878 | |
| 2879 | /* 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] | 2880 | 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] | 2881 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2882 | /* How much load to actually move to equalise the imbalance */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2883 | *imbalance = min(max_pull * busiest->__cpu_power, |
| 2884 | (avg_load - this_load) * this->__cpu_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | / SCHED_LOAD_SCALE; |
| 2886 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2887 | /* |
| 2888 | * if *imbalance is less than the average load per runnable task |
| 2889 | * there is no gaurantee that any tasks will be moved so we'll have |
| 2890 | * a think about bumping its value to force at least one task to be |
| 2891 | * moved |
| 2892 | */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 2893 | if (*imbalance < busiest_load_per_task) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2894 | unsigned long tmp, pwr_now, pwr_move; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2895 | unsigned int imbn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2896 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2897 | small_imbalance: |
| 2898 | pwr_move = pwr_now = 0; |
| 2899 | imbn = 2; |
| 2900 | if (this_nr_running) { |
| 2901 | this_load_per_task /= this_nr_running; |
| 2902 | if (busiest_load_per_task > this_load_per_task) |
| 2903 | imbn = 1; |
| 2904 | } else |
| 2905 | this_load_per_task = SCHED_LOAD_SCALE; |
| 2906 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2907 | if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >= |
| 2908 | busiest_load_per_task * imbn) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2909 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | return busiest; |
| 2911 | } |
| 2912 | |
| 2913 | /* |
| 2914 | * OK, we don't have enough imbalance to justify moving tasks, |
| 2915 | * however we may be able to increase total CPU power used by |
| 2916 | * moving them. |
| 2917 | */ |
| 2918 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2919 | pwr_now += busiest->__cpu_power * |
| 2920 | min(busiest_load_per_task, max_load); |
| 2921 | pwr_now += this->__cpu_power * |
| 2922 | min(this_load_per_task, this_load); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | pwr_now /= SCHED_LOAD_SCALE; |
| 2924 | |
| 2925 | /* Amount of load we'd subtract */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2926 | tmp = sg_div_cpu_power(busiest, |
| 2927 | busiest_load_per_task * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2928 | if (max_load > tmp) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2929 | pwr_move += busiest->__cpu_power * |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2930 | min(busiest_load_per_task, max_load - tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | |
| 2932 | /* Amount of load we'd add */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2933 | if (max_load * busiest->__cpu_power < |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 2934 | busiest_load_per_task * SCHED_LOAD_SCALE) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2935 | tmp = sg_div_cpu_power(this, |
| 2936 | max_load * busiest->__cpu_power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2937 | else |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2938 | tmp = sg_div_cpu_power(this, |
| 2939 | busiest_load_per_task * SCHED_LOAD_SCALE); |
| 2940 | pwr_move += this->__cpu_power * |
| 2941 | min(this_load_per_task, this_load + tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2942 | pwr_move /= SCHED_LOAD_SCALE; |
| 2943 | |
| 2944 | /* Move if we gain throughput */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 2945 | if (pwr_move > pwr_now) |
| 2946 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | } |
| 2948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | return busiest; |
| 2950 | |
| 2951 | out_balanced: |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2952 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2953 | if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2954 | goto ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2955 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2956 | if (this == group_leader && group_leader != group_min) { |
| 2957 | *imbalance = min_load_per_task; |
| 2958 | return group_min; |
| 2959 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2960 | #endif |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2961 | ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2962 | *imbalance = 0; |
| 2963 | return NULL; |
| 2964 | } |
| 2965 | |
| 2966 | /* |
| 2967 | * find_busiest_queue - find the busiest runqueue among the cpus in group. |
| 2968 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2969 | static struct rq * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2970 | find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2971 | unsigned long imbalance, cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2972 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2973 | struct rq *busiest = NULL, *rq; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2974 | unsigned long max_load = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | int i; |
| 2976 | |
| 2977 | for_each_cpu_mask(i, group->cpumask) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2978 | unsigned long wl; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2979 | |
| 2980 | if (!cpu_isset(i, *cpus)) |
| 2981 | continue; |
| 2982 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2983 | rq = cpu_rq(i); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2984 | wl = weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2985 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2986 | if (rq->nr_running == 1 && wl > imbalance) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2987 | continue; |
| 2988 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2989 | if (wl > max_load) { |
| 2990 | max_load = wl; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2991 | busiest = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | } |
| 2993 | } |
| 2994 | |
| 2995 | return busiest; |
| 2996 | } |
| 2997 | |
| 2998 | /* |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 2999 | * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but |
| 3000 | * so long as it is large enough. |
| 3001 | */ |
| 3002 | #define MAX_PINNED_INTERVAL 512 |
| 3003 | |
| 3004 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3006 | * tasks if there is an imbalance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3007 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3008 | static int load_balance(int this_cpu, struct rq *this_rq, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3009 | struct sched_domain *sd, enum cpu_idle_type idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3010 | int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3011 | { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3012 | int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3013 | struct sched_group *group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | unsigned long imbalance; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3015 | struct rq *busiest; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3016 | cpumask_t cpus = CPU_MASK_ALL; |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3017 | unsigned long flags; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3018 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3019 | /* |
| 3020 | * When power savings policy is enabled for the parent domain, idle |
| 3021 | * sibling can pick up load irrespective of busy siblings. In this case, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3022 | * 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] | 3023 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3024 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3025 | if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3026 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3027 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3028 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3029 | schedstat_inc(sd, lb_count[idle]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3031 | redo: |
| 3032 | group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3033 | &cpus, balance); |
| 3034 | |
Chen, Kenneth W | 0606671 | 2006-12-10 02:20:35 -0800 | [diff] [blame] | 3035 | if (*balance == 0) |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3036 | goto out_balanced; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3037 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3038 | if (!group) { |
| 3039 | schedstat_inc(sd, lb_nobusyg[idle]); |
| 3040 | goto out_balanced; |
| 3041 | } |
| 3042 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3043 | busiest = find_busiest_queue(group, idle, imbalance, &cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3044 | if (!busiest) { |
| 3045 | schedstat_inc(sd, lb_nobusyq[idle]); |
| 3046 | goto out_balanced; |
| 3047 | } |
| 3048 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3049 | BUG_ON(busiest == this_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3050 | |
| 3051 | schedstat_add(sd, lb_imbalance[idle], imbalance); |
| 3052 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3053 | ld_moved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | if (busiest->nr_running > 1) { |
| 3055 | /* |
| 3056 | * Attempt to move tasks. If find_busiest_group has found |
| 3057 | * an imbalance but busiest->nr_running <= 1, the group is |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3058 | * still unbalanced. ld_moved simply stays zero, so it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3059 | * correctly treated as an imbalance. |
| 3060 | */ |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3061 | local_irq_save(flags); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3062 | double_rq_lock(this_rq, busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3063 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3064 | imbalance, sd, idle, &all_pinned); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3065 | double_rq_unlock(this_rq, busiest); |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3066 | local_irq_restore(flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3067 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3068 | /* |
| 3069 | * some other cpu did the load balance for us. |
| 3070 | */ |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3071 | if (ld_moved && this_cpu != smp_processor_id()) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3072 | resched_cpu(this_cpu); |
| 3073 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3074 | /* All tasks on this runqueue were pinned by CPU affinity */ |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3075 | if (unlikely(all_pinned)) { |
| 3076 | cpu_clear(cpu_of(busiest), cpus); |
| 3077 | if (!cpus_empty(cpus)) |
| 3078 | goto redo; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3079 | goto out_balanced; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3080 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3082 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3083 | if (!ld_moved) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | schedstat_inc(sd, lb_failed[idle]); |
| 3085 | sd->nr_balance_failed++; |
| 3086 | |
| 3087 | if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3089 | spin_lock_irqsave(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3090 | |
| 3091 | /* don't kick the migration_thread, if the curr |
| 3092 | * task on busiest cpu can't be moved to this_cpu |
| 3093 | */ |
| 3094 | if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) { |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3095 | spin_unlock_irqrestore(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3096 | all_pinned = 1; |
| 3097 | goto out_one_pinned; |
| 3098 | } |
| 3099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | if (!busiest->active_balance) { |
| 3101 | busiest->active_balance = 1; |
| 3102 | busiest->push_cpu = this_cpu; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3103 | active_balance = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | } |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3105 | spin_unlock_irqrestore(&busiest->lock, flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3106 | if (active_balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3107 | wake_up_process(busiest->migration_thread); |
| 3108 | |
| 3109 | /* |
| 3110 | * We've kicked active balancing, reset the failure |
| 3111 | * counter. |
| 3112 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3113 | sd->nr_balance_failed = sd->cache_nice_tries+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3114 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3115 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | sd->nr_balance_failed = 0; |
| 3117 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3118 | if (likely(!active_balance)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | /* We were unbalanced, so reset the balancing interval */ |
| 3120 | sd->balance_interval = sd->min_interval; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3121 | } else { |
| 3122 | /* |
| 3123 | * If we've begun active balancing, start to back off. This |
| 3124 | * case may not be covered by the all_pinned logic if there |
| 3125 | * is only 1 task on the busy runqueue (because we don't call |
| 3126 | * move_tasks). |
| 3127 | */ |
| 3128 | if (sd->balance_interval < sd->max_interval) |
| 3129 | sd->balance_interval *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3130 | } |
| 3131 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3132 | if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3133 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3134 | return -1; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3135 | return ld_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | |
| 3137 | out_balanced: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3138 | schedstat_inc(sd, lb_balanced[idle]); |
| 3139 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3140 | sd->nr_balance_failed = 0; |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3141 | |
| 3142 | out_one_pinned: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | /* tune up the balancing interval */ |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3144 | if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) || |
| 3145 | (sd->balance_interval < sd->max_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3146 | sd->balance_interval *= 2; |
| 3147 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3148 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3149 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3150 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | return 0; |
| 3152 | } |
| 3153 | |
| 3154 | /* |
| 3155 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3156 | * tasks if there is an imbalance. |
| 3157 | * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3158 | * 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] | 3159 | * this_rq is locked. |
| 3160 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3161 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3162 | 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] | 3163 | { |
| 3164 | struct sched_group *group; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3165 | struct rq *busiest = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3166 | unsigned long imbalance; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3167 | int ld_moved = 0; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3168 | int sd_idle = 0; |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3169 | int all_pinned = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3170 | cpumask_t cpus = CPU_MASK_ALL; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3171 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3172 | /* |
| 3173 | * When power savings policy is enabled for the parent domain, idle |
| 3174 | * sibling can pick up load irrespective of busy siblings. In this case, |
| 3175 | * let the state of idle sibling percolate up as IDLE, instead of |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3176 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3177 | */ |
| 3178 | if (sd->flags & SD_SHARE_CPUPOWER && |
| 3179 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3180 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3182 | schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3183 | redo: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3184 | group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3185 | &sd_idle, &cpus, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | if (!group) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3187 | schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3188 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | } |
| 3190 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3191 | busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3192 | &cpus); |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3193 | if (!busiest) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3194 | schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3195 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3196 | } |
| 3197 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3198 | BUG_ON(busiest == this_rq); |
| 3199 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3200 | schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3201 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3202 | ld_moved = 0; |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3203 | if (busiest->nr_running > 1) { |
| 3204 | /* Attempt to move tasks */ |
| 3205 | double_lock_balance(this_rq, busiest); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3206 | /* this_rq->clock is already updated */ |
| 3207 | update_rq_clock(busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3208 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3209 | imbalance, sd, CPU_NEWLY_IDLE, |
| 3210 | &all_pinned); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3211 | spin_unlock(&busiest->lock); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3212 | |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3213 | if (unlikely(all_pinned)) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3214 | cpu_clear(cpu_of(busiest), cpus); |
| 3215 | if (!cpus_empty(cpus)) |
| 3216 | goto redo; |
| 3217 | } |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3218 | } |
| 3219 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3220 | if (!ld_moved) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3221 | schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3222 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
| 3223 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3224 | return -1; |
| 3225 | } else |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3226 | sd->nr_balance_failed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3227 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3228 | return ld_moved; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3229 | |
| 3230 | out_balanced: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3231 | schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3232 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3233 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3234 | return -1; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3235 | sd->nr_balance_failed = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3236 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3237 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3238 | } |
| 3239 | |
| 3240 | /* |
| 3241 | * idle_balance is called by schedule() if this_cpu is about to become |
| 3242 | * idle. Attempts to pull tasks from other CPUs. |
| 3243 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3244 | static void idle_balance(int this_cpu, struct rq *this_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3245 | { |
| 3246 | struct sched_domain *sd; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3247 | int pulled_task = -1; |
| 3248 | unsigned long next_balance = jiffies + HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3249 | |
| 3250 | for_each_domain(this_cpu, sd) { |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3251 | unsigned long interval; |
| 3252 | |
| 3253 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3254 | continue; |
| 3255 | |
| 3256 | if (sd->flags & SD_BALANCE_NEWIDLE) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3257 | /* If we've pulled tasks over stop searching: */ |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3258 | pulled_task = load_balance_newidle(this_cpu, |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3259 | this_rq, sd); |
| 3260 | |
| 3261 | interval = msecs_to_jiffies(sd->balance_interval); |
| 3262 | if (time_after(next_balance, sd->last_balance + interval)) |
| 3263 | next_balance = sd->last_balance + interval; |
| 3264 | if (pulled_task) |
| 3265 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3267 | if (pulled_task || time_after(jiffies, this_rq->next_balance)) { |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3268 | /* |
| 3269 | * We are going idle. next_balance may be set based on |
| 3270 | * a busy processor. So reset next_balance. |
| 3271 | */ |
| 3272 | this_rq->next_balance = next_balance; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3273 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | } |
| 3275 | |
| 3276 | /* |
| 3277 | * active_load_balance is run by migration threads. It pushes running tasks |
| 3278 | * off the busiest CPU onto idle CPUs. It requires at least 1 task to be |
| 3279 | * running on each physical CPU where possible, and avoids physical / |
| 3280 | * logical imbalances. |
| 3281 | * |
| 3282 | * Called with busiest_rq locked. |
| 3283 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3284 | static void active_load_balance(struct rq *busiest_rq, int busiest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3285 | { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3286 | int target_cpu = busiest_rq->push_cpu; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3287 | struct sched_domain *sd; |
| 3288 | struct rq *target_rq; |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3289 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3290 | /* Is there any task to move? */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3291 | if (busiest_rq->nr_running <= 1) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3292 | return; |
| 3293 | |
| 3294 | target_rq = cpu_rq(target_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | |
| 3296 | /* |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3297 | * This condition is "impossible", if it occurs |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3298 | * we need to fix it. Originally reported by |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3299 | * Bjorn Helgaas on a 128-cpu setup. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3301 | BUG_ON(busiest_rq == target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3303 | /* move a task from busiest_rq to target_rq */ |
| 3304 | double_lock_balance(busiest_rq, target_rq); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3305 | update_rq_clock(busiest_rq); |
| 3306 | update_rq_clock(target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3307 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3308 | /* Search for an sd spanning us and the target CPU. */ |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3309 | for_each_domain(target_cpu, sd) { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3310 | if ((sd->flags & SD_LOAD_BALANCE) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3311 | cpu_isset(busiest_cpu, sd->span)) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3312 | break; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3313 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3314 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3315 | if (likely(sd)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3316 | schedstat_inc(sd, alb_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3318 | if (move_one_task(target_rq, target_cpu, busiest_rq, |
| 3319 | sd, CPU_IDLE)) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3320 | schedstat_inc(sd, alb_pushed); |
| 3321 | else |
| 3322 | schedstat_inc(sd, alb_failed); |
| 3323 | } |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3324 | spin_unlock(&target_rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3325 | } |
| 3326 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3327 | #ifdef CONFIG_NO_HZ |
| 3328 | static struct { |
| 3329 | atomic_t load_balancer; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3330 | cpumask_t cpu_mask; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3331 | } nohz ____cacheline_aligned = { |
| 3332 | .load_balancer = ATOMIC_INIT(-1), |
| 3333 | .cpu_mask = CPU_MASK_NONE, |
| 3334 | }; |
| 3335 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3336 | /* |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3337 | * This routine will try to nominate the ilb (idle load balancing) |
| 3338 | * owner among the cpus whose ticks are stopped. ilb owner will do the idle |
| 3339 | * load balancing on behalf of all those cpus. If all the cpus in the system |
| 3340 | * go into this tickless mode, then there will be no ilb owner (as there is |
| 3341 | * no need for one) and all the cpus will sleep till the next wakeup event |
| 3342 | * arrives... |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3343 | * |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3344 | * For the ilb owner, tick is not stopped. And this tick will be used |
| 3345 | * for idle load balancing. ilb owner will still be part of |
| 3346 | * nohz.cpu_mask.. |
| 3347 | * |
| 3348 | * While stopping the tick, this cpu will become the ilb owner if there |
| 3349 | * is no other owner. And will be the owner till that cpu becomes busy |
| 3350 | * or if all cpus in the system stop their ticks at which point |
| 3351 | * there is no need for ilb owner. |
| 3352 | * |
| 3353 | * When the ilb owner becomes busy, it nominates another owner, during the |
| 3354 | * next busy scheduler_tick() |
| 3355 | */ |
| 3356 | int select_nohz_load_balancer(int stop_tick) |
| 3357 | { |
| 3358 | int cpu = smp_processor_id(); |
| 3359 | |
| 3360 | if (stop_tick) { |
| 3361 | cpu_set(cpu, nohz.cpu_mask); |
| 3362 | cpu_rq(cpu)->in_nohz_recently = 1; |
| 3363 | |
| 3364 | /* |
| 3365 | * If we are going offline and still the leader, give up! |
| 3366 | */ |
| 3367 | if (cpu_is_offline(cpu) && |
| 3368 | atomic_read(&nohz.load_balancer) == cpu) { |
| 3369 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3370 | BUG(); |
| 3371 | return 0; |
| 3372 | } |
| 3373 | |
| 3374 | /* time for ilb owner also to sleep */ |
| 3375 | if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3376 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3377 | atomic_set(&nohz.load_balancer, -1); |
| 3378 | return 0; |
| 3379 | } |
| 3380 | |
| 3381 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3382 | /* make me the ilb owner */ |
| 3383 | if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1) |
| 3384 | return 1; |
| 3385 | } else if (atomic_read(&nohz.load_balancer) == cpu) |
| 3386 | return 1; |
| 3387 | } else { |
| 3388 | if (!cpu_isset(cpu, nohz.cpu_mask)) |
| 3389 | return 0; |
| 3390 | |
| 3391 | cpu_clear(cpu, nohz.cpu_mask); |
| 3392 | |
| 3393 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3394 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3395 | BUG(); |
| 3396 | } |
| 3397 | return 0; |
| 3398 | } |
| 3399 | #endif |
| 3400 | |
| 3401 | static DEFINE_SPINLOCK(balancing); |
| 3402 | |
| 3403 | /* |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3404 | * It checks each scheduling domain to see if it is due to be balanced, |
| 3405 | * and initiates a balancing operation if so. |
| 3406 | * |
| 3407 | * Balancing parameters are set up in arch_init_sched_domains. |
| 3408 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3409 | static void rebalance_domains(int cpu, enum cpu_idle_type idle) |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3410 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3411 | int balance = 1; |
| 3412 | struct rq *rq = cpu_rq(cpu); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3413 | unsigned long interval; |
| 3414 | struct sched_domain *sd; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3415 | /* Earliest time when we have to do rebalance again */ |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3416 | unsigned long next_balance = jiffies + 60*HZ; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3417 | int update_next_balance = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3418 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3419 | for_each_domain(cpu, sd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3420 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3421 | continue; |
| 3422 | |
| 3423 | interval = sd->balance_interval; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3424 | if (idle != CPU_IDLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | interval *= sd->busy_factor; |
| 3426 | |
| 3427 | /* scale ms to jiffies */ |
| 3428 | interval = msecs_to_jiffies(interval); |
| 3429 | if (unlikely(!interval)) |
| 3430 | interval = 1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3431 | if (interval > HZ*NR_CPUS/10) |
| 3432 | interval = HZ*NR_CPUS/10; |
| 3433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3434 | |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3435 | if (sd->flags & SD_SERIALIZE) { |
| 3436 | if (!spin_trylock(&balancing)) |
| 3437 | goto out; |
| 3438 | } |
| 3439 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3440 | if (time_after_eq(jiffies, sd->last_balance + interval)) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3441 | if (load_balance(cpu, rq, sd, idle, &balance)) { |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3442 | /* |
| 3443 | * We've pulled tasks over so either we're no |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3444 | * longer idle, or one of our SMT siblings is |
| 3445 | * not idle. |
| 3446 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3447 | idle = CPU_NOT_IDLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3448 | } |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3449 | sd->last_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | } |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3451 | if (sd->flags & SD_SERIALIZE) |
| 3452 | spin_unlock(&balancing); |
| 3453 | out: |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3454 | if (time_after(next_balance, sd->last_balance + interval)) { |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3455 | next_balance = sd->last_balance + interval; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3456 | update_next_balance = 1; |
| 3457 | } |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3458 | |
| 3459 | /* |
| 3460 | * Stop the load balance at this level. There is another |
| 3461 | * CPU in our sched group which is doing load balancing more |
| 3462 | * actively. |
| 3463 | */ |
| 3464 | if (!balance) |
| 3465 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3466 | } |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3467 | |
| 3468 | /* |
| 3469 | * next_balance will be updated only when there is a need. |
| 3470 | * When the cpu is attached to null domain for ex, it will not be |
| 3471 | * updated. |
| 3472 | */ |
| 3473 | if (likely(update_next_balance)) |
| 3474 | rq->next_balance = next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3475 | } |
| 3476 | |
| 3477 | /* |
| 3478 | * run_rebalance_domains is triggered when needed from the scheduler tick. |
| 3479 | * In CONFIG_NO_HZ case, the idle load balance owner will do the |
| 3480 | * rebalancing for all the cpus for whom scheduler ticks are stopped. |
| 3481 | */ |
| 3482 | static void run_rebalance_domains(struct softirq_action *h) |
| 3483 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3484 | int this_cpu = smp_processor_id(); |
| 3485 | struct rq *this_rq = cpu_rq(this_cpu); |
| 3486 | enum cpu_idle_type idle = this_rq->idle_at_tick ? |
| 3487 | CPU_IDLE : CPU_NOT_IDLE; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3488 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3489 | rebalance_domains(this_cpu, idle); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3490 | |
| 3491 | #ifdef CONFIG_NO_HZ |
| 3492 | /* |
| 3493 | * If this cpu is the owner for idle load balancing, then do the |
| 3494 | * balancing on behalf of the other idle cpus whose ticks are |
| 3495 | * stopped. |
| 3496 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3497 | if (this_rq->idle_at_tick && |
| 3498 | atomic_read(&nohz.load_balancer) == this_cpu) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3499 | cpumask_t cpus = nohz.cpu_mask; |
| 3500 | struct rq *rq; |
| 3501 | int balance_cpu; |
| 3502 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3503 | cpu_clear(this_cpu, cpus); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3504 | for_each_cpu_mask(balance_cpu, cpus) { |
| 3505 | /* |
| 3506 | * If this cpu gets work to do, stop the load balancing |
| 3507 | * work being done for other cpus. Next load |
| 3508 | * balancing owner will pick it up. |
| 3509 | */ |
| 3510 | if (need_resched()) |
| 3511 | break; |
| 3512 | |
Oleg Nesterov | de0cf89 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 3513 | rebalance_domains(balance_cpu, CPU_IDLE); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3514 | |
| 3515 | rq = cpu_rq(balance_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3516 | if (time_after(this_rq->next_balance, rq->next_balance)) |
| 3517 | this_rq->next_balance = rq->next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3518 | } |
| 3519 | } |
| 3520 | #endif |
| 3521 | } |
| 3522 | |
| 3523 | /* |
| 3524 | * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing. |
| 3525 | * |
| 3526 | * In case of CONFIG_NO_HZ, this is the place where we nominate a new |
| 3527 | * idle load balancing owner or decide to stop the periodic load balancing, |
| 3528 | * if the whole system is idle. |
| 3529 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3530 | static inline void trigger_load_balance(struct rq *rq, int cpu) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3531 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3532 | #ifdef CONFIG_NO_HZ |
| 3533 | /* |
| 3534 | * If we were in the nohz mode recently and busy at the current |
| 3535 | * scheduler tick, then check if we need to nominate new idle |
| 3536 | * load balancer. |
| 3537 | */ |
| 3538 | if (rq->in_nohz_recently && !rq->idle_at_tick) { |
| 3539 | rq->in_nohz_recently = 0; |
| 3540 | |
| 3541 | if (atomic_read(&nohz.load_balancer) == cpu) { |
| 3542 | cpu_clear(cpu, nohz.cpu_mask); |
| 3543 | atomic_set(&nohz.load_balancer, -1); |
| 3544 | } |
| 3545 | |
| 3546 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3547 | /* |
| 3548 | * simple selection for now: Nominate the |
| 3549 | * first cpu in the nohz list to be the next |
| 3550 | * ilb owner. |
| 3551 | * |
| 3552 | * TBD: Traverse the sched domains and nominate |
| 3553 | * the nearest cpu in the nohz.cpu_mask. |
| 3554 | */ |
| 3555 | int ilb = first_cpu(nohz.cpu_mask); |
| 3556 | |
| 3557 | if (ilb != NR_CPUS) |
| 3558 | resched_cpu(ilb); |
| 3559 | } |
| 3560 | } |
| 3561 | |
| 3562 | /* |
| 3563 | * If this cpu is idle and doing idle load balancing for all the |
| 3564 | * cpus with ticks stopped, is it time for that to stop? |
| 3565 | */ |
| 3566 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu && |
| 3567 | cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3568 | resched_cpu(cpu); |
| 3569 | return; |
| 3570 | } |
| 3571 | |
| 3572 | /* |
| 3573 | * If this cpu is idle and the idle load balancing is done by |
| 3574 | * someone else, then no need raise the SCHED_SOFTIRQ |
| 3575 | */ |
| 3576 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu && |
| 3577 | cpu_isset(cpu, nohz.cpu_mask)) |
| 3578 | return; |
| 3579 | #endif |
| 3580 | if (time_after_eq(jiffies, rq->next_balance)) |
| 3581 | raise_softirq(SCHED_SOFTIRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3582 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3583 | |
| 3584 | #else /* CONFIG_SMP */ |
| 3585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3586 | /* |
| 3587 | * on UP we do not need to balance between CPUs: |
| 3588 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3589 | static inline void idle_balance(int cpu, struct rq *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3590 | { |
| 3591 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3592 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3593 | #endif |
| 3594 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | DEFINE_PER_CPU(struct kernel_stat, kstat); |
| 3596 | |
| 3597 | EXPORT_PER_CPU_SYMBOL(kstat); |
| 3598 | |
| 3599 | /* |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3600 | * Return p->sum_exec_runtime plus any more ns on the sched_clock |
| 3601 | * 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] | 3602 | */ |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3603 | unsigned long long task_sched_runtime(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3604 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3605 | unsigned long flags; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3606 | u64 ns, delta_exec; |
| 3607 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3608 | |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3609 | rq = task_rq_lock(p, &flags); |
| 3610 | ns = p->se.sum_exec_runtime; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 3611 | if (task_current(rq, p)) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3612 | update_rq_clock(rq); |
| 3613 | delta_exec = rq->clock - p->se.exec_start; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3614 | if ((s64)delta_exec > 0) |
| 3615 | ns += delta_exec; |
| 3616 | } |
| 3617 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3618 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3619 | return ns; |
| 3620 | } |
| 3621 | |
| 3622 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3623 | * Account user cpu time to a process. |
| 3624 | * @p: the process that the cpu time gets accounted to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | * @cputime: the cpu time spent in user space since the last update |
| 3626 | */ |
| 3627 | void account_user_time(struct task_struct *p, cputime_t cputime) |
| 3628 | { |
| 3629 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3630 | cputime64_t tmp; |
| 3631 | |
| 3632 | p->utime = cputime_add(p->utime, cputime); |
| 3633 | |
| 3634 | /* Add user time to cpustat. */ |
| 3635 | tmp = cputime_to_cputime64(cputime); |
| 3636 | if (TASK_NICE(p) > 0) |
| 3637 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3638 | else |
| 3639 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3640 | } |
| 3641 | |
| 3642 | /* |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3643 | * Account guest cpu time to a process. |
| 3644 | * @p: the process that the cpu time gets accounted to |
| 3645 | * @cputime: the cpu time spent in virtual machine since the last update |
| 3646 | */ |
Adrian Bunk | f7402e0 | 2007-10-29 21:18:10 +0100 | [diff] [blame] | 3647 | static void account_guest_time(struct task_struct *p, cputime_t cputime) |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3648 | { |
| 3649 | cputime64_t tmp; |
| 3650 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3651 | |
| 3652 | tmp = cputime_to_cputime64(cputime); |
| 3653 | |
| 3654 | p->utime = cputime_add(p->utime, cputime); |
| 3655 | p->gtime = cputime_add(p->gtime, cputime); |
| 3656 | |
| 3657 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3658 | cpustat->guest = cputime64_add(cpustat->guest, tmp); |
| 3659 | } |
| 3660 | |
| 3661 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3662 | * Account scaled user cpu time to a process. |
| 3663 | * @p: the process that the cpu time gets accounted to |
| 3664 | * @cputime: the cpu time spent in user space since the last update |
| 3665 | */ |
| 3666 | void account_user_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3667 | { |
| 3668 | p->utimescaled = cputime_add(p->utimescaled, cputime); |
| 3669 | } |
| 3670 | |
| 3671 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3672 | * Account system cpu time to a process. |
| 3673 | * @p: the process that the cpu time gets accounted to |
| 3674 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3675 | * @cputime: the cpu time spent in kernel space since the last update |
| 3676 | */ |
| 3677 | void account_system_time(struct task_struct *p, int hardirq_offset, |
| 3678 | cputime_t cputime) |
| 3679 | { |
| 3680 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3681 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | cputime64_t tmp; |
| 3683 | |
Christian Borntraeger | 9778385 | 2007-11-15 20:57:39 +0100 | [diff] [blame] | 3684 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) |
| 3685 | return account_guest_time(p, cputime); |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | p->stime = cputime_add(p->stime, cputime); |
| 3688 | |
| 3689 | /* Add system time to cpustat. */ |
| 3690 | tmp = cputime_to_cputime64(cputime); |
| 3691 | if (hardirq_count() - hardirq_offset) |
| 3692 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3693 | else if (softirq_count()) |
| 3694 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3695 | else if (p != rq->idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3696 | cpustat->system = cputime64_add(cpustat->system, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3697 | else if (atomic_read(&rq->nr_iowait) > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3698 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3699 | else |
| 3700 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| 3701 | /* Account for system time used */ |
| 3702 | acct_update_integrals(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3703 | } |
| 3704 | |
| 3705 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3706 | * Account scaled system cpu time to a process. |
| 3707 | * @p: the process that the cpu time gets accounted to |
| 3708 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3709 | * @cputime: the cpu time spent in kernel space since the last update |
| 3710 | */ |
| 3711 | void account_system_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3712 | { |
| 3713 | p->stimescaled = cputime_add(p->stimescaled, cputime); |
| 3714 | } |
| 3715 | |
| 3716 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3717 | * Account for involuntary wait time. |
| 3718 | * @p: the process from which the cpu time has been stolen |
| 3719 | * @steal: the cpu time spent in involuntary wait |
| 3720 | */ |
| 3721 | void account_steal_time(struct task_struct *p, cputime_t steal) |
| 3722 | { |
| 3723 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3724 | cputime64_t tmp = cputime_to_cputime64(steal); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3725 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3726 | |
| 3727 | if (p == rq->idle) { |
| 3728 | p->stime = cputime_add(p->stime, steal); |
| 3729 | if (atomic_read(&rq->nr_iowait) > 0) |
| 3730 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3731 | else |
| 3732 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3733 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | cpustat->steal = cputime64_add(cpustat->steal, tmp); |
| 3735 | } |
| 3736 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3737 | /* |
| 3738 | * This function gets called by the timer code, with HZ frequency. |
| 3739 | * We call it with interrupts disabled. |
| 3740 | * |
| 3741 | * It also gets called by the fork code, when changing the parent's |
| 3742 | * timeslices. |
| 3743 | */ |
| 3744 | void scheduler_tick(void) |
| 3745 | { |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3746 | int cpu = smp_processor_id(); |
| 3747 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3748 | struct task_struct *curr = rq->curr; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3749 | u64 next_tick = rq->tick_timestamp + TICK_NSEC; |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3750 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3751 | spin_lock(&rq->lock); |
Ingo Molnar | 546fe3c | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3752 | __update_rq_clock(rq); |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3753 | /* |
| 3754 | * Let rq->clock advance by at least TICK_NSEC: |
| 3755 | */ |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3756 | if (unlikely(rq->clock < next_tick)) { |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3757 | rq->clock = next_tick; |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3758 | rq->clock_underflows++; |
| 3759 | } |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3760 | rq->tick_timestamp = rq->clock; |
Ingo Molnar | f1a438d | 2007-08-09 11:16:45 +0200 | [diff] [blame] | 3761 | update_cpu_load(rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3762 | curr->sched_class->task_tick(rq, curr, 0); |
| 3763 | update_sched_rt_period(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3764 | spin_unlock(&rq->lock); |
| 3765 | |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3766 | #ifdef CONFIG_SMP |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3767 | rq->idle_at_tick = idle_cpu(cpu); |
| 3768 | trigger_load_balance(rq, cpu); |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3769 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3770 | } |
| 3771 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3772 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) |
| 3773 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 3774 | void __kprobes add_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3775 | { |
| 3776 | /* |
| 3777 | * Underflow? |
| 3778 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3779 | if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0))) |
| 3780 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3781 | preempt_count() += val; |
| 3782 | /* |
| 3783 | * Spinlock count overflowing soon? |
| 3784 | */ |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 3785 | DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= |
| 3786 | PREEMPT_MASK - 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3787 | } |
| 3788 | EXPORT_SYMBOL(add_preempt_count); |
| 3789 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 3790 | void __kprobes sub_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3791 | { |
| 3792 | /* |
| 3793 | * Underflow? |
| 3794 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3795 | if (DEBUG_LOCKS_WARN_ON(val > preempt_count())) |
| 3796 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3797 | /* |
| 3798 | * Is the spinlock portion underflowing? |
| 3799 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3800 | if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) && |
| 3801 | !(preempt_count() & PREEMPT_MASK))) |
| 3802 | return; |
| 3803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3804 | preempt_count() -= val; |
| 3805 | } |
| 3806 | EXPORT_SYMBOL(sub_preempt_count); |
| 3807 | |
| 3808 | #endif |
| 3809 | |
| 3810 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3811 | * Print scheduling while atomic bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3812 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3813 | static noinline void __schedule_bug(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3814 | { |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3815 | struct pt_regs *regs = get_irq_regs(); |
| 3816 | |
| 3817 | printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n", |
| 3818 | prev->comm, prev->pid, preempt_count()); |
| 3819 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3820 | debug_show_held_locks(prev); |
| 3821 | if (irqs_disabled()) |
| 3822 | print_irqtrace_events(prev); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3823 | |
| 3824 | if (regs) |
| 3825 | show_regs(regs); |
| 3826 | else |
| 3827 | dump_stack(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3828 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3829 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3830 | /* |
| 3831 | * Various schedule()-time debugging checks and statistics: |
| 3832 | */ |
| 3833 | static inline void schedule_debug(struct task_struct *prev) |
| 3834 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3835 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3836 | * Test if we are atomic. Since do_exit() needs to call into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3837 | * schedule() atomically, we ignore that path for now. |
| 3838 | * Otherwise, whine if we are scheduling when we should not be. |
| 3839 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3840 | if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state)) |
| 3841 | __schedule_bug(prev); |
| 3842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | profile_hit(SCHED_PROFILING, __builtin_return_address(0)); |
| 3844 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3845 | schedstat_inc(this_rq(), sched_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 3846 | #ifdef CONFIG_SCHEDSTATS |
| 3847 | if (unlikely(prev->lock_depth >= 0)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3848 | schedstat_inc(this_rq(), bkl_count); |
| 3849 | schedstat_inc(prev, sched_info.bkl_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 3850 | } |
| 3851 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3852 | } |
| 3853 | |
| 3854 | /* |
| 3855 | * Pick up the highest-prio task: |
| 3856 | */ |
| 3857 | static inline struct task_struct * |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3858 | pick_next_task(struct rq *rq, struct task_struct *prev) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3859 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3860 | const struct sched_class *class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3861 | struct task_struct *p; |
| 3862 | |
| 3863 | /* |
| 3864 | * Optimization: we know that if all tasks are in |
| 3865 | * the fair class we can call that function directly: |
| 3866 | */ |
| 3867 | if (likely(rq->nr_running == rq->cfs.nr_running)) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3868 | p = fair_sched_class.pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3869 | if (likely(p)) |
| 3870 | return p; |
| 3871 | } |
| 3872 | |
| 3873 | class = sched_class_highest; |
| 3874 | for ( ; ; ) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 3875 | p = class->pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3876 | if (p) |
| 3877 | return p; |
| 3878 | /* |
| 3879 | * Will never be NULL as the idle class always |
| 3880 | * returns a non-NULL p: |
| 3881 | */ |
| 3882 | class = class->next; |
| 3883 | } |
| 3884 | } |
| 3885 | |
| 3886 | /* |
| 3887 | * schedule() is the main scheduler function. |
| 3888 | */ |
| 3889 | asmlinkage void __sched schedule(void) |
| 3890 | { |
| 3891 | struct task_struct *prev, *next; |
Harvey Harrison | 67ca7bd | 2008-02-15 09:56:36 -0800 | [diff] [blame^] | 3892 | unsigned long *switch_count; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3893 | struct rq *rq; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3894 | int cpu; |
| 3895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3896 | need_resched: |
| 3897 | preempt_disable(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3898 | cpu = smp_processor_id(); |
| 3899 | rq = cpu_rq(cpu); |
| 3900 | rcu_qsctr_inc(cpu); |
| 3901 | prev = rq->curr; |
| 3902 | switch_count = &prev->nivcsw; |
| 3903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3904 | release_kernel_lock(prev); |
| 3905 | need_resched_nonpreemptible: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3907 | schedule_debug(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3909 | hrtick_clear(rq); |
| 3910 | |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3911 | /* |
| 3912 | * Do the rq-clock update outside the rq lock: |
| 3913 | */ |
| 3914 | local_irq_disable(); |
Ingo Molnar | c1b3da3 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3915 | __update_rq_clock(rq); |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3916 | spin_lock(&rq->lock); |
| 3917 | clear_tsk_need_resched(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3918 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3919 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |
| 3920 | if (unlikely((prev->state & TASK_INTERRUPTIBLE) && |
| 3921 | unlikely(signal_pending(prev)))) { |
| 3922 | prev->state = TASK_RUNNING; |
| 3923 | } else { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3924 | deactivate_task(rq, prev, 1); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3925 | } |
| 3926 | switch_count = &prev->nvcsw; |
| 3927 | } |
| 3928 | |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 3929 | #ifdef CONFIG_SMP |
| 3930 | if (prev->sched_class->pre_schedule) |
| 3931 | prev->sched_class->pre_schedule(rq, prev); |
| 3932 | #endif |
Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 3933 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3934 | if (unlikely(!rq->nr_running)) |
| 3935 | idle_balance(cpu, rq); |
| 3936 | |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3937 | prev->sched_class->put_prev_task(rq, prev); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 3938 | next = pick_next_task(rq, prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3939 | |
| 3940 | sched_info_switch(prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3941 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | if (likely(prev != next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3943 | rq->nr_switches++; |
| 3944 | rq->curr = next; |
| 3945 | ++*switch_count; |
| 3946 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3947 | context_switch(rq, prev, next); /* unlocks the rq */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3948 | /* |
| 3949 | * the context switch might have flipped the stack from under |
| 3950 | * us, hence refresh the local variables. |
| 3951 | */ |
| 3952 | cpu = smp_processor_id(); |
| 3953 | rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3954 | } else |
| 3955 | spin_unlock_irq(&rq->lock); |
| 3956 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3957 | hrtick_set(rq); |
| 3958 | |
| 3959 | if (unlikely(reacquire_kernel_lock(current) < 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3960 | goto need_resched_nonpreemptible; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | preempt_enable_no_resched(); |
| 3963 | if (unlikely(test_thread_flag(TIF_NEED_RESCHED))) |
| 3964 | goto need_resched; |
| 3965 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3966 | EXPORT_SYMBOL(schedule); |
| 3967 | |
| 3968 | #ifdef CONFIG_PREEMPT |
| 3969 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 3970 | * this is the entry point to schedule() from in-kernel preemption |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3971 | * off of preempt_enable. Kernel preemptions off return from interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 | * occur there and call schedule directly. |
| 3973 | */ |
| 3974 | asmlinkage void __sched preempt_schedule(void) |
| 3975 | { |
| 3976 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3977 | struct task_struct *task = current; |
| 3978 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 3979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | /* |
| 3981 | * If there is a non-zero preempt_count or interrupts are disabled, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3982 | * we do not want to preempt the current task. Just return.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3983 | */ |
Nick Piggin | beed33a | 2006-10-11 01:21:52 -0700 | [diff] [blame] | 3984 | if (likely(ti->preempt_count || irqs_disabled())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3985 | return; |
| 3986 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3987 | do { |
| 3988 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3990 | /* |
| 3991 | * We keep the big kernel semaphore locked, but we |
| 3992 | * clear ->lock_depth so that schedule() doesnt |
| 3993 | * auto-release the semaphore: |
| 3994 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3995 | saved_lock_depth = task->lock_depth; |
| 3996 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3997 | schedule(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3998 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 3999 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4000 | |
| 4001 | /* |
| 4002 | * Check again in case we missed a preemption opportunity |
| 4003 | * between schedule and now. |
| 4004 | */ |
| 4005 | barrier(); |
| 4006 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4007 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4008 | EXPORT_SYMBOL(preempt_schedule); |
| 4009 | |
| 4010 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4011 | * this is the entry point to schedule() from kernel preemption |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4012 | * off of irq context. |
| 4013 | * Note, that this is called and return with irqs disabled. This will |
| 4014 | * protect us against recursive calling from irq. |
| 4015 | */ |
| 4016 | asmlinkage void __sched preempt_schedule_irq(void) |
| 4017 | { |
| 4018 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | struct task_struct *task = current; |
| 4020 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4021 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4022 | /* Catch callers which need to be fixed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4023 | BUG_ON(ti->preempt_count || !irqs_disabled()); |
| 4024 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4025 | do { |
| 4026 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4027 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4028 | /* |
| 4029 | * We keep the big kernel semaphore locked, but we |
| 4030 | * clear ->lock_depth so that schedule() doesnt |
| 4031 | * auto-release the semaphore: |
| 4032 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4033 | saved_lock_depth = task->lock_depth; |
| 4034 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4035 | local_irq_enable(); |
| 4036 | schedule(); |
| 4037 | local_irq_disable(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4038 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4039 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4040 | |
| 4041 | /* |
| 4042 | * Check again in case we missed a preemption opportunity |
| 4043 | * between schedule and now. |
| 4044 | */ |
| 4045 | barrier(); |
| 4046 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | } |
| 4048 | |
| 4049 | #endif /* CONFIG_PREEMPT */ |
| 4050 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4051 | int default_wake_function(wait_queue_t *curr, unsigned mode, int sync, |
| 4052 | void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4053 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4054 | return try_to_wake_up(curr->private, mode, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4056 | EXPORT_SYMBOL(default_wake_function); |
| 4057 | |
| 4058 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4059 | * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just |
| 4060 | * 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] | 4061 | * number) then we wake all the non-exclusive tasks and one exclusive task. |
| 4062 | * |
| 4063 | * 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] | 4064 | * 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] | 4065 | * zero in this (rare) case, and we handle it by continuing to scan the queue. |
| 4066 | */ |
| 4067 | static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, |
| 4068 | int nr_exclusive, int sync, void *key) |
| 4069 | { |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4070 | wait_queue_t *curr, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4071 | |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4072 | list_for_each_entry_safe(curr, next, &q->task_list, task_list) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4073 | unsigned flags = curr->flags; |
| 4074 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 | if (curr->func(curr, mode, sync, key) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4076 | (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4077 | break; |
| 4078 | } |
| 4079 | } |
| 4080 | |
| 4081 | /** |
| 4082 | * __wake_up - wake up threads blocked on a waitqueue. |
| 4083 | * @q: the waitqueue |
| 4084 | * @mode: which threads |
| 4085 | * @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] | 4086 | * @key: is directly passed to the wakeup function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4087 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4088 | void __wake_up(wait_queue_head_t *q, unsigned int mode, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4089 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4090 | { |
| 4091 | unsigned long flags; |
| 4092 | |
| 4093 | spin_lock_irqsave(&q->lock, flags); |
| 4094 | __wake_up_common(q, mode, nr_exclusive, 0, key); |
| 4095 | spin_unlock_irqrestore(&q->lock, flags); |
| 4096 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4097 | EXPORT_SYMBOL(__wake_up); |
| 4098 | |
| 4099 | /* |
| 4100 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
| 4101 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4102 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4103 | { |
| 4104 | __wake_up_common(q, mode, 1, 0, NULL); |
| 4105 | } |
| 4106 | |
| 4107 | /** |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 4108 | * __wake_up_sync - wake up threads blocked on a waitqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4109 | * @q: the waitqueue |
| 4110 | * @mode: which threads |
| 4111 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
| 4112 | * |
| 4113 | * The sync wakeup differs that the waker knows that it will schedule |
| 4114 | * away soon, so while the target thread will be woken up, it will not |
| 4115 | * be migrated to another CPU - ie. the two threads are 'synchronized' |
| 4116 | * with each other. This can prevent needless bouncing between CPUs. |
| 4117 | * |
| 4118 | * On UP it can prevent extra preemption. |
| 4119 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4120 | void |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4121 | __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] | 4122 | { |
| 4123 | unsigned long flags; |
| 4124 | int sync = 1; |
| 4125 | |
| 4126 | if (unlikely(!q)) |
| 4127 | return; |
| 4128 | |
| 4129 | if (unlikely(!nr_exclusive)) |
| 4130 | sync = 0; |
| 4131 | |
| 4132 | spin_lock_irqsave(&q->lock, flags); |
| 4133 | __wake_up_common(q, mode, nr_exclusive, sync, NULL); |
| 4134 | spin_unlock_irqrestore(&q->lock, flags); |
| 4135 | } |
| 4136 | EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */ |
| 4137 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4138 | void complete(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | { |
| 4140 | unsigned long flags; |
| 4141 | |
| 4142 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4143 | x->done++; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4144 | __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4145 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4146 | } |
| 4147 | EXPORT_SYMBOL(complete); |
| 4148 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4149 | void complete_all(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4150 | { |
| 4151 | unsigned long flags; |
| 4152 | |
| 4153 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4154 | x->done += UINT_MAX/2; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4155 | __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4156 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4157 | } |
| 4158 | EXPORT_SYMBOL(complete_all); |
| 4159 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4160 | static inline long __sched |
| 4161 | do_wait_for_common(struct completion *x, long timeout, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4162 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4163 | if (!x->done) { |
| 4164 | DECLARE_WAITQUEUE(wait, current); |
| 4165 | |
| 4166 | wait.flags |= WQ_FLAG_EXCLUSIVE; |
| 4167 | __add_wait_queue_tail(&x->wait, &wait); |
| 4168 | do { |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4169 | if ((state == TASK_INTERRUPTIBLE && |
| 4170 | signal_pending(current)) || |
| 4171 | (state == TASK_KILLABLE && |
| 4172 | fatal_signal_pending(current))) { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4173 | __remove_wait_queue(&x->wait, &wait); |
| 4174 | return -ERESTARTSYS; |
| 4175 | } |
| 4176 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4177 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4178 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4179 | spin_lock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4180 | if (!timeout) { |
| 4181 | __remove_wait_queue(&x->wait, &wait); |
| 4182 | return timeout; |
| 4183 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4184 | } while (!x->done); |
| 4185 | __remove_wait_queue(&x->wait, &wait); |
| 4186 | } |
| 4187 | x->done--; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4188 | return timeout; |
| 4189 | } |
| 4190 | |
| 4191 | static long __sched |
| 4192 | wait_for_common(struct completion *x, long timeout, int state) |
| 4193 | { |
| 4194 | might_sleep(); |
| 4195 | |
| 4196 | spin_lock_irq(&x->wait.lock); |
| 4197 | timeout = do_wait_for_common(x, timeout, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4198 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4199 | return timeout; |
| 4200 | } |
| 4201 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4202 | void __sched wait_for_completion(struct completion *x) |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4203 | { |
| 4204 | wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4205 | } |
| 4206 | EXPORT_SYMBOL(wait_for_completion); |
| 4207 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4208 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4209 | wait_for_completion_timeout(struct completion *x, unsigned long timeout) |
| 4210 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4211 | return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4212 | } |
| 4213 | EXPORT_SYMBOL(wait_for_completion_timeout); |
| 4214 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4215 | int __sched wait_for_completion_interruptible(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4216 | { |
Andi Kleen | 51e9799 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 4217 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE); |
| 4218 | if (t == -ERESTARTSYS) |
| 4219 | return t; |
| 4220 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4221 | } |
| 4222 | EXPORT_SYMBOL(wait_for_completion_interruptible); |
| 4223 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4224 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4225 | wait_for_completion_interruptible_timeout(struct completion *x, |
| 4226 | unsigned long timeout) |
| 4227 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4228 | return wait_for_common(x, timeout, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4229 | } |
| 4230 | EXPORT_SYMBOL(wait_for_completion_interruptible_timeout); |
| 4231 | |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4232 | int __sched wait_for_completion_killable(struct completion *x) |
| 4233 | { |
| 4234 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE); |
| 4235 | if (t == -ERESTARTSYS) |
| 4236 | return t; |
| 4237 | return 0; |
| 4238 | } |
| 4239 | EXPORT_SYMBOL(wait_for_completion_killable); |
| 4240 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4241 | static long __sched |
| 4242 | sleep_on_common(wait_queue_head_t *q, int state, long timeout) |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4243 | { |
| 4244 | unsigned long flags; |
| 4245 | wait_queue_t wait; |
| 4246 | |
| 4247 | init_waitqueue_entry(&wait, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4249 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4250 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4251 | spin_lock_irqsave(&q->lock, flags); |
| 4252 | __add_wait_queue(q, &wait); |
| 4253 | spin_unlock(&q->lock); |
| 4254 | timeout = schedule_timeout(timeout); |
| 4255 | spin_lock_irq(&q->lock); |
| 4256 | __remove_wait_queue(q, &wait); |
| 4257 | spin_unlock_irqrestore(&q->lock, flags); |
| 4258 | |
| 4259 | return timeout; |
| 4260 | } |
| 4261 | |
| 4262 | void __sched interruptible_sleep_on(wait_queue_head_t *q) |
| 4263 | { |
| 4264 | sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4265 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4266 | EXPORT_SYMBOL(interruptible_sleep_on); |
| 4267 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4268 | long __sched |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4269 | interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4270 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4271 | return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4272 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4273 | EXPORT_SYMBOL(interruptible_sleep_on_timeout); |
| 4274 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4275 | void __sched sleep_on(wait_queue_head_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4276 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4277 | sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | EXPORT_SYMBOL(sleep_on); |
| 4280 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4281 | long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4282 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4283 | return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4284 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4285 | EXPORT_SYMBOL(sleep_on_timeout); |
| 4286 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4287 | #ifdef CONFIG_RT_MUTEXES |
| 4288 | |
| 4289 | /* |
| 4290 | * rt_mutex_setprio - set the current priority of a task |
| 4291 | * @p: task |
| 4292 | * @prio: prio value (kernel-internal form) |
| 4293 | * |
| 4294 | * This function changes the 'effective' priority of a task. It does |
| 4295 | * not touch ->normal_prio like __setscheduler(). |
| 4296 | * |
| 4297 | * Used by the rt_mutex code to implement priority inheritance logic. |
| 4298 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4299 | void rt_mutex_setprio(struct task_struct *p, int prio) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4300 | { |
| 4301 | unsigned long flags; |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4302 | int oldprio, on_rq, running; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4303 | struct rq *rq; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4304 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4305 | |
| 4306 | BUG_ON(prio < 0 || prio > MAX_PRIO); |
| 4307 | |
| 4308 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4309 | update_rq_clock(rq); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4310 | |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4311 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4312 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4313 | running = task_current(rq, p); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4314 | if (on_rq) { |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4315 | dequeue_task(rq, p, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4316 | if (running) |
| 4317 | p->sched_class->put_prev_task(rq, p); |
| 4318 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4319 | |
| 4320 | if (rt_prio(prio)) |
| 4321 | p->sched_class = &rt_sched_class; |
| 4322 | else |
| 4323 | p->sched_class = &fair_sched_class; |
| 4324 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4325 | p->prio = prio; |
| 4326 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4327 | if (on_rq) { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4328 | if (running) |
| 4329 | p->sched_class->set_curr_task(rq); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4330 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4331 | enqueue_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4332 | |
| 4333 | check_class_changed(rq, p, prev_class, oldprio, running); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4334 | } |
| 4335 | task_rq_unlock(rq, &flags); |
| 4336 | } |
| 4337 | |
| 4338 | #endif |
| 4339 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4340 | void set_user_nice(struct task_struct *p, long nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4341 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4342 | int old_prio, delta, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4344 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | |
| 4346 | if (TASK_NICE(p) == nice || nice < -20 || nice > 19) |
| 4347 | return; |
| 4348 | /* |
| 4349 | * We have to be careful, if called from sys_setpriority(), |
| 4350 | * the task might be in the middle of scheduling on another CPU. |
| 4351 | */ |
| 4352 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4353 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4354 | /* |
| 4355 | * The RT priorities are set via sched_setscheduler(), but we still |
| 4356 | * allow the 'normal' nice value to be set - but as expected |
| 4357 | * it wont have any effect on scheduling until the task is |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4358 | * SCHED_FIFO/SCHED_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4359 | */ |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4360 | if (task_has_rt_policy(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4361 | p->static_prio = NICE_TO_PRIO(nice); |
| 4362 | goto out_unlock; |
| 4363 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4364 | on_rq = p->se.on_rq; |
Srivatsa Vaddagiri | 58e2d4c | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 4365 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4366 | dequeue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4368 | p->static_prio = NICE_TO_PRIO(nice); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4369 | set_load_weight(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4370 | old_prio = p->prio; |
| 4371 | p->prio = effective_prio(p); |
| 4372 | delta = p->prio - old_prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4373 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4374 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4375 | enqueue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4376 | /* |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4377 | * If the task increased its priority or is running and |
| 4378 | * lowered its priority, then reschedule its CPU: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4379 | */ |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4380 | if (delta < 0 || (delta > 0 && task_running(rq, p))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | resched_task(rq->curr); |
| 4382 | } |
| 4383 | out_unlock: |
| 4384 | task_rq_unlock(rq, &flags); |
| 4385 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4386 | EXPORT_SYMBOL(set_user_nice); |
| 4387 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4388 | /* |
| 4389 | * can_nice - check if a task can reduce its nice value |
| 4390 | * @p: task |
| 4391 | * @nice: nice value |
| 4392 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4393 | int can_nice(const struct task_struct *p, const int nice) |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4394 | { |
Matt Mackall | 024f474 | 2005-08-18 11:24:19 -0700 | [diff] [blame] | 4395 | /* convert nice value [19,-20] to rlimit style value [1,40] */ |
| 4396 | int nice_rlim = 20 - nice; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4397 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4398 | return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur || |
| 4399 | capable(CAP_SYS_NICE)); |
| 4400 | } |
| 4401 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4402 | #ifdef __ARCH_WANT_SYS_NICE |
| 4403 | |
| 4404 | /* |
| 4405 | * sys_nice - change the priority of the current process. |
| 4406 | * @increment: priority increment |
| 4407 | * |
| 4408 | * sys_setpriority is a more generic, but much slower function that |
| 4409 | * does similar things. |
| 4410 | */ |
| 4411 | asmlinkage long sys_nice(int increment) |
| 4412 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4413 | long nice, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | |
| 4415 | /* |
| 4416 | * Setpriority might change our priority at the same moment. |
| 4417 | * We don't have to worry. Conceptually one call occurs first |
| 4418 | * and we have a single winner. |
| 4419 | */ |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4420 | if (increment < -40) |
| 4421 | increment = -40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4422 | if (increment > 40) |
| 4423 | increment = 40; |
| 4424 | |
| 4425 | nice = PRIO_TO_NICE(current->static_prio) + increment; |
| 4426 | if (nice < -20) |
| 4427 | nice = -20; |
| 4428 | if (nice > 19) |
| 4429 | nice = 19; |
| 4430 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4431 | if (increment < 0 && !can_nice(current, nice)) |
| 4432 | return -EPERM; |
| 4433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4434 | retval = security_task_setnice(current, nice); |
| 4435 | if (retval) |
| 4436 | return retval; |
| 4437 | |
| 4438 | set_user_nice(current, nice); |
| 4439 | return 0; |
| 4440 | } |
| 4441 | |
| 4442 | #endif |
| 4443 | |
| 4444 | /** |
| 4445 | * task_prio - return the priority value of a given task. |
| 4446 | * @p: the task in question. |
| 4447 | * |
| 4448 | * This is the priority value as seen by users in /proc. |
| 4449 | * RT tasks are offset by -200. Normal tasks are centered |
| 4450 | * around 0, value goes from -16 to +15. |
| 4451 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4452 | int task_prio(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4453 | { |
| 4454 | return p->prio - MAX_RT_PRIO; |
| 4455 | } |
| 4456 | |
| 4457 | /** |
| 4458 | * task_nice - return the nice value of a given task. |
| 4459 | * @p: the task in question. |
| 4460 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4461 | int task_nice(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4462 | { |
| 4463 | return TASK_NICE(p); |
| 4464 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4465 | EXPORT_SYMBOL_GPL(task_nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4466 | |
| 4467 | /** |
| 4468 | * idle_cpu - is a given cpu idle currently? |
| 4469 | * @cpu: the processor in question. |
| 4470 | */ |
| 4471 | int idle_cpu(int cpu) |
| 4472 | { |
| 4473 | return cpu_curr(cpu) == cpu_rq(cpu)->idle; |
| 4474 | } |
| 4475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4476 | /** |
| 4477 | * idle_task - return the idle task for a given cpu. |
| 4478 | * @cpu: the processor in question. |
| 4479 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4480 | struct task_struct *idle_task(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4481 | { |
| 4482 | return cpu_rq(cpu)->idle; |
| 4483 | } |
| 4484 | |
| 4485 | /** |
| 4486 | * find_process_by_pid - find a process with a matching PID value. |
| 4487 | * @pid: the pid in question. |
| 4488 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4489 | static struct task_struct *find_process_by_pid(pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4490 | { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 4491 | return pid ? find_task_by_vpid(pid) : current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4492 | } |
| 4493 | |
| 4494 | /* Actually do priority change: must hold rq lock. */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4495 | static void |
| 4496 | __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4497 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4498 | BUG_ON(p->se.on_rq); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | p->policy = policy; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4501 | switch (p->policy) { |
| 4502 | case SCHED_NORMAL: |
| 4503 | case SCHED_BATCH: |
| 4504 | case SCHED_IDLE: |
| 4505 | p->sched_class = &fair_sched_class; |
| 4506 | break; |
| 4507 | case SCHED_FIFO: |
| 4508 | case SCHED_RR: |
| 4509 | p->sched_class = &rt_sched_class; |
| 4510 | break; |
| 4511 | } |
| 4512 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4513 | p->rt_priority = prio; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4514 | p->normal_prio = normal_prio(p); |
| 4515 | /* we are holding p->pi_lock already */ |
| 4516 | p->prio = rt_mutex_getprio(p); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4517 | set_load_weight(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4518 | } |
| 4519 | |
| 4520 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4521 | * 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] | 4522 | * @p: the task in question. |
| 4523 | * @policy: new policy. |
| 4524 | * @param: structure containing the new RT priority. |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4525 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4526 | * NOTE that the task may be already dead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4527 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4528 | int sched_setscheduler(struct task_struct *p, int policy, |
| 4529 | struct sched_param *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4530 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4531 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4532 | unsigned long flags; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4533 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4534 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4535 | |
Steven Rostedt | 66e5393 | 2006-06-27 02:54:44 -0700 | [diff] [blame] | 4536 | /* may grab non-irq protected spin_locks */ |
| 4537 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | recheck: |
| 4539 | /* double check policy once rq lock held */ |
| 4540 | if (policy < 0) |
| 4541 | policy = oldpolicy = p->policy; |
| 4542 | else if (policy != SCHED_FIFO && policy != SCHED_RR && |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4543 | policy != SCHED_NORMAL && policy != SCHED_BATCH && |
| 4544 | policy != SCHED_IDLE) |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 4545 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4546 | /* |
| 4547 | * Valid priorities for SCHED_FIFO and SCHED_RR are |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4548 | * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL, |
| 4549 | * SCHED_BATCH and SCHED_IDLE is 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | */ |
| 4551 | if (param->sched_priority < 0 || |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4552 | (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) || |
Steven Rostedt | d46523e | 2005-07-25 16:28:39 -0400 | [diff] [blame] | 4553 | (!p->mm && param->sched_priority > MAX_RT_PRIO-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4554 | return -EINVAL; |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4555 | if (rt_policy(policy) != (param->sched_priority != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4556 | return -EINVAL; |
| 4557 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4558 | /* |
| 4559 | * Allow unprivileged RT tasks to decrease priority: |
| 4560 | */ |
| 4561 | if (!capable(CAP_SYS_NICE)) { |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4562 | if (rt_policy(policy)) { |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4563 | unsigned long rlim_rtprio; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4564 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4565 | if (!lock_task_sighand(p, &flags)) |
| 4566 | return -ESRCH; |
| 4567 | rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur; |
| 4568 | unlock_task_sighand(p, &flags); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4569 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4570 | /* can't set/change the rt policy */ |
| 4571 | if (policy != p->policy && !rlim_rtprio) |
| 4572 | return -EPERM; |
| 4573 | |
| 4574 | /* can't increase priority */ |
| 4575 | if (param->sched_priority > p->rt_priority && |
| 4576 | param->sched_priority > rlim_rtprio) |
| 4577 | return -EPERM; |
| 4578 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4579 | /* |
| 4580 | * Like positive nice levels, dont allow tasks to |
| 4581 | * move out of SCHED_IDLE either: |
| 4582 | */ |
| 4583 | if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) |
| 4584 | return -EPERM; |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4585 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4586 | /* can't change other user's priorities */ |
| 4587 | if ((current->euid != p->euid) && |
| 4588 | (current->euid != p->uid)) |
| 4589 | return -EPERM; |
| 4590 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4591 | |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 4592 | #ifdef CONFIG_RT_GROUP_SCHED |
| 4593 | /* |
| 4594 | * Do not allow realtime tasks into groups that have no runtime |
| 4595 | * assigned. |
| 4596 | */ |
| 4597 | if (rt_policy(policy) && task_group(p)->rt_runtime == 0) |
| 4598 | return -EPERM; |
| 4599 | #endif |
| 4600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4601 | retval = security_task_setscheduler(p, policy, param); |
| 4602 | if (retval) |
| 4603 | return retval; |
| 4604 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4605 | * make sure no PI-waiters arrive (or leave) while we are |
| 4606 | * changing the priority of the task: |
| 4607 | */ |
| 4608 | spin_lock_irqsave(&p->pi_lock, flags); |
| 4609 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4610 | * To be able to change p->policy safely, the apropriate |
| 4611 | * runqueue lock must be held. |
| 4612 | */ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4613 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4614 | /* recheck policy now with rq lock held */ |
| 4615 | if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) { |
| 4616 | policy = oldpolicy = -1; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4617 | __task_rq_unlock(rq); |
| 4618 | spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4619 | goto recheck; |
| 4620 | } |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 4621 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4622 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4623 | running = task_current(rq, p); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4624 | if (on_rq) { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4625 | deactivate_task(rq, p, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4626 | if (running) |
| 4627 | p->sched_class->put_prev_task(rq, p); |
| 4628 | } |
Dmitry Adamushko | f6b53205 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4630 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4631 | __setscheduler(rq, p, policy, param->sched_priority); |
Dmitry Adamushko | f6b53205 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4632 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4633 | if (on_rq) { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4634 | if (running) |
| 4635 | p->sched_class->set_curr_task(rq); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4636 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4637 | activate_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4638 | |
| 4639 | check_class_changed(rq, p, prev_class, oldprio, running); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4640 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4641 | __task_rq_unlock(rq); |
| 4642 | spin_unlock_irqrestore(&p->pi_lock, flags); |
| 4643 | |
Thomas Gleixner | 95e02ca | 2006-06-27 02:55:02 -0700 | [diff] [blame] | 4644 | rt_mutex_adjust_pi(p); |
| 4645 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4646 | return 0; |
| 4647 | } |
| 4648 | EXPORT_SYMBOL_GPL(sched_setscheduler); |
| 4649 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4650 | static int |
| 4651 | 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] | 4652 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4653 | struct sched_param lparam; |
| 4654 | struct task_struct *p; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4655 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4656 | |
| 4657 | if (!param || pid < 0) |
| 4658 | return -EINVAL; |
| 4659 | if (copy_from_user(&lparam, param, sizeof(struct sched_param))) |
| 4660 | return -EFAULT; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4661 | |
| 4662 | rcu_read_lock(); |
| 4663 | retval = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4664 | p = find_process_by_pid(pid); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4665 | if (p != NULL) |
| 4666 | retval = sched_setscheduler(p, policy, &lparam); |
| 4667 | rcu_read_unlock(); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4668 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4669 | return retval; |
| 4670 | } |
| 4671 | |
| 4672 | /** |
| 4673 | * sys_sched_setscheduler - set/change the scheduler policy and RT priority |
| 4674 | * @pid: the pid in question. |
| 4675 | * @policy: new policy. |
| 4676 | * @param: structure containing the new RT priority. |
| 4677 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4678 | asmlinkage long |
| 4679 | 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] | 4680 | { |
Jason Baron | c21761f | 2006-01-18 17:43:03 -0800 | [diff] [blame] | 4681 | /* negative values for policy are not valid */ |
| 4682 | if (policy < 0) |
| 4683 | return -EINVAL; |
| 4684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4685 | return do_sched_setscheduler(pid, policy, param); |
| 4686 | } |
| 4687 | |
| 4688 | /** |
| 4689 | * sys_sched_setparam - set/change the RT priority of a thread |
| 4690 | * @pid: the pid in question. |
| 4691 | * @param: structure containing the new RT priority. |
| 4692 | */ |
| 4693 | asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param) |
| 4694 | { |
| 4695 | return do_sched_setscheduler(pid, -1, param); |
| 4696 | } |
| 4697 | |
| 4698 | /** |
| 4699 | * sys_sched_getscheduler - get the policy (scheduling class) of a thread |
| 4700 | * @pid: the pid in question. |
| 4701 | */ |
| 4702 | asmlinkage long sys_sched_getscheduler(pid_t pid) |
| 4703 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4704 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4705 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4706 | |
| 4707 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4708 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | |
| 4710 | retval = -ESRCH; |
| 4711 | read_lock(&tasklist_lock); |
| 4712 | p = find_process_by_pid(pid); |
| 4713 | if (p) { |
| 4714 | retval = security_task_getscheduler(p); |
| 4715 | if (!retval) |
| 4716 | retval = p->policy; |
| 4717 | } |
| 4718 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4719 | return retval; |
| 4720 | } |
| 4721 | |
| 4722 | /** |
| 4723 | * sys_sched_getscheduler - get the RT priority of a thread |
| 4724 | * @pid: the pid in question. |
| 4725 | * @param: structure containing the RT priority. |
| 4726 | */ |
| 4727 | asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param) |
| 4728 | { |
| 4729 | struct sched_param lp; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4730 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4731 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4732 | |
| 4733 | if (!param || pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4734 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4735 | |
| 4736 | read_lock(&tasklist_lock); |
| 4737 | p = find_process_by_pid(pid); |
| 4738 | retval = -ESRCH; |
| 4739 | if (!p) |
| 4740 | goto out_unlock; |
| 4741 | |
| 4742 | retval = security_task_getscheduler(p); |
| 4743 | if (retval) |
| 4744 | goto out_unlock; |
| 4745 | |
| 4746 | lp.sched_priority = p->rt_priority; |
| 4747 | read_unlock(&tasklist_lock); |
| 4748 | |
| 4749 | /* |
| 4750 | * This one might sleep, we cannot do it with a spinlock held ... |
| 4751 | */ |
| 4752 | retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0; |
| 4753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4754 | return retval; |
| 4755 | |
| 4756 | out_unlock: |
| 4757 | read_unlock(&tasklist_lock); |
| 4758 | return retval; |
| 4759 | } |
| 4760 | |
| 4761 | long sched_setaffinity(pid_t pid, cpumask_t new_mask) |
| 4762 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4763 | cpumask_t cpus_allowed; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4764 | struct task_struct *p; |
| 4765 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4766 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4767 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4768 | read_lock(&tasklist_lock); |
| 4769 | |
| 4770 | p = find_process_by_pid(pid); |
| 4771 | if (!p) { |
| 4772 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4773 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4774 | return -ESRCH; |
| 4775 | } |
| 4776 | |
| 4777 | /* |
| 4778 | * It is not safe to call set_cpus_allowed with the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4779 | * tasklist_lock held. We will bump the task_struct's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4780 | * usage count and then drop tasklist_lock. |
| 4781 | */ |
| 4782 | get_task_struct(p); |
| 4783 | read_unlock(&tasklist_lock); |
| 4784 | |
| 4785 | retval = -EPERM; |
| 4786 | if ((current->euid != p->euid) && (current->euid != p->uid) && |
| 4787 | !capable(CAP_SYS_NICE)) |
| 4788 | goto out_unlock; |
| 4789 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 4790 | retval = security_task_setscheduler(p, 0, NULL); |
| 4791 | if (retval) |
| 4792 | goto out_unlock; |
| 4793 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4794 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4795 | cpus_and(new_mask, new_mask, cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4796 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | retval = set_cpus_allowed(p, new_mask); |
| 4798 | |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4799 | if (!retval) { |
| 4800 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4801 | if (!cpus_subset(new_mask, cpus_allowed)) { |
| 4802 | /* |
| 4803 | * We must have raced with a concurrent cpuset |
| 4804 | * update. Just reset the cpus_allowed to the |
| 4805 | * cpuset's cpus_allowed |
| 4806 | */ |
| 4807 | new_mask = cpus_allowed; |
| 4808 | goto again; |
| 4809 | } |
| 4810 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4811 | out_unlock: |
| 4812 | put_task_struct(p); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4813 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4814 | return retval; |
| 4815 | } |
| 4816 | |
| 4817 | static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len, |
| 4818 | cpumask_t *new_mask) |
| 4819 | { |
| 4820 | if (len < sizeof(cpumask_t)) { |
| 4821 | memset(new_mask, 0, sizeof(cpumask_t)); |
| 4822 | } else if (len > sizeof(cpumask_t)) { |
| 4823 | len = sizeof(cpumask_t); |
| 4824 | } |
| 4825 | return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0; |
| 4826 | } |
| 4827 | |
| 4828 | /** |
| 4829 | * sys_sched_setaffinity - set the cpu affinity of a process |
| 4830 | * @pid: pid of the process |
| 4831 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 4832 | * @user_mask_ptr: user-space pointer to the new cpu mask |
| 4833 | */ |
| 4834 | asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len, |
| 4835 | unsigned long __user *user_mask_ptr) |
| 4836 | { |
| 4837 | cpumask_t new_mask; |
| 4838 | int retval; |
| 4839 | |
| 4840 | retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask); |
| 4841 | if (retval) |
| 4842 | return retval; |
| 4843 | |
| 4844 | return sched_setaffinity(pid, new_mask); |
| 4845 | } |
| 4846 | |
| 4847 | /* |
| 4848 | * Represents all cpu's present in the system |
| 4849 | * In systems capable of hotplug, this map could dynamically grow |
| 4850 | * as new cpu's are detected in the system via any platform specific |
| 4851 | * method, such as ACPI for e.g. |
| 4852 | */ |
| 4853 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4854 | cpumask_t cpu_present_map __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4855 | EXPORT_SYMBOL(cpu_present_map); |
| 4856 | |
| 4857 | #ifndef CONFIG_SMP |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4858 | cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 4859 | EXPORT_SYMBOL(cpu_online_map); |
| 4860 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 4861 | cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 4862 | EXPORT_SYMBOL(cpu_possible_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4863 | #endif |
| 4864 | |
| 4865 | long sched_getaffinity(pid_t pid, cpumask_t *mask) |
| 4866 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4867 | struct task_struct *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4868 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4869 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4870 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | read_lock(&tasklist_lock); |
| 4872 | |
| 4873 | retval = -ESRCH; |
| 4874 | p = find_process_by_pid(pid); |
| 4875 | if (!p) |
| 4876 | goto out_unlock; |
| 4877 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 4878 | retval = security_task_getscheduler(p); |
| 4879 | if (retval) |
| 4880 | goto out_unlock; |
| 4881 | |
Jack Steiner | 2f7016d | 2006-02-01 03:05:18 -0800 | [diff] [blame] | 4882 | cpus_and(*mask, p->cpus_allowed, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4883 | |
| 4884 | out_unlock: |
| 4885 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4886 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | |
Ulrich Drepper | 9531b62 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 4888 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | } |
| 4890 | |
| 4891 | /** |
| 4892 | * sys_sched_getaffinity - get the cpu affinity of a process |
| 4893 | * @pid: pid of the process |
| 4894 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 4895 | * @user_mask_ptr: user-space pointer to hold the current cpu mask |
| 4896 | */ |
| 4897 | asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len, |
| 4898 | unsigned long __user *user_mask_ptr) |
| 4899 | { |
| 4900 | int ret; |
| 4901 | cpumask_t mask; |
| 4902 | |
| 4903 | if (len < sizeof(cpumask_t)) |
| 4904 | return -EINVAL; |
| 4905 | |
| 4906 | ret = sched_getaffinity(pid, &mask); |
| 4907 | if (ret < 0) |
| 4908 | return ret; |
| 4909 | |
| 4910 | if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t))) |
| 4911 | return -EFAULT; |
| 4912 | |
| 4913 | return sizeof(cpumask_t); |
| 4914 | } |
| 4915 | |
| 4916 | /** |
| 4917 | * sys_sched_yield - yield the current processor to other threads. |
| 4918 | * |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4919 | * This function yields the current CPU to other tasks. If there are no |
| 4920 | * other threads running on this CPU then this function will return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4921 | */ |
| 4922 | asmlinkage long sys_sched_yield(void) |
| 4923 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4924 | struct rq *rq = this_rq_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4925 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4926 | schedstat_inc(rq, yld_count); |
Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4927 | current->sched_class->yield_task(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4928 | |
| 4929 | /* |
| 4930 | * Since we are going to call schedule() anyway, there's |
| 4931 | * no need to preempt or enable interrupts: |
| 4932 | */ |
| 4933 | __release(rq->lock); |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 4934 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4935 | _raw_spin_unlock(&rq->lock); |
| 4936 | preempt_enable_no_resched(); |
| 4937 | |
| 4938 | schedule(); |
| 4939 | |
| 4940 | return 0; |
| 4941 | } |
| 4942 | |
Andrew Morton | e7b3840 | 2006-06-30 01:56:00 -0700 | [diff] [blame] | 4943 | static void __cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | { |
Ingo Molnar | 8e0a43d | 2006-06-23 02:05:23 -0700 | [diff] [blame] | 4945 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 4946 | __might_sleep(__FILE__, __LINE__); |
| 4947 | #endif |
Ingo Molnar | 5bbcfd9 | 2005-07-07 17:57:04 -0700 | [diff] [blame] | 4948 | /* |
| 4949 | * The BKS might be reacquired before we have dropped |
| 4950 | * PREEMPT_ACTIVE, which could trigger a second |
| 4951 | * cond_resched() call. |
| 4952 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4953 | do { |
| 4954 | add_preempt_count(PREEMPT_ACTIVE); |
| 4955 | schedule(); |
| 4956 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4957 | } while (need_resched()); |
| 4958 | } |
| 4959 | |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 4960 | #if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY) |
| 4961 | int __sched _cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4962 | { |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 4963 | if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) && |
| 4964 | system_state == SYSTEM_RUNNING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4965 | __cond_resched(); |
| 4966 | return 1; |
| 4967 | } |
| 4968 | return 0; |
| 4969 | } |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 4970 | EXPORT_SYMBOL(_cond_resched); |
| 4971 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4972 | |
| 4973 | /* |
| 4974 | * cond_resched_lock() - if a reschedule is pending, drop the given lock, |
| 4975 | * call schedule, and on return reacquire the lock. |
| 4976 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4977 | * 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] | 4978 | * operations here to prevent schedule() from being called twice (once via |
| 4979 | * spin_unlock(), once by hand). |
| 4980 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4981 | int cond_resched_lock(spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4982 | { |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4983 | int resched = need_resched() && system_state == SYSTEM_RUNNING; |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4984 | int ret = 0; |
| 4985 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4986 | if (spin_needbreak(lock) || resched) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4987 | spin_unlock(lock); |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 4988 | if (resched && need_resched()) |
| 4989 | __cond_resched(); |
| 4990 | else |
| 4991 | cpu_relax(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4992 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | spin_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4994 | } |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 4995 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4996 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4997 | EXPORT_SYMBOL(cond_resched_lock); |
| 4998 | |
| 4999 | int __sched cond_resched_softirq(void) |
| 5000 | { |
| 5001 | BUG_ON(!in_softirq()); |
| 5002 | |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 5003 | if (need_resched() && system_state == SYSTEM_RUNNING) { |
Thomas Gleixner | 98d82567 | 2007-05-23 13:58:18 -0700 | [diff] [blame] | 5004 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5005 | __cond_resched(); |
| 5006 | local_bh_disable(); |
| 5007 | return 1; |
| 5008 | } |
| 5009 | return 0; |
| 5010 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5011 | EXPORT_SYMBOL(cond_resched_softirq); |
| 5012 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5013 | /** |
| 5014 | * yield - yield the current processor to other threads. |
| 5015 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 5016 | * This is a shortcut for kernel-space yielding - it marks the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5017 | * thread runnable and calls sys_sched_yield(). |
| 5018 | */ |
| 5019 | void __sched yield(void) |
| 5020 | { |
| 5021 | set_current_state(TASK_RUNNING); |
| 5022 | sys_sched_yield(); |
| 5023 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5024 | EXPORT_SYMBOL(yield); |
| 5025 | |
| 5026 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5027 | * 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] | 5028 | * that process accounting knows that this is a task in IO wait state. |
| 5029 | * |
| 5030 | * But don't do that if it is a deliberate, throttling IO wait (this task |
| 5031 | * has set its backing_dev_info: the queue against which it should throttle) |
| 5032 | */ |
| 5033 | void __sched io_schedule(void) |
| 5034 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5035 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5036 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5037 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5038 | atomic_inc(&rq->nr_iowait); |
| 5039 | schedule(); |
| 5040 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5041 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5042 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5043 | EXPORT_SYMBOL(io_schedule); |
| 5044 | |
| 5045 | long __sched io_schedule_timeout(long timeout) |
| 5046 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5047 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5048 | long ret; |
| 5049 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5050 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5051 | atomic_inc(&rq->nr_iowait); |
| 5052 | ret = schedule_timeout(timeout); |
| 5053 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5054 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5055 | return ret; |
| 5056 | } |
| 5057 | |
| 5058 | /** |
| 5059 | * sys_sched_get_priority_max - return maximum RT priority. |
| 5060 | * @policy: scheduling class. |
| 5061 | * |
| 5062 | * this syscall returns the maximum rt_priority that can be used |
| 5063 | * by a given scheduling class. |
| 5064 | */ |
| 5065 | asmlinkage long sys_sched_get_priority_max(int policy) |
| 5066 | { |
| 5067 | int ret = -EINVAL; |
| 5068 | |
| 5069 | switch (policy) { |
| 5070 | case SCHED_FIFO: |
| 5071 | case SCHED_RR: |
| 5072 | ret = MAX_USER_RT_PRIO-1; |
| 5073 | break; |
| 5074 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5075 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5076 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5077 | ret = 0; |
| 5078 | break; |
| 5079 | } |
| 5080 | return ret; |
| 5081 | } |
| 5082 | |
| 5083 | /** |
| 5084 | * sys_sched_get_priority_min - return minimum RT priority. |
| 5085 | * @policy: scheduling class. |
| 5086 | * |
| 5087 | * this syscall returns the minimum rt_priority that can be used |
| 5088 | * by a given scheduling class. |
| 5089 | */ |
| 5090 | asmlinkage long sys_sched_get_priority_min(int policy) |
| 5091 | { |
| 5092 | int ret = -EINVAL; |
| 5093 | |
| 5094 | switch (policy) { |
| 5095 | case SCHED_FIFO: |
| 5096 | case SCHED_RR: |
| 5097 | ret = 1; |
| 5098 | break; |
| 5099 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5100 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5101 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5102 | ret = 0; |
| 5103 | } |
| 5104 | return ret; |
| 5105 | } |
| 5106 | |
| 5107 | /** |
| 5108 | * sys_sched_rr_get_interval - return the default timeslice of a process. |
| 5109 | * @pid: pid of the process. |
| 5110 | * @interval: userspace pointer to the timeslice value. |
| 5111 | * |
| 5112 | * this syscall writes the default timeslice value of a given process |
| 5113 | * into the user-space timespec buffer. A value of '0' means infinity. |
| 5114 | */ |
| 5115 | asmlinkage |
| 5116 | long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval) |
| 5117 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5118 | struct task_struct *p; |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5119 | unsigned int time_slice; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5120 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5121 | struct timespec t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5122 | |
| 5123 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5124 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5125 | |
| 5126 | retval = -ESRCH; |
| 5127 | read_lock(&tasklist_lock); |
| 5128 | p = find_process_by_pid(pid); |
| 5129 | if (!p) |
| 5130 | goto out_unlock; |
| 5131 | |
| 5132 | retval = security_task_getscheduler(p); |
| 5133 | if (retval) |
| 5134 | goto out_unlock; |
| 5135 | |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5136 | /* |
| 5137 | * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER |
| 5138 | * tasks that are on an otherwise idle runqueue: |
| 5139 | */ |
| 5140 | time_slice = 0; |
| 5141 | if (p->policy == SCHED_RR) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5142 | time_slice = DEF_TIMESLICE; |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5143 | } else { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5144 | struct sched_entity *se = &p->se; |
| 5145 | unsigned long flags; |
| 5146 | struct rq *rq; |
| 5147 | |
| 5148 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5149 | if (rq->cfs.load.weight) |
| 5150 | time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se)); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5151 | task_rq_unlock(rq, &flags); |
| 5152 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | read_unlock(&tasklist_lock); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5154 | jiffies_to_timespec(time_slice, &t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5155 | retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | return retval; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5158 | out_unlock: |
| 5159 | read_unlock(&tasklist_lock); |
| 5160 | return retval; |
| 5161 | } |
| 5162 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5163 | static const char stat_nam[] = "RSDTtZX"; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5164 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5165 | void sched_show_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5166 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5167 | unsigned long free = 0; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5168 | unsigned state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5169 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5170 | state = p->state ? __ffs(p->state) + 1 : 0; |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5171 | printk(KERN_INFO "%-13.13s %c", p->comm, |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5172 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5173 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5175 | printk(KERN_CONT " running "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5176 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5177 | printk(KERN_CONT " %08lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5178 | #else |
| 5179 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5180 | printk(KERN_CONT " running task "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5181 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5182 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | #endif |
| 5184 | #ifdef CONFIG_DEBUG_STACK_USAGE |
| 5185 | { |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5186 | unsigned long *n = end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5187 | while (!*n) |
| 5188 | n++; |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5189 | free = (unsigned long)n - (unsigned long)end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5190 | } |
| 5191 | #endif |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 5192 | printk(KERN_CONT "%5lu %5d %6d\n", free, |
Roland McGrath | fcfd50a | 2008-01-09 00:03:23 -0800 | [diff] [blame] | 5193 | task_pid_nr(p), task_pid_nr(p->real_parent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5194 | |
Nick Piggin | 5fb5e6d | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5195 | show_stack(p, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5196 | } |
| 5197 | |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5198 | void show_state_filter(unsigned long state_filter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5199 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5200 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5201 | |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5202 | #if BITS_PER_LONG == 32 |
| 5203 | printk(KERN_INFO |
| 5204 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5205 | #else |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5206 | printk(KERN_INFO |
| 5207 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5208 | #endif |
| 5209 | read_lock(&tasklist_lock); |
| 5210 | do_each_thread(g, p) { |
| 5211 | /* |
| 5212 | * reset the NMI-timeout, listing all files on a slow |
| 5213 | * console might take alot of time: |
| 5214 | */ |
| 5215 | touch_nmi_watchdog(); |
Ingo Molnar | 39bc89f | 2007-04-25 20:50:03 -0700 | [diff] [blame] | 5216 | if (!state_filter || (p->state & state_filter)) |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5217 | sched_show_task(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5218 | } while_each_thread(g, p); |
| 5219 | |
Jeremy Fitzhardinge | 04c9167 | 2007-05-08 00:28:05 -0700 | [diff] [blame] | 5220 | touch_all_softlockup_watchdogs(); |
| 5221 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5222 | #ifdef CONFIG_SCHED_DEBUG |
| 5223 | sysrq_sched_debug_show(); |
| 5224 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5225 | read_unlock(&tasklist_lock); |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5226 | /* |
| 5227 | * Only show locks if all tasks are dumped: |
| 5228 | */ |
| 5229 | if (state_filter == -1) |
| 5230 | debug_show_all_locks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5231 | } |
| 5232 | |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5233 | void __cpuinit init_idle_bootup_task(struct task_struct *idle) |
| 5234 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5235 | idle->sched_class = &idle_sched_class; |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5236 | } |
| 5237 | |
Ingo Molnar | f340c0d | 2005-06-28 16:40:42 +0200 | [diff] [blame] | 5238 | /** |
| 5239 | * init_idle - set up an idle thread for a given CPU |
| 5240 | * @idle: task in question |
| 5241 | * @cpu: cpu the idle task belongs to |
| 5242 | * |
| 5243 | * NOTE: this function does not set the idle thread's NEED_RESCHED |
| 5244 | * flag, to make booting more robust. |
| 5245 | */ |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 5246 | void __cpuinit init_idle(struct task_struct *idle, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5247 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5248 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5249 | unsigned long flags; |
| 5250 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5251 | __sched_fork(idle); |
| 5252 | idle->se.exec_start = sched_clock(); |
| 5253 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5254 | idle->prio = idle->normal_prio = MAX_PRIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5255 | idle->cpus_allowed = cpumask_of_cpu(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5256 | __set_task_cpu(idle, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5257 | |
| 5258 | spin_lock_irqsave(&rq->lock, flags); |
| 5259 | rq->curr = rq->idle = idle; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 5260 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
| 5261 | idle->oncpu = 1; |
| 5262 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5264 | |
| 5265 | /* Set the preempt count _outside_ the spinlocks! */ |
Al Viro | a1261f54 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 5266 | task_thread_info(idle)->preempt_count = 0; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 5267 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5268 | /* |
| 5269 | * The idle tasks have their own, simple scheduling class: |
| 5270 | */ |
| 5271 | idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5272 | } |
| 5273 | |
| 5274 | /* |
| 5275 | * In a system that switches off the HZ timer nohz_cpu_mask |
| 5276 | * indicates which cpus entered this state. This is used |
| 5277 | * in the rcu update to wait only for active cpus. For system |
| 5278 | * which do not switch off the HZ timer nohz_cpu_mask should |
| 5279 | * always be CPU_MASK_NONE. |
| 5280 | */ |
| 5281 | cpumask_t nohz_cpu_mask = CPU_MASK_NONE; |
| 5282 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5283 | /* |
| 5284 | * Increase the granularity value when there are more CPUs, |
| 5285 | * because with more CPUs the 'effective latency' as visible |
| 5286 | * to users decreases. But the relationship is not linear, |
| 5287 | * so pick a second-best guess by going with the log2 of the |
| 5288 | * number of CPUs. |
| 5289 | * |
| 5290 | * This idea comes from the SD scheduler of Con Kolivas: |
| 5291 | */ |
| 5292 | static inline void sched_init_granularity(void) |
| 5293 | { |
| 5294 | unsigned int factor = 1 + ilog2(num_online_cpus()); |
| 5295 | const unsigned long limit = 200000000; |
| 5296 | |
| 5297 | sysctl_sched_min_granularity *= factor; |
| 5298 | if (sysctl_sched_min_granularity > limit) |
| 5299 | sysctl_sched_min_granularity = limit; |
| 5300 | |
| 5301 | sysctl_sched_latency *= factor; |
| 5302 | if (sysctl_sched_latency > limit) |
| 5303 | sysctl_sched_latency = limit; |
| 5304 | |
| 5305 | sysctl_sched_wakeup_granularity *= factor; |
| 5306 | sysctl_sched_batch_wakeup_granularity *= factor; |
| 5307 | } |
| 5308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5309 | #ifdef CONFIG_SMP |
| 5310 | /* |
| 5311 | * This is how migration works: |
| 5312 | * |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5313 | * 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] | 5314 | * runqueue and wake up that CPU's migration thread. |
| 5315 | * 2) we down() the locked semaphore => thread blocks. |
| 5316 | * 3) migration thread wakes up (implicitly it forces the migrated |
| 5317 | * thread off the CPU) |
| 5318 | * 4) it gets the migration request and checks whether the migrated |
| 5319 | * task is still in the wrong runqueue. |
| 5320 | * 5) if it's in the wrong runqueue then the migration thread removes |
| 5321 | * it and puts it into the right queue. |
| 5322 | * 6) migration thread up()s the semaphore. |
| 5323 | * 7) we wake up and the migration is done. |
| 5324 | */ |
| 5325 | |
| 5326 | /* |
| 5327 | * Change a given task's CPU affinity. Migrate the thread to a |
| 5328 | * proper CPU and schedule it away if the CPU it's executing on |
| 5329 | * is removed from the allowed bitmask. |
| 5330 | * |
| 5331 | * NOTE: the caller must have a valid reference to the task, the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5332 | * task must not exit() & deallocate itself prematurely. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5333 | * call is not atomic; no spinlocks may be held. |
| 5334 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5335 | int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5336 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5337 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5338 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5339 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5340 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5341 | |
| 5342 | rq = task_rq_lock(p, &flags); |
| 5343 | if (!cpus_intersects(new_mask, cpu_online_map)) { |
| 5344 | ret = -EINVAL; |
| 5345 | goto out; |
| 5346 | } |
| 5347 | |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5348 | if (p->sched_class->set_cpus_allowed) |
| 5349 | p->sched_class->set_cpus_allowed(p, &new_mask); |
| 5350 | else { |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 5351 | p->cpus_allowed = new_mask; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 5352 | p->rt.nr_cpus_allowed = cpus_weight(new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5353 | } |
| 5354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | /* Can the task run on the task's current CPU? If so, we're done */ |
| 5356 | if (cpu_isset(task_cpu(p), new_mask)) |
| 5357 | goto out; |
| 5358 | |
| 5359 | if (migrate_task(p, any_online_cpu(new_mask), &req)) { |
| 5360 | /* Need help from migration thread: drop lock and wait. */ |
| 5361 | task_rq_unlock(rq, &flags); |
| 5362 | wake_up_process(rq->migration_thread); |
| 5363 | wait_for_completion(&req.done); |
| 5364 | tlb_migrate_finish(p->mm); |
| 5365 | return 0; |
| 5366 | } |
| 5367 | out: |
| 5368 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5369 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5370 | return ret; |
| 5371 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5372 | EXPORT_SYMBOL_GPL(set_cpus_allowed); |
| 5373 | |
| 5374 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5375 | * 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] | 5376 | * this because either it can't run here any more (set_cpus_allowed() |
| 5377 | * away from this CPU, or CPU going down), or because we're |
| 5378 | * attempting to rebalance this task on exec (sched_exec). |
| 5379 | * |
| 5380 | * So we race with normal scheduler movements, but that's OK, as long |
| 5381 | * as the task is no longer on this CPU. |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5382 | * |
| 5383 | * Returns non-zero if task was successfully migrated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5384 | */ |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5385 | 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] | 5386 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5387 | struct rq *rq_dest, *rq_src; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5388 | int ret = 0, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5389 | |
| 5390 | if (unlikely(cpu_is_offline(dest_cpu))) |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5391 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5392 | |
| 5393 | rq_src = cpu_rq(src_cpu); |
| 5394 | rq_dest = cpu_rq(dest_cpu); |
| 5395 | |
| 5396 | double_rq_lock(rq_src, rq_dest); |
| 5397 | /* Already moved. */ |
| 5398 | if (task_cpu(p) != src_cpu) |
| 5399 | goto out; |
| 5400 | /* Affinity changed (again). */ |
| 5401 | if (!cpu_isset(dest_cpu, p->cpus_allowed)) |
| 5402 | goto out; |
| 5403 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5404 | on_rq = p->se.on_rq; |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5405 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5406 | deactivate_task(rq_src, p, 0); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5408 | set_task_cpu(p, dest_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5409 | if (on_rq) { |
| 5410 | activate_task(rq_dest, p, 0); |
| 5411 | check_preempt_curr(rq_dest, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5412 | } |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5413 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5414 | out: |
| 5415 | double_rq_unlock(rq_src, rq_dest); |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5416 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | } |
| 5418 | |
| 5419 | /* |
| 5420 | * migration_thread - this is a highprio system thread that performs |
| 5421 | * thread migration by bumping thread off CPU then 'pushing' onto |
| 5422 | * another runqueue. |
| 5423 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5424 | static int migration_thread(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5425 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5426 | int cpu = (long)data; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5427 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5428 | |
| 5429 | rq = cpu_rq(cpu); |
| 5430 | BUG_ON(rq->migration_thread != current); |
| 5431 | |
| 5432 | set_current_state(TASK_INTERRUPTIBLE); |
| 5433 | while (!kthread_should_stop()) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5434 | struct migration_req *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5435 | struct list_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5437 | spin_lock_irq(&rq->lock); |
| 5438 | |
| 5439 | if (cpu_is_offline(cpu)) { |
| 5440 | spin_unlock_irq(&rq->lock); |
| 5441 | goto wait_to_die; |
| 5442 | } |
| 5443 | |
| 5444 | if (rq->active_balance) { |
| 5445 | active_load_balance(rq, cpu); |
| 5446 | rq->active_balance = 0; |
| 5447 | } |
| 5448 | |
| 5449 | head = &rq->migration_queue; |
| 5450 | |
| 5451 | if (list_empty(head)) { |
| 5452 | spin_unlock_irq(&rq->lock); |
| 5453 | schedule(); |
| 5454 | set_current_state(TASK_INTERRUPTIBLE); |
| 5455 | continue; |
| 5456 | } |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5457 | req = list_entry(head->next, struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5458 | list_del_init(head->next); |
| 5459 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 5460 | spin_unlock(&rq->lock); |
| 5461 | __migrate_task(req->task, cpu, req->dest_cpu); |
| 5462 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5463 | |
| 5464 | complete(&req->done); |
| 5465 | } |
| 5466 | __set_current_state(TASK_RUNNING); |
| 5467 | return 0; |
| 5468 | |
| 5469 | wait_to_die: |
| 5470 | /* Wait for kthread_stop */ |
| 5471 | set_current_state(TASK_INTERRUPTIBLE); |
| 5472 | while (!kthread_should_stop()) { |
| 5473 | schedule(); |
| 5474 | set_current_state(TASK_INTERRUPTIBLE); |
| 5475 | } |
| 5476 | __set_current_state(TASK_RUNNING); |
| 5477 | return 0; |
| 5478 | } |
| 5479 | |
| 5480 | #ifdef CONFIG_HOTPLUG_CPU |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5481 | |
| 5482 | static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu) |
| 5483 | { |
| 5484 | int ret; |
| 5485 | |
| 5486 | local_irq_disable(); |
| 5487 | ret = __migrate_task(p, src_cpu, dest_cpu); |
| 5488 | local_irq_enable(); |
| 5489 | return ret; |
| 5490 | } |
| 5491 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5492 | /* |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5493 | * 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] | 5494 | * NOTE: interrupts should be disabled by the caller |
| 5495 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5496 | 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] | 5497 | { |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5498 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5499 | cpumask_t mask; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5500 | struct rq *rq; |
| 5501 | int dest_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5502 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5503 | do { |
| 5504 | /* On same node? */ |
| 5505 | mask = node_to_cpumask(cpu_to_node(dead_cpu)); |
| 5506 | cpus_and(mask, mask, p->cpus_allowed); |
| 5507 | dest_cpu = any_online_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5508 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5509 | /* On any allowed CPU? */ |
| 5510 | if (dest_cpu == NR_CPUS) |
| 5511 | dest_cpu = any_online_cpu(p->cpus_allowed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5512 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5513 | /* No more Mr. Nice Guy. */ |
| 5514 | if (dest_cpu == NR_CPUS) { |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5515 | cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p); |
| 5516 | /* |
| 5517 | * Try to stay on the same cpuset, where the |
| 5518 | * current cpuset may be a subset of all cpus. |
| 5519 | * The cpuset_cpus_allowed_locked() variant of |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5520 | * cpuset_cpus_allowed() will not block. It must be |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5521 | * called within calls to cpuset_lock/cpuset_unlock. |
| 5522 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5523 | rq = task_rq_lock(p, &flags); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5524 | p->cpus_allowed = cpus_allowed; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5525 | dest_cpu = any_online_cpu(p->cpus_allowed); |
| 5526 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5527 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5528 | /* |
| 5529 | * Don't tell them about moving exiting tasks or |
| 5530 | * kernel threads (both mm NULL), since they never |
| 5531 | * leave kernel. |
| 5532 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5533 | if (p->mm && printk_ratelimit()) { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5534 | printk(KERN_INFO "process %d (%s) no " |
| 5535 | "longer affine to cpu%d\n", |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5536 | task_pid_nr(p), p->comm, dead_cpu); |
| 5537 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5538 | } |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5539 | } while (!__migrate_task_irq(p, dead_cpu, dest_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5540 | } |
| 5541 | |
| 5542 | /* |
| 5543 | * While a dead CPU has no uninterruptible tasks queued at this point, |
| 5544 | * it might still have a nonzero ->nr_uninterruptible counter, because |
| 5545 | * for performance reasons the counter is not stricly tracking tasks to |
| 5546 | * their home CPUs. So we just add the counter to another CPU's counter, |
| 5547 | * to keep the global sum constant after CPU-down: |
| 5548 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5549 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5550 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5551 | struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5552 | unsigned long flags; |
| 5553 | |
| 5554 | local_irq_save(flags); |
| 5555 | double_rq_lock(rq_src, rq_dest); |
| 5556 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
| 5557 | rq_src->nr_uninterruptible = 0; |
| 5558 | double_rq_unlock(rq_src, rq_dest); |
| 5559 | local_irq_restore(flags); |
| 5560 | } |
| 5561 | |
| 5562 | /* Run through task list and migrate tasks from the dead cpu. */ |
| 5563 | static void migrate_live_tasks(int src_cpu) |
| 5564 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5565 | struct task_struct *p, *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5566 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5567 | read_lock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5568 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5569 | do_each_thread(t, p) { |
| 5570 | if (p == current) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5571 | continue; |
| 5572 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5573 | if (task_cpu(p) == src_cpu) |
| 5574 | move_task_off_dead_cpu(src_cpu, p); |
| 5575 | } while_each_thread(t, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5576 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5577 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5578 | } |
| 5579 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5580 | /* |
| 5581 | * Schedules idle task to be the next runnable task on current CPU. |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5582 | * It does so by boosting its priority to highest possible. |
| 5583 | * Used by CPU offline code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5584 | */ |
| 5585 | void sched_idle_next(void) |
| 5586 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5587 | int this_cpu = smp_processor_id(); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5588 | struct rq *rq = cpu_rq(this_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5589 | struct task_struct *p = rq->idle; |
| 5590 | unsigned long flags; |
| 5591 | |
| 5592 | /* cpu has to be offline */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5593 | BUG_ON(cpu_online(this_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5594 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5595 | /* |
| 5596 | * Strictly not necessary since rest of the CPUs are stopped by now |
| 5597 | * and interrupts disabled on the current cpu. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5598 | */ |
| 5599 | spin_lock_irqsave(&rq->lock, flags); |
| 5600 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5601 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5602 | |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5603 | update_rq_clock(rq); |
| 5604 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5605 | |
| 5606 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5607 | } |
| 5608 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5609 | /* |
| 5610 | * 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] | 5611 | * offline. |
| 5612 | */ |
| 5613 | void idle_task_exit(void) |
| 5614 | { |
| 5615 | struct mm_struct *mm = current->active_mm; |
| 5616 | |
| 5617 | BUG_ON(cpu_online(smp_processor_id())); |
| 5618 | |
| 5619 | if (mm != &init_mm) |
| 5620 | switch_mm(mm, &init_mm, current); |
| 5621 | mmdrop(mm); |
| 5622 | } |
| 5623 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5624 | /* called under rq->lock with disabled interrupts */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5625 | static void migrate_dead(unsigned int dead_cpu, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5626 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5627 | struct rq *rq = cpu_rq(dead_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5628 | |
| 5629 | /* Must be exiting, otherwise would be on tasklist. */ |
Eugene Teo | 270f722 | 2007-10-18 23:40:38 -0700 | [diff] [blame] | 5630 | BUG_ON(!p->exit_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5631 | |
| 5632 | /* Cannot have done final schedule yet: would have vanished. */ |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 5633 | BUG_ON(p->state == TASK_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5634 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5635 | get_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5636 | |
| 5637 | /* |
| 5638 | * Drop lock around migration; if someone else moves it, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5639 | * 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] | 5640 | * fine. |
| 5641 | */ |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5642 | spin_unlock_irq(&rq->lock); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5643 | move_task_off_dead_cpu(dead_cpu, p); |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5644 | spin_lock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5645 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5646 | put_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5647 | } |
| 5648 | |
| 5649 | /* release_task() removes task from tasklist, so we won't find dead tasks. */ |
| 5650 | static void migrate_dead_tasks(unsigned int dead_cpu) |
| 5651 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5652 | struct rq *rq = cpu_rq(dead_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5653 | struct task_struct *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5654 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5655 | for ( ; ; ) { |
| 5656 | if (!rq->nr_running) |
| 5657 | break; |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5658 | update_rq_clock(rq); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5659 | next = pick_next_task(rq, rq->curr); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5660 | if (!next) |
| 5661 | break; |
| 5662 | migrate_dead(dead_cpu, next); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5663 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5664 | } |
| 5665 | } |
| 5666 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 5667 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5668 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
| 5669 | |
| 5670 | static struct ctl_table sd_ctl_dir[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5671 | { |
| 5672 | .procname = "sched_domain", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5673 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5674 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5675 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5676 | }; |
| 5677 | |
| 5678 | static struct ctl_table sd_ctl_root[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5679 | { |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5680 | .ctl_name = CTL_KERN, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5681 | .procname = "kernel", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5682 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5683 | .child = sd_ctl_dir, |
| 5684 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5685 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5686 | }; |
| 5687 | |
| 5688 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
| 5689 | { |
| 5690 | struct ctl_table *entry = |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5691 | kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5692 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5693 | return entry; |
| 5694 | } |
| 5695 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5696 | static void sd_free_ctl_entry(struct ctl_table **tablep) |
| 5697 | { |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5698 | struct ctl_table *entry; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5699 | |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5700 | /* |
| 5701 | * In the intermediate directories, both the child directory and |
| 5702 | * procname are dynamically allocated and could fail but the mode |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5703 | * will always be set. In the lowest directory the names are |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5704 | * static strings and all have proc handlers. |
| 5705 | */ |
| 5706 | for (entry = *tablep; entry->mode; entry++) { |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5707 | if (entry->child) |
| 5708 | sd_free_ctl_entry(&entry->child); |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5709 | if (entry->proc_handler == NULL) |
| 5710 | kfree(entry->procname); |
| 5711 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5712 | |
| 5713 | kfree(*tablep); |
| 5714 | *tablep = NULL; |
| 5715 | } |
| 5716 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5717 | static void |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5718 | set_table_entry(struct ctl_table *entry, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5719 | const char *procname, void *data, int maxlen, |
| 5720 | mode_t mode, proc_handler *proc_handler) |
| 5721 | { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5722 | entry->procname = procname; |
| 5723 | entry->data = data; |
| 5724 | entry->maxlen = maxlen; |
| 5725 | entry->mode = mode; |
| 5726 | entry->proc_handler = proc_handler; |
| 5727 | } |
| 5728 | |
| 5729 | static struct ctl_table * |
| 5730 | sd_alloc_ctl_domain_table(struct sched_domain *sd) |
| 5731 | { |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5732 | struct ctl_table *table = sd_alloc_ctl_entry(12); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5733 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5734 | if (table == NULL) |
| 5735 | return NULL; |
| 5736 | |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5737 | set_table_entry(&table[0], "min_interval", &sd->min_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5738 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5739 | set_table_entry(&table[1], "max_interval", &sd->max_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5740 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5741 | set_table_entry(&table[2], "busy_idx", &sd->busy_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5742 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5743 | set_table_entry(&table[3], "idle_idx", &sd->idle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5744 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5745 | set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5746 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5747 | set_table_entry(&table[5], "wake_idx", &sd->wake_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5748 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5749 | set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5750 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5751 | set_table_entry(&table[7], "busy_factor", &sd->busy_factor, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5752 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5753 | set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5754 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5755 | set_table_entry(&table[9], "cache_nice_tries", |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5756 | &sd->cache_nice_tries, |
| 5757 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5758 | set_table_entry(&table[10], "flags", &sd->flags, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5759 | sizeof(int), 0644, proc_dointvec_minmax); |
Milton Miller | 6323469f | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5760 | /* &table[11] is terminator */ |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5761 | |
| 5762 | return table; |
| 5763 | } |
| 5764 | |
Ingo Molnar | 9a4e715 | 2007-11-28 15:52:56 +0100 | [diff] [blame] | 5765 | static ctl_table *sd_alloc_ctl_cpu_table(int cpu) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5766 | { |
| 5767 | struct ctl_table *entry, *table; |
| 5768 | struct sched_domain *sd; |
| 5769 | int domain_num = 0, i; |
| 5770 | char buf[32]; |
| 5771 | |
| 5772 | for_each_domain(cpu, sd) |
| 5773 | domain_num++; |
| 5774 | entry = table = sd_alloc_ctl_entry(domain_num + 1); |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5775 | if (table == NULL) |
| 5776 | return NULL; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5777 | |
| 5778 | i = 0; |
| 5779 | for_each_domain(cpu, sd) { |
| 5780 | snprintf(buf, 32, "domain%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5781 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5782 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5783 | entry->child = sd_alloc_ctl_domain_table(sd); |
| 5784 | entry++; |
| 5785 | i++; |
| 5786 | } |
| 5787 | return table; |
| 5788 | } |
| 5789 | |
| 5790 | static struct ctl_table_header *sd_sysctl_header; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5791 | static void register_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5792 | { |
| 5793 | int i, cpu_num = num_online_cpus(); |
| 5794 | struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1); |
| 5795 | char buf[32]; |
| 5796 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5797 | WARN_ON(sd_ctl_dir[0].child); |
| 5798 | sd_ctl_dir[0].child = entry; |
| 5799 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5800 | if (entry == NULL) |
| 5801 | return; |
| 5802 | |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5803 | for_each_online_cpu(i) { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5804 | snprintf(buf, 32, "cpu%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5805 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5806 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5807 | entry->child = sd_alloc_ctl_cpu_table(i); |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5808 | entry++; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5809 | } |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5810 | |
| 5811 | WARN_ON(sd_sysctl_header); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5812 | sd_sysctl_header = register_sysctl_table(sd_ctl_root); |
| 5813 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5814 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5815 | /* may be called multiple times per register */ |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5816 | static void unregister_sched_domain_sysctl(void) |
| 5817 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5818 | if (sd_sysctl_header) |
| 5819 | unregister_sysctl_table(sd_sysctl_header); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5820 | sd_sysctl_header = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5821 | if (sd_ctl_dir[0].child) |
| 5822 | sd_free_ctl_entry(&sd_ctl_dir[0].child); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5823 | } |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5824 | #else |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5825 | static void register_sched_domain_sysctl(void) |
| 5826 | { |
| 5827 | } |
| 5828 | static void unregister_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5829 | { |
| 5830 | } |
| 5831 | #endif |
| 5832 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5833 | /* |
| 5834 | * migration_call - callback that gets triggered when a CPU is added. |
| 5835 | * Here we can start up the necessary migration thread for the new CPU. |
| 5836 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5837 | static int __cpuinit |
| 5838 | migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5839 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5840 | struct task_struct *p; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5841 | int cpu = (long)hcpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5842 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5843 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5844 | |
| 5845 | switch (action) { |
Gautham R Shenoy | 5be9361 | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 5846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5847 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5848 | case CPU_UP_PREPARE_FROZEN: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5849 | p = kthread_create(migration_thread, hcpu, "migration/%d", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5850 | if (IS_ERR(p)) |
| 5851 | return NOTIFY_BAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5852 | kthread_bind(p, cpu); |
| 5853 | /* Must be high prio: stop_machine expects to yield to it. */ |
| 5854 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5855 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5856 | task_rq_unlock(rq, &flags); |
| 5857 | cpu_rq(cpu)->migration_thread = p; |
| 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_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5861 | case CPU_ONLINE_FROZEN: |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5862 | /* Strictly unnecessary, as first user will wake it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5863 | wake_up_process(cpu_rq(cpu)->migration_thread); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 5864 | |
| 5865 | /* Update our root-domain */ |
| 5866 | rq = cpu_rq(cpu); |
| 5867 | spin_lock_irqsave(&rq->lock, flags); |
| 5868 | if (rq->rd) { |
| 5869 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 5870 | cpu_set(cpu, rq->rd->online); |
| 5871 | } |
| 5872 | spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5873 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5875 | #ifdef CONFIG_HOTPLUG_CPU |
| 5876 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5877 | case CPU_UP_CANCELED_FROZEN: |
Heiko Carstens | fc75cdf | 2006-06-25 05:49:10 -0700 | [diff] [blame] | 5878 | if (!cpu_rq(cpu)->migration_thread) |
| 5879 | break; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5880 | /* Unbind it from offline cpu so it can run. Fall thru. */ |
Heiko Carstens | a4c4af7 | 2005-11-07 00:58:38 -0800 | [diff] [blame] | 5881 | kthread_bind(cpu_rq(cpu)->migration_thread, |
| 5882 | any_online_cpu(cpu_online_map)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5883 | kthread_stop(cpu_rq(cpu)->migration_thread); |
| 5884 | cpu_rq(cpu)->migration_thread = NULL; |
| 5885 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5886 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5887 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5888 | case CPU_DEAD_FROZEN: |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5889 | cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5890 | migrate_live_tasks(cpu); |
| 5891 | rq = cpu_rq(cpu); |
| 5892 | kthread_stop(rq->migration_thread); |
| 5893 | rq->migration_thread = NULL; |
| 5894 | /* Idle task back to normal (off runqueue, low prio) */ |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5895 | spin_lock_irq(&rq->lock); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5896 | update_rq_clock(rq); |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5897 | deactivate_task(rq, rq->idle, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5898 | rq->idle->static_prio = MAX_PRIO; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5899 | __setscheduler(rq, rq->idle, SCHED_NORMAL, 0); |
| 5900 | rq->idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5901 | migrate_dead_tasks(cpu); |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5902 | spin_unlock_irq(&rq->lock); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5903 | cpuset_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5904 | migrate_nr_uninterruptible(rq); |
| 5905 | BUG_ON(rq->nr_running != 0); |
| 5906 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5907 | /* |
| 5908 | * No need to migrate the tasks: it was best-effort if |
| 5909 | * they didn't take sched_hotcpu_mutex. Just wake up |
| 5910 | * the requestors. |
| 5911 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5912 | spin_lock_irq(&rq->lock); |
| 5913 | while (!list_empty(&rq->migration_queue)) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5914 | struct migration_req *req; |
| 5915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5916 | req = list_entry(rq->migration_queue.next, |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5917 | struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5918 | list_del_init(&req->list); |
| 5919 | complete(&req->done); |
| 5920 | } |
| 5921 | spin_unlock_irq(&rq->lock); |
| 5922 | break; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 5923 | |
| 5924 | case CPU_DOWN_PREPARE: |
| 5925 | /* Update our root-domain */ |
| 5926 | rq = cpu_rq(cpu); |
| 5927 | spin_lock_irqsave(&rq->lock, flags); |
| 5928 | if (rq->rd) { |
| 5929 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 5930 | cpu_clear(cpu, rq->rd->online); |
| 5931 | } |
| 5932 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5933 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5934 | #endif |
| 5935 | } |
| 5936 | return NOTIFY_OK; |
| 5937 | } |
| 5938 | |
| 5939 | /* Register at highest priority so that task migration (migrate_all_tasks) |
| 5940 | * happens before everything else. |
| 5941 | */ |
Chandra Seetharaman | 26c2143 | 2006-06-27 02:54:10 -0700 | [diff] [blame] | 5942 | static struct notifier_block __cpuinitdata migration_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5943 | .notifier_call = migration_call, |
| 5944 | .priority = 10 |
| 5945 | }; |
| 5946 | |
Adrian Bunk | e6fe664 | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 5947 | void __init migration_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5948 | { |
| 5949 | void *cpu = (void *)(long)smp_processor_id(); |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 5950 | int err; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5951 | |
| 5952 | /* Start one for the boot CPU: */ |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 5953 | err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu); |
| 5954 | BUG_ON(err == NOTIFY_BAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5955 | migration_call(&migration_notifier, CPU_ONLINE, cpu); |
| 5956 | register_cpu_notifier(&migration_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5957 | } |
| 5958 | #endif |
| 5959 | |
| 5960 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 5961 | |
| 5962 | /* Number of possible processor ids */ |
| 5963 | int nr_cpu_ids __read_mostly = NR_CPUS; |
| 5964 | EXPORT_SYMBOL(nr_cpu_ids); |
| 5965 | |
Ingo Molnar | 3e9830d | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5966 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5967 | |
| 5968 | static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level) |
| 5969 | { |
| 5970 | struct sched_group *group = sd->groups; |
| 5971 | cpumask_t groupmask; |
| 5972 | char str[NR_CPUS]; |
| 5973 | |
| 5974 | cpumask_scnprintf(str, NR_CPUS, sd->span); |
| 5975 | cpus_clear(groupmask); |
| 5976 | |
| 5977 | printk(KERN_DEBUG "%*s domain %d: ", level, "", level); |
| 5978 | |
| 5979 | if (!(sd->flags & SD_LOAD_BALANCE)) { |
| 5980 | printk("does not load-balance\n"); |
| 5981 | if (sd->parent) |
| 5982 | printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain" |
| 5983 | " has parent"); |
| 5984 | return -1; |
| 5985 | } |
| 5986 | |
| 5987 | printk(KERN_CONT "span %s\n", str); |
| 5988 | |
| 5989 | if (!cpu_isset(cpu, sd->span)) { |
| 5990 | printk(KERN_ERR "ERROR: domain->span does not contain " |
| 5991 | "CPU%d\n", cpu); |
| 5992 | } |
| 5993 | if (!cpu_isset(cpu, group->cpumask)) { |
| 5994 | printk(KERN_ERR "ERROR: domain->groups does not contain" |
| 5995 | " CPU%d\n", cpu); |
| 5996 | } |
| 5997 | |
| 5998 | printk(KERN_DEBUG "%*s groups:", level + 1, ""); |
| 5999 | do { |
| 6000 | if (!group) { |
| 6001 | printk("\n"); |
| 6002 | printk(KERN_ERR "ERROR: group is NULL\n"); |
| 6003 | break; |
| 6004 | } |
| 6005 | |
| 6006 | if (!group->__cpu_power) { |
| 6007 | printk(KERN_CONT "\n"); |
| 6008 | printk(KERN_ERR "ERROR: domain->cpu_power not " |
| 6009 | "set\n"); |
| 6010 | break; |
| 6011 | } |
| 6012 | |
| 6013 | if (!cpus_weight(group->cpumask)) { |
| 6014 | printk(KERN_CONT "\n"); |
| 6015 | printk(KERN_ERR "ERROR: empty group\n"); |
| 6016 | break; |
| 6017 | } |
| 6018 | |
| 6019 | if (cpus_intersects(groupmask, group->cpumask)) { |
| 6020 | printk(KERN_CONT "\n"); |
| 6021 | printk(KERN_ERR "ERROR: repeated CPUs\n"); |
| 6022 | break; |
| 6023 | } |
| 6024 | |
| 6025 | cpus_or(groupmask, groupmask, group->cpumask); |
| 6026 | |
| 6027 | cpumask_scnprintf(str, NR_CPUS, group->cpumask); |
| 6028 | printk(KERN_CONT " %s", str); |
| 6029 | |
| 6030 | group = group->next; |
| 6031 | } while (group != sd->groups); |
| 6032 | printk(KERN_CONT "\n"); |
| 6033 | |
| 6034 | if (!cpus_equal(sd->span, groupmask)) |
| 6035 | printk(KERN_ERR "ERROR: groups don't span domain->span\n"); |
| 6036 | |
| 6037 | if (sd->parent && !cpus_subset(groupmask, sd->parent->span)) |
| 6038 | printk(KERN_ERR "ERROR: parent span is not a superset " |
| 6039 | "of domain->span\n"); |
| 6040 | return 0; |
| 6041 | } |
| 6042 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6043 | static void sched_domain_debug(struct sched_domain *sd, int cpu) |
| 6044 | { |
| 6045 | int level = 0; |
| 6046 | |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 6047 | if (!sd) { |
| 6048 | printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu); |
| 6049 | return; |
| 6050 | } |
| 6051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6052 | printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu); |
| 6053 | |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6054 | for (;;) { |
| 6055 | if (sched_domain_debug_one(sd, cpu, level)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6056 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6057 | level++; |
| 6058 | sd = sd->parent; |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 6059 | if (!sd) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6060 | break; |
| 6061 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6062 | } |
| 6063 | #else |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6064 | # define sched_domain_debug(sd, cpu) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | #endif |
| 6066 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6067 | static int sd_degenerate(struct sched_domain *sd) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6068 | { |
| 6069 | if (cpus_weight(sd->span) == 1) |
| 6070 | return 1; |
| 6071 | |
| 6072 | /* Following flags need at least 2 groups */ |
| 6073 | if (sd->flags & (SD_LOAD_BALANCE | |
| 6074 | SD_BALANCE_NEWIDLE | |
| 6075 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6076 | SD_BALANCE_EXEC | |
| 6077 | SD_SHARE_CPUPOWER | |
| 6078 | SD_SHARE_PKG_RESOURCES)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6079 | if (sd->groups != sd->groups->next) |
| 6080 | return 0; |
| 6081 | } |
| 6082 | |
| 6083 | /* Following flags don't use groups */ |
| 6084 | if (sd->flags & (SD_WAKE_IDLE | |
| 6085 | SD_WAKE_AFFINE | |
| 6086 | SD_WAKE_BALANCE)) |
| 6087 | return 0; |
| 6088 | |
| 6089 | return 1; |
| 6090 | } |
| 6091 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6092 | static int |
| 6093 | sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6094 | { |
| 6095 | unsigned long cflags = sd->flags, pflags = parent->flags; |
| 6096 | |
| 6097 | if (sd_degenerate(parent)) |
| 6098 | return 1; |
| 6099 | |
| 6100 | if (!cpus_equal(sd->span, parent->span)) |
| 6101 | return 0; |
| 6102 | |
| 6103 | /* Does parent contain flags not in child? */ |
| 6104 | /* WAKE_BALANCE is a subset of WAKE_AFFINE */ |
| 6105 | if (cflags & SD_WAKE_AFFINE) |
| 6106 | pflags &= ~SD_WAKE_BALANCE; |
| 6107 | /* Flags needing groups don't count if only 1 group in parent */ |
| 6108 | if (parent->groups == parent->groups->next) { |
| 6109 | pflags &= ~(SD_LOAD_BALANCE | |
| 6110 | SD_BALANCE_NEWIDLE | |
| 6111 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6112 | SD_BALANCE_EXEC | |
| 6113 | SD_SHARE_CPUPOWER | |
| 6114 | SD_SHARE_PKG_RESOURCES); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6115 | } |
| 6116 | if (~cflags & pflags) |
| 6117 | return 0; |
| 6118 | |
| 6119 | return 1; |
| 6120 | } |
| 6121 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6122 | static void rq_attach_root(struct rq *rq, struct root_domain *rd) |
| 6123 | { |
| 6124 | unsigned long flags; |
| 6125 | const struct sched_class *class; |
| 6126 | |
| 6127 | spin_lock_irqsave(&rq->lock, flags); |
| 6128 | |
| 6129 | if (rq->rd) { |
| 6130 | struct root_domain *old_rd = rq->rd; |
| 6131 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6132 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6133 | if (class->leave_domain) |
| 6134 | class->leave_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6135 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6136 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6137 | cpu_clear(rq->cpu, old_rd->span); |
| 6138 | cpu_clear(rq->cpu, old_rd->online); |
| 6139 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6140 | if (atomic_dec_and_test(&old_rd->refcount)) |
| 6141 | kfree(old_rd); |
| 6142 | } |
| 6143 | |
| 6144 | atomic_inc(&rd->refcount); |
| 6145 | rq->rd = rd; |
| 6146 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6147 | cpu_set(rq->cpu, rd->span); |
| 6148 | if (cpu_isset(rq->cpu, cpu_online_map)) |
| 6149 | cpu_set(rq->cpu, rd->online); |
| 6150 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6151 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6152 | if (class->join_domain) |
| 6153 | class->join_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6154 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6155 | |
| 6156 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6157 | } |
| 6158 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6159 | static void init_rootdomain(struct root_domain *rd) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6160 | { |
| 6161 | memset(rd, 0, sizeof(*rd)); |
| 6162 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6163 | cpus_clear(rd->span); |
| 6164 | cpus_clear(rd->online); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6165 | } |
| 6166 | |
| 6167 | static void init_defrootdomain(void) |
| 6168 | { |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6169 | init_rootdomain(&def_root_domain); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6170 | atomic_set(&def_root_domain.refcount, 1); |
| 6171 | } |
| 6172 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6173 | static struct root_domain *alloc_rootdomain(void) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6174 | { |
| 6175 | struct root_domain *rd; |
| 6176 | |
| 6177 | rd = kmalloc(sizeof(*rd), GFP_KERNEL); |
| 6178 | if (!rd) |
| 6179 | return NULL; |
| 6180 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6181 | init_rootdomain(rd); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6182 | |
| 6183 | return rd; |
| 6184 | } |
| 6185 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6186 | /* |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6187 | * Attach the domain 'sd' to 'cpu' as its base domain. Callers must |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6188 | * hold the hotplug lock. |
| 6189 | */ |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6190 | static void |
| 6191 | 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] | 6192 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6193 | struct rq *rq = cpu_rq(cpu); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6194 | struct sched_domain *tmp; |
| 6195 | |
| 6196 | /* Remove the sched domains which do not contribute to scheduling. */ |
| 6197 | for (tmp = sd; tmp; tmp = tmp->parent) { |
| 6198 | struct sched_domain *parent = tmp->parent; |
| 6199 | if (!parent) |
| 6200 | break; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6201 | if (sd_parent_degenerate(tmp, parent)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6202 | tmp->parent = parent->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6203 | if (parent->parent) |
| 6204 | parent->parent->child = tmp; |
| 6205 | } |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6206 | } |
| 6207 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6208 | if (sd && sd_degenerate(sd)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6209 | sd = sd->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6210 | if (sd) |
| 6211 | sd->child = NULL; |
| 6212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6213 | |
| 6214 | sched_domain_debug(sd, cpu); |
| 6215 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6216 | rq_attach_root(rq, rd); |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 6217 | rcu_assign_pointer(rq->sd, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6218 | } |
| 6219 | |
| 6220 | /* cpus with isolated domains */ |
Tim Chen | 67af63a | 2006-12-22 01:07:50 -0800 | [diff] [blame] | 6221 | static cpumask_t cpu_isolated_map = CPU_MASK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6222 | |
| 6223 | /* Setup the mask of cpus configured for isolated domains */ |
| 6224 | static int __init isolated_cpu_setup(char *str) |
| 6225 | { |
| 6226 | int ints[NR_CPUS], i; |
| 6227 | |
| 6228 | str = get_options(str, ARRAY_SIZE(ints), ints); |
| 6229 | cpus_clear(cpu_isolated_map); |
| 6230 | for (i = 1; i <= ints[0]; i++) |
| 6231 | if (ints[i] < NR_CPUS) |
| 6232 | cpu_set(ints[i], cpu_isolated_map); |
| 6233 | return 1; |
| 6234 | } |
| 6235 | |
Ingo Molnar | 8927f49 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6236 | __setup("isolcpus=", isolated_cpu_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6237 | |
| 6238 | /* |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6239 | * init_sched_build_groups takes the cpumask we wish to span, and a pointer |
| 6240 | * to a function which identifies what group(along with sched group) a CPU |
| 6241 | * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS |
| 6242 | * (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] | 6243 | * |
| 6244 | * init_sched_build_groups will build a circular linked list of the groups |
| 6245 | * covered by the given span, and will set each group's ->cpumask correctly, |
| 6246 | * and ->cpu_power to 0. |
| 6247 | */ |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6248 | static void |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6249 | init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map, |
| 6250 | int (*group_fn)(int cpu, const cpumask_t *cpu_map, |
| 6251 | struct sched_group **sg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6252 | { |
| 6253 | struct sched_group *first = NULL, *last = NULL; |
| 6254 | cpumask_t covered = CPU_MASK_NONE; |
| 6255 | int i; |
| 6256 | |
| 6257 | for_each_cpu_mask(i, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6258 | struct sched_group *sg; |
| 6259 | int group = group_fn(i, cpu_map, &sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6260 | int j; |
| 6261 | |
| 6262 | if (cpu_isset(i, covered)) |
| 6263 | continue; |
| 6264 | |
| 6265 | sg->cpumask = CPU_MASK_NONE; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6266 | sg->__cpu_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6267 | |
| 6268 | for_each_cpu_mask(j, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6269 | if (group_fn(j, cpu_map, NULL) != group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6270 | continue; |
| 6271 | |
| 6272 | cpu_set(j, covered); |
| 6273 | cpu_set(j, sg->cpumask); |
| 6274 | } |
| 6275 | if (!first) |
| 6276 | first = sg; |
| 6277 | if (last) |
| 6278 | last->next = sg; |
| 6279 | last = sg; |
| 6280 | } |
| 6281 | last->next = first; |
| 6282 | } |
| 6283 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6284 | #define SD_NODES_PER_DOMAIN 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6285 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6286 | #ifdef CONFIG_NUMA |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 6287 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6288 | /** |
| 6289 | * find_next_best_node - find the next node to include in a sched_domain |
| 6290 | * @node: node whose sched_domain we're building |
| 6291 | * @used_nodes: nodes already in the sched_domain |
| 6292 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6293 | * Find the next node to include in a given scheduling domain. Simply |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6294 | * finds the closest node not already in the @used_nodes map. |
| 6295 | * |
| 6296 | * Should use nodemask_t. |
| 6297 | */ |
| 6298 | static int find_next_best_node(int node, unsigned long *used_nodes) |
| 6299 | { |
| 6300 | int i, n, val, min_val, best_node = 0; |
| 6301 | |
| 6302 | min_val = INT_MAX; |
| 6303 | |
| 6304 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6305 | /* Start at @node */ |
| 6306 | n = (node + i) % MAX_NUMNODES; |
| 6307 | |
| 6308 | if (!nr_cpus_node(n)) |
| 6309 | continue; |
| 6310 | |
| 6311 | /* Skip already used nodes */ |
| 6312 | if (test_bit(n, used_nodes)) |
| 6313 | continue; |
| 6314 | |
| 6315 | /* Simple min distance search */ |
| 6316 | val = node_distance(node, n); |
| 6317 | |
| 6318 | if (val < min_val) { |
| 6319 | min_val = val; |
| 6320 | best_node = n; |
| 6321 | } |
| 6322 | } |
| 6323 | |
| 6324 | set_bit(best_node, used_nodes); |
| 6325 | return best_node; |
| 6326 | } |
| 6327 | |
| 6328 | /** |
| 6329 | * sched_domain_node_span - get a cpumask for a node's sched_domain |
| 6330 | * @node: node whose cpumask we're constructing |
| 6331 | * @size: number of nodes to include in this span |
| 6332 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6333 | * 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] | 6334 | * should be one that prevents unnecessary balancing, but also spreads tasks |
| 6335 | * out optimally. |
| 6336 | */ |
| 6337 | static cpumask_t sched_domain_node_span(int node) |
| 6338 | { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6339 | DECLARE_BITMAP(used_nodes, MAX_NUMNODES); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6340 | cpumask_t span, nodemask; |
| 6341 | int i; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6342 | |
| 6343 | cpus_clear(span); |
| 6344 | bitmap_zero(used_nodes, MAX_NUMNODES); |
| 6345 | |
| 6346 | nodemask = node_to_cpumask(node); |
| 6347 | cpus_or(span, span, nodemask); |
| 6348 | set_bit(node, used_nodes); |
| 6349 | |
| 6350 | for (i = 1; i < SD_NODES_PER_DOMAIN; i++) { |
| 6351 | int next_node = find_next_best_node(node, used_nodes); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6352 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6353 | nodemask = node_to_cpumask(next_node); |
| 6354 | cpus_or(span, span, nodemask); |
| 6355 | } |
| 6356 | |
| 6357 | return span; |
| 6358 | } |
| 6359 | #endif |
| 6360 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6361 | int sched_smt_power_savings = 0, sched_mc_power_savings = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6362 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6363 | /* |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6364 | * SMT sched-domains: |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6365 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6366 | #ifdef CONFIG_SCHED_SMT |
| 6367 | static DEFINE_PER_CPU(struct sched_domain, cpu_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6368 | static DEFINE_PER_CPU(struct sched_group, sched_group_cpus); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6369 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6370 | static int |
| 6371 | 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] | 6372 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6373 | if (sg) |
| 6374 | *sg = &per_cpu(sched_group_cpus, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6375 | return cpu; |
| 6376 | } |
| 6377 | #endif |
| 6378 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6379 | /* |
| 6380 | * multi-core sched-domains: |
| 6381 | */ |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6382 | #ifdef CONFIG_SCHED_MC |
| 6383 | static DEFINE_PER_CPU(struct sched_domain, core_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6384 | static DEFINE_PER_CPU(struct sched_group, sched_group_core); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6385 | #endif |
| 6386 | |
| 6387 | #if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6388 | static int |
| 6389 | 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] | 6390 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6391 | int group; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6392 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6393 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6394 | group = first_cpu(mask); |
| 6395 | if (sg) |
| 6396 | *sg = &per_cpu(sched_group_core, group); |
| 6397 | return group; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6398 | } |
| 6399 | #elif defined(CONFIG_SCHED_MC) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6400 | static int |
| 6401 | 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] | 6402 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6403 | if (sg) |
| 6404 | *sg = &per_cpu(sched_group_core, cpu); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6405 | return cpu; |
| 6406 | } |
| 6407 | #endif |
| 6408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6409 | static DEFINE_PER_CPU(struct sched_domain, phys_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6410 | static DEFINE_PER_CPU(struct sched_group, sched_group_phys); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6411 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6412 | static int |
| 6413 | 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] | 6414 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6415 | int group; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6416 | #ifdef CONFIG_SCHED_MC |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6417 | cpumask_t mask = cpu_coregroup_map(cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6418 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6419 | group = first_cpu(mask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6420 | #elif defined(CONFIG_SCHED_SMT) |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6421 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6422 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6423 | group = first_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6424 | #else |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6425 | group = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6426 | #endif |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6427 | if (sg) |
| 6428 | *sg = &per_cpu(sched_group_phys, group); |
| 6429 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6430 | } |
| 6431 | |
| 6432 | #ifdef CONFIG_NUMA |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6433 | /* |
| 6434 | * The init_sched_build_groups can't handle what we want to do with node |
| 6435 | * groups, so roll our own. Now each node has its own list of groups which |
| 6436 | * gets dynamically allocated. |
| 6437 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6438 | static DEFINE_PER_CPU(struct sched_domain, node_domains); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6439 | static struct sched_group **sched_group_nodes_bycpu[NR_CPUS]; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6440 | |
| 6441 | static DEFINE_PER_CPU(struct sched_domain, allnodes_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6442 | static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6443 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6444 | static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map, |
| 6445 | struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6446 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6447 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu)); |
| 6448 | int group; |
| 6449 | |
| 6450 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6451 | group = first_cpu(nodemask); |
| 6452 | |
| 6453 | if (sg) |
| 6454 | *sg = &per_cpu(sched_group_allnodes, group); |
| 6455 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6456 | } |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6457 | |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6458 | static void init_numa_sched_groups_power(struct sched_group *group_head) |
| 6459 | { |
| 6460 | struct sched_group *sg = group_head; |
| 6461 | int j; |
| 6462 | |
| 6463 | if (!sg) |
| 6464 | return; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6465 | do { |
| 6466 | for_each_cpu_mask(j, sg->cpumask) { |
| 6467 | struct sched_domain *sd; |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6468 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6469 | sd = &per_cpu(phys_domains, j); |
| 6470 | if (j != first_cpu(sd->groups->cpumask)) { |
| 6471 | /* |
| 6472 | * Only add "power" once for each |
| 6473 | * physical package. |
| 6474 | */ |
| 6475 | continue; |
| 6476 | } |
| 6477 | |
| 6478 | sg_inc_cpu_power(sg, sd->groups->__cpu_power); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6479 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6480 | sg = sg->next; |
| 6481 | } while (sg != group_head); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6482 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6483 | #endif |
| 6484 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6485 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6486 | /* Free memory allocated for various sched_group structures */ |
| 6487 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6488 | { |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6489 | int cpu, i; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6490 | |
| 6491 | for_each_cpu_mask(cpu, *cpu_map) { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6492 | struct sched_group **sched_group_nodes |
| 6493 | = sched_group_nodes_bycpu[cpu]; |
| 6494 | |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6495 | if (!sched_group_nodes) |
| 6496 | continue; |
| 6497 | |
| 6498 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6499 | cpumask_t nodemask = node_to_cpumask(i); |
| 6500 | struct sched_group *oldsg, *sg = sched_group_nodes[i]; |
| 6501 | |
| 6502 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6503 | if (cpus_empty(nodemask)) |
| 6504 | continue; |
| 6505 | |
| 6506 | if (sg == NULL) |
| 6507 | continue; |
| 6508 | sg = sg->next; |
| 6509 | next_sg: |
| 6510 | oldsg = sg; |
| 6511 | sg = sg->next; |
| 6512 | kfree(oldsg); |
| 6513 | if (oldsg != sched_group_nodes[i]) |
| 6514 | goto next_sg; |
| 6515 | } |
| 6516 | kfree(sched_group_nodes); |
| 6517 | sched_group_nodes_bycpu[cpu] = NULL; |
| 6518 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6519 | } |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6520 | #else |
| 6521 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6522 | { |
| 6523 | } |
| 6524 | #endif |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6526 | /* |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6527 | * Initialize sched groups cpu_power. |
| 6528 | * |
| 6529 | * cpu_power indicates the capacity of sched group, which is used while |
| 6530 | * distributing the load between different sched groups in a sched domain. |
| 6531 | * Typically cpu_power for all the groups in a sched domain will be same unless |
| 6532 | * there are asymmetries in the topology. If there are asymmetries, group |
| 6533 | * having more cpu_power will pickup more load compared to the group having |
| 6534 | * less cpu_power. |
| 6535 | * |
| 6536 | * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents |
| 6537 | * the maximum number of tasks a group can handle in the presence of other idle |
| 6538 | * or lightly loaded groups in the same sched domain. |
| 6539 | */ |
| 6540 | static void init_sched_groups_power(int cpu, struct sched_domain *sd) |
| 6541 | { |
| 6542 | struct sched_domain *child; |
| 6543 | struct sched_group *group; |
| 6544 | |
| 6545 | WARN_ON(!sd || !sd->groups); |
| 6546 | |
| 6547 | if (cpu != first_cpu(sd->groups->cpumask)) |
| 6548 | return; |
| 6549 | |
| 6550 | child = sd->child; |
| 6551 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6552 | sd->groups->__cpu_power = 0; |
| 6553 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6554 | /* |
| 6555 | * For perf policy, if the groups in child domain share resources |
| 6556 | * (for example cores sharing some portions of the cache hierarchy |
| 6557 | * or SMT), then set this domain groups cpu_power such that each group |
| 6558 | * can handle only one task, when there are other idle groups in the |
| 6559 | * same sched domain. |
| 6560 | */ |
| 6561 | if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) && |
| 6562 | (child->flags & |
| 6563 | (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6564 | sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6565 | return; |
| 6566 | } |
| 6567 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6568 | /* |
| 6569 | * add cpu_power of each child group to this groups cpu_power |
| 6570 | */ |
| 6571 | group = child->groups; |
| 6572 | do { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6573 | sg_inc_cpu_power(sd->groups, group->__cpu_power); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6574 | group = group->next; |
| 6575 | } while (group != child->groups); |
| 6576 | } |
| 6577 | |
| 6578 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6579 | * Build sched domains for a given set of cpus and attach the sched domains |
| 6580 | * to the individual cpus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6581 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6582 | static int build_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6583 | { |
| 6584 | int i; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6585 | struct root_domain *rd; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6586 | #ifdef CONFIG_NUMA |
| 6587 | struct sched_group **sched_group_nodes = NULL; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6588 | int sd_allnodes = 0; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6589 | |
| 6590 | /* |
| 6591 | * Allocate the per-node list of sched groups |
| 6592 | */ |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6593 | sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *), |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6594 | GFP_KERNEL); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6595 | if (!sched_group_nodes) { |
| 6596 | printk(KERN_WARNING "Can not alloc sched group node list\n"); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6597 | return -ENOMEM; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6598 | } |
| 6599 | sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes; |
| 6600 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6601 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6602 | rd = alloc_rootdomain(); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6603 | if (!rd) { |
| 6604 | printk(KERN_WARNING "Cannot alloc root domain\n"); |
| 6605 | return -ENOMEM; |
| 6606 | } |
| 6607 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6608 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6609 | * Set up domains for cpus specified by the cpu_map. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6610 | */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6611 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6612 | struct sched_domain *sd = NULL, *p; |
| 6613 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(i)); |
| 6614 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6615 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6616 | |
| 6617 | #ifdef CONFIG_NUMA |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6618 | if (cpus_weight(*cpu_map) > |
| 6619 | SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6620 | sd = &per_cpu(allnodes_domains, i); |
| 6621 | *sd = SD_ALLNODES_INIT; |
| 6622 | sd->span = *cpu_map; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6623 | cpu_to_allnodes_group(i, cpu_map, &sd->groups); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6624 | p = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6625 | sd_allnodes = 1; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6626 | } else |
| 6627 | p = NULL; |
| 6628 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6629 | sd = &per_cpu(node_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6630 | *sd = SD_NODE_INIT; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6631 | sd->span = sched_domain_node_span(cpu_to_node(i)); |
| 6632 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6633 | if (p) |
| 6634 | p->child = sd; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6635 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6636 | #endif |
| 6637 | |
| 6638 | p = sd; |
| 6639 | sd = &per_cpu(phys_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6640 | *sd = SD_CPU_INIT; |
| 6641 | sd->span = nodemask; |
| 6642 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6643 | if (p) |
| 6644 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6645 | cpu_to_phys_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6646 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6647 | #ifdef CONFIG_SCHED_MC |
| 6648 | p = sd; |
| 6649 | sd = &per_cpu(core_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6650 | *sd = SD_MC_INIT; |
| 6651 | sd->span = cpu_coregroup_map(i); |
| 6652 | cpus_and(sd->span, sd->span, *cpu_map); |
| 6653 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6654 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6655 | cpu_to_core_group(i, cpu_map, &sd->groups); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6656 | #endif |
| 6657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6658 | #ifdef CONFIG_SCHED_SMT |
| 6659 | p = sd; |
| 6660 | sd = &per_cpu(cpu_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6661 | *sd = SD_SIBLING_INIT; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6662 | sd->span = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6663 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6664 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6665 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6666 | cpu_to_cpu_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6667 | #endif |
| 6668 | } |
| 6669 | |
| 6670 | #ifdef CONFIG_SCHED_SMT |
| 6671 | /* Set up CPU (sibling) groups */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6672 | for_each_cpu_mask(i, *cpu_map) { |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6673 | cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6674 | cpus_and(this_sibling_map, this_sibling_map, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6675 | if (i != first_cpu(this_sibling_map)) |
| 6676 | continue; |
| 6677 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6678 | init_sched_build_groups(this_sibling_map, cpu_map, |
| 6679 | &cpu_to_cpu_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6680 | } |
| 6681 | #endif |
| 6682 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6683 | #ifdef CONFIG_SCHED_MC |
| 6684 | /* Set up multi-core groups */ |
| 6685 | for_each_cpu_mask(i, *cpu_map) { |
| 6686 | cpumask_t this_core_map = cpu_coregroup_map(i); |
| 6687 | cpus_and(this_core_map, this_core_map, *cpu_map); |
| 6688 | if (i != first_cpu(this_core_map)) |
| 6689 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6690 | init_sched_build_groups(this_core_map, cpu_map, |
| 6691 | &cpu_to_core_group); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6692 | } |
| 6693 | #endif |
| 6694 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6695 | /* Set up physical groups */ |
| 6696 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6697 | cpumask_t nodemask = node_to_cpumask(i); |
| 6698 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6699 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6700 | if (cpus_empty(nodemask)) |
| 6701 | continue; |
| 6702 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6703 | init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6704 | } |
| 6705 | |
| 6706 | #ifdef CONFIG_NUMA |
| 6707 | /* Set up node groups */ |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6708 | if (sd_allnodes) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6709 | init_sched_build_groups(*cpu_map, cpu_map, |
| 6710 | &cpu_to_allnodes_group); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6711 | |
| 6712 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6713 | /* Set up node groups */ |
| 6714 | struct sched_group *sg, *prev; |
| 6715 | cpumask_t nodemask = node_to_cpumask(i); |
| 6716 | cpumask_t domainspan; |
| 6717 | cpumask_t covered = CPU_MASK_NONE; |
| 6718 | int j; |
| 6719 | |
| 6720 | cpus_and(nodemask, nodemask, *cpu_map); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6721 | if (cpus_empty(nodemask)) { |
| 6722 | sched_group_nodes[i] = NULL; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6723 | continue; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6724 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6725 | |
| 6726 | domainspan = sched_domain_node_span(i); |
| 6727 | cpus_and(domainspan, domainspan, *cpu_map); |
| 6728 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6729 | sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6730 | if (!sg) { |
| 6731 | printk(KERN_WARNING "Can not alloc domain group for " |
| 6732 | "node %d\n", i); |
| 6733 | goto error; |
| 6734 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6735 | sched_group_nodes[i] = sg; |
| 6736 | for_each_cpu_mask(j, nodemask) { |
| 6737 | struct sched_domain *sd; |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 6738 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6739 | sd = &per_cpu(node_domains, j); |
| 6740 | sd->groups = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6741 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6742 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6743 | sg->cpumask = nodemask; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6744 | sg->next = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6745 | cpus_or(covered, covered, nodemask); |
| 6746 | prev = sg; |
| 6747 | |
| 6748 | for (j = 0; j < MAX_NUMNODES; j++) { |
| 6749 | cpumask_t tmp, notcovered; |
| 6750 | int n = (i + j) % MAX_NUMNODES; |
| 6751 | |
| 6752 | cpus_complement(notcovered, covered); |
| 6753 | cpus_and(tmp, notcovered, *cpu_map); |
| 6754 | cpus_and(tmp, tmp, domainspan); |
| 6755 | if (cpus_empty(tmp)) |
| 6756 | break; |
| 6757 | |
| 6758 | nodemask = node_to_cpumask(n); |
| 6759 | cpus_and(tmp, tmp, nodemask); |
| 6760 | if (cpus_empty(tmp)) |
| 6761 | continue; |
| 6762 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6763 | sg = kmalloc_node(sizeof(struct sched_group), |
| 6764 | GFP_KERNEL, i); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6765 | if (!sg) { |
| 6766 | printk(KERN_WARNING |
| 6767 | "Can not alloc domain group for node %d\n", j); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6768 | goto error; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6769 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6770 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6771 | sg->cpumask = tmp; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6772 | sg->next = prev->next; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6773 | cpus_or(covered, covered, tmp); |
| 6774 | prev->next = sg; |
| 6775 | prev = sg; |
| 6776 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6777 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6778 | #endif |
| 6779 | |
| 6780 | /* Calculate CPU power for physical packages and nodes */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6781 | #ifdef CONFIG_SCHED_SMT |
| 6782 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6783 | struct sched_domain *sd = &per_cpu(cpu_domains, i); |
| 6784 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6785 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6786 | } |
| 6787 | #endif |
| 6788 | #ifdef CONFIG_SCHED_MC |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6789 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6790 | struct sched_domain *sd = &per_cpu(core_domains, i); |
| 6791 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6792 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6793 | } |
| 6794 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6795 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6796 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6797 | struct sched_domain *sd = &per_cpu(phys_domains, i); |
| 6798 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6799 | init_sched_groups_power(i, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6800 | } |
| 6801 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6802 | #ifdef CONFIG_NUMA |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6803 | for (i = 0; i < MAX_NUMNODES; i++) |
| 6804 | init_numa_sched_groups_power(sched_group_nodes[i]); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6805 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6806 | if (sd_allnodes) { |
| 6807 | struct sched_group *sg; |
Siddha, Suresh B | f712c0c7 | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6808 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6809 | cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg); |
Siddha, Suresh B | f712c0c7 | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6810 | init_numa_sched_groups_power(sg); |
| 6811 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6812 | #endif |
| 6813 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6814 | /* Attach the domains */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6815 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6816 | struct sched_domain *sd; |
| 6817 | #ifdef CONFIG_SCHED_SMT |
| 6818 | sd = &per_cpu(cpu_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6819 | #elif defined(CONFIG_SCHED_MC) |
| 6820 | sd = &per_cpu(core_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6821 | #else |
| 6822 | sd = &per_cpu(phys_domains, i); |
| 6823 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6824 | cpu_attach_domain(sd, rd, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6825 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6826 | |
| 6827 | return 0; |
| 6828 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6829 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6830 | error: |
| 6831 | free_sched_groups(cpu_map); |
| 6832 | return -ENOMEM; |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6833 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6834 | } |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6835 | |
| 6836 | static cpumask_t *doms_cur; /* current sched domains */ |
| 6837 | static int ndoms_cur; /* number of sched domains in 'doms_cur' */ |
| 6838 | |
| 6839 | /* |
| 6840 | * Special case: If a kmalloc of a doms_cur partition (array of |
| 6841 | * cpumask_t) fails, then fallback to a single sched domain, |
| 6842 | * as determined by the single cpumask_t fallback_doms. |
| 6843 | */ |
| 6844 | static cpumask_t fallback_doms; |
| 6845 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6846 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6847 | * Set up scheduler domains and groups. Callers must hold the hotplug lock. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6848 | * For now this just excludes isolated cpus, but could be used to |
| 6849 | * exclude other special cases in the future. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6850 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6851 | static int arch_init_sched_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6852 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6853 | int err; |
| 6854 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6855 | ndoms_cur = 1; |
| 6856 | doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL); |
| 6857 | if (!doms_cur) |
| 6858 | doms_cur = &fallback_doms; |
| 6859 | cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6860 | err = build_sched_domains(doms_cur); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6861 | register_sched_domain_sysctl(); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6862 | |
| 6863 | return err; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6864 | } |
| 6865 | |
| 6866 | static void arch_destroy_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6867 | { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6868 | free_sched_groups(cpu_map); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6869 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6870 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6871 | /* |
| 6872 | * Detach sched domains from a group of cpus specified in cpu_map |
| 6873 | * These cpus will now be attached to the NULL domain |
| 6874 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 6875 | static void detach_destroy_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6876 | { |
| 6877 | int i; |
| 6878 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6879 | unregister_sched_domain_sysctl(); |
| 6880 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6881 | for_each_cpu_mask(i, *cpu_map) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6882 | cpu_attach_domain(NULL, &def_root_domain, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6883 | synchronize_sched(); |
| 6884 | arch_destroy_sched_domains(cpu_map); |
| 6885 | } |
| 6886 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6887 | /* |
| 6888 | * Partition sched domains as specified by the 'ndoms_new' |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6889 | * cpumasks in the array doms_new[] of cpumasks. This compares |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6890 | * doms_new[] to the current sched domain partitioning, doms_cur[]. |
| 6891 | * It destroys each deleted domain and builds each new domain. |
| 6892 | * |
| 6893 | * '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] | 6894 | * The masks don't intersect (don't overlap.) We should setup one |
| 6895 | * sched domain for each mask. CPUs not in any of the cpumasks will |
| 6896 | * not be load balanced. If the same cpumask appears both in the |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6897 | * current 'doms_cur' domains and in the new 'doms_new', we can leave |
| 6898 | * it as it is. |
| 6899 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6900 | * The passed in 'doms_new' should be kmalloc'd. This routine takes |
| 6901 | * 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] | 6902 | * failed the kmalloc call, then it can pass in doms_new == NULL, |
| 6903 | * and partition_sched_domains() will fallback to the single partition |
| 6904 | * 'fallback_doms'. |
| 6905 | * |
| 6906 | * Call with hotplug lock held |
| 6907 | */ |
| 6908 | void partition_sched_domains(int ndoms_new, cpumask_t *doms_new) |
| 6909 | { |
| 6910 | int i, j; |
| 6911 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 6912 | lock_doms_cur(); |
| 6913 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6914 | /* always unregister in case we don't destroy any domains */ |
| 6915 | unregister_sched_domain_sysctl(); |
| 6916 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6917 | if (doms_new == NULL) { |
| 6918 | ndoms_new = 1; |
| 6919 | doms_new = &fallback_doms; |
| 6920 | cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map); |
| 6921 | } |
| 6922 | |
| 6923 | /* Destroy deleted domains */ |
| 6924 | for (i = 0; i < ndoms_cur; i++) { |
| 6925 | for (j = 0; j < ndoms_new; j++) { |
| 6926 | if (cpus_equal(doms_cur[i], doms_new[j])) |
| 6927 | goto match1; |
| 6928 | } |
| 6929 | /* no match - a current sched domain not in new doms_new[] */ |
| 6930 | detach_destroy_domains(doms_cur + i); |
| 6931 | match1: |
| 6932 | ; |
| 6933 | } |
| 6934 | |
| 6935 | /* Build new domains */ |
| 6936 | for (i = 0; i < ndoms_new; i++) { |
| 6937 | for (j = 0; j < ndoms_cur; j++) { |
| 6938 | if (cpus_equal(doms_new[i], doms_cur[j])) |
| 6939 | goto match2; |
| 6940 | } |
| 6941 | /* no match - add a new doms_new */ |
| 6942 | build_sched_domains(doms_new + i); |
| 6943 | match2: |
| 6944 | ; |
| 6945 | } |
| 6946 | |
| 6947 | /* Remember the new sched domains */ |
| 6948 | if (doms_cur != &fallback_doms) |
| 6949 | kfree(doms_cur); |
| 6950 | doms_cur = doms_new; |
| 6951 | ndoms_cur = ndoms_new; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6952 | |
| 6953 | register_sched_domain_sysctl(); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 6954 | |
| 6955 | unlock_doms_cur(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6956 | } |
| 6957 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6958 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 6959 | static int arch_reinit_sched_domains(void) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6960 | { |
| 6961 | int err; |
| 6962 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 6963 | get_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6964 | detach_destroy_domains(&cpu_online_map); |
| 6965 | err = arch_init_sched_domains(&cpu_online_map); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 6966 | put_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6967 | |
| 6968 | return err; |
| 6969 | } |
| 6970 | |
| 6971 | static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt) |
| 6972 | { |
| 6973 | int ret; |
| 6974 | |
| 6975 | if (buf[0] != '0' && buf[0] != '1') |
| 6976 | return -EINVAL; |
| 6977 | |
| 6978 | if (smt) |
| 6979 | sched_smt_power_savings = (buf[0] == '1'); |
| 6980 | else |
| 6981 | sched_mc_power_savings = (buf[0] == '1'); |
| 6982 | |
| 6983 | ret = arch_reinit_sched_domains(); |
| 6984 | |
| 6985 | return ret ? ret : count; |
| 6986 | } |
| 6987 | |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 6988 | #ifdef CONFIG_SCHED_MC |
| 6989 | static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page) |
| 6990 | { |
| 6991 | return sprintf(page, "%u\n", sched_mc_power_savings); |
| 6992 | } |
| 6993 | static ssize_t sched_mc_power_savings_store(struct sys_device *dev, |
| 6994 | const char *buf, size_t count) |
| 6995 | { |
| 6996 | return sched_power_savings_store(buf, count, 0); |
| 6997 | } |
| 6998 | static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show, |
| 6999 | sched_mc_power_savings_store); |
| 7000 | #endif |
| 7001 | |
| 7002 | #ifdef CONFIG_SCHED_SMT |
| 7003 | static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page) |
| 7004 | { |
| 7005 | return sprintf(page, "%u\n", sched_smt_power_savings); |
| 7006 | } |
| 7007 | static ssize_t sched_smt_power_savings_store(struct sys_device *dev, |
| 7008 | const char *buf, size_t count) |
| 7009 | { |
| 7010 | return sched_power_savings_store(buf, count, 1); |
| 7011 | } |
| 7012 | static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show, |
| 7013 | sched_smt_power_savings_store); |
| 7014 | #endif |
| 7015 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7016 | int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls) |
| 7017 | { |
| 7018 | int err = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7019 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7020 | #ifdef CONFIG_SCHED_SMT |
| 7021 | if (smt_capable()) |
| 7022 | err = sysfs_create_file(&cls->kset.kobj, |
| 7023 | &attr_sched_smt_power_savings.attr); |
| 7024 | #endif |
| 7025 | #ifdef CONFIG_SCHED_MC |
| 7026 | if (!err && mc_capable()) |
| 7027 | err = sysfs_create_file(&cls->kset.kobj, |
| 7028 | &attr_sched_mc_power_savings.attr); |
| 7029 | #endif |
| 7030 | return err; |
| 7031 | } |
| 7032 | #endif |
| 7033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7034 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7035 | * Force a reinitialization of the sched domains hierarchy. The domains |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7036 | * and groups cannot be updated in place without racing with the balancing |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7037 | * code, so we temporarily attach all running cpus to the NULL domain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7038 | * which will prevent rebalancing while the sched domains are recalculated. |
| 7039 | */ |
| 7040 | static int update_sched_domains(struct notifier_block *nfb, |
| 7041 | unsigned long action, void *hcpu) |
| 7042 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7043 | switch (action) { |
| 7044 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7045 | case CPU_UP_PREPARE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7046 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7047 | case CPU_DOWN_PREPARE_FROZEN: |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7048 | detach_destroy_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7049 | return NOTIFY_OK; |
| 7050 | |
| 7051 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7052 | case CPU_UP_CANCELED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7053 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7054 | case CPU_DOWN_FAILED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7055 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7056 | case CPU_ONLINE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7057 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7058 | case CPU_DEAD_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7059 | /* |
| 7060 | * Fall through and re-initialise the domains. |
| 7061 | */ |
| 7062 | break; |
| 7063 | default: |
| 7064 | return NOTIFY_DONE; |
| 7065 | } |
| 7066 | |
| 7067 | /* The hotplug lock is already held by cpu_up/cpu_down */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7068 | arch_init_sched_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7069 | |
| 7070 | return NOTIFY_OK; |
| 7071 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7072 | |
| 7073 | void __init sched_init_smp(void) |
| 7074 | { |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7075 | cpumask_t non_isolated_cpus; |
| 7076 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7077 | get_online_cpus(); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7078 | arch_init_sched_domains(&cpu_online_map); |
Nathan Lynch | e5e5673 | 2007-01-10 23:15:28 -0800 | [diff] [blame] | 7079 | cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7080 | if (cpus_empty(non_isolated_cpus)) |
| 7081 | cpu_set(smp_processor_id(), non_isolated_cpus); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7082 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7083 | /* XXX: Theoretical race here - CPU may be hotplugged now */ |
| 7084 | hotcpu_notifier(update_sched_domains, 0); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7085 | |
| 7086 | /* Move init over to a non-isolated CPU */ |
| 7087 | if (set_cpus_allowed(current, non_isolated_cpus) < 0) |
| 7088 | BUG(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7089 | sched_init_granularity(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7090 | |
| 7091 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7092 | if (nr_cpu_ids == 1) |
| 7093 | return; |
| 7094 | |
| 7095 | lb_monitor_task = kthread_create(load_balance_monitor, NULL, |
| 7096 | "group_balance"); |
| 7097 | if (!IS_ERR(lb_monitor_task)) { |
| 7098 | lb_monitor_task->flags |= PF_NOFREEZE; |
| 7099 | wake_up_process(lb_monitor_task); |
| 7100 | } else { |
| 7101 | printk(KERN_ERR "Could not create load balance monitor thread" |
| 7102 | "(error = %ld) \n", PTR_ERR(lb_monitor_task)); |
| 7103 | } |
| 7104 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7105 | } |
| 7106 | #else |
| 7107 | void __init sched_init_smp(void) |
| 7108 | { |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7109 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7110 | } |
| 7111 | #endif /* CONFIG_SMP */ |
| 7112 | |
| 7113 | int in_sched_functions(unsigned long addr) |
| 7114 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7115 | return in_lock_functions(addr) || |
| 7116 | (addr >= (unsigned long)__sched_text_start |
| 7117 | && addr < (unsigned long)__sched_text_end); |
| 7118 | } |
| 7119 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 7120 | 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] | 7121 | { |
| 7122 | cfs_rq->tasks_timeline = RB_ROOT; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7123 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7124 | cfs_rq->rq = rq; |
| 7125 | #endif |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 7126 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7127 | } |
| 7128 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7129 | static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) |
| 7130 | { |
| 7131 | struct rt_prio_array *array; |
| 7132 | int i; |
| 7133 | |
| 7134 | array = &rt_rq->active; |
| 7135 | for (i = 0; i < MAX_RT_PRIO; i++) { |
| 7136 | INIT_LIST_HEAD(array->queue + i); |
| 7137 | __clear_bit(i, array->bitmap); |
| 7138 | } |
| 7139 | /* delimiter for bitsearch: */ |
| 7140 | __set_bit(MAX_RT_PRIO, array->bitmap); |
| 7141 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7142 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7143 | rt_rq->highest_prio = MAX_RT_PRIO; |
| 7144 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7145 | #ifdef CONFIG_SMP |
| 7146 | rt_rq->rt_nr_migratory = 0; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7147 | rt_rq->overloaded = 0; |
| 7148 | #endif |
| 7149 | |
| 7150 | rt_rq->rt_time = 0; |
| 7151 | rt_rq->rt_throttled = 0; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7152 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7153 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7154 | rt_rq->rt_nr_boosted = 0; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7155 | rt_rq->rq = rq; |
| 7156 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7157 | } |
| 7158 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7159 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7160 | static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg, |
| 7161 | struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 7162 | int cpu, int add) |
| 7163 | { |
| 7164 | tg->cfs_rq[cpu] = cfs_rq; |
| 7165 | init_cfs_rq(cfs_rq, rq); |
| 7166 | cfs_rq->tg = tg; |
| 7167 | if (add) |
| 7168 | list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
| 7169 | |
| 7170 | tg->se[cpu] = se; |
| 7171 | se->cfs_rq = &rq->cfs; |
| 7172 | se->my_q = cfs_rq; |
| 7173 | se->load.weight = tg->shares; |
| 7174 | se->load.inv_weight = div64_64(1ULL<<32, se->load.weight); |
| 7175 | se->parent = NULL; |
| 7176 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7177 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7178 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7179 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7180 | static void init_tg_rt_entry(struct rq *rq, struct task_group *tg, |
| 7181 | struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, |
| 7182 | int cpu, int add) |
| 7183 | { |
| 7184 | tg->rt_rq[cpu] = rt_rq; |
| 7185 | init_rt_rq(rt_rq, rq); |
| 7186 | rt_rq->tg = tg; |
| 7187 | rt_rq->rt_se = rt_se; |
| 7188 | if (add) |
| 7189 | list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); |
| 7190 | |
| 7191 | tg->rt_se[cpu] = rt_se; |
| 7192 | rt_se->rt_rq = &rq->rt; |
| 7193 | rt_se->my_q = rt_rq; |
| 7194 | rt_se->parent = NULL; |
| 7195 | INIT_LIST_HEAD(&rt_se->run_list); |
| 7196 | } |
| 7197 | #endif |
| 7198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7199 | void __init sched_init(void) |
| 7200 | { |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7201 | int highest_cpu = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7202 | int i, j; |
| 7203 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7204 | #ifdef CONFIG_SMP |
| 7205 | init_defrootdomain(); |
| 7206 | #endif |
| 7207 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7208 | #ifdef CONFIG_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7209 | list_add(&init_task_group.list, &task_groups); |
| 7210 | #endif |
| 7211 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 7212 | for_each_possible_cpu(i) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7213 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7214 | |
| 7215 | rq = cpu_rq(i); |
| 7216 | spin_lock_init(&rq->lock); |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 7217 | lockdep_set_class(&rq->lock, &rq->rq_lock_key); |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 7218 | rq->nr_running = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7219 | rq->clock = 1; |
| 7220 | init_cfs_rq(&rq->cfs, rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7221 | init_rt_rq(&rq->rt, rq); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7222 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7223 | init_task_group.shares = init_task_group_load; |
| 7224 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
| 7225 | init_tg_cfs_entry(rq, &init_task_group, |
| 7226 | &per_cpu(init_cfs_rq, i), |
| 7227 | &per_cpu(init_sched_entity, i), i, 1); |
| 7228 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7229 | #endif |
| 7230 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7231 | init_task_group.rt_runtime = |
| 7232 | sysctl_sched_rt_runtime * NSEC_PER_USEC; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7233 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
| 7234 | init_tg_rt_entry(rq, &init_task_group, |
| 7235 | &per_cpu(init_rt_rq, i), |
| 7236 | &per_cpu(init_sched_rt_entity, i), i, 1); |
| 7237 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7238 | rq->rt_period_expire = 0; |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7239 | rq->rt_throttled = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7240 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7241 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
| 7242 | rq->cpu_load[j] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7243 | #ifdef CONFIG_SMP |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7244 | rq->sd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7245 | rq->rd = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7246 | rq->active_balance = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7247 | rq->next_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7248 | rq->push_cpu = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 7249 | rq->cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7250 | rq->migration_thread = NULL; |
| 7251 | INIT_LIST_HEAD(&rq->migration_queue); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 7252 | rq_attach_root(rq, &def_root_domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7253 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7254 | init_rq_hrtick(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7255 | atomic_set(&rq->nr_iowait, 0); |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7256 | highest_cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7257 | } |
| 7258 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 7259 | set_load_weight(&init_task); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7260 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 7261 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 7262 | INIT_HLIST_HEAD(&init_task.preempt_notifiers); |
| 7263 | #endif |
| 7264 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7265 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7266 | nr_cpu_ids = highest_cpu + 1; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7267 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL); |
| 7268 | #endif |
| 7269 | |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7270 | #ifdef CONFIG_RT_MUTEXES |
| 7271 | plist_head_init(&init_task.pi_waiters, &init_task.pi_lock); |
| 7272 | #endif |
| 7273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7274 | /* |
| 7275 | * The boot idle thread does lazy MMU switching as well: |
| 7276 | */ |
| 7277 | atomic_inc(&init_mm.mm_count); |
| 7278 | enter_lazy_tlb(&init_mm, current); |
| 7279 | |
| 7280 | /* |
| 7281 | * Make us the idle thread. Technically, schedule() should not be |
| 7282 | * called from this thread, however somewhere below it might be, |
| 7283 | * but because we are the idle thread, we just pick up running again |
| 7284 | * when this runqueue becomes "idle". |
| 7285 | */ |
| 7286 | init_idle(current, smp_processor_id()); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7287 | /* |
| 7288 | * During early bootup we pretend to be a normal task: |
| 7289 | */ |
| 7290 | current->sched_class = &fair_sched_class; |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 7291 | |
| 7292 | scheduler_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7293 | } |
| 7294 | |
| 7295 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 7296 | void __might_sleep(char *file, int line) |
| 7297 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7298 | #ifdef in_atomic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7299 | static unsigned long prev_jiffy; /* ratelimiting */ |
| 7300 | |
| 7301 | if ((in_atomic() || irqs_disabled()) && |
| 7302 | system_state == SYSTEM_RUNNING && !oops_in_progress) { |
| 7303 | if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy) |
| 7304 | return; |
| 7305 | prev_jiffy = jiffies; |
Ingo Molnar | 91368d7 | 2006-03-23 03:00:54 -0800 | [diff] [blame] | 7306 | printk(KERN_ERR "BUG: sleeping function called from invalid" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7307 | " context at %s:%d\n", file, line); |
| 7308 | printk("in_atomic():%d, irqs_disabled():%d\n", |
| 7309 | in_atomic(), irqs_disabled()); |
Peter Zijlstra | a4c410f | 2006-12-06 20:37:21 -0800 | [diff] [blame] | 7310 | debug_show_held_locks(current); |
Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 7311 | if (irqs_disabled()) |
| 7312 | print_irqtrace_events(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7313 | dump_stack(); |
| 7314 | } |
| 7315 | #endif |
| 7316 | } |
| 7317 | EXPORT_SYMBOL(__might_sleep); |
| 7318 | #endif |
| 7319 | |
| 7320 | #ifdef CONFIG_MAGIC_SYSRQ |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7321 | static void normalize_task(struct rq *rq, struct task_struct *p) |
| 7322 | { |
| 7323 | int on_rq; |
| 7324 | update_rq_clock(rq); |
| 7325 | on_rq = p->se.on_rq; |
| 7326 | if (on_rq) |
| 7327 | deactivate_task(rq, p, 0); |
| 7328 | __setscheduler(rq, p, SCHED_NORMAL, 0); |
| 7329 | if (on_rq) { |
| 7330 | activate_task(rq, p, 0); |
| 7331 | resched_task(rq->curr); |
| 7332 | } |
| 7333 | } |
| 7334 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7335 | void normalize_rt_tasks(void) |
| 7336 | { |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7337 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7338 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7339 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7340 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7341 | read_lock_irqsave(&tasklist_lock, flags); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7342 | do_each_thread(g, p) { |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7343 | /* |
| 7344 | * Only normalize user tasks: |
| 7345 | */ |
| 7346 | if (!p->mm) |
| 7347 | continue; |
| 7348 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7349 | p->se.exec_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7350 | #ifdef CONFIG_SCHEDSTATS |
| 7351 | p->se.wait_start = 0; |
| 7352 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7353 | p->se.block_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7354 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7355 | task_rq(p)->clock = 0; |
| 7356 | |
| 7357 | if (!rt_task(p)) { |
| 7358 | /* |
| 7359 | * Renice negative nice level userspace |
| 7360 | * tasks back to 0: |
| 7361 | */ |
| 7362 | if (TASK_NICE(p) < 0 && p->mm) |
| 7363 | set_user_nice(p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7364 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7365 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7366 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7367 | spin_lock(&p->pi_lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7368 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7369 | |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7370 | normalize_task(rq, p); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7371 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7372 | __task_rq_unlock(rq); |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7373 | spin_unlock(&p->pi_lock); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7374 | } while_each_thread(g, p); |
| 7375 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7376 | read_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7377 | } |
| 7378 | |
| 7379 | #endif /* CONFIG_MAGIC_SYSRQ */ |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7380 | |
| 7381 | #ifdef CONFIG_IA64 |
| 7382 | /* |
| 7383 | * These functions are only useful for the IA64 MCA handling. |
| 7384 | * |
| 7385 | * They can only be called when the whole system has been |
| 7386 | * stopped - every CPU needs to be quiescent, and no scheduling |
| 7387 | * activity can take place. Using them for anything else would |
| 7388 | * be a serious bug, and as a result, they aren't even visible |
| 7389 | * under any other configuration. |
| 7390 | */ |
| 7391 | |
| 7392 | /** |
| 7393 | * curr_task - return the current task for a given cpu. |
| 7394 | * @cpu: the processor in question. |
| 7395 | * |
| 7396 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7397 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7398 | struct task_struct *curr_task(int cpu) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7399 | { |
| 7400 | return cpu_curr(cpu); |
| 7401 | } |
| 7402 | |
| 7403 | /** |
| 7404 | * set_curr_task - set the current task for a given cpu. |
| 7405 | * @cpu: the processor in question. |
| 7406 | * @p: the task pointer to set. |
| 7407 | * |
| 7408 | * Description: This function must only be used when non-maskable interrupts |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7409 | * are serviced on a separate stack. It allows the architecture to switch the |
| 7410 | * 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] | 7411 | * must be called with all CPU's synchronized, and interrupts disabled, the |
| 7412 | * and caller must save the original value of the current task (see |
| 7413 | * curr_task() above) and restore that value before reenabling interrupts and |
| 7414 | * re-starting the system. |
| 7415 | * |
| 7416 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7417 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7418 | void set_curr_task(int cpu, struct task_struct *p) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7419 | { |
| 7420 | cpu_curr(cpu) = p; |
| 7421 | } |
| 7422 | |
| 7423 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7424 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7425 | #ifdef CONFIG_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7426 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7427 | #if defined CONFIG_FAIR_GROUP_SCHED && defined CONFIG_SMP |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7428 | /* |
| 7429 | * distribute shares of all task groups among their schedulable entities, |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7430 | * to reflect load distribution across cpus. |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7431 | */ |
| 7432 | static int rebalance_shares(struct sched_domain *sd, int this_cpu) |
| 7433 | { |
| 7434 | struct cfs_rq *cfs_rq; |
| 7435 | struct rq *rq = cpu_rq(this_cpu); |
| 7436 | cpumask_t sdspan = sd->span; |
| 7437 | int balanced = 1; |
| 7438 | |
| 7439 | /* Walk thr' all the task groups that we have */ |
| 7440 | for_each_leaf_cfs_rq(rq, cfs_rq) { |
| 7441 | int i; |
| 7442 | unsigned long total_load = 0, total_shares; |
| 7443 | struct task_group *tg = cfs_rq->tg; |
| 7444 | |
| 7445 | /* Gather total task load of this group across cpus */ |
| 7446 | for_each_cpu_mask(i, sdspan) |
| 7447 | total_load += tg->cfs_rq[i]->load.weight; |
| 7448 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 7449 | /* Nothing to do if this group has no load */ |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7450 | if (!total_load) |
| 7451 | continue; |
| 7452 | |
| 7453 | /* |
| 7454 | * tg->shares represents the number of cpu shares the task group |
| 7455 | * is eligible to hold on a single cpu. On N cpus, it is |
| 7456 | * eligible to hold (N * tg->shares) number of cpu shares. |
| 7457 | */ |
| 7458 | total_shares = tg->shares * cpus_weight(sdspan); |
| 7459 | |
| 7460 | /* |
| 7461 | * redistribute total_shares across cpus as per the task load |
| 7462 | * distribution. |
| 7463 | */ |
| 7464 | for_each_cpu_mask(i, sdspan) { |
| 7465 | unsigned long local_load, local_shares; |
| 7466 | |
| 7467 | local_load = tg->cfs_rq[i]->load.weight; |
| 7468 | local_shares = (local_load * total_shares) / total_load; |
| 7469 | if (!local_shares) |
| 7470 | local_shares = MIN_GROUP_SHARES; |
| 7471 | if (local_shares == tg->se[i]->load.weight) |
| 7472 | continue; |
| 7473 | |
| 7474 | spin_lock_irq(&cpu_rq(i)->lock); |
| 7475 | set_se_shares(tg->se[i], local_shares); |
| 7476 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 7477 | balanced = 0; |
| 7478 | } |
| 7479 | } |
| 7480 | |
| 7481 | return balanced; |
| 7482 | } |
| 7483 | |
| 7484 | /* |
| 7485 | * How frequently should we rebalance_shares() across cpus? |
| 7486 | * |
| 7487 | * The more frequently we rebalance shares, the more accurate is the fairness |
| 7488 | * of cpu bandwidth distribution between task groups. However higher frequency |
| 7489 | * also implies increased scheduling overhead. |
| 7490 | * |
| 7491 | * sysctl_sched_min_bal_int_shares represents the minimum interval between |
| 7492 | * consecutive calls to rebalance_shares() in the same sched domain. |
| 7493 | * |
| 7494 | * sysctl_sched_max_bal_int_shares represents the maximum interval between |
| 7495 | * consecutive calls to rebalance_shares() in the same sched domain. |
| 7496 | * |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7497 | * These settings allows for the appropriate trade-off between accuracy of |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7498 | * fairness and the associated overhead. |
| 7499 | * |
| 7500 | */ |
| 7501 | |
| 7502 | /* default: 8ms, units: milliseconds */ |
| 7503 | const_debug unsigned int sysctl_sched_min_bal_int_shares = 8; |
| 7504 | |
| 7505 | /* default: 128ms, units: milliseconds */ |
| 7506 | const_debug unsigned int sysctl_sched_max_bal_int_shares = 128; |
| 7507 | |
| 7508 | /* kernel thread that runs rebalance_shares() periodically */ |
| 7509 | static int load_balance_monitor(void *unused) |
| 7510 | { |
| 7511 | unsigned int timeout = sysctl_sched_min_bal_int_shares; |
| 7512 | struct sched_param schedparm; |
| 7513 | int ret; |
| 7514 | |
| 7515 | /* |
| 7516 | * We don't want this thread's execution to be limited by the shares |
| 7517 | * assigned to default group (init_task_group). Hence make it run |
| 7518 | * as a SCHED_RR RT task at the lowest priority. |
| 7519 | */ |
| 7520 | schedparm.sched_priority = 1; |
| 7521 | ret = sched_setscheduler(current, SCHED_RR, &schedparm); |
| 7522 | if (ret) |
| 7523 | printk(KERN_ERR "Couldn't set SCHED_RR policy for load balance" |
| 7524 | " monitor thread (error = %d) \n", ret); |
| 7525 | |
| 7526 | while (!kthread_should_stop()) { |
| 7527 | int i, cpu, balanced = 1; |
| 7528 | |
| 7529 | /* Prevent cpus going down or coming up */ |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7530 | get_online_cpus(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7531 | /* lockout changes to doms_cur[] array */ |
| 7532 | lock_doms_cur(); |
| 7533 | /* |
| 7534 | * Enter a rcu read-side critical section to safely walk rq->sd |
| 7535 | * chain on various cpus and to walk task group list |
| 7536 | * (rq->leaf_cfs_rq_list) in rebalance_shares(). |
| 7537 | */ |
| 7538 | rcu_read_lock(); |
| 7539 | |
| 7540 | for (i = 0; i < ndoms_cur; i++) { |
| 7541 | cpumask_t cpumap = doms_cur[i]; |
| 7542 | struct sched_domain *sd = NULL, *sd_prev = NULL; |
| 7543 | |
| 7544 | cpu = first_cpu(cpumap); |
| 7545 | |
| 7546 | /* Find the highest domain at which to balance shares */ |
| 7547 | for_each_domain(cpu, sd) { |
| 7548 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 7549 | continue; |
| 7550 | sd_prev = sd; |
| 7551 | } |
| 7552 | |
| 7553 | sd = sd_prev; |
| 7554 | /* sd == NULL? No load balance reqd in this domain */ |
| 7555 | if (!sd) |
| 7556 | continue; |
| 7557 | |
| 7558 | balanced &= rebalance_shares(sd, cpu); |
| 7559 | } |
| 7560 | |
| 7561 | rcu_read_unlock(); |
| 7562 | |
| 7563 | unlock_doms_cur(); |
Gautham R Shenoy | 86ef5c9 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7564 | put_online_cpus(); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7565 | |
| 7566 | if (!balanced) |
| 7567 | timeout = sysctl_sched_min_bal_int_shares; |
| 7568 | else if (timeout < sysctl_sched_max_bal_int_shares) |
| 7569 | timeout *= 2; |
| 7570 | |
| 7571 | msleep_interruptible(timeout); |
| 7572 | } |
| 7573 | |
| 7574 | return 0; |
| 7575 | } |
| 7576 | #endif /* CONFIG_SMP */ |
| 7577 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7578 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7579 | static void free_fair_sched_group(struct task_group *tg) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7580 | { |
| 7581 | int i; |
| 7582 | |
| 7583 | for_each_possible_cpu(i) { |
| 7584 | if (tg->cfs_rq) |
| 7585 | kfree(tg->cfs_rq[i]); |
| 7586 | if (tg->se) |
| 7587 | kfree(tg->se[i]); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7588 | } |
| 7589 | |
| 7590 | kfree(tg->cfs_rq); |
| 7591 | kfree(tg->se); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7592 | } |
| 7593 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7594 | static int alloc_fair_sched_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7595 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7596 | struct cfs_rq *cfs_rq; |
| 7597 | struct sched_entity *se; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7598 | struct rq *rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7599 | int i; |
| 7600 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7601 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * NR_CPUS, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7602 | if (!tg->cfs_rq) |
| 7603 | goto err; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7604 | tg->se = kzalloc(sizeof(se) * NR_CPUS, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7605 | if (!tg->se) |
| 7606 | goto err; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7607 | |
| 7608 | tg->shares = NICE_0_LOAD; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7609 | |
| 7610 | for_each_possible_cpu(i) { |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7611 | rq = cpu_rq(i); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7612 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7613 | cfs_rq = kmalloc_node(sizeof(struct cfs_rq), |
| 7614 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7615 | if (!cfs_rq) |
| 7616 | goto err; |
| 7617 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7618 | se = kmalloc_node(sizeof(struct sched_entity), |
| 7619 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7620 | if (!se) |
| 7621 | goto err; |
| 7622 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7623 | init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7624 | } |
| 7625 | |
| 7626 | return 1; |
| 7627 | |
| 7628 | err: |
| 7629 | return 0; |
| 7630 | } |
| 7631 | |
| 7632 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 7633 | { |
| 7634 | list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list, |
| 7635 | &cpu_rq(cpu)->leaf_cfs_rq_list); |
| 7636 | } |
| 7637 | |
| 7638 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 7639 | { |
| 7640 | list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list); |
| 7641 | } |
| 7642 | #else |
| 7643 | static inline void free_fair_sched_group(struct task_group *tg) |
| 7644 | { |
| 7645 | } |
| 7646 | |
| 7647 | static inline int alloc_fair_sched_group(struct task_group *tg) |
| 7648 | { |
| 7649 | return 1; |
| 7650 | } |
| 7651 | |
| 7652 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 7653 | { |
| 7654 | } |
| 7655 | |
| 7656 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 7657 | { |
| 7658 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7659 | #endif |
| 7660 | |
| 7661 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7662 | static void free_rt_sched_group(struct task_group *tg) |
| 7663 | { |
| 7664 | int i; |
| 7665 | |
| 7666 | for_each_possible_cpu(i) { |
| 7667 | if (tg->rt_rq) |
| 7668 | kfree(tg->rt_rq[i]); |
| 7669 | if (tg->rt_se) |
| 7670 | kfree(tg->rt_se[i]); |
| 7671 | } |
| 7672 | |
| 7673 | kfree(tg->rt_rq); |
| 7674 | kfree(tg->rt_se); |
| 7675 | } |
| 7676 | |
| 7677 | static int alloc_rt_sched_group(struct task_group *tg) |
| 7678 | { |
| 7679 | struct rt_rq *rt_rq; |
| 7680 | struct sched_rt_entity *rt_se; |
| 7681 | struct rq *rq; |
| 7682 | int i; |
| 7683 | |
| 7684 | tg->rt_rq = kzalloc(sizeof(rt_rq) * NR_CPUS, GFP_KERNEL); |
| 7685 | if (!tg->rt_rq) |
| 7686 | goto err; |
| 7687 | tg->rt_se = kzalloc(sizeof(rt_se) * NR_CPUS, GFP_KERNEL); |
| 7688 | if (!tg->rt_se) |
| 7689 | goto err; |
| 7690 | |
| 7691 | tg->rt_runtime = 0; |
| 7692 | |
| 7693 | for_each_possible_cpu(i) { |
| 7694 | rq = cpu_rq(i); |
| 7695 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7696 | rt_rq = kmalloc_node(sizeof(struct rt_rq), |
| 7697 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7698 | if (!rt_rq) |
| 7699 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7700 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7701 | rt_se = kmalloc_node(sizeof(struct sched_rt_entity), |
| 7702 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7703 | if (!rt_se) |
| 7704 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7705 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7706 | init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7707 | } |
| 7708 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7709 | return 1; |
| 7710 | |
| 7711 | err: |
| 7712 | return 0; |
| 7713 | } |
| 7714 | |
| 7715 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 7716 | { |
| 7717 | list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list, |
| 7718 | &cpu_rq(cpu)->leaf_rt_rq_list); |
| 7719 | } |
| 7720 | |
| 7721 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 7722 | { |
| 7723 | list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list); |
| 7724 | } |
| 7725 | #else |
| 7726 | static inline void free_rt_sched_group(struct task_group *tg) |
| 7727 | { |
| 7728 | } |
| 7729 | |
| 7730 | static inline int alloc_rt_sched_group(struct task_group *tg) |
| 7731 | { |
| 7732 | return 1; |
| 7733 | } |
| 7734 | |
| 7735 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 7736 | { |
| 7737 | } |
| 7738 | |
| 7739 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 7740 | { |
| 7741 | } |
| 7742 | #endif |
| 7743 | |
| 7744 | static void free_sched_group(struct task_group *tg) |
| 7745 | { |
| 7746 | free_fair_sched_group(tg); |
| 7747 | free_rt_sched_group(tg); |
| 7748 | kfree(tg); |
| 7749 | } |
| 7750 | |
| 7751 | /* allocate runqueue etc for a new task group */ |
| 7752 | struct task_group *sched_create_group(void) |
| 7753 | { |
| 7754 | struct task_group *tg; |
| 7755 | unsigned long flags; |
| 7756 | int i; |
| 7757 | |
| 7758 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 7759 | if (!tg) |
| 7760 | return ERR_PTR(-ENOMEM); |
| 7761 | |
| 7762 | if (!alloc_fair_sched_group(tg)) |
| 7763 | goto err; |
| 7764 | |
| 7765 | if (!alloc_rt_sched_group(tg)) |
| 7766 | goto err; |
| 7767 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7768 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7769 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7770 | register_fair_sched_group(tg, i); |
| 7771 | register_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7772 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7773 | list_add_rcu(&tg->list, &task_groups); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7774 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7775 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7776 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7777 | |
| 7778 | err: |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7779 | free_sched_group(tg); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7780 | return ERR_PTR(-ENOMEM); |
| 7781 | } |
| 7782 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7783 | /* rcu callback to free various structures associated with a task group */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7784 | static void free_sched_group_rcu(struct rcu_head *rhp) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7785 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7786 | /* now it should be safe to free those cfs_rqs */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7787 | free_sched_group(container_of(rhp, struct task_group, rcu)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7788 | } |
| 7789 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7790 | /* Destroy runqueue etc associated with a task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7791 | void sched_destroy_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7792 | { |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7793 | unsigned long flags; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7794 | int i; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7795 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7796 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7797 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7798 | unregister_fair_sched_group(tg, i); |
| 7799 | unregister_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7800 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7801 | list_del_rcu(&tg->list); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7802 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7803 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7804 | /* wait for possible concurrent references to cfs_rqs complete */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7805 | call_rcu(&tg->rcu, free_sched_group_rcu); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7806 | } |
| 7807 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7808 | /* change task's runqueue when it moves between groups. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 7809 | * The caller of this function should have put the task in its new group |
| 7810 | * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to |
| 7811 | * reflect its new group. |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7812 | */ |
| 7813 | void sched_move_task(struct task_struct *tsk) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7814 | { |
| 7815 | int on_rq, running; |
| 7816 | unsigned long flags; |
| 7817 | struct rq *rq; |
| 7818 | |
| 7819 | rq = task_rq_lock(tsk, &flags); |
| 7820 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7821 | update_rq_clock(rq); |
| 7822 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 7823 | running = task_current(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7824 | on_rq = tsk->se.on_rq; |
| 7825 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7826 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7827 | dequeue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7828 | if (unlikely(running)) |
| 7829 | tsk->sched_class->put_prev_task(rq, tsk); |
| 7830 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7831 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7832 | set_task_rq(tsk, task_cpu(tsk)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7833 | |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7834 | if (on_rq) { |
| 7835 | if (unlikely(running)) |
| 7836 | tsk->sched_class->set_curr_task(rq); |
Dmitry Adamushko | 7074bad | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7837 | enqueue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 7838 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7839 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7840 | task_rq_unlock(rq, &flags); |
| 7841 | } |
| 7842 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7843 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7844 | /* rq->lock to be locked by caller */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7845 | static void set_se_shares(struct sched_entity *se, unsigned long shares) |
| 7846 | { |
| 7847 | struct cfs_rq *cfs_rq = se->cfs_rq; |
| 7848 | struct rq *rq = cfs_rq->rq; |
| 7849 | int on_rq; |
| 7850 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7851 | if (!shares) |
| 7852 | shares = MIN_GROUP_SHARES; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7853 | |
| 7854 | on_rq = se->on_rq; |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7855 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7856 | dequeue_entity(cfs_rq, se, 0); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7857 | dec_cpu_load(rq, se->load.weight); |
| 7858 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7859 | |
| 7860 | se->load.weight = shares; |
| 7861 | se->load.inv_weight = div64_64((1ULL<<32), shares); |
| 7862 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7863 | if (on_rq) { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7864 | enqueue_entity(cfs_rq, se, 0); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7865 | inc_cpu_load(rq, se->load.weight); |
| 7866 | } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7867 | } |
| 7868 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7869 | static DEFINE_MUTEX(shares_mutex); |
| 7870 | |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7871 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7872 | { |
| 7873 | int i; |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7874 | unsigned long flags; |
Ingo Molnar | c61935f | 2008-01-22 11:24:58 +0100 | [diff] [blame] | 7875 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7876 | mutex_lock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7877 | if (tg->shares == shares) |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7878 | goto done; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7879 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7880 | if (shares < MIN_GROUP_SHARES) |
| 7881 | shares = MIN_GROUP_SHARES; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7882 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7883 | /* |
| 7884 | * Prevent any load balance activity (rebalance_shares, |
| 7885 | * load_balance_fair) from referring to this group first, |
| 7886 | * by taking it off the rq->leaf_cfs_rq_list on each cpu. |
| 7887 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7888 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7889 | for_each_possible_cpu(i) |
| 7890 | unregister_fair_sched_group(tg, i); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7891 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7892 | |
| 7893 | /* wait for any ongoing reference to this group to finish */ |
| 7894 | synchronize_sched(); |
| 7895 | |
| 7896 | /* |
| 7897 | * Now we are free to modify the group's share on each cpu |
| 7898 | * w/o tripping rebalance_share or load_balance_fair. |
| 7899 | */ |
| 7900 | tg->shares = shares; |
| 7901 | for_each_possible_cpu(i) { |
| 7902 | spin_lock_irq(&cpu_rq(i)->lock); |
| 7903 | set_se_shares(tg->se[i], shares); |
| 7904 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 7905 | } |
| 7906 | |
| 7907 | /* |
| 7908 | * Enable load balance activity on this group, by inserting it back on |
| 7909 | * each cpu's rq->leaf_cfs_rq_list. |
| 7910 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7911 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7912 | for_each_possible_cpu(i) |
| 7913 | register_fair_sched_group(tg, i); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7914 | spin_unlock_irqrestore(&task_group_lock, flags); |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7915 | done: |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7916 | mutex_unlock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7917 | return 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7918 | } |
| 7919 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7920 | unsigned long sched_group_shares(struct task_group *tg) |
| 7921 | { |
| 7922 | return tg->shares; |
| 7923 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7924 | #endif |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7925 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7926 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7927 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7928 | * Ensure that the real time constraints are schedulable. |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7929 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7930 | static DEFINE_MUTEX(rt_constraints_mutex); |
| 7931 | |
| 7932 | static unsigned long to_ratio(u64 period, u64 runtime) |
| 7933 | { |
| 7934 | if (runtime == RUNTIME_INF) |
| 7935 | return 1ULL << 16; |
| 7936 | |
| 7937 | runtime *= (1ULL << 16); |
| 7938 | div64_64(runtime, period); |
| 7939 | return runtime; |
| 7940 | } |
| 7941 | |
| 7942 | static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7943 | { |
| 7944 | struct task_group *tgi; |
| 7945 | unsigned long total = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7946 | unsigned long global_ratio = |
| 7947 | to_ratio(sysctl_sched_rt_period, |
| 7948 | sysctl_sched_rt_runtime < 0 ? |
| 7949 | RUNTIME_INF : sysctl_sched_rt_runtime); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7950 | |
| 7951 | rcu_read_lock(); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7952 | list_for_each_entry_rcu(tgi, &task_groups, list) { |
| 7953 | if (tgi == tg) |
| 7954 | continue; |
| 7955 | |
| 7956 | total += to_ratio(period, tgi->rt_runtime); |
| 7957 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7958 | rcu_read_unlock(); |
| 7959 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7960 | return total + to_ratio(period, runtime) < global_ratio; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7961 | } |
| 7962 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7963 | int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7964 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7965 | u64 rt_runtime, rt_period; |
| 7966 | int err = 0; |
| 7967 | |
| 7968 | rt_period = sysctl_sched_rt_period * NSEC_PER_USEC; |
| 7969 | rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC; |
| 7970 | if (rt_runtime_us == -1) |
| 7971 | rt_runtime = rt_period; |
| 7972 | |
| 7973 | mutex_lock(&rt_constraints_mutex); |
| 7974 | if (!__rt_schedulable(tg, rt_period, rt_runtime)) { |
| 7975 | err = -EINVAL; |
| 7976 | goto unlock; |
| 7977 | } |
| 7978 | if (rt_runtime_us == -1) |
| 7979 | rt_runtime = RUNTIME_INF; |
| 7980 | tg->rt_runtime = rt_runtime; |
| 7981 | unlock: |
| 7982 | mutex_unlock(&rt_constraints_mutex); |
| 7983 | |
| 7984 | return err; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7985 | } |
| 7986 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7987 | long sched_group_rt_runtime(struct task_group *tg) |
| 7988 | { |
| 7989 | u64 rt_runtime_us; |
| 7990 | |
| 7991 | if (tg->rt_runtime == RUNTIME_INF) |
| 7992 | return -1; |
| 7993 | |
| 7994 | rt_runtime_us = tg->rt_runtime; |
| 7995 | do_div(rt_runtime_us, NSEC_PER_USEC); |
| 7996 | return rt_runtime_us; |
| 7997 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7998 | #endif |
| 7999 | #endif /* CONFIG_GROUP_SCHED */ |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8000 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8001 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8002 | |
| 8003 | /* return corresponding task_group object of a cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8004 | static inline struct task_group *cgroup_tg(struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8005 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8006 | return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id), |
| 8007 | struct task_group, css); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8008 | } |
| 8009 | |
| 8010 | static struct cgroup_subsys_state * |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8011 | cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8012 | { |
| 8013 | struct task_group *tg; |
| 8014 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8015 | if (!cgrp->parent) { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8016 | /* This is early initialization for the top cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8017 | init_task_group.css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8018 | return &init_task_group.css; |
| 8019 | } |
| 8020 | |
| 8021 | /* we support only 1-level deep hierarchical scheduler atm */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8022 | if (cgrp->parent->parent) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8023 | return ERR_PTR(-EINVAL); |
| 8024 | |
| 8025 | tg = sched_create_group(); |
| 8026 | if (IS_ERR(tg)) |
| 8027 | return ERR_PTR(-ENOMEM); |
| 8028 | |
| 8029 | /* Bind the cgroup to task_group object we just created */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8030 | tg->css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8031 | |
| 8032 | return &tg->css; |
| 8033 | } |
| 8034 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8035 | static void |
| 8036 | cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8037 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8038 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8039 | |
| 8040 | sched_destroy_group(tg); |
| 8041 | } |
| 8042 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8043 | static int |
| 8044 | cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
| 8045 | struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8046 | { |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8047 | #ifdef CONFIG_RT_GROUP_SCHED |
| 8048 | /* Don't accept realtime tasks when there is no way for them to run */ |
| 8049 | if (rt_task(tsk) && cgroup_tg(cgrp)->rt_runtime == 0) |
| 8050 | return -EINVAL; |
| 8051 | #else |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8052 | /* We don't support RT-tasks being in separate groups */ |
| 8053 | if (tsk->sched_class != &fair_sched_class) |
| 8054 | return -EINVAL; |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8055 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8056 | |
| 8057 | return 0; |
| 8058 | } |
| 8059 | |
| 8060 | static void |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8061 | cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8062 | struct cgroup *old_cont, struct task_struct *tsk) |
| 8063 | { |
| 8064 | sched_move_task(tsk); |
| 8065 | } |
| 8066 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8067 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8068 | static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 8069 | u64 shareval) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8070 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8071 | return sched_group_set_shares(cgroup_tg(cgrp), shareval); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8072 | } |
| 8073 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8074 | static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8075 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8076 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8077 | |
| 8078 | return (u64) tg->shares; |
| 8079 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8080 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8081 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8082 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8083 | static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, |
| 8084 | struct file *file, |
| 8085 | const char __user *userbuf, |
| 8086 | size_t nbytes, loff_t *unused_ppos) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8087 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8088 | char buffer[64]; |
| 8089 | int retval = 0; |
| 8090 | s64 val; |
| 8091 | char *end; |
| 8092 | |
| 8093 | if (!nbytes) |
| 8094 | return -EINVAL; |
| 8095 | if (nbytes >= sizeof(buffer)) |
| 8096 | return -E2BIG; |
| 8097 | if (copy_from_user(buffer, userbuf, nbytes)) |
| 8098 | return -EFAULT; |
| 8099 | |
| 8100 | buffer[nbytes] = 0; /* nul-terminate */ |
| 8101 | |
| 8102 | /* strip newline if necessary */ |
| 8103 | if (nbytes && (buffer[nbytes-1] == '\n')) |
| 8104 | buffer[nbytes-1] = 0; |
| 8105 | val = simple_strtoll(buffer, &end, 0); |
| 8106 | if (*end) |
| 8107 | return -EINVAL; |
| 8108 | |
| 8109 | /* Pass to subsystem */ |
| 8110 | retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val); |
| 8111 | if (!retval) |
| 8112 | retval = nbytes; |
| 8113 | return retval; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8114 | } |
| 8115 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8116 | static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft, |
| 8117 | struct file *file, |
| 8118 | char __user *buf, size_t nbytes, |
| 8119 | loff_t *ppos) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8120 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8121 | char tmp[64]; |
| 8122 | long val = sched_group_rt_runtime(cgroup_tg(cgrp)); |
| 8123 | int len = sprintf(tmp, "%ld\n", val); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8124 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8125 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8126 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8127 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8128 | |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8129 | static struct cftype cpu_files[] = { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8130 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8131 | { |
| 8132 | .name = "shares", |
| 8133 | .read_uint = cpu_shares_read_uint, |
| 8134 | .write_uint = cpu_shares_write_uint, |
| 8135 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8136 | #endif |
| 8137 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8138 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8139 | .name = "rt_runtime_us", |
| 8140 | .read = cpu_rt_runtime_read, |
| 8141 | .write = cpu_rt_runtime_write, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8142 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8143 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8144 | }; |
| 8145 | |
| 8146 | static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 8147 | { |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8148 | return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8149 | } |
| 8150 | |
| 8151 | struct cgroup_subsys cpu_cgroup_subsys = { |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8152 | .name = "cpu", |
| 8153 | .create = cpu_cgroup_create, |
| 8154 | .destroy = cpu_cgroup_destroy, |
| 8155 | .can_attach = cpu_cgroup_can_attach, |
| 8156 | .attach = cpu_cgroup_attach, |
| 8157 | .populate = cpu_cgroup_populate, |
| 8158 | .subsys_id = cpu_cgroup_subsys_id, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8159 | .early_init = 1, |
| 8160 | }; |
| 8161 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8162 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8163 | |
| 8164 | #ifdef CONFIG_CGROUP_CPUACCT |
| 8165 | |
| 8166 | /* |
| 8167 | * CPU accounting code for task groups. |
| 8168 | * |
| 8169 | * Based on the work by Paul Menage (menage@google.com) and Balbir Singh |
| 8170 | * (balbir@in.ibm.com). |
| 8171 | */ |
| 8172 | |
| 8173 | /* track cpu usage of a group of tasks */ |
| 8174 | struct cpuacct { |
| 8175 | struct cgroup_subsys_state css; |
| 8176 | /* cpuusage holds pointer to a u64-type object on every cpu */ |
| 8177 | u64 *cpuusage; |
| 8178 | }; |
| 8179 | |
| 8180 | struct cgroup_subsys cpuacct_subsys; |
| 8181 | |
| 8182 | /* return cpu accounting group corresponding to this container */ |
| 8183 | static inline struct cpuacct *cgroup_ca(struct cgroup *cont) |
| 8184 | { |
| 8185 | return container_of(cgroup_subsys_state(cont, cpuacct_subsys_id), |
| 8186 | struct cpuacct, css); |
| 8187 | } |
| 8188 | |
| 8189 | /* return cpu accounting group to which this task belongs */ |
| 8190 | static inline struct cpuacct *task_ca(struct task_struct *tsk) |
| 8191 | { |
| 8192 | return container_of(task_subsys_state(tsk, cpuacct_subsys_id), |
| 8193 | struct cpuacct, css); |
| 8194 | } |
| 8195 | |
| 8196 | /* create a new cpu accounting group */ |
| 8197 | static struct cgroup_subsys_state *cpuacct_create( |
| 8198 | struct cgroup_subsys *ss, struct cgroup *cont) |
| 8199 | { |
| 8200 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); |
| 8201 | |
| 8202 | if (!ca) |
| 8203 | return ERR_PTR(-ENOMEM); |
| 8204 | |
| 8205 | ca->cpuusage = alloc_percpu(u64); |
| 8206 | if (!ca->cpuusage) { |
| 8207 | kfree(ca); |
| 8208 | return ERR_PTR(-ENOMEM); |
| 8209 | } |
| 8210 | |
| 8211 | return &ca->css; |
| 8212 | } |
| 8213 | |
| 8214 | /* destroy an existing cpu accounting group */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8215 | static void |
| 8216 | cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cont) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8217 | { |
| 8218 | struct cpuacct *ca = cgroup_ca(cont); |
| 8219 | |
| 8220 | free_percpu(ca->cpuusage); |
| 8221 | kfree(ca); |
| 8222 | } |
| 8223 | |
| 8224 | /* return total cpu usage (in nanoseconds) of a group */ |
| 8225 | static u64 cpuusage_read(struct cgroup *cont, struct cftype *cft) |
| 8226 | { |
| 8227 | struct cpuacct *ca = cgroup_ca(cont); |
| 8228 | u64 totalcpuusage = 0; |
| 8229 | int i; |
| 8230 | |
| 8231 | for_each_possible_cpu(i) { |
| 8232 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8233 | |
| 8234 | /* |
| 8235 | * Take rq->lock to make 64-bit addition safe on 32-bit |
| 8236 | * platforms. |
| 8237 | */ |
| 8238 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8239 | totalcpuusage += *cpuusage; |
| 8240 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8241 | } |
| 8242 | |
| 8243 | return totalcpuusage; |
| 8244 | } |
| 8245 | |
| 8246 | static struct cftype files[] = { |
| 8247 | { |
| 8248 | .name = "usage", |
| 8249 | .read_uint = cpuusage_read, |
| 8250 | }, |
| 8251 | }; |
| 8252 | |
| 8253 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 8254 | { |
| 8255 | return cgroup_add_files(cont, ss, files, ARRAY_SIZE(files)); |
| 8256 | } |
| 8257 | |
| 8258 | /* |
| 8259 | * charge this task's execution time to its accounting group. |
| 8260 | * |
| 8261 | * called with rq->lock held. |
| 8262 | */ |
| 8263 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime) |
| 8264 | { |
| 8265 | struct cpuacct *ca; |
| 8266 | |
| 8267 | if (!cpuacct_subsys.active) |
| 8268 | return; |
| 8269 | |
| 8270 | ca = task_ca(tsk); |
| 8271 | if (ca) { |
| 8272 | u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk)); |
| 8273 | |
| 8274 | *cpuusage += cputime; |
| 8275 | } |
| 8276 | } |
| 8277 | |
| 8278 | struct cgroup_subsys cpuacct_subsys = { |
| 8279 | .name = "cpuacct", |
| 8280 | .create = cpuacct_create, |
| 8281 | .destroy = cpuacct_destroy, |
| 8282 | .populate = cpuacct_populate, |
| 8283 | .subsys_id = cpuacct_subsys_id, |
| 8284 | }; |
| 8285 | #endif /* CONFIG_CGROUP_CPUACCT */ |