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> |
Reynes Philippe | 30914a5 | 2008-03-17 16:19:05 -0700 | [diff] [blame] | 69 | #include <linux/tick.h> |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 70 | #include <linux/bootmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 72 | #include <asm/tlb.h> |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 73 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | /* |
Alexey Dobriyan | b035b6d | 2007-02-10 01:45:10 -0800 | [diff] [blame] | 76 | * Scheduler clock - returns current time in nanosec units. |
| 77 | * This is default implementation. |
| 78 | * Architectures and sub-architectures can override this. |
| 79 | */ |
| 80 | unsigned long long __attribute__((weak)) sched_clock(void) |
| 81 | { |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 82 | return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ); |
Alexey Dobriyan | b035b6d | 2007-02-10 01:45:10 -0800 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
| 87 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
| 88 | * and back. |
| 89 | */ |
| 90 | #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20) |
| 91 | #define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20) |
| 92 | #define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio) |
| 93 | |
| 94 | /* |
| 95 | * 'User priority' is the nice value converted to something we |
| 96 | * can work with better when scaling various scheduler parameters, |
| 97 | * it's a [ 0 ... 39 ] range. |
| 98 | */ |
| 99 | #define USER_PRIO(p) ((p)-MAX_RT_PRIO) |
| 100 | #define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio) |
| 101 | #define MAX_USER_PRIO (USER_PRIO(MAX_PRIO)) |
| 102 | |
| 103 | /* |
Ingo Molnar | d7876a0 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 104 | * Helpers for converting nanosecond timing to jiffy resolution |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | */ |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 106 | #define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 108 | #define NICE_0_LOAD SCHED_LOAD_SCALE |
| 109 | #define NICE_0_SHIFT SCHED_LOAD_SHIFT |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | /* |
| 112 | * These are the 'tuning knobs' of the scheduler: |
| 113 | * |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 114 | * default timeslice is 100 msecs (used only for SCHED_RR tasks). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | * Timeslices get refilled after they expire. |
| 116 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | #define DEF_TIMESLICE (100 * HZ / 1000) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 118 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 119 | /* |
| 120 | * single value that denotes runtime == period, ie unlimited time. |
| 121 | */ |
| 122 | #define RUNTIME_INF ((u64)~0ULL) |
| 123 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 124 | #ifdef CONFIG_SMP |
| 125 | /* |
| 126 | * Divide a load by a sched group cpu_power : (load / sg->__cpu_power) |
| 127 | * Since cpu_power is a 'constant', we can use a reciprocal divide. |
| 128 | */ |
| 129 | static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load) |
| 130 | { |
| 131 | return reciprocal_divide(load, sg->reciprocal_cpu_power); |
| 132 | } |
| 133 | |
| 134 | /* |
| 135 | * Each time a sched group cpu_power is changed, |
| 136 | * we must compute its reciprocal value |
| 137 | */ |
| 138 | static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val) |
| 139 | { |
| 140 | sg->__cpu_power += val; |
| 141 | sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power); |
| 142 | } |
| 143 | #endif |
| 144 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 145 | static inline int rt_policy(int policy) |
| 146 | { |
| 147 | if (unlikely(policy == SCHED_FIFO) || unlikely(policy == SCHED_RR)) |
| 148 | return 1; |
| 149 | return 0; |
| 150 | } |
| 151 | |
| 152 | static inline int task_has_rt_policy(struct task_struct *p) |
| 153 | { |
| 154 | return rt_policy(p->policy); |
| 155 | } |
| 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 158 | * This is the priority-queue data structure of the RT scheduling class: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 160 | struct rt_prio_array { |
| 161 | DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */ |
| 162 | struct list_head queue[MAX_RT_PRIO]; |
| 163 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 165 | struct rt_bandwidth { |
| 166 | ktime_t rt_period; |
| 167 | u64 rt_runtime; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 168 | spinlock_t rt_runtime_lock; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 169 | struct hrtimer rt_period_timer; |
| 170 | }; |
| 171 | |
| 172 | static struct rt_bandwidth def_rt_bandwidth; |
| 173 | |
| 174 | static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun); |
| 175 | |
| 176 | static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer) |
| 177 | { |
| 178 | struct rt_bandwidth *rt_b = |
| 179 | container_of(timer, struct rt_bandwidth, rt_period_timer); |
| 180 | ktime_t now; |
| 181 | int overrun; |
| 182 | int idle = 0; |
| 183 | |
| 184 | for (;;) { |
| 185 | now = hrtimer_cb_get_time(timer); |
| 186 | overrun = hrtimer_forward(timer, now, rt_b->rt_period); |
| 187 | |
| 188 | if (!overrun) |
| 189 | break; |
| 190 | |
| 191 | idle = do_sched_rt_period_timer(rt_b, overrun); |
| 192 | } |
| 193 | |
| 194 | return idle ? HRTIMER_NORESTART : HRTIMER_RESTART; |
| 195 | } |
| 196 | |
| 197 | static |
| 198 | void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime) |
| 199 | { |
| 200 | rt_b->rt_period = ns_to_ktime(period); |
| 201 | rt_b->rt_runtime = runtime; |
| 202 | |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 203 | spin_lock_init(&rt_b->rt_runtime_lock); |
| 204 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 205 | hrtimer_init(&rt_b->rt_period_timer, |
| 206 | CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 207 | rt_b->rt_period_timer.function = sched_rt_period_timer; |
| 208 | rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 209 | } |
| 210 | |
| 211 | static void start_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 212 | { |
| 213 | ktime_t now; |
| 214 | |
| 215 | if (rt_b->rt_runtime == RUNTIME_INF) |
| 216 | return; |
| 217 | |
| 218 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 219 | return; |
| 220 | |
| 221 | spin_lock(&rt_b->rt_runtime_lock); |
| 222 | for (;;) { |
| 223 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 224 | break; |
| 225 | |
| 226 | now = hrtimer_cb_get_time(&rt_b->rt_period_timer); |
| 227 | hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period); |
| 228 | hrtimer_start(&rt_b->rt_period_timer, |
| 229 | rt_b->rt_period_timer.expires, |
| 230 | HRTIMER_MODE_ABS); |
| 231 | } |
| 232 | spin_unlock(&rt_b->rt_runtime_lock); |
| 233 | } |
| 234 | |
| 235 | #ifdef CONFIG_RT_GROUP_SCHED |
| 236 | static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 237 | { |
| 238 | hrtimer_cancel(&rt_b->rt_period_timer); |
| 239 | } |
| 240 | #endif |
| 241 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 242 | #ifdef CONFIG_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 243 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 244 | #include <linux/cgroup.h> |
| 245 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 246 | struct cfs_rq; |
| 247 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 248 | static LIST_HEAD(task_groups); |
| 249 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 250 | /* task group related information */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 251 | struct task_group { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 252 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 253 | struct cgroup_subsys_state css; |
| 254 | #endif |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 255 | |
| 256 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 257 | /* schedulable entities of this group on each cpu */ |
| 258 | struct sched_entity **se; |
| 259 | /* runqueue "owned" by this group on each cpu */ |
| 260 | struct cfs_rq **cfs_rq; |
| 261 | unsigned long shares; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 262 | #endif |
| 263 | |
| 264 | #ifdef CONFIG_RT_GROUP_SCHED |
| 265 | struct sched_rt_entity **rt_se; |
| 266 | struct rt_rq **rt_rq; |
| 267 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 268 | struct rt_bandwidth rt_bandwidth; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 269 | #endif |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 270 | |
Srivatsa Vaddagiri | ae8393e | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 271 | struct rcu_head rcu; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 272 | struct list_head list; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 273 | }; |
| 274 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 275 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 276 | /* Default task group's sched entity on each cpu */ |
| 277 | static DEFINE_PER_CPU(struct sched_entity, init_sched_entity); |
| 278 | /* Default task group's cfs_rq on each cpu */ |
| 279 | static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 280 | #endif |
| 281 | |
| 282 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 283 | static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity); |
| 284 | static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 285 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 286 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 287 | /* 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] | 288 | * a task group's cpu shares. |
| 289 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 290 | static DEFINE_SPINLOCK(task_group_lock); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 291 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 292 | /* doms_cur_mutex serializes access to doms_cur[] array */ |
| 293 | static DEFINE_MUTEX(doms_cur_mutex); |
| 294 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 295 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 296 | #ifdef CONFIG_USER_SCHED |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 297 | # define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD) |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 298 | #else |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 299 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 300 | #endif |
| 301 | |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 302 | static int init_task_group_load = INIT_TASK_GROUP_LOAD; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 303 | #endif |
| 304 | |
| 305 | /* Default task group. |
| 306 | * Every task in system belong to this group at bootup. |
| 307 | */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 308 | struct task_group init_task_group; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 309 | |
| 310 | /* return group to which a task belongs */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 311 | static inline struct task_group *task_group(struct task_struct *p) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 312 | { |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 313 | struct task_group *tg; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 314 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 315 | #ifdef CONFIG_USER_SCHED |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 316 | tg = p->user->tg; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 317 | #elif defined(CONFIG_CGROUP_SCHED) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 318 | tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id), |
| 319 | struct task_group, css); |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 320 | #else |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 321 | tg = &init_task_group; |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 322 | #endif |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 323 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /* 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] | 327 | 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] | 328 | { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 329 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 330 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 331 | p->se.parent = task_group(p)->se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 332 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 333 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 334 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 335 | p->rt.rt_rq = task_group(p)->rt_rq[cpu]; |
| 336 | p->rt.parent = task_group(p)->rt_se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 337 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 338 | } |
| 339 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 340 | static inline void lock_doms_cur(void) |
| 341 | { |
| 342 | mutex_lock(&doms_cur_mutex); |
| 343 | } |
| 344 | |
| 345 | static inline void unlock_doms_cur(void) |
| 346 | { |
| 347 | mutex_unlock(&doms_cur_mutex); |
| 348 | } |
| 349 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 350 | #else |
| 351 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 352 | 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] | 353 | static inline void lock_doms_cur(void) { } |
| 354 | static inline void unlock_doms_cur(void) { } |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 355 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 356 | #endif /* CONFIG_GROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 357 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 358 | /* CFS-related fields in a runqueue */ |
| 359 | struct cfs_rq { |
| 360 | struct load_weight load; |
| 361 | unsigned long nr_running; |
| 362 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 363 | u64 exec_clock; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 364 | u64 min_vruntime; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 365 | |
| 366 | struct rb_root tasks_timeline; |
| 367 | struct rb_node *rb_leftmost; |
| 368 | struct rb_node *rb_load_balance_curr; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 369 | /* 'curr' points to currently running entity on this cfs_rq. |
| 370 | * It is set to NULL otherwise (i.e when none are currently running). |
| 371 | */ |
Peter Zijlstra | aa2ac25 | 2008-03-14 21:12:12 +0100 | [diff] [blame] | 372 | struct sched_entity *curr, *next; |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 373 | |
| 374 | unsigned long nr_spread_over; |
| 375 | |
Ingo Molnar | 62160e3 | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 376 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 377 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
| 378 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 379 | /* |
| 380 | * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 381 | * a hierarchy). Non-leaf lrqs hold other higher schedulable entities |
| 382 | * (like users, containers etc.) |
| 383 | * |
| 384 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
| 385 | * list is used during load balance. |
| 386 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 387 | struct list_head leaf_cfs_rq_list; |
| 388 | struct task_group *tg; /* group that "owns" this runqueue */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 389 | #endif |
| 390 | }; |
| 391 | |
| 392 | /* Real-Time classes' related field in a runqueue: */ |
| 393 | struct rt_rq { |
| 394 | struct rt_prio_array active; |
Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 395 | unsigned long rt_nr_running; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 396 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 397 | int highest_prio; /* highest queued rt task prio */ |
| 398 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 399 | #ifdef CONFIG_SMP |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 400 | unsigned long rt_nr_migratory; |
Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 401 | int overloaded; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 402 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 403 | int rt_throttled; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 404 | u64 rt_time; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 405 | u64 rt_runtime; |
| 406 | spinlock_t rt_runtime_lock; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 407 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 408 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 409 | unsigned long rt_nr_boosted; |
| 410 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 411 | struct rq *rq; |
| 412 | struct list_head leaf_rt_rq_list; |
| 413 | struct task_group *tg; |
| 414 | struct sched_rt_entity *rt_se; |
| 415 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 416 | }; |
| 417 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 418 | #ifdef CONFIG_SMP |
| 419 | |
| 420 | /* |
| 421 | * 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] | 422 | * variables. Each exclusive cpuset essentially defines an island domain by |
| 423 | * fully partitioning the member cpus from any other cpuset. Whenever a new |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 424 | * exclusive cpuset is created, we also create and attach a new root-domain |
| 425 | * object. |
| 426 | * |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 427 | */ |
| 428 | struct root_domain { |
| 429 | atomic_t refcount; |
| 430 | cpumask_t span; |
| 431 | cpumask_t online; |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 432 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 433 | /* |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 434 | * The "RT overload" flag: it gets set if a CPU has more than |
| 435 | * one runnable RT task. |
| 436 | */ |
| 437 | cpumask_t rto_mask; |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 438 | atomic_t rto_count; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 439 | }; |
| 440 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 441 | /* |
| 442 | * By default the system creates a single root-domain with all cpus as |
| 443 | * members (mimicking the global state we have today). |
| 444 | */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 445 | static struct root_domain def_root_domain; |
| 446 | |
| 447 | #endif |
| 448 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 449 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | * This is the main, per-CPU runqueue data structure. |
| 451 | * |
| 452 | * Locking rule: those places that want to lock multiple runqueues |
| 453 | * (such as the load balancing or the thread migration code), lock |
| 454 | * acquire operations must be ordered by ascending &runqueue. |
| 455 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 456 | struct rq { |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 457 | /* runqueue lock: */ |
| 458 | spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
| 460 | /* |
| 461 | * nr_running and cpu_load should be in the same cacheline because |
| 462 | * remote CPUs use both these fields when doing load calculation. |
| 463 | */ |
| 464 | unsigned long nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 465 | #define CPU_LOAD_IDX_MAX 5 |
| 466 | unsigned long cpu_load[CPU_LOAD_IDX_MAX]; |
Siddha, Suresh B | bdecea3 | 2007-05-08 00:32:48 -0700 | [diff] [blame] | 467 | unsigned char idle_at_tick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 468 | #ifdef CONFIG_NO_HZ |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 469 | unsigned long last_tick_seen; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 470 | unsigned char in_nohz_recently; |
| 471 | #endif |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 472 | /* capture load from *all* tasks on this cpu: */ |
| 473 | struct load_weight load; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 474 | unsigned long nr_load_updates; |
| 475 | u64 nr_switches; |
| 476 | |
| 477 | struct cfs_rq cfs; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 478 | struct rt_rq rt; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 479 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 480 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 481 | /* list of leaf cfs_rq on this cpu: */ |
| 482 | struct list_head leaf_cfs_rq_list; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 483 | #endif |
| 484 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 485 | struct list_head leaf_rt_rq_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
| 488 | /* |
| 489 | * This is part of a global counter where only the total sum |
| 490 | * over all CPUs matters. A task can increase this counter on |
| 491 | * one CPU and if it got migrated afterwards it may decrease |
| 492 | * it on another CPU. Always updated under the runqueue lock: |
| 493 | */ |
| 494 | unsigned long nr_uninterruptible; |
| 495 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 496 | struct task_struct *curr, *idle; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 497 | unsigned long next_balance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | struct mm_struct *prev_mm; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 499 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 500 | u64 clock, prev_clock_raw; |
| 501 | s64 clock_max_delta; |
| 502 | |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 503 | unsigned int clock_warps, clock_overflows, clock_underflows; |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 504 | u64 idle_clock; |
| 505 | unsigned int clock_deep_idle_events; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 506 | u64 tick_timestamp; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | atomic_t nr_iowait; |
| 509 | |
| 510 | #ifdef CONFIG_SMP |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 511 | struct root_domain *rd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | struct sched_domain *sd; |
| 513 | |
| 514 | /* For active balancing */ |
| 515 | int active_balance; |
| 516 | int push_cpu; |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 517 | /* cpu of this runqueue: */ |
| 518 | int cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 520 | struct task_struct *migration_thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | struct list_head migration_queue; |
| 522 | #endif |
| 523 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 524 | #ifdef CONFIG_SCHED_HRTICK |
| 525 | unsigned long hrtick_flags; |
| 526 | ktime_t hrtick_expire; |
| 527 | struct hrtimer hrtick_timer; |
| 528 | #endif |
| 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | #ifdef CONFIG_SCHEDSTATS |
| 531 | /* latency stats */ |
| 532 | struct sched_info rq_sched_info; |
| 533 | |
| 534 | /* sys_sched_yield() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 535 | unsigned int yld_exp_empty; |
| 536 | unsigned int yld_act_empty; |
| 537 | unsigned int yld_both_empty; |
| 538 | unsigned int yld_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
| 540 | /* schedule() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 541 | unsigned int sched_switch; |
| 542 | unsigned int sched_count; |
| 543 | unsigned int sched_goidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | |
| 545 | /* try_to_wake_up() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 546 | unsigned int ttwu_count; |
| 547 | unsigned int ttwu_local; |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 548 | |
| 549 | /* BKL stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 550 | unsigned int bkl_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | #endif |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 552 | struct lock_class_key rq_lock_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | }; |
| 554 | |
Fenghua Yu | f34e3b6 | 2007-07-19 01:48:13 -0700 | [diff] [blame] | 555 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 557 | static inline void check_preempt_curr(struct rq *rq, struct task_struct *p) |
| 558 | { |
| 559 | rq->curr->sched_class->check_preempt_curr(rq, p); |
| 560 | } |
| 561 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 562 | static inline int cpu_of(struct rq *rq) |
| 563 | { |
| 564 | #ifdef CONFIG_SMP |
| 565 | return rq->cpu; |
| 566 | #else |
| 567 | return 0; |
| 568 | #endif |
| 569 | } |
| 570 | |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 571 | #ifdef CONFIG_NO_HZ |
| 572 | static inline bool nohz_on(int cpu) |
| 573 | { |
| 574 | return tick_get_tick_sched(cpu)->nohz_mode != NOHZ_MODE_INACTIVE; |
| 575 | } |
| 576 | |
| 577 | static inline u64 max_skipped_ticks(struct rq *rq) |
| 578 | { |
| 579 | return nohz_on(cpu_of(rq)) ? jiffies - rq->last_tick_seen + 2 : 1; |
| 580 | } |
| 581 | |
| 582 | static inline void update_last_tick_seen(struct rq *rq) |
| 583 | { |
| 584 | rq->last_tick_seen = jiffies; |
| 585 | } |
| 586 | #else |
| 587 | static inline u64 max_skipped_ticks(struct rq *rq) |
| 588 | { |
| 589 | return 1; |
| 590 | } |
| 591 | |
| 592 | static inline void update_last_tick_seen(struct rq *rq) |
| 593 | { |
| 594 | } |
| 595 | #endif |
| 596 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 597 | /* |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 598 | * Update the per-runqueue clock, as finegrained as the platform can give |
| 599 | * us, but without assuming monotonicity, etc.: |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 600 | */ |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 601 | static void __update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 602 | { |
| 603 | u64 prev_raw = rq->prev_clock_raw; |
| 604 | u64 now = sched_clock(); |
| 605 | s64 delta = now - prev_raw; |
| 606 | u64 clock = rq->clock; |
| 607 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 608 | #ifdef CONFIG_SCHED_DEBUG |
| 609 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 610 | #endif |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 611 | /* |
| 612 | * Protect against sched_clock() occasionally going backwards: |
| 613 | */ |
| 614 | if (unlikely(delta < 0)) { |
| 615 | clock++; |
| 616 | rq->clock_warps++; |
| 617 | } else { |
| 618 | /* |
| 619 | * Catch too large forward jumps too: |
| 620 | */ |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 621 | u64 max_jump = max_skipped_ticks(rq) * TICK_NSEC; |
| 622 | u64 max_time = rq->tick_timestamp + max_jump; |
| 623 | |
| 624 | if (unlikely(clock + delta > max_time)) { |
| 625 | if (clock < max_time) |
| 626 | clock = max_time; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 627 | else |
| 628 | clock++; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 629 | rq->clock_overflows++; |
| 630 | } else { |
| 631 | if (unlikely(delta > rq->clock_max_delta)) |
| 632 | rq->clock_max_delta = delta; |
| 633 | clock += delta; |
| 634 | } |
| 635 | } |
| 636 | |
| 637 | rq->prev_clock_raw = now; |
| 638 | rq->clock = clock; |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 639 | } |
| 640 | |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 641 | static void update_rq_clock(struct rq *rq) |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 642 | { |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 643 | if (likely(smp_processor_id() == cpu_of(rq))) |
| 644 | __update_rq_clock(rq); |
| 645 | } |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 646 | |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 647 | /* |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 648 | * 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] | 649 | * See detach_destroy_domains: synchronize_sched for details. |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 650 | * |
| 651 | * The domain tree of any CPU may only be accessed from within |
| 652 | * preempt-disabled sections. |
| 653 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 654 | #define for_each_domain(cpu, __sd) \ |
| 655 | for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 656 | |
| 657 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu))) |
| 658 | #define this_rq() (&__get_cpu_var(runqueues)) |
| 659 | #define task_rq(p) cpu_rq(task_cpu(p)) |
| 660 | #define cpu_curr(cpu) (cpu_rq(cpu)->curr) |
| 661 | |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 662 | /* |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 663 | * Tunables that become constants when CONFIG_SCHED_DEBUG is off: |
| 664 | */ |
| 665 | #ifdef CONFIG_SCHED_DEBUG |
| 666 | # define const_debug __read_mostly |
| 667 | #else |
| 668 | # define const_debug static const |
| 669 | #endif |
| 670 | |
| 671 | /* |
| 672 | * Debugging: various feature bits |
| 673 | */ |
| 674 | enum { |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 675 | SCHED_FEAT_NEW_FAIR_SLEEPERS = 1, |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 676 | SCHED_FEAT_WAKEUP_PREEMPT = 2, |
| 677 | SCHED_FEAT_START_DEBIT = 4, |
Ingo Molnar | d25ce4c | 2008-03-17 09:36:53 +0100 | [diff] [blame] | 678 | SCHED_FEAT_AFFINE_WAKEUPS = 8, |
| 679 | SCHED_FEAT_CACHE_HOT_BUDDY = 16, |
Ingo Molnar | 02e2b83 | 2008-03-19 01:37:10 +0100 | [diff] [blame] | 680 | SCHED_FEAT_SYNC_WAKEUPS = 32, |
| 681 | SCHED_FEAT_HRTICK = 64, |
| 682 | SCHED_FEAT_DOUBLE_TICK = 128, |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 683 | }; |
| 684 | |
| 685 | const_debug unsigned int sysctl_sched_features = |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 686 | SCHED_FEAT_NEW_FAIR_SLEEPERS * 1 | |
Ingo Molnar | 9612633 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 687 | SCHED_FEAT_WAKEUP_PREEMPT * 1 | |
Ingo Molnar | 8401f77 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 688 | SCHED_FEAT_START_DEBIT * 1 | |
Ingo Molnar | d25ce4c | 2008-03-17 09:36:53 +0100 | [diff] [blame] | 689 | SCHED_FEAT_AFFINE_WAKEUPS * 1 | |
| 690 | SCHED_FEAT_CACHE_HOT_BUDDY * 1 | |
Ingo Molnar | 02e2b83 | 2008-03-19 01:37:10 +0100 | [diff] [blame] | 691 | SCHED_FEAT_SYNC_WAKEUPS * 1 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 692 | SCHED_FEAT_HRTICK * 1 | |
Ingo Molnar | 02e2b83 | 2008-03-19 01:37:10 +0100 | [diff] [blame] | 693 | SCHED_FEAT_DOUBLE_TICK * 0; |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 694 | |
| 695 | #define sched_feat(x) (sysctl_sched_features & SCHED_FEAT_##x) |
| 696 | |
| 697 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 698 | * Number of tasks to iterate in a single balance run. |
| 699 | * Limited because this is done with IRQs disabled. |
| 700 | */ |
| 701 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
| 702 | |
| 703 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 704 | * period over which we measure -rt task cpu usage in us. |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 705 | * default: 1s |
| 706 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 707 | unsigned int sysctl_sched_rt_period = 1000000; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 708 | |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 709 | static __read_mostly int scheduler_running; |
| 710 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 711 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 712 | * part of the period that we allow rt tasks to run in us. |
| 713 | * default: 0.95s |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 714 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 715 | int sysctl_sched_rt_runtime = 950000; |
| 716 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 717 | static inline u64 global_rt_period(void) |
| 718 | { |
| 719 | return (u64)sysctl_sched_rt_period * NSEC_PER_USEC; |
| 720 | } |
| 721 | |
| 722 | static inline u64 global_rt_runtime(void) |
| 723 | { |
| 724 | if (sysctl_sched_rt_period < 0) |
| 725 | return RUNTIME_INF; |
| 726 | |
| 727 | return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC; |
| 728 | } |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 729 | |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 730 | static const unsigned long long time_sync_thresh = 100000; |
| 731 | |
| 732 | static DEFINE_PER_CPU(unsigned long long, time_offset); |
| 733 | static DEFINE_PER_CPU(unsigned long long, prev_cpu_time); |
| 734 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 735 | /* |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 736 | * Global lock which we take every now and then to synchronize |
| 737 | * the CPUs time. This method is not warp-safe, but it's good |
| 738 | * enough to synchronize slowly diverging time sources and thus |
| 739 | * it's good enough for tracing: |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 740 | */ |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 741 | static DEFINE_SPINLOCK(time_sync_lock); |
| 742 | static unsigned long long prev_global_time; |
| 743 | |
| 744 | static unsigned long long __sync_cpu_clock(cycles_t time, int cpu) |
| 745 | { |
| 746 | unsigned long flags; |
| 747 | |
| 748 | spin_lock_irqsave(&time_sync_lock, flags); |
| 749 | |
| 750 | if (time < prev_global_time) { |
| 751 | per_cpu(time_offset, cpu) += prev_global_time - time; |
| 752 | time = prev_global_time; |
| 753 | } else { |
| 754 | prev_global_time = time; |
| 755 | } |
| 756 | |
| 757 | spin_unlock_irqrestore(&time_sync_lock, flags); |
| 758 | |
| 759 | return time; |
| 760 | } |
| 761 | |
| 762 | static unsigned long long __cpu_clock(int cpu) |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 763 | { |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 764 | unsigned long long now; |
| 765 | unsigned long flags; |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 766 | struct rq *rq; |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 767 | |
Ingo Molnar | 8ced5f6 | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 768 | /* |
| 769 | * Only call sched_clock() if the scheduler has already been |
| 770 | * initialized (some code might call cpu_clock() very early): |
| 771 | */ |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 772 | if (unlikely(!scheduler_running)) |
| 773 | return 0; |
| 774 | |
| 775 | local_irq_save(flags); |
| 776 | rq = cpu_rq(cpu); |
| 777 | update_rq_clock(rq); |
Ingo Molnar | b04a0f4 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 778 | now = rq->clock; |
Ingo Molnar | 2cd4d0e | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 779 | local_irq_restore(flags); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 780 | |
| 781 | return now; |
| 782 | } |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 783 | |
| 784 | /* |
| 785 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
| 786 | * clock constructed from sched_clock(): |
| 787 | */ |
| 788 | unsigned long long cpu_clock(int cpu) |
| 789 | { |
| 790 | unsigned long long prev_cpu_time, time, delta_time; |
| 791 | |
| 792 | prev_cpu_time = per_cpu(prev_cpu_time, cpu); |
| 793 | time = __cpu_clock(cpu) + per_cpu(time_offset, cpu); |
| 794 | delta_time = time-prev_cpu_time; |
| 795 | |
| 796 | if (unlikely(delta_time > time_sync_thresh)) |
| 797 | time = __sync_cpu_clock(time, cpu); |
| 798 | |
| 799 | return time; |
| 800 | } |
Paul E. McKenney | a58f6f2 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 801 | EXPORT_SYMBOL_GPL(cpu_clock); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | #ifndef prepare_arch_switch |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 804 | # define prepare_arch_switch(next) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 805 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 806 | #ifndef finish_arch_switch |
| 807 | # define finish_arch_switch(prev) do { } while (0) |
| 808 | #endif |
| 809 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 810 | static inline int task_current(struct rq *rq, struct task_struct *p) |
| 811 | { |
| 812 | return rq->curr == p; |
| 813 | } |
| 814 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 815 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 816 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 817 | { |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 818 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 819 | } |
| 820 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 821 | 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] | 822 | { |
| 823 | } |
| 824 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 825 | 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] | 826 | { |
Ingo Molnar | da04c03 | 2005-09-13 11:17:59 +0200 | [diff] [blame] | 827 | #ifdef CONFIG_DEBUG_SPINLOCK |
| 828 | /* this is a valid case when another task releases the spinlock */ |
| 829 | rq->lock.owner = current; |
| 830 | #endif |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 831 | /* |
| 832 | * If we are tracking spinlock dependencies then we have to |
| 833 | * fix up the runqueue lock - which gets 'carried over' from |
| 834 | * prev into current: |
| 835 | */ |
| 836 | spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_); |
| 837 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 838 | spin_unlock_irq(&rq->lock); |
| 839 | } |
| 840 | |
| 841 | #else /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 842 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 843 | { |
| 844 | #ifdef CONFIG_SMP |
| 845 | return p->oncpu; |
| 846 | #else |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 847 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 848 | #endif |
| 849 | } |
| 850 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 851 | 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] | 852 | { |
| 853 | #ifdef CONFIG_SMP |
| 854 | /* |
| 855 | * We can optimise this out completely for !SMP, because the |
| 856 | * SMP rebalancing from interrupt is the only thing that cares |
| 857 | * here. |
| 858 | */ |
| 859 | next->oncpu = 1; |
| 860 | #endif |
| 861 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 862 | spin_unlock_irq(&rq->lock); |
| 863 | #else |
| 864 | spin_unlock(&rq->lock); |
| 865 | #endif |
| 866 | } |
| 867 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 868 | 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] | 869 | { |
| 870 | #ifdef CONFIG_SMP |
| 871 | /* |
| 872 | * After ->oncpu is cleared, the task can be moved to a different CPU. |
| 873 | * We must ensure this doesn't happen until the switch is completely |
| 874 | * finished. |
| 875 | */ |
| 876 | smp_wmb(); |
| 877 | prev->oncpu = 0; |
| 878 | #endif |
| 879 | #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 880 | local_irq_enable(); |
| 881 | #endif |
| 882 | } |
| 883 | #endif /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
| 885 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 886 | * __task_rq_lock - lock the runqueue a given task resides on. |
| 887 | * Must be called interrupts disabled. |
| 888 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 889 | static inline struct rq *__task_rq_lock(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 890 | __acquires(rq->lock) |
| 891 | { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 892 | for (;;) { |
| 893 | struct rq *rq = task_rq(p); |
| 894 | spin_lock(&rq->lock); |
| 895 | if (likely(rq == task_rq(p))) |
| 896 | return rq; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 897 | spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 898 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 899 | } |
| 900 | |
| 901 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | * 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] | 903 | * interrupts. Note the ordering: we can safely lookup the task_rq without |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | * explicitly disabling preemption. |
| 905 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 906 | 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] | 907 | __acquires(rq->lock) |
| 908 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 909 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 911 | for (;;) { |
| 912 | local_irq_save(*flags); |
| 913 | rq = task_rq(p); |
| 914 | spin_lock(&rq->lock); |
| 915 | if (likely(rq == task_rq(p))) |
| 916 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | spin_unlock_irqrestore(&rq->lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | } |
| 920 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 921 | static void __task_rq_unlock(struct rq *rq) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 922 | __releases(rq->lock) |
| 923 | { |
| 924 | spin_unlock(&rq->lock); |
| 925 | } |
| 926 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 927 | static inline void task_rq_unlock(struct rq *rq, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | __releases(rq->lock) |
| 929 | { |
| 930 | spin_unlock_irqrestore(&rq->lock, *flags); |
| 931 | } |
| 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | /* |
Robert P. J. Day | cc2a73b | 2006-12-10 02:20:00 -0800 | [diff] [blame] | 934 | * this_rq_lock - lock this runqueue and disable interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 936 | static struct rq *this_rq_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 937 | __acquires(rq->lock) |
| 938 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 939 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
| 941 | local_irq_disable(); |
| 942 | rq = this_rq(); |
| 943 | spin_lock(&rq->lock); |
| 944 | |
| 945 | return rq; |
| 946 | } |
| 947 | |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 948 | /* |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 949 | * We are going deep-idle (irqs are disabled): |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 950 | */ |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 951 | void sched_clock_idle_sleep_event(void) |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 952 | { |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 953 | struct rq *rq = cpu_rq(smp_processor_id()); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 954 | |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 955 | spin_lock(&rq->lock); |
| 956 | __update_rq_clock(rq); |
| 957 | spin_unlock(&rq->lock); |
| 958 | rq->clock_deep_idle_events++; |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 959 | } |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 960 | EXPORT_SYMBOL_GPL(sched_clock_idle_sleep_event); |
| 961 | |
| 962 | /* |
| 963 | * We just idled delta nanoseconds (called with irqs disabled): |
| 964 | */ |
| 965 | void sched_clock_idle_wakeup_event(u64 delta_ns) |
| 966 | { |
| 967 | struct rq *rq = cpu_rq(smp_processor_id()); |
| 968 | u64 now = sched_clock(); |
| 969 | |
| 970 | rq->idle_clock += delta_ns; |
| 971 | /* |
| 972 | * Override the previous timestamp and ignore all |
| 973 | * sched_clock() deltas that occured while we idled, |
| 974 | * and use the PM-provided delta_ns to advance the |
| 975 | * rq clock: |
| 976 | */ |
| 977 | spin_lock(&rq->lock); |
| 978 | rq->prev_clock_raw = now; |
| 979 | rq->clock += delta_ns; |
| 980 | spin_unlock(&rq->lock); |
Guillaume Chazarain | 782daee | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 981 | touch_softlockup_watchdog(); |
Ingo Molnar | 2aa44d0 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 982 | } |
| 983 | EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event); |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 984 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 985 | static void __resched_task(struct task_struct *p, int tif_bit); |
| 986 | |
| 987 | static inline void resched_task(struct task_struct *p) |
| 988 | { |
| 989 | __resched_task(p, TIF_NEED_RESCHED); |
| 990 | } |
| 991 | |
| 992 | #ifdef CONFIG_SCHED_HRTICK |
| 993 | /* |
| 994 | * Use HR-timers to deliver accurate preemption points. |
| 995 | * |
| 996 | * Its all a bit involved since we cannot program an hrt while holding the |
| 997 | * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a |
| 998 | * reschedule event. |
| 999 | * |
| 1000 | * When we get rescheduled we reprogram the hrtick_timer outside of the |
| 1001 | * rq->lock. |
| 1002 | */ |
| 1003 | static inline void resched_hrt(struct task_struct *p) |
| 1004 | { |
| 1005 | __resched_task(p, TIF_HRTICK_RESCHED); |
| 1006 | } |
| 1007 | |
| 1008 | static inline void resched_rq(struct rq *rq) |
| 1009 | { |
| 1010 | unsigned long flags; |
| 1011 | |
| 1012 | spin_lock_irqsave(&rq->lock, flags); |
| 1013 | resched_task(rq->curr); |
| 1014 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1015 | } |
| 1016 | |
| 1017 | enum { |
| 1018 | HRTICK_SET, /* re-programm hrtick_timer */ |
| 1019 | HRTICK_RESET, /* not a new slice */ |
| 1020 | }; |
| 1021 | |
| 1022 | /* |
| 1023 | * Use hrtick when: |
| 1024 | * - enabled by features |
| 1025 | * - hrtimer is actually high res |
| 1026 | */ |
| 1027 | static inline int hrtick_enabled(struct rq *rq) |
| 1028 | { |
| 1029 | if (!sched_feat(HRTICK)) |
| 1030 | return 0; |
| 1031 | return hrtimer_is_hres_active(&rq->hrtick_timer); |
| 1032 | } |
| 1033 | |
| 1034 | /* |
| 1035 | * Called to set the hrtick timer state. |
| 1036 | * |
| 1037 | * called with rq->lock held and irqs disabled |
| 1038 | */ |
| 1039 | static void hrtick_start(struct rq *rq, u64 delay, int reset) |
| 1040 | { |
| 1041 | assert_spin_locked(&rq->lock); |
| 1042 | |
| 1043 | /* |
| 1044 | * preempt at: now + delay |
| 1045 | */ |
| 1046 | rq->hrtick_expire = |
| 1047 | ktime_add_ns(rq->hrtick_timer.base->get_time(), delay); |
| 1048 | /* |
| 1049 | * indicate we need to program the timer |
| 1050 | */ |
| 1051 | __set_bit(HRTICK_SET, &rq->hrtick_flags); |
| 1052 | if (reset) |
| 1053 | __set_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 1054 | |
| 1055 | /* |
| 1056 | * New slices are called from the schedule path and don't need a |
| 1057 | * forced reschedule. |
| 1058 | */ |
| 1059 | if (reset) |
| 1060 | resched_hrt(rq->curr); |
| 1061 | } |
| 1062 | |
| 1063 | static void hrtick_clear(struct rq *rq) |
| 1064 | { |
| 1065 | if (hrtimer_active(&rq->hrtick_timer)) |
| 1066 | hrtimer_cancel(&rq->hrtick_timer); |
| 1067 | } |
| 1068 | |
| 1069 | /* |
| 1070 | * Update the timer from the possible pending state. |
| 1071 | */ |
| 1072 | static void hrtick_set(struct rq *rq) |
| 1073 | { |
| 1074 | ktime_t time; |
| 1075 | int set, reset; |
| 1076 | unsigned long flags; |
| 1077 | |
| 1078 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1079 | |
| 1080 | spin_lock_irqsave(&rq->lock, flags); |
| 1081 | set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags); |
| 1082 | reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 1083 | time = rq->hrtick_expire; |
| 1084 | clear_thread_flag(TIF_HRTICK_RESCHED); |
| 1085 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1086 | |
| 1087 | if (set) { |
| 1088 | hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS); |
| 1089 | if (reset && !hrtimer_active(&rq->hrtick_timer)) |
| 1090 | resched_rq(rq); |
| 1091 | } else |
| 1092 | hrtick_clear(rq); |
| 1093 | } |
| 1094 | |
| 1095 | /* |
| 1096 | * High-resolution timer tick. |
| 1097 | * Runs from hardirq context with interrupts disabled. |
| 1098 | */ |
| 1099 | static enum hrtimer_restart hrtick(struct hrtimer *timer) |
| 1100 | { |
| 1101 | struct rq *rq = container_of(timer, struct rq, hrtick_timer); |
| 1102 | |
| 1103 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1104 | |
| 1105 | spin_lock(&rq->lock); |
| 1106 | __update_rq_clock(rq); |
| 1107 | rq->curr->sched_class->task_tick(rq, rq->curr, 1); |
| 1108 | spin_unlock(&rq->lock); |
| 1109 | |
| 1110 | return HRTIMER_NORESTART; |
| 1111 | } |
| 1112 | |
| 1113 | static inline void init_rq_hrtick(struct rq *rq) |
| 1114 | { |
| 1115 | rq->hrtick_flags = 0; |
| 1116 | hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1117 | rq->hrtick_timer.function = hrtick; |
| 1118 | rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 1119 | } |
| 1120 | |
| 1121 | void hrtick_resched(void) |
| 1122 | { |
| 1123 | struct rq *rq; |
| 1124 | unsigned long flags; |
| 1125 | |
| 1126 | if (!test_thread_flag(TIF_HRTICK_RESCHED)) |
| 1127 | return; |
| 1128 | |
| 1129 | local_irq_save(flags); |
| 1130 | rq = cpu_rq(smp_processor_id()); |
| 1131 | hrtick_set(rq); |
| 1132 | local_irq_restore(flags); |
| 1133 | } |
| 1134 | #else |
| 1135 | static inline void hrtick_clear(struct rq *rq) |
| 1136 | { |
| 1137 | } |
| 1138 | |
| 1139 | static inline void hrtick_set(struct rq *rq) |
| 1140 | { |
| 1141 | } |
| 1142 | |
| 1143 | static inline void init_rq_hrtick(struct rq *rq) |
| 1144 | { |
| 1145 | } |
| 1146 | |
| 1147 | void hrtick_resched(void) |
| 1148 | { |
| 1149 | } |
| 1150 | #endif |
| 1151 | |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1152 | /* |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1153 | * resched_task - mark a task 'to be rescheduled now'. |
| 1154 | * |
| 1155 | * On UP this means the setting of the need_resched flag, on SMP it |
| 1156 | * might also involve a cross-CPU call to trigger the scheduler on |
| 1157 | * the target CPU. |
| 1158 | */ |
| 1159 | #ifdef CONFIG_SMP |
| 1160 | |
| 1161 | #ifndef tsk_is_polling |
| 1162 | #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG) |
| 1163 | #endif |
| 1164 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1165 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1166 | { |
| 1167 | int cpu; |
| 1168 | |
| 1169 | assert_spin_locked(&task_rq(p)->lock); |
| 1170 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1171 | if (unlikely(test_tsk_thread_flag(p, tif_bit))) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1172 | return; |
| 1173 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1174 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1175 | |
| 1176 | cpu = task_cpu(p); |
| 1177 | if (cpu == smp_processor_id()) |
| 1178 | return; |
| 1179 | |
| 1180 | /* NEED_RESCHED must be visible before we test polling */ |
| 1181 | smp_mb(); |
| 1182 | if (!tsk_is_polling(p)) |
| 1183 | smp_send_reschedule(cpu); |
| 1184 | } |
| 1185 | |
| 1186 | static void resched_cpu(int cpu) |
| 1187 | { |
| 1188 | struct rq *rq = cpu_rq(cpu); |
| 1189 | unsigned long flags; |
| 1190 | |
| 1191 | if (!spin_trylock_irqsave(&rq->lock, flags)) |
| 1192 | return; |
| 1193 | resched_task(cpu_curr(cpu)); |
| 1194 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1195 | } |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1196 | |
| 1197 | #ifdef CONFIG_NO_HZ |
| 1198 | /* |
| 1199 | * When add_timer_on() enqueues a timer into the timer wheel of an |
| 1200 | * idle CPU then this timer might expire before the next timer event |
| 1201 | * which is scheduled to wake up that CPU. In case of a completely |
| 1202 | * idle system the next event might even be infinite time into the |
| 1203 | * future. wake_up_idle_cpu() ensures that the CPU is woken up and |
| 1204 | * leaves the inner idle loop so the newly added timer is taken into |
| 1205 | * account when the CPU goes back to idle and evaluates the timer |
| 1206 | * wheel for the next timer event. |
| 1207 | */ |
| 1208 | void wake_up_idle_cpu(int cpu) |
| 1209 | { |
| 1210 | struct rq *rq = cpu_rq(cpu); |
| 1211 | |
| 1212 | if (cpu == smp_processor_id()) |
| 1213 | return; |
| 1214 | |
| 1215 | /* |
| 1216 | * This is safe, as this function is called with the timer |
| 1217 | * wheel base lock of (cpu) held. When the CPU is on the way |
| 1218 | * to idle and has not yet set rq->curr to idle then it will |
| 1219 | * be serialized on the timer wheel base lock and take the new |
| 1220 | * timer into account automatically. |
| 1221 | */ |
| 1222 | if (rq->curr != rq->idle) |
| 1223 | return; |
| 1224 | |
| 1225 | /* |
| 1226 | * We can set TIF_RESCHED on the idle task of the other CPU |
| 1227 | * lockless. The worst case is that the other CPU runs the |
| 1228 | * idle task through an additional NOOP schedule() |
| 1229 | */ |
| 1230 | set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED); |
| 1231 | |
| 1232 | /* NEED_RESCHED must be visible before we test polling */ |
| 1233 | smp_mb(); |
| 1234 | if (!tsk_is_polling(rq->idle)) |
| 1235 | smp_send_reschedule(cpu); |
| 1236 | } |
| 1237 | #endif |
| 1238 | |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1239 | #else |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1240 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1241 | { |
| 1242 | assert_spin_locked(&task_rq(p)->lock); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1243 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1244 | } |
| 1245 | #endif |
| 1246 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1247 | #if BITS_PER_LONG == 32 |
| 1248 | # define WMULT_CONST (~0UL) |
| 1249 | #else |
| 1250 | # define WMULT_CONST (1UL << 32) |
| 1251 | #endif |
| 1252 | |
| 1253 | #define WMULT_SHIFT 32 |
| 1254 | |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1255 | /* |
| 1256 | * Shift right and round: |
| 1257 | */ |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1258 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1259 | |
Ingo Molnar | cb1c4fc | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1260 | static unsigned long |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1261 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 1262 | struct load_weight *lw) |
| 1263 | { |
| 1264 | u64 tmp; |
| 1265 | |
| 1266 | if (unlikely(!lw->inv_weight)) |
Ingo Molnar | 27d1172 | 2008-03-14 22:20:01 +0100 | [diff] [blame] | 1267 | lw->inv_weight = (WMULT_CONST-lw->weight/2) / (lw->weight+1); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1268 | |
| 1269 | tmp = (u64)delta_exec * weight; |
| 1270 | /* |
| 1271 | * Check whether we'd overflow the 64-bit multiplication: |
| 1272 | */ |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1273 | if (unlikely(tmp > WMULT_CONST)) |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1274 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1275 | WMULT_SHIFT/2); |
| 1276 | else |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1277 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1278 | |
Ingo Molnar | ecf691d | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1279 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | static inline unsigned long |
| 1283 | calc_delta_fair(unsigned long delta_exec, struct load_weight *lw) |
| 1284 | { |
| 1285 | return calc_delta_mine(delta_exec, NICE_0_LOAD, lw); |
| 1286 | } |
| 1287 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1288 | 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] | 1289 | { |
| 1290 | lw->weight += inc; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1291 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1292 | } |
| 1293 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1294 | 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] | 1295 | { |
| 1296 | lw->weight -= dec; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1297 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1298 | } |
| 1299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1301 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
| 1302 | * of tasks with abnormal "nice" values across CPUs the contribution that |
| 1303 | * 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] | 1304 | * 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] | 1305 | * scaled version of the new time slice allocation that they receive on time |
| 1306 | * slice expiry etc. |
| 1307 | */ |
| 1308 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1309 | #define WEIGHT_IDLEPRIO 2 |
| 1310 | #define WMULT_IDLEPRIO (1 << 31) |
| 1311 | |
| 1312 | /* |
| 1313 | * Nice levels are multiplicative, with a gentle 10% change for every |
| 1314 | * nice level changed. I.e. when a CPU-bound task goes from nice 0 to |
| 1315 | * nice 1, it will get ~10% less CPU time than another CPU-bound task |
| 1316 | * that remained on nice 0. |
| 1317 | * |
| 1318 | * The "10% effect" is relative and cumulative: from _any_ nice level, |
| 1319 | * 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] | 1320 | * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25. |
| 1321 | * If a task goes up by ~10% and another task goes down by ~10% then |
| 1322 | * the relative distance between them is ~25%.) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1323 | */ |
| 1324 | static const int prio_to_weight[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1325 | /* -20 */ 88761, 71755, 56483, 46273, 36291, |
| 1326 | /* -15 */ 29154, 23254, 18705, 14949, 11916, |
| 1327 | /* -10 */ 9548, 7620, 6100, 4904, 3906, |
| 1328 | /* -5 */ 3121, 2501, 1991, 1586, 1277, |
| 1329 | /* 0 */ 1024, 820, 655, 526, 423, |
| 1330 | /* 5 */ 335, 272, 215, 172, 137, |
| 1331 | /* 10 */ 110, 87, 70, 56, 45, |
| 1332 | /* 15 */ 36, 29, 23, 18, 15, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1333 | }; |
| 1334 | |
Ingo Molnar | 5714d2d | 2007-07-16 09:46:31 +0200 | [diff] [blame] | 1335 | /* |
| 1336 | * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated. |
| 1337 | * |
| 1338 | * In cases where the weight does not change often, we can use the |
| 1339 | * precalculated inverse to speed up arithmetics by turning divisions |
| 1340 | * into multiplications: |
| 1341 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1342 | static const u32 prio_to_wmult[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1343 | /* -20 */ 48388, 59856, 76040, 92818, 118348, |
| 1344 | /* -15 */ 147320, 184698, 229616, 287308, 360437, |
| 1345 | /* -10 */ 449829, 563644, 704093, 875809, 1099582, |
| 1346 | /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326, |
| 1347 | /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587, |
| 1348 | /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126, |
| 1349 | /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717, |
| 1350 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1351 | }; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1352 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1353 | static void activate_task(struct rq *rq, struct task_struct *p, int wakeup); |
| 1354 | |
| 1355 | /* |
| 1356 | * runqueue iterator, to support SMP load-balancing between different |
| 1357 | * scheduling classes, without having to expose their internal data |
| 1358 | * structures to the load-balancing proper: |
| 1359 | */ |
| 1360 | struct rq_iterator { |
| 1361 | void *arg; |
| 1362 | struct task_struct *(*start)(void *); |
| 1363 | struct task_struct *(*next)(void *); |
| 1364 | }; |
| 1365 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1366 | #ifdef CONFIG_SMP |
| 1367 | static unsigned long |
| 1368 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1369 | unsigned long max_load_move, struct sched_domain *sd, |
| 1370 | enum cpu_idle_type idle, int *all_pinned, |
| 1371 | int *this_best_prio, struct rq_iterator *iterator); |
| 1372 | |
| 1373 | static int |
| 1374 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1375 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 1376 | struct rq_iterator *iterator); |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1377 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1378 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1379 | #ifdef CONFIG_CGROUP_CPUACCT |
| 1380 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime); |
| 1381 | #else |
| 1382 | static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {} |
| 1383 | #endif |
| 1384 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1385 | #ifdef CONFIG_SMP |
| 1386 | static unsigned long source_load(int cpu, int type); |
| 1387 | static unsigned long target_load(int cpu, int type); |
| 1388 | static unsigned long cpu_avg_load_per_task(int cpu); |
| 1389 | static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd); |
| 1390 | #endif /* CONFIG_SMP */ |
| 1391 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1392 | #include "sched_stats.h" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1393 | #include "sched_idletask.c" |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1394 | #include "sched_fair.c" |
| 1395 | #include "sched_rt.c" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1396 | #ifdef CONFIG_SCHED_DEBUG |
| 1397 | # include "sched_debug.c" |
| 1398 | #endif |
| 1399 | |
| 1400 | #define sched_class_highest (&rt_sched_class) |
| 1401 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1402 | static inline void inc_load(struct rq *rq, const struct task_struct *p) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1403 | { |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1404 | update_load_add(&rq->load, p->se.load.weight); |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1405 | } |
| 1406 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1407 | static inline void dec_load(struct rq *rq, const struct task_struct *p) |
| 1408 | { |
| 1409 | update_load_sub(&rq->load, p->se.load.weight); |
| 1410 | } |
| 1411 | |
| 1412 | static void inc_nr_running(struct task_struct *p, struct rq *rq) |
| 1413 | { |
| 1414 | rq->nr_running++; |
| 1415 | inc_load(rq, p); |
| 1416 | } |
| 1417 | |
| 1418 | static void dec_nr_running(struct task_struct *p, struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1419 | { |
| 1420 | rq->nr_running--; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1421 | dec_load(rq, p); |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1422 | } |
| 1423 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1424 | static void set_load_weight(struct task_struct *p) |
| 1425 | { |
| 1426 | if (task_has_rt_policy(p)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1427 | p->se.load.weight = prio_to_weight[0] * 2; |
| 1428 | p->se.load.inv_weight = prio_to_wmult[0] >> 1; |
| 1429 | return; |
| 1430 | } |
| 1431 | |
| 1432 | /* |
| 1433 | * SCHED_IDLE tasks get minimal weight: |
| 1434 | */ |
| 1435 | if (p->policy == SCHED_IDLE) { |
| 1436 | p->se.load.weight = WEIGHT_IDLEPRIO; |
| 1437 | p->se.load.inv_weight = WMULT_IDLEPRIO; |
| 1438 | return; |
| 1439 | } |
| 1440 | |
| 1441 | p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO]; |
| 1442 | 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] | 1443 | } |
| 1444 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1445 | 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] | 1446 | { |
| 1447 | sched_info_queued(p); |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1448 | p->sched_class->enqueue_task(rq, p, wakeup); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1449 | p->se.on_rq = 1; |
| 1450 | } |
| 1451 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1452 | 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] | 1453 | { |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1454 | p->sched_class->dequeue_task(rq, p, sleep); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1455 | p->se.on_rq = 0; |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1456 | } |
| 1457 | |
| 1458 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1459 | * __normal_prio - return the priority that is based on the static prio |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1460 | */ |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1461 | static inline int __normal_prio(struct task_struct *p) |
| 1462 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1463 | return p->static_prio; |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1464 | } |
| 1465 | |
| 1466 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1467 | * Calculate the expected normal priority: i.e. priority |
| 1468 | * without taking RT-inheritance into account. Might be |
| 1469 | * boosted by interactivity modifiers. Changes upon fork, |
| 1470 | * setprio syscalls, and whenever the interactivity |
| 1471 | * estimator recalculates. |
| 1472 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1473 | static inline int normal_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1474 | { |
| 1475 | int prio; |
| 1476 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1477 | if (task_has_rt_policy(p)) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1478 | prio = MAX_RT_PRIO-1 - p->rt_priority; |
| 1479 | else |
| 1480 | prio = __normal_prio(p); |
| 1481 | return prio; |
| 1482 | } |
| 1483 | |
| 1484 | /* |
| 1485 | * Calculate the current priority, i.e. the priority |
| 1486 | * taken into account by the scheduler. This value might |
| 1487 | * be boosted by RT tasks, or might be boosted by |
| 1488 | * interactivity modifiers. Will be RT if the task got |
| 1489 | * RT-boosted. If not then it returns p->normal_prio. |
| 1490 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1491 | static int effective_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1492 | { |
| 1493 | p->normal_prio = normal_prio(p); |
| 1494 | /* |
| 1495 | * If we are RT tasks or we were boosted to RT priority, |
| 1496 | * keep the priority unchanged. Otherwise, update priority |
| 1497 | * to the normal priority: |
| 1498 | */ |
| 1499 | if (!rt_prio(p->prio)) |
| 1500 | return p->normal_prio; |
| 1501 | return p->prio; |
| 1502 | } |
| 1503 | |
| 1504 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1505 | * activate_task - move a task to the runqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1507 | 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] | 1508 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1509 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1510 | rq->nr_uninterruptible--; |
| 1511 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1512 | enqueue_task(rq, p, wakeup); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1513 | inc_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1514 | } |
| 1515 | |
| 1516 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1517 | * deactivate_task - remove a task from the runqueue. |
| 1518 | */ |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1519 | 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] | 1520 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1521 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1522 | rq->nr_uninterruptible++; |
| 1523 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1524 | dequeue_task(rq, p, sleep); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1525 | dec_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | } |
| 1527 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | /** |
| 1529 | * task_curr - is this task currently executing on a CPU? |
| 1530 | * @p: the task in question. |
| 1531 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1532 | inline int task_curr(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1533 | { |
| 1534 | return cpu_curr(task_cpu(p)) == p; |
| 1535 | } |
| 1536 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1537 | /* Used instead of source_load when we know the type == 0 */ |
| 1538 | unsigned long weighted_cpuload(const int cpu) |
| 1539 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1540 | return cpu_rq(cpu)->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1541 | } |
| 1542 | |
| 1543 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1544 | { |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 1545 | set_task_rq(p, cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1546 | #ifdef CONFIG_SMP |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 1547 | /* |
| 1548 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
| 1549 | * successfuly executed on another CPU. We must ensure that updates of |
| 1550 | * per-task data have been completed by this moment. |
| 1551 | */ |
| 1552 | smp_wmb(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1553 | task_thread_info(p)->cpu = cpu; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1554 | #endif |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1555 | } |
| 1556 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1557 | static inline void check_class_changed(struct rq *rq, struct task_struct *p, |
| 1558 | const struct sched_class *prev_class, |
| 1559 | int oldprio, int running) |
| 1560 | { |
| 1561 | if (prev_class != p->sched_class) { |
| 1562 | if (prev_class->switched_from) |
| 1563 | prev_class->switched_from(rq, p, running); |
| 1564 | p->sched_class->switched_to(rq, p, running); |
| 1565 | } else |
| 1566 | p->sched_class->prio_changed(rq, p, oldprio, running); |
| 1567 | } |
| 1568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | #ifdef CONFIG_SMP |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1570 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1571 | /* |
| 1572 | * Is this task likely cache-hot: |
| 1573 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1574 | static int |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1575 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 1576 | { |
| 1577 | s64 delta; |
| 1578 | |
Ingo Molnar | f540a60 | 2008-03-15 17:10:34 +0100 | [diff] [blame] | 1579 | /* |
| 1580 | * Buddy candidates are cache hot: |
| 1581 | */ |
Ingo Molnar | d25ce4c | 2008-03-17 09:36:53 +0100 | [diff] [blame] | 1582 | if (sched_feat(CACHE_HOT_BUDDY) && (&p->se == cfs_rq_of(&p->se)->next)) |
Ingo Molnar | f540a60 | 2008-03-15 17:10:34 +0100 | [diff] [blame] | 1583 | return 1; |
| 1584 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1585 | if (p->sched_class != &fair_sched_class) |
| 1586 | return 0; |
| 1587 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1588 | if (sysctl_sched_migration_cost == -1) |
| 1589 | return 1; |
| 1590 | if (sysctl_sched_migration_cost == 0) |
| 1591 | return 0; |
| 1592 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1593 | delta = now - p->se.exec_start; |
| 1594 | |
| 1595 | return delta < (s64)sysctl_sched_migration_cost; |
| 1596 | } |
| 1597 | |
| 1598 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1599 | void set_task_cpu(struct task_struct *p, unsigned int new_cpu) |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1600 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1601 | int old_cpu = task_cpu(p); |
| 1602 | 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] | 1603 | struct cfs_rq *old_cfsrq = task_cfs_rq(p), |
| 1604 | *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu); |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1605 | u64 clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1606 | |
| 1607 | clock_offset = old_rq->clock - new_rq->clock; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1608 | |
| 1609 | #ifdef CONFIG_SCHEDSTATS |
| 1610 | if (p->se.wait_start) |
| 1611 | p->se.wait_start -= clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1612 | if (p->se.sleep_start) |
| 1613 | p->se.sleep_start -= clock_offset; |
| 1614 | if (p->se.block_start) |
| 1615 | p->se.block_start -= clock_offset; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1616 | if (old_cpu != new_cpu) { |
| 1617 | schedstat_inc(p, se.nr_migrations); |
| 1618 | if (task_hot(p, old_rq->clock, NULL)) |
| 1619 | schedstat_inc(p, se.nr_forced2_migrations); |
| 1620 | } |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1621 | #endif |
Srivatsa Vaddagiri | 2830cf8 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1622 | p->se.vruntime -= old_cfsrq->min_vruntime - |
| 1623 | new_cfsrq->min_vruntime; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1624 | |
| 1625 | __set_task_cpu(p, new_cpu); |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1626 | } |
| 1627 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1628 | struct migration_req { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1631 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | int dest_cpu; |
| 1633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | struct completion done; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1635 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | |
| 1637 | /* |
| 1638 | * The task's runqueue lock must be held. |
| 1639 | * Returns true if you have to wait for migration thread. |
| 1640 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1641 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1642 | 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] | 1643 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1644 | struct rq *rq = task_rq(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1645 | |
| 1646 | /* |
| 1647 | * If the task is not on a runqueue (and not running), then |
| 1648 | * it is sufficient to simply update the task's cpu field. |
| 1649 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1650 | if (!p->se.on_rq && !task_running(rq, p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | set_task_cpu(p, dest_cpu); |
| 1652 | return 0; |
| 1653 | } |
| 1654 | |
| 1655 | init_completion(&req->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1656 | req->task = p; |
| 1657 | req->dest_cpu = dest_cpu; |
| 1658 | list_add(&req->list, &rq->migration_queue); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 1659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1660 | return 1; |
| 1661 | } |
| 1662 | |
| 1663 | /* |
| 1664 | * wait_task_inactive - wait for a thread to unschedule. |
| 1665 | * |
| 1666 | * The caller must ensure that the task *will* unschedule sometime soon, |
| 1667 | * else this function might spin for a *long* time. This function can't |
| 1668 | * be called with interrupts off, or it may introduce deadlock with |
| 1669 | * smp_call_function() if an IPI is sent by the same process we are |
| 1670 | * waiting to become inactive. |
| 1671 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1672 | void wait_task_inactive(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1673 | { |
| 1674 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1675 | int running, on_rq; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1676 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1677 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1678 | for (;;) { |
| 1679 | /* |
| 1680 | * We do the initial early heuristics without holding |
| 1681 | * any task-queue locks at all. We'll only try to get |
| 1682 | * the runqueue lock when things look like they will |
| 1683 | * work out! |
| 1684 | */ |
| 1685 | rq = task_rq(p); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1686 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1687 | /* |
| 1688 | * If the task is actively running on another CPU |
| 1689 | * still, just relax and busy-wait without holding |
| 1690 | * any locks. |
| 1691 | * |
| 1692 | * NOTE! Since we don't hold any locks, it's not |
| 1693 | * even sure that "rq" stays as the right runqueue! |
| 1694 | * But we don't care, since "task_running()" will |
| 1695 | * return false if the runqueue has changed and p |
| 1696 | * is actually now running somewhere else! |
| 1697 | */ |
| 1698 | while (task_running(rq, p)) |
| 1699 | cpu_relax(); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1700 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1701 | /* |
| 1702 | * Ok, time to look more closely! We need the rq |
| 1703 | * lock now, to be *sure*. If we're wrong, we'll |
| 1704 | * just go back and repeat. |
| 1705 | */ |
| 1706 | rq = task_rq_lock(p, &flags); |
| 1707 | running = task_running(rq, p); |
| 1708 | on_rq = p->se.on_rq; |
| 1709 | task_rq_unlock(rq, &flags); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1710 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1711 | /* |
| 1712 | * Was it really running after all now that we |
| 1713 | * checked with the proper locks actually held? |
| 1714 | * |
| 1715 | * Oops. Go back and try again.. |
| 1716 | */ |
| 1717 | if (unlikely(running)) { |
| 1718 | cpu_relax(); |
| 1719 | continue; |
| 1720 | } |
| 1721 | |
| 1722 | /* |
| 1723 | * It's not enough that it's not actively running, |
| 1724 | * it must be off the runqueue _entirely_, and not |
| 1725 | * preempted! |
| 1726 | * |
| 1727 | * So if it wa still runnable (but just not actively |
| 1728 | * running right now), it's preempted, and we should |
| 1729 | * yield - it could be a while. |
| 1730 | */ |
| 1731 | if (unlikely(on_rq)) { |
| 1732 | schedule_timeout_uninterruptible(1); |
| 1733 | continue; |
| 1734 | } |
| 1735 | |
| 1736 | /* |
| 1737 | * Ahh, all good. It wasn't running, and it wasn't |
| 1738 | * runnable, which means that it will never become |
| 1739 | * running in the future either. We're all done! |
| 1740 | */ |
| 1741 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1742 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1743 | } |
| 1744 | |
| 1745 | /*** |
| 1746 | * kick_process - kick a running thread to enter/exit the kernel |
| 1747 | * @p: the to-be-kicked thread |
| 1748 | * |
| 1749 | * Cause a process which is running on another CPU to enter |
| 1750 | * kernel-mode, without any delay. (to get signals handled.) |
| 1751 | * |
| 1752 | * NOTE: this function doesnt have to take the runqueue lock, |
| 1753 | * because all it wants to ensure is that the remote task enters |
| 1754 | * the kernel. If the IPI races and the task has been migrated |
| 1755 | * to another CPU then no harm is done and the purpose has been |
| 1756 | * achieved as well. |
| 1757 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1758 | void kick_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | { |
| 1760 | int cpu; |
| 1761 | |
| 1762 | preempt_disable(); |
| 1763 | cpu = task_cpu(p); |
| 1764 | if ((cpu != smp_processor_id()) && task_curr(p)) |
| 1765 | smp_send_reschedule(cpu); |
| 1766 | preempt_enable(); |
| 1767 | } |
| 1768 | |
| 1769 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1770 | * Return a low guess at the load of a migration-source cpu weighted |
| 1771 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1772 | * |
| 1773 | * We want to under-estimate the load of migration sources, to |
| 1774 | * balance conservatively. |
| 1775 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1776 | static unsigned long source_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1777 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1778 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1779 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1780 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1781 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1782 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1783 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1784 | return min(rq->cpu_load[type-1], total); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1785 | } |
| 1786 | |
| 1787 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1788 | * Return a high guess at the load of a migration-target cpu weighted |
| 1789 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1791 | static unsigned long target_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1792 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1793 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1794 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1795 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1796 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1797 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1798 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1799 | return max(rq->cpu_load[type-1], total); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1800 | } |
| 1801 | |
| 1802 | /* |
| 1803 | * Return the average load per task on the cpu's run queue |
| 1804 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1805 | static unsigned long cpu_avg_load_per_task(int cpu) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1806 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1807 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1808 | unsigned long total = weighted_cpuload(cpu); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1809 | unsigned long n = rq->nr_running; |
| 1810 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1811 | return n ? total / n : SCHED_LOAD_SCALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1812 | } |
| 1813 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1814 | /* |
| 1815 | * find_idlest_group finds and returns the least busy CPU group within the |
| 1816 | * domain. |
| 1817 | */ |
| 1818 | static struct sched_group * |
| 1819 | find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu) |
| 1820 | { |
| 1821 | struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups; |
| 1822 | unsigned long min_load = ULONG_MAX, this_load = 0; |
| 1823 | int load_idx = sd->forkexec_idx; |
| 1824 | int imbalance = 100 + (sd->imbalance_pct-100)/2; |
| 1825 | |
| 1826 | do { |
| 1827 | unsigned long load, avg_load; |
| 1828 | int local_group; |
| 1829 | int i; |
| 1830 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1831 | /* Skip over this group if it has no CPUs allowed */ |
| 1832 | if (!cpus_intersects(group->cpumask, p->cpus_allowed)) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1833 | continue; |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1834 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1835 | local_group = cpu_isset(this_cpu, group->cpumask); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1836 | |
| 1837 | /* Tally up the load of all CPUs in the group */ |
| 1838 | avg_load = 0; |
| 1839 | |
| 1840 | for_each_cpu_mask(i, group->cpumask) { |
| 1841 | /* Bias balancing toward cpus of our domain */ |
| 1842 | if (local_group) |
| 1843 | load = source_load(i, load_idx); |
| 1844 | else |
| 1845 | load = target_load(i, load_idx); |
| 1846 | |
| 1847 | avg_load += load; |
| 1848 | } |
| 1849 | |
| 1850 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 1851 | avg_load = sg_div_cpu_power(group, |
| 1852 | avg_load * SCHED_LOAD_SCALE); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1853 | |
| 1854 | if (local_group) { |
| 1855 | this_load = avg_load; |
| 1856 | this = group; |
| 1857 | } else if (avg_load < min_load) { |
| 1858 | min_load = avg_load; |
| 1859 | idlest = group; |
| 1860 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1861 | } while (group = group->next, group != sd->groups); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1862 | |
| 1863 | if (!idlest || 100*this_load < imbalance*min_load) |
| 1864 | return NULL; |
| 1865 | return idlest; |
| 1866 | } |
| 1867 | |
| 1868 | /* |
Satoru Takeuchi | 0feaece | 2006-10-03 01:14:10 -0700 | [diff] [blame] | 1869 | * find_idlest_cpu - find the idlest cpu among the cpus in group. |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1870 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 1871 | static int |
| 1872 | 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] | 1873 | { |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1874 | cpumask_t tmp; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1875 | unsigned long load, min_load = ULONG_MAX; |
| 1876 | int idlest = -1; |
| 1877 | int i; |
| 1878 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1879 | /* Traverse only the allowed CPUs */ |
| 1880 | cpus_and(tmp, group->cpumask, p->cpus_allowed); |
| 1881 | |
| 1882 | for_each_cpu_mask(i, tmp) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1883 | load = weighted_cpuload(i); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1884 | |
| 1885 | if (load < min_load || (load == min_load && i == this_cpu)) { |
| 1886 | min_load = load; |
| 1887 | idlest = i; |
| 1888 | } |
| 1889 | } |
| 1890 | |
| 1891 | return idlest; |
| 1892 | } |
| 1893 | |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1894 | /* |
| 1895 | * sched_balance_self: balance the current task (running on cpu) in domains |
| 1896 | * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and |
| 1897 | * SD_BALANCE_EXEC. |
| 1898 | * |
| 1899 | * Balance, ie. select the least loaded group. |
| 1900 | * |
| 1901 | * Returns the target CPU number, or the same CPU if no balancing is needed. |
| 1902 | * |
| 1903 | * preempt must be disabled. |
| 1904 | */ |
| 1905 | static int sched_balance_self(int cpu, int flag) |
| 1906 | { |
| 1907 | struct task_struct *t = current; |
| 1908 | struct sched_domain *tmp, *sd = NULL; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1909 | |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1910 | for_each_domain(cpu, tmp) { |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 1911 | /* |
| 1912 | * If power savings logic is enabled for a domain, stop there. |
| 1913 | */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 1914 | if (tmp->flags & SD_POWERSAVINGS_BALANCE) |
| 1915 | break; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1916 | if (tmp->flags & flag) |
| 1917 | sd = tmp; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 1918 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1919 | |
| 1920 | while (sd) { |
| 1921 | cpumask_t span; |
| 1922 | struct sched_group *group; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1923 | int new_cpu, weight; |
| 1924 | |
| 1925 | if (!(sd->flags & flag)) { |
| 1926 | sd = sd->child; |
| 1927 | continue; |
| 1928 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1929 | |
| 1930 | span = sd->span; |
| 1931 | group = find_idlest_group(sd, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1932 | if (!group) { |
| 1933 | sd = sd->child; |
| 1934 | continue; |
| 1935 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1936 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1937 | new_cpu = find_idlest_cpu(group, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1938 | if (new_cpu == -1 || new_cpu == cpu) { |
| 1939 | /* Now try balancing at a lower domain level of cpu */ |
| 1940 | sd = sd->child; |
| 1941 | continue; |
| 1942 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1943 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 1944 | /* Now try balancing at a lower domain level of new_cpu */ |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1945 | cpu = new_cpu; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1946 | sd = NULL; |
| 1947 | weight = cpus_weight(span); |
| 1948 | for_each_domain(cpu, tmp) { |
| 1949 | if (weight <= cpus_weight(tmp->span)) |
| 1950 | break; |
| 1951 | if (tmp->flags & flag) |
| 1952 | sd = tmp; |
| 1953 | } |
| 1954 | /* while loop will break here if sd == NULL */ |
| 1955 | } |
| 1956 | |
| 1957 | return cpu; |
| 1958 | } |
| 1959 | |
| 1960 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1962 | /*** |
| 1963 | * try_to_wake_up - wake up a thread |
| 1964 | * @p: the to-be-woken-up thread |
| 1965 | * @state: the mask of task states that can be woken |
| 1966 | * @sync: do a synchronous wakeup? |
| 1967 | * |
| 1968 | * Put it on the run-queue if it's not already there. The "current" |
| 1969 | * thread is always on the run-queue (except when the actual |
| 1970 | * re-schedule is in progress), and as such you're allowed to do |
| 1971 | * the simpler "current->state = TASK_RUNNING" to mark yourself |
| 1972 | * runnable without the overhead of this. |
| 1973 | * |
| 1974 | * returns failure only if the task is already active. |
| 1975 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1976 | 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] | 1977 | { |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1978 | int cpu, orig_cpu, this_cpu, success = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | unsigned long flags; |
| 1980 | long old_state; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1981 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1982 | |
Ingo Molnar | b85d066 | 2008-03-16 20:03:22 +0100 | [diff] [blame] | 1983 | if (!sched_feat(SYNC_WAKEUPS)) |
| 1984 | sync = 0; |
| 1985 | |
Linus Torvalds | 04e2f17 | 2008-02-23 18:05:03 -0800 | [diff] [blame] | 1986 | smp_wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | rq = task_rq_lock(p, &flags); |
| 1988 | old_state = p->state; |
| 1989 | if (!(old_state & state)) |
| 1990 | goto out; |
| 1991 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1992 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | goto out_running; |
| 1994 | |
| 1995 | cpu = task_cpu(p); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1996 | orig_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | this_cpu = smp_processor_id(); |
| 1998 | |
| 1999 | #ifdef CONFIG_SMP |
| 2000 | if (unlikely(task_running(rq, p))) |
| 2001 | goto out_activate; |
| 2002 | |
Dmitry Adamushko | 5d2f5a6 | 2008-01-25 21:08:21 +0100 | [diff] [blame] | 2003 | cpu = p->sched_class->select_task_rq(p, sync); |
| 2004 | if (cpu != orig_cpu) { |
| 2005 | set_task_cpu(p, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2006 | task_rq_unlock(rq, &flags); |
| 2007 | /* might preempt at this point */ |
| 2008 | rq = task_rq_lock(p, &flags); |
| 2009 | old_state = p->state; |
| 2010 | if (!(old_state & state)) |
| 2011 | goto out; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2012 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | goto out_running; |
| 2014 | |
| 2015 | this_cpu = smp_processor_id(); |
| 2016 | cpu = task_cpu(p); |
| 2017 | } |
| 2018 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2019 | #ifdef CONFIG_SCHEDSTATS |
| 2020 | schedstat_inc(rq, ttwu_count); |
| 2021 | if (cpu == this_cpu) |
| 2022 | schedstat_inc(rq, ttwu_local); |
| 2023 | else { |
| 2024 | struct sched_domain *sd; |
| 2025 | for_each_domain(this_cpu, sd) { |
| 2026 | if (cpu_isset(cpu, sd->span)) { |
| 2027 | schedstat_inc(sd, ttwu_wake_remote); |
| 2028 | break; |
| 2029 | } |
| 2030 | } |
| 2031 | } |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2032 | #endif |
| 2033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | out_activate: |
| 2035 | #endif /* CONFIG_SMP */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2036 | schedstat_inc(p, se.nr_wakeups); |
| 2037 | if (sync) |
| 2038 | schedstat_inc(p, se.nr_wakeups_sync); |
| 2039 | if (orig_cpu != cpu) |
| 2040 | schedstat_inc(p, se.nr_wakeups_migrate); |
| 2041 | if (cpu == this_cpu) |
| 2042 | schedstat_inc(p, se.nr_wakeups_local); |
| 2043 | else |
| 2044 | schedstat_inc(p, se.nr_wakeups_remote); |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2045 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2046 | activate_task(rq, p, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | success = 1; |
| 2048 | |
| 2049 | out_running: |
Ingo Molnar | 4ae7d5c | 2008-03-19 01:42:00 +0100 | [diff] [blame] | 2050 | check_preempt_curr(rq, p); |
| 2051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | p->state = TASK_RUNNING; |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2053 | #ifdef CONFIG_SMP |
| 2054 | if (p->sched_class->task_wake_up) |
| 2055 | p->sched_class->task_wake_up(rq, p); |
| 2056 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | out: |
| 2058 | task_rq_unlock(rq, &flags); |
| 2059 | |
| 2060 | return success; |
| 2061 | } |
| 2062 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2063 | int wake_up_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 2065 | return try_to_wake_up(p, TASK_ALL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2066 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | EXPORT_SYMBOL(wake_up_process); |
| 2068 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2069 | int wake_up_state(struct task_struct *p, unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | { |
| 2071 | return try_to_wake_up(p, state, 0); |
| 2072 | } |
| 2073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | /* |
| 2075 | * Perform scheduler related setup for a newly forked process p. |
| 2076 | * p is forked by current. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2077 | * |
| 2078 | * __sched_fork() is basic setup used by init_idle() too: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2079 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2080 | static void __sched_fork(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2082 | p->se.exec_start = 0; |
| 2083 | p->se.sum_exec_runtime = 0; |
Ingo Molnar | f6cf891 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 2084 | p->se.prev_sum_exec_runtime = 0; |
Ingo Molnar | 4ae7d5c | 2008-03-19 01:42:00 +0100 | [diff] [blame] | 2085 | p->se.last_wakeup = 0; |
| 2086 | p->se.avg_overlap = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2087 | |
| 2088 | #ifdef CONFIG_SCHEDSTATS |
| 2089 | p->se.wait_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2090 | p->se.sum_sleep_runtime = 0; |
| 2091 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2092 | p->se.block_start = 0; |
| 2093 | p->se.sleep_max = 0; |
| 2094 | p->se.block_max = 0; |
| 2095 | p->se.exec_max = 0; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 2096 | p->se.slice_max = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2097 | p->se.wait_max = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2098 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2099 | |
Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 2100 | INIT_LIST_HEAD(&p->rt.run_list); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2101 | p->se.on_rq = 0; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2102 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2103 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2104 | INIT_HLIST_HEAD(&p->preempt_notifiers); |
| 2105 | #endif |
| 2106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2107 | /* |
| 2108 | * We mark the process as running here, but have not actually |
| 2109 | * inserted it onto the runqueue yet. This guarantees that |
| 2110 | * nobody will actually run it, and a signal or other external |
| 2111 | * event cannot wake it up and insert it on the runqueue either. |
| 2112 | */ |
| 2113 | p->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2114 | } |
| 2115 | |
| 2116 | /* |
| 2117 | * fork()/clone()-time setup: |
| 2118 | */ |
| 2119 | void sched_fork(struct task_struct *p, int clone_flags) |
| 2120 | { |
| 2121 | int cpu = get_cpu(); |
| 2122 | |
| 2123 | __sched_fork(p); |
| 2124 | |
| 2125 | #ifdef CONFIG_SMP |
| 2126 | cpu = sched_balance_self(cpu, SD_BALANCE_FORK); |
| 2127 | #endif |
Ingo Molnar | 02e4bac | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 2128 | set_task_cpu(p, cpu); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2129 | |
| 2130 | /* |
| 2131 | * Make sure we do not leak PI boosting priority to the child: |
| 2132 | */ |
| 2133 | p->prio = current->normal_prio; |
Hiroshi Shimamoto | 2ddbf95 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 2134 | if (!rt_prio(p->prio)) |
| 2135 | p->sched_class = &fair_sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2136 | |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2137 | #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2138 | if (likely(sched_info_on())) |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2139 | memset(&p->sched_info, 0, sizeof(p->sched_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2140 | #endif |
Chen, Kenneth W | d6077cb | 2006-02-14 13:53:10 -0800 | [diff] [blame] | 2141 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2142 | p->oncpu = 0; |
| 2143 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2144 | #ifdef CONFIG_PREEMPT |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2145 | /* Want to start with kernel preemption disabled. */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 2146 | task_thread_info(p)->preempt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2147 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2148 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | } |
| 2150 | |
| 2151 | /* |
| 2152 | * wake_up_new_task - wake up a newly created task for the first time. |
| 2153 | * |
| 2154 | * This function will do some initial scheduler statistics housekeeping |
| 2155 | * that must be done for every newly created context, then puts the task |
| 2156 | * on the runqueue and wakes it. |
| 2157 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2158 | 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] | 2159 | { |
| 2160 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2161 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | |
| 2163 | rq = task_rq_lock(p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2164 | BUG_ON(p->state != TASK_RUNNING); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 2165 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | |
| 2167 | p->prio = effective_prio(p); |
| 2168 | |
Srivatsa Vaddagiri | b9dca1e | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2169 | if (!p->sched_class->task_new || !current->se.on_rq) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2170 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2173 | * Let the scheduling class do new task startup |
| 2174 | * management (if any): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2176 | p->sched_class->task_new(rq, p); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 2177 | inc_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2179 | check_preempt_curr(rq, p); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2180 | #ifdef CONFIG_SMP |
| 2181 | if (p->sched_class->task_wake_up) |
| 2182 | p->sched_class->task_wake_up(rq, p); |
| 2183 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2184 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | } |
| 2186 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2187 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2188 | |
| 2189 | /** |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2190 | * preempt_notifier_register - tell me when current is being being preempted & rescheduled |
| 2191 | * @notifier: notifier struct to register |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2192 | */ |
| 2193 | void preempt_notifier_register(struct preempt_notifier *notifier) |
| 2194 | { |
| 2195 | hlist_add_head(¬ifier->link, ¤t->preempt_notifiers); |
| 2196 | } |
| 2197 | EXPORT_SYMBOL_GPL(preempt_notifier_register); |
| 2198 | |
| 2199 | /** |
| 2200 | * preempt_notifier_unregister - no longer interested in preemption notifications |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2201 | * @notifier: notifier struct to unregister |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2202 | * |
| 2203 | * This is safe to call from within a preemption notifier. |
| 2204 | */ |
| 2205 | void preempt_notifier_unregister(struct preempt_notifier *notifier) |
| 2206 | { |
| 2207 | hlist_del(¬ifier->link); |
| 2208 | } |
| 2209 | EXPORT_SYMBOL_GPL(preempt_notifier_unregister); |
| 2210 | |
| 2211 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2212 | { |
| 2213 | struct preempt_notifier *notifier; |
| 2214 | struct hlist_node *node; |
| 2215 | |
| 2216 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2217 | notifier->ops->sched_in(notifier, raw_smp_processor_id()); |
| 2218 | } |
| 2219 | |
| 2220 | static void |
| 2221 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2222 | struct task_struct *next) |
| 2223 | { |
| 2224 | struct preempt_notifier *notifier; |
| 2225 | struct hlist_node *node; |
| 2226 | |
| 2227 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2228 | notifier->ops->sched_out(notifier, next); |
| 2229 | } |
| 2230 | |
| 2231 | #else |
| 2232 | |
| 2233 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2234 | { |
| 2235 | } |
| 2236 | |
| 2237 | static void |
| 2238 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2239 | struct task_struct *next) |
| 2240 | { |
| 2241 | } |
| 2242 | |
| 2243 | #endif |
| 2244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2245 | /** |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2246 | * prepare_task_switch - prepare to switch tasks |
| 2247 | * @rq: the runqueue preparing to switch |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2248 | * @prev: the current task that is being switched out |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2249 | * @next: the task we are going to switch to. |
| 2250 | * |
| 2251 | * This is called with the rq lock held and interrupts off. It must |
| 2252 | * be paired with a subsequent finish_task_switch after the context |
| 2253 | * switch. |
| 2254 | * |
| 2255 | * prepare_task_switch sets up locking and calls architecture specific |
| 2256 | * hooks. |
| 2257 | */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2258 | static inline void |
| 2259 | prepare_task_switch(struct rq *rq, struct task_struct *prev, |
| 2260 | struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2261 | { |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2262 | fire_sched_out_preempt_notifiers(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2263 | prepare_lock_switch(rq, next); |
| 2264 | prepare_arch_switch(next); |
| 2265 | } |
| 2266 | |
| 2267 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | * finish_task_switch - clean up after a task-switch |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 2269 | * @rq: runqueue associated with task-switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | * @prev: the thread we just switched away from. |
| 2271 | * |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2272 | * finish_task_switch must be called after the context switch, paired |
| 2273 | * with a prepare_task_switch call before the context switch. |
| 2274 | * finish_task_switch will reconcile locking set up by prepare_task_switch, |
| 2275 | * and do any other architecture-specific cleanup actions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | * |
| 2277 | * 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] | 2278 | * so, we finish that here outside of the runqueue lock. (Doing it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | * with the lock held can cause deadlocks; see schedule() for |
| 2280 | * details.) |
| 2281 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 2282 | static void finish_task_switch(struct rq *rq, struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | __releases(rq->lock) |
| 2284 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2285 | struct mm_struct *mm = rq->prev_mm; |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2286 | long prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | |
| 2288 | rq->prev_mm = NULL; |
| 2289 | |
| 2290 | /* |
| 2291 | * A task struct has one reference for the use as "current". |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2292 | * 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] | 2293 | * schedule one last time. The schedule call will never return, and |
| 2294 | * the scheduled task must drop that reference. |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2295 | * The test for TASK_DEAD must occur while the runqueue locks are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2296 | * still held, otherwise prev could be scheduled on another cpu, die |
| 2297 | * there before we look at prev->state, and then the reference would |
| 2298 | * be dropped twice. |
| 2299 | * Manfred Spraul <manfred@colorfullife.com> |
| 2300 | */ |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2301 | prev_state = prev->state; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2302 | finish_arch_switch(prev); |
| 2303 | finish_lock_switch(rq, prev); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2304 | #ifdef CONFIG_SMP |
| 2305 | if (current->sched_class->post_schedule) |
| 2306 | current->sched_class->post_schedule(rq); |
| 2307 | #endif |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2308 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2309 | fire_sched_in_preempt_notifiers(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | if (mm) |
| 2311 | mmdrop(mm); |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2312 | if (unlikely(prev_state == TASK_DEAD)) { |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2313 | /* |
| 2314 | * Remove function-return probe instances associated with this |
| 2315 | * task and put them back on the free list. |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2316 | */ |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2317 | kprobe_flush_task(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2318 | put_task_struct(prev); |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2319 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | } |
| 2321 | |
| 2322 | /** |
| 2323 | * schedule_tail - first thing a freshly forked thread must call. |
| 2324 | * @prev: the thread we just switched away from. |
| 2325 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2326 | asmlinkage void schedule_tail(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2327 | __releases(rq->lock) |
| 2328 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2329 | struct rq *rq = this_rq(); |
| 2330 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2331 | finish_task_switch(rq, prev); |
| 2332 | #ifdef __ARCH_WANT_UNLOCKED_CTXSW |
| 2333 | /* In this case, finish_task_switch does not reenable preemption */ |
| 2334 | preempt_enable(); |
| 2335 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2336 | if (current->set_child_tid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2337 | put_user(task_pid_vnr(current), current->set_child_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2338 | } |
| 2339 | |
| 2340 | /* |
| 2341 | * context_switch - switch to the new MM and the new |
| 2342 | * thread's register state. |
| 2343 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2344 | static inline void |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2345 | context_switch(struct rq *rq, struct task_struct *prev, |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2346 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2347 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2348 | struct mm_struct *mm, *oldmm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2350 | prepare_task_switch(rq, prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2351 | mm = next->mm; |
| 2352 | oldmm = prev->active_mm; |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 2353 | /* |
| 2354 | * For paravirt, this is coupled with an exit in switch_to to |
| 2355 | * combine the page table reload and the switch backend into |
| 2356 | * one hypercall. |
| 2357 | */ |
| 2358 | arch_enter_lazy_cpu_mode(); |
| 2359 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2360 | if (unlikely(!mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | next->active_mm = oldmm; |
| 2362 | atomic_inc(&oldmm->mm_count); |
| 2363 | enter_lazy_tlb(oldmm, next); |
| 2364 | } else |
| 2365 | switch_mm(oldmm, mm, next); |
| 2366 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2367 | if (unlikely(!prev->mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | prev->active_mm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2369 | rq->prev_mm = oldmm; |
| 2370 | } |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2371 | /* |
| 2372 | * Since the runqueue lock will be released by the next |
| 2373 | * task (which is an invalid locking op but in the case |
| 2374 | * of the scheduler it's an obvious special-case), so we |
| 2375 | * do an early lockdep release here: |
| 2376 | */ |
| 2377 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 2378 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2379 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
| 2381 | /* Here we just switch the register state and the stack. */ |
| 2382 | switch_to(prev, next, prev); |
| 2383 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2384 | barrier(); |
| 2385 | /* |
| 2386 | * this_rq must be evaluated again because prev may have moved |
| 2387 | * CPUs since it called schedule(), thus the 'rq' on its stack |
| 2388 | * frame will be invalid. |
| 2389 | */ |
| 2390 | finish_task_switch(this_rq(), prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | } |
| 2392 | |
| 2393 | /* |
| 2394 | * nr_running, nr_uninterruptible and nr_context_switches: |
| 2395 | * |
| 2396 | * externally visible scheduler statistics: current number of runnable |
| 2397 | * threads, current number of uninterruptible-sleeping threads, total |
| 2398 | * number of context switches performed since bootup. |
| 2399 | */ |
| 2400 | unsigned long nr_running(void) |
| 2401 | { |
| 2402 | unsigned long i, sum = 0; |
| 2403 | |
| 2404 | for_each_online_cpu(i) |
| 2405 | sum += cpu_rq(i)->nr_running; |
| 2406 | |
| 2407 | return sum; |
| 2408 | } |
| 2409 | |
| 2410 | unsigned long nr_uninterruptible(void) |
| 2411 | { |
| 2412 | unsigned long i, sum = 0; |
| 2413 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2414 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | sum += cpu_rq(i)->nr_uninterruptible; |
| 2416 | |
| 2417 | /* |
| 2418 | * Since we read the counters lockless, it might be slightly |
| 2419 | * inaccurate. Do not allow it to go below zero though: |
| 2420 | */ |
| 2421 | if (unlikely((long)sum < 0)) |
| 2422 | sum = 0; |
| 2423 | |
| 2424 | return sum; |
| 2425 | } |
| 2426 | |
| 2427 | unsigned long long nr_context_switches(void) |
| 2428 | { |
Steven Rostedt | cc94abf | 2006-06-27 02:54:31 -0700 | [diff] [blame] | 2429 | int i; |
| 2430 | unsigned long long sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2432 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2433 | sum += cpu_rq(i)->nr_switches; |
| 2434 | |
| 2435 | return sum; |
| 2436 | } |
| 2437 | |
| 2438 | unsigned long nr_iowait(void) |
| 2439 | { |
| 2440 | unsigned long i, sum = 0; |
| 2441 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2442 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2443 | sum += atomic_read(&cpu_rq(i)->nr_iowait); |
| 2444 | |
| 2445 | return sum; |
| 2446 | } |
| 2447 | |
Jack Steiner | db1b1fe | 2006-03-31 02:31:21 -0800 | [diff] [blame] | 2448 | unsigned long nr_active(void) |
| 2449 | { |
| 2450 | unsigned long i, running = 0, uninterruptible = 0; |
| 2451 | |
| 2452 | for_each_online_cpu(i) { |
| 2453 | running += cpu_rq(i)->nr_running; |
| 2454 | uninterruptible += cpu_rq(i)->nr_uninterruptible; |
| 2455 | } |
| 2456 | |
| 2457 | if (unlikely((long)uninterruptible < 0)) |
| 2458 | uninterruptible = 0; |
| 2459 | |
| 2460 | return running + uninterruptible; |
| 2461 | } |
| 2462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2463 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2464 | * Update rq->cpu_load[] statistics. This function is usually called every |
| 2465 | * scheduler tick (TICK_NSEC). |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2466 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2467 | static void update_cpu_load(struct rq *this_rq) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2468 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 2469 | unsigned long this_load = this_rq->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2470 | int i, scale; |
| 2471 | |
| 2472 | this_rq->nr_load_updates++; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2473 | |
| 2474 | /* Update our load: */ |
| 2475 | for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) { |
| 2476 | unsigned long old_load, new_load; |
| 2477 | |
| 2478 | /* scale is effectively 1 << i now, and >> i divides by scale */ |
| 2479 | |
| 2480 | old_load = this_rq->cpu_load[i]; |
| 2481 | new_load = this_load; |
Ingo Molnar | a25707f | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 2482 | /* |
| 2483 | * Round up the averaging division if load is increasing. This |
| 2484 | * prevents us from getting stuck on 9 if the load is 10, for |
| 2485 | * example. |
| 2486 | */ |
| 2487 | if (new_load > old_load) |
| 2488 | new_load += scale-1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2489 | this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i; |
| 2490 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2491 | } |
| 2492 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2493 | #ifdef CONFIG_SMP |
| 2494 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2495 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | * double_rq_lock - safely lock two runqueues |
| 2497 | * |
| 2498 | * Note this does not disable interrupts like task_rq_lock, |
| 2499 | * you need to do so manually before calling. |
| 2500 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2501 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2502 | __acquires(rq1->lock) |
| 2503 | __acquires(rq2->lock) |
| 2504 | { |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2505 | BUG_ON(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2506 | if (rq1 == rq2) { |
| 2507 | spin_lock(&rq1->lock); |
| 2508 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 2509 | } else { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2510 | if (rq1 < rq2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2511 | spin_lock(&rq1->lock); |
| 2512 | spin_lock(&rq2->lock); |
| 2513 | } else { |
| 2514 | spin_lock(&rq2->lock); |
| 2515 | spin_lock(&rq1->lock); |
| 2516 | } |
| 2517 | } |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2518 | update_rq_clock(rq1); |
| 2519 | update_rq_clock(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2520 | } |
| 2521 | |
| 2522 | /* |
| 2523 | * double_rq_unlock - safely unlock two runqueues |
| 2524 | * |
| 2525 | * Note this does not restore interrupts like task_rq_unlock, |
| 2526 | * you need to do so manually after calling. |
| 2527 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2528 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2529 | __releases(rq1->lock) |
| 2530 | __releases(rq2->lock) |
| 2531 | { |
| 2532 | spin_unlock(&rq1->lock); |
| 2533 | if (rq1 != rq2) |
| 2534 | spin_unlock(&rq2->lock); |
| 2535 | else |
| 2536 | __release(rq2->lock); |
| 2537 | } |
| 2538 | |
| 2539 | /* |
| 2540 | * double_lock_balance - lock the busiest runqueue, this_rq is locked already. |
| 2541 | */ |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2542 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2543 | __releases(this_rq->lock) |
| 2544 | __acquires(busiest->lock) |
| 2545 | __acquires(this_rq->lock) |
| 2546 | { |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2547 | int ret = 0; |
| 2548 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2549 | if (unlikely(!irqs_disabled())) { |
| 2550 | /* printk() doesn't work good under rq->lock */ |
| 2551 | spin_unlock(&this_rq->lock); |
| 2552 | BUG_ON(1); |
| 2553 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2554 | if (unlikely(!spin_trylock(&busiest->lock))) { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2555 | if (busiest < this_rq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2556 | spin_unlock(&this_rq->lock); |
| 2557 | spin_lock(&busiest->lock); |
| 2558 | spin_lock(&this_rq->lock); |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2559 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | } else |
| 2561 | spin_lock(&busiest->lock); |
| 2562 | } |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2563 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | } |
| 2565 | |
| 2566 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | * If dest_cpu is allowed for this process, migrate the task to it. |
| 2568 | * This is accomplished by forcing the cpu_allowed mask to only |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2569 | * allow dest_cpu, which will force the cpu onto dest_cpu. Then |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2570 | * the cpu_allowed mask is restored. |
| 2571 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2572 | static void sched_migrate_task(struct task_struct *p, int dest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2573 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2574 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2576 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | |
| 2578 | rq = task_rq_lock(p, &flags); |
| 2579 | if (!cpu_isset(dest_cpu, p->cpus_allowed) |
| 2580 | || unlikely(cpu_is_offline(dest_cpu))) |
| 2581 | goto out; |
| 2582 | |
| 2583 | /* force the process onto the specified CPU */ |
| 2584 | if (migrate_task(p, dest_cpu, &req)) { |
| 2585 | /* Need to wait for migration thread (might exit: take ref). */ |
| 2586 | struct task_struct *mt = rq->migration_thread; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | get_task_struct(mt); |
| 2589 | task_rq_unlock(rq, &flags); |
| 2590 | wake_up_process(mt); |
| 2591 | put_task_struct(mt); |
| 2592 | wait_for_completion(&req.done); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2593 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2594 | return; |
| 2595 | } |
| 2596 | out: |
| 2597 | task_rq_unlock(rq, &flags); |
| 2598 | } |
| 2599 | |
| 2600 | /* |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2601 | * sched_exec - execve() is a valuable balancing opportunity, because at |
| 2602 | * this point the task has the smallest effective memory and cache footprint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2603 | */ |
| 2604 | void sched_exec(void) |
| 2605 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | int new_cpu, this_cpu = get_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2607 | new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2608 | put_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2609 | if (new_cpu != this_cpu) |
| 2610 | sched_migrate_task(current, new_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | /* |
| 2614 | * pull_task - move a task from a remote runqueue to the local runqueue. |
| 2615 | * Both runqueues must be locked. |
| 2616 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2617 | static void pull_task(struct rq *src_rq, struct task_struct *p, |
| 2618 | struct rq *this_rq, int this_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2619 | { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2620 | deactivate_task(src_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | set_task_cpu(p, this_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2622 | activate_task(this_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2623 | /* |
| 2624 | * Note that idle threads have a prio of MAX_PRIO, for this test |
| 2625 | * to be always true for them. |
| 2626 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2627 | check_preempt_curr(this_rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2628 | } |
| 2629 | |
| 2630 | /* |
| 2631 | * can_migrate_task - may task p from runqueue rq be migrated to this_cpu? |
| 2632 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 2633 | static |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2634 | 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] | 2635 | struct sched_domain *sd, enum cpu_idle_type idle, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 2636 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | { |
| 2638 | /* |
| 2639 | * We do not migrate tasks that are: |
| 2640 | * 1) running (obviously), or |
| 2641 | * 2) cannot be migrated to this CPU due to cpus_allowed, or |
| 2642 | * 3) are cache-hot on their current CPU. |
| 2643 | */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2644 | if (!cpu_isset(this_cpu, p->cpus_allowed)) { |
| 2645 | schedstat_inc(p, se.nr_failed_migrations_affine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2646 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2647 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2648 | *all_pinned = 0; |
| 2649 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2650 | if (task_running(rq, p)) { |
| 2651 | schedstat_inc(p, se.nr_failed_migrations_running); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2652 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2653 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2655 | /* |
| 2656 | * Aggressive migration if: |
| 2657 | * 1) task is cache cold, or |
| 2658 | * 2) too many balance attempts have failed. |
| 2659 | */ |
| 2660 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2661 | if (!task_hot(p, rq->clock, sd) || |
| 2662 | sd->nr_balance_failed > sd->cache_nice_tries) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2663 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2664 | if (task_hot(p, rq->clock, sd)) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2665 | schedstat_inc(sd, lb_hot_gained[idle]); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2666 | schedstat_inc(p, se.nr_forced_migrations); |
| 2667 | } |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2668 | #endif |
| 2669 | return 1; |
| 2670 | } |
| 2671 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2672 | if (task_hot(p, rq->clock, sd)) { |
| 2673 | schedstat_inc(p, se.nr_failed_migrations_hot); |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2674 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2675 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2676 | return 1; |
| 2677 | } |
| 2678 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2679 | static unsigned long |
| 2680 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2681 | unsigned long max_load_move, struct sched_domain *sd, |
| 2682 | enum cpu_idle_type idle, int *all_pinned, |
| 2683 | int *this_best_prio, struct rq_iterator *iterator) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2684 | { |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2685 | int loops = 0, pulled = 0, pinned = 0, skip_for_load; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2686 | struct task_struct *p; |
| 2687 | long rem_load_move = max_load_move; |
| 2688 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2689 | if (max_load_move == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2690 | goto out; |
| 2691 | |
| 2692 | pinned = 1; |
| 2693 | |
| 2694 | /* |
| 2695 | * Start the load-balancing iterator: |
| 2696 | */ |
| 2697 | p = iterator->start(iterator->arg); |
| 2698 | next: |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2699 | if (!p || loops++ > sysctl_sched_nr_migrate) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2700 | goto out; |
| 2701 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2702 | * To help distribute high priority tasks across CPUs we don't |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2703 | * skip a task if it will be the highest priority task (i.e. smallest |
| 2704 | * prio value) on its new queue regardless of its load weight |
| 2705 | */ |
| 2706 | skip_for_load = (p->se.load.weight >> 1) > rem_load_move + |
| 2707 | SCHED_LOAD_SCALE_FUZZ; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2708 | if ((skip_for_load && p->prio >= *this_best_prio) || |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2709 | !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2710 | p = iterator->next(iterator->arg); |
| 2711 | goto next; |
| 2712 | } |
| 2713 | |
| 2714 | pull_task(busiest, p, this_rq, this_cpu); |
| 2715 | pulled++; |
| 2716 | rem_load_move -= p->se.load.weight; |
| 2717 | |
| 2718 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2719 | * 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] | 2720 | */ |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2721 | if (rem_load_move > 0) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2722 | if (p->prio < *this_best_prio) |
| 2723 | *this_best_prio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2724 | p = iterator->next(iterator->arg); |
| 2725 | goto next; |
| 2726 | } |
| 2727 | out: |
| 2728 | /* |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2729 | * 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] | 2730 | * so we can safely collect pull_task() stats here rather than |
| 2731 | * inside pull_task(). |
| 2732 | */ |
| 2733 | schedstat_add(sd, lb_gained[idle], pulled); |
| 2734 | |
| 2735 | if (all_pinned) |
| 2736 | *all_pinned = pinned; |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2737 | |
| 2738 | return max_load_move - rem_load_move; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2739 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2740 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | /* |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2742 | * move_tasks tries to move up to max_load_move weighted load from busiest to |
| 2743 | * this_rq, as part of a balancing operation within domain "sd". |
| 2744 | * Returns 1 if successful and 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2745 | * |
| 2746 | * Called with both runqueues locked. |
| 2747 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2748 | 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] | 2749 | unsigned long max_load_move, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2750 | struct sched_domain *sd, enum cpu_idle_type idle, |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2751 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2752 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2753 | const struct sched_class *class = sched_class_highest; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2754 | unsigned long total_load_moved = 0; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2755 | int this_best_prio = this_rq->curr->prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2756 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2757 | do { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2758 | total_load_moved += |
| 2759 | class->load_balance(this_rq, this_cpu, busiest, |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2760 | max_load_move - total_load_moved, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2761 | sd, idle, all_pinned, &this_best_prio); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2762 | class = class->next; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2763 | } while (class && max_load_move > total_load_moved); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2764 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2765 | return total_load_moved > 0; |
| 2766 | } |
| 2767 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2768 | static int |
| 2769 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2770 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 2771 | struct rq_iterator *iterator) |
| 2772 | { |
| 2773 | struct task_struct *p = iterator->start(iterator->arg); |
| 2774 | int pinned = 0; |
| 2775 | |
| 2776 | while (p) { |
| 2777 | if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
| 2778 | pull_task(busiest, p, this_rq, this_cpu); |
| 2779 | /* |
| 2780 | * Right now, this is only the second place pull_task() |
| 2781 | * is called, so we can safely collect pull_task() |
| 2782 | * stats here rather than inside pull_task(). |
| 2783 | */ |
| 2784 | schedstat_inc(sd, lb_gained[idle]); |
| 2785 | |
| 2786 | return 1; |
| 2787 | } |
| 2788 | p = iterator->next(iterator->arg); |
| 2789 | } |
| 2790 | |
| 2791 | return 0; |
| 2792 | } |
| 2793 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2794 | /* |
| 2795 | * move_one_task tries to move exactly one task from busiest to this_rq, as |
| 2796 | * part of active balancing operations within "domain". |
| 2797 | * Returns 1 if successful and 0 otherwise. |
| 2798 | * |
| 2799 | * Called with both runqueues locked. |
| 2800 | */ |
| 2801 | static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2802 | struct sched_domain *sd, enum cpu_idle_type idle) |
| 2803 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2804 | const struct sched_class *class; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2805 | |
| 2806 | for (class = sched_class_highest; class; class = class->next) |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2807 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2808 | return 1; |
| 2809 | |
| 2810 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2811 | } |
| 2812 | |
| 2813 | /* |
| 2814 | * find_busiest_group finds and returns the busiest CPU group within the |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2815 | * domain. It calculates and returns the amount of weighted load which |
| 2816 | * should be moved to restore balance via the imbalance parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2817 | */ |
| 2818 | static struct sched_group * |
| 2819 | find_busiest_group(struct sched_domain *sd, int this_cpu, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2820 | unsigned long *imbalance, enum cpu_idle_type idle, |
| 2821 | int *sd_idle, cpumask_t *cpus, int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2822 | { |
| 2823 | struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups; |
| 2824 | 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] | 2825 | unsigned long max_pull; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2826 | unsigned long busiest_load_per_task, busiest_nr_running; |
| 2827 | unsigned long this_load_per_task, this_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2828 | int load_idx, group_imb = 0; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2829 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2830 | int power_savings_balance = 1; |
| 2831 | unsigned long leader_nr_running = 0, min_load_per_task = 0; |
| 2832 | unsigned long min_nr_running = ULONG_MAX; |
| 2833 | struct sched_group *group_min = NULL, *group_leader = NULL; |
| 2834 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | |
| 2836 | max_load = this_load = total_load = total_pwr = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2837 | busiest_load_per_task = busiest_nr_running = 0; |
| 2838 | this_load_per_task = this_nr_running = 0; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2839 | if (idle == CPU_NOT_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2840 | load_idx = sd->busy_idx; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2841 | else if (idle == CPU_NEWLY_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2842 | load_idx = sd->newidle_idx; |
| 2843 | else |
| 2844 | load_idx = sd->idle_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | |
| 2846 | do { |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2847 | unsigned long load, group_capacity, max_cpu_load, min_cpu_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | int local_group; |
| 2849 | int i; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2850 | int __group_imb = 0; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2851 | unsigned int balance_cpu = -1, first_idle_cpu = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2852 | unsigned long sum_nr_running, sum_weighted_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2853 | |
| 2854 | local_group = cpu_isset(this_cpu, group->cpumask); |
| 2855 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2856 | if (local_group) |
| 2857 | balance_cpu = first_cpu(group->cpumask); |
| 2858 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2859 | /* Tally up the load of all CPUs in the group */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2860 | sum_weighted_load = sum_nr_running = avg_load = 0; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2861 | max_cpu_load = 0; |
| 2862 | min_cpu_load = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | |
| 2864 | for_each_cpu_mask(i, group->cpumask) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2865 | struct rq *rq; |
| 2866 | |
| 2867 | if (!cpu_isset(i, *cpus)) |
| 2868 | continue; |
| 2869 | |
| 2870 | rq = cpu_rq(i); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2871 | |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2872 | if (*sd_idle && rq->nr_running) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 2873 | *sd_idle = 0; |
| 2874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2875 | /* Bias balancing toward cpus of our domain */ |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2876 | if (local_group) { |
| 2877 | if (idle_cpu(i) && !first_idle_cpu) { |
| 2878 | first_idle_cpu = 1; |
| 2879 | balance_cpu = i; |
| 2880 | } |
| 2881 | |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2882 | load = target_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2883 | } else { |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2884 | load = source_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2885 | if (load > max_cpu_load) |
| 2886 | max_cpu_load = load; |
| 2887 | if (min_cpu_load > load) |
| 2888 | min_cpu_load = load; |
| 2889 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | |
| 2891 | avg_load += load; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2892 | sum_nr_running += rq->nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2893 | sum_weighted_load += weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | } |
| 2895 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2896 | /* |
| 2897 | * First idle cpu or the first cpu(busiest) in this sched group |
| 2898 | * is eligible for doing load balancing at this and above |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2899 | * domains. In the newly idle case, we will allow all the cpu's |
| 2900 | * to do the newly idle load balance. |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2901 | */ |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2902 | if (idle != CPU_NEWLY_IDLE && local_group && |
| 2903 | balance_cpu != this_cpu && balance) { |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2904 | *balance = 0; |
| 2905 | goto ret; |
| 2906 | } |
| 2907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2908 | total_load += avg_load; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2909 | total_pwr += group->__cpu_power; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2910 | |
| 2911 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2912 | avg_load = sg_div_cpu_power(group, |
| 2913 | avg_load * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2915 | if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE) |
| 2916 | __group_imb = 1; |
| 2917 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 2918 | group_capacity = group->__cpu_power / SCHED_LOAD_SCALE; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2920 | if (local_group) { |
| 2921 | this_load = avg_load; |
| 2922 | this = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2923 | this_nr_running = sum_nr_running; |
| 2924 | this_load_per_task = sum_weighted_load; |
| 2925 | } else if (avg_load > max_load && |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2926 | (sum_nr_running > group_capacity || __group_imb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | max_load = avg_load; |
| 2928 | busiest = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2929 | busiest_nr_running = sum_nr_running; |
| 2930 | busiest_load_per_task = sum_weighted_load; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2931 | group_imb = __group_imb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2932 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2933 | |
| 2934 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2935 | /* |
| 2936 | * Busy processors will not participate in power savings |
| 2937 | * balance. |
| 2938 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2939 | if (idle == CPU_NOT_IDLE || |
| 2940 | !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
| 2941 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2942 | |
| 2943 | /* |
| 2944 | * If the local group is idle or completely loaded |
| 2945 | * no need to do power savings balance at this domain |
| 2946 | */ |
| 2947 | if (local_group && (this_nr_running >= group_capacity || |
| 2948 | !this_nr_running)) |
| 2949 | power_savings_balance = 0; |
| 2950 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2951 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2952 | * If a group is already running at full capacity or idle, |
| 2953 | * don't include that group in power savings calculations |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2954 | */ |
| 2955 | if (!power_savings_balance || sum_nr_running >= group_capacity |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2956 | || !sum_nr_running) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2957 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2958 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2959 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2960 | * Calculate the group which has the least non-idle load. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2961 | * This is the group from where we need to pick up the load |
| 2962 | * for saving power |
| 2963 | */ |
| 2964 | if ((sum_nr_running < min_nr_running) || |
| 2965 | (sum_nr_running == min_nr_running && |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2966 | first_cpu(group->cpumask) < |
| 2967 | first_cpu(group_min->cpumask))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2968 | group_min = group; |
| 2969 | min_nr_running = sum_nr_running; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2970 | min_load_per_task = sum_weighted_load / |
| 2971 | sum_nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2972 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2973 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2974 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2975 | * Calculate the group which is almost near its |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2976 | * capacity but still has some space to pick up some load |
| 2977 | * from other group and save more power |
| 2978 | */ |
| 2979 | if (sum_nr_running <= group_capacity - 1) { |
| 2980 | if (sum_nr_running > leader_nr_running || |
| 2981 | (sum_nr_running == leader_nr_running && |
| 2982 | first_cpu(group->cpumask) > |
| 2983 | first_cpu(group_leader->cpumask))) { |
| 2984 | group_leader = group; |
| 2985 | leader_nr_running = sum_nr_running; |
| 2986 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2987 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2988 | group_next: |
| 2989 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2990 | group = group->next; |
| 2991 | } while (group != sd->groups); |
| 2992 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2993 | if (!busiest || this_load >= max_load || busiest_nr_running == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | goto out_balanced; |
| 2995 | |
| 2996 | avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr; |
| 2997 | |
| 2998 | if (this_load >= avg_load || |
| 2999 | 100*max_load <= sd->imbalance_pct*this_load) |
| 3000 | goto out_balanced; |
| 3001 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3002 | busiest_load_per_task /= busiest_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 3003 | if (group_imb) |
| 3004 | busiest_load_per_task = min(busiest_load_per_task, avg_load); |
| 3005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3006 | /* |
| 3007 | * We're trying to get all the cpus to the average_load, so we don't |
| 3008 | * want to push ourselves above the average load, nor do we wish to |
| 3009 | * reduce the max loaded cpu below the average load, as either of these |
| 3010 | * actions would just result in more rebalancing later, and ping-pong |
| 3011 | * tasks around. Thus we look for the minimum possible imbalance. |
| 3012 | * Negative imbalances (*we* are more loaded than anyone else) will |
| 3013 | * 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] | 3014 | * 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] | 3015 | * appear as very large values with unsigned longs. |
| 3016 | */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3017 | if (max_load <= busiest_load_per_task) |
| 3018 | goto out_balanced; |
| 3019 | |
| 3020 | /* |
| 3021 | * In the presence of smp nice balancing, certain scenarios can have |
| 3022 | * max load less than avg load(as we skip the groups at or below |
| 3023 | * its cpu_power, while calculating max_load..) |
| 3024 | */ |
| 3025 | if (max_load < avg_load) { |
| 3026 | *imbalance = 0; |
| 3027 | goto small_imbalance; |
| 3028 | } |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3029 | |
| 3030 | /* 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] | 3031 | 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] | 3032 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3033 | /* How much load to actually move to equalise the imbalance */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3034 | *imbalance = min(max_pull * busiest->__cpu_power, |
| 3035 | (avg_load - this_load) * this->__cpu_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | / SCHED_LOAD_SCALE; |
| 3037 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3038 | /* |
| 3039 | * if *imbalance is less than the average load per runnable task |
| 3040 | * there is no gaurantee that any tasks will be moved so we'll have |
| 3041 | * a think about bumping its value to force at least one task to be |
| 3042 | * moved |
| 3043 | */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 3044 | if (*imbalance < busiest_load_per_task) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3045 | unsigned long tmp, pwr_now, pwr_move; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3046 | unsigned int imbn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3047 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3048 | small_imbalance: |
| 3049 | pwr_move = pwr_now = 0; |
| 3050 | imbn = 2; |
| 3051 | if (this_nr_running) { |
| 3052 | this_load_per_task /= this_nr_running; |
| 3053 | if (busiest_load_per_task > this_load_per_task) |
| 3054 | imbn = 1; |
| 3055 | } else |
| 3056 | this_load_per_task = SCHED_LOAD_SCALE; |
| 3057 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3058 | if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >= |
| 3059 | busiest_load_per_task * imbn) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3060 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3061 | return busiest; |
| 3062 | } |
| 3063 | |
| 3064 | /* |
| 3065 | * OK, we don't have enough imbalance to justify moving tasks, |
| 3066 | * however we may be able to increase total CPU power used by |
| 3067 | * moving them. |
| 3068 | */ |
| 3069 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3070 | pwr_now += busiest->__cpu_power * |
| 3071 | min(busiest_load_per_task, max_load); |
| 3072 | pwr_now += this->__cpu_power * |
| 3073 | min(this_load_per_task, this_load); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | pwr_now /= SCHED_LOAD_SCALE; |
| 3075 | |
| 3076 | /* Amount of load we'd subtract */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3077 | tmp = sg_div_cpu_power(busiest, |
| 3078 | busiest_load_per_task * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3079 | if (max_load > tmp) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3080 | pwr_move += busiest->__cpu_power * |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3081 | min(busiest_load_per_task, max_load - tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | |
| 3083 | /* Amount of load we'd add */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3084 | if (max_load * busiest->__cpu_power < |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 3085 | busiest_load_per_task * SCHED_LOAD_SCALE) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3086 | tmp = sg_div_cpu_power(this, |
| 3087 | max_load * busiest->__cpu_power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | else |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3089 | tmp = sg_div_cpu_power(this, |
| 3090 | busiest_load_per_task * SCHED_LOAD_SCALE); |
| 3091 | pwr_move += this->__cpu_power * |
| 3092 | min(this_load_per_task, this_load + tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | pwr_move /= SCHED_LOAD_SCALE; |
| 3094 | |
| 3095 | /* Move if we gain throughput */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 3096 | if (pwr_move > pwr_now) |
| 3097 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | } |
| 3099 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3100 | return busiest; |
| 3101 | |
| 3102 | out_balanced: |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3103 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3104 | if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3105 | goto ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3107 | if (this == group_leader && group_leader != group_min) { |
| 3108 | *imbalance = min_load_per_task; |
| 3109 | return group_min; |
| 3110 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3111 | #endif |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3112 | ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3113 | *imbalance = 0; |
| 3114 | return NULL; |
| 3115 | } |
| 3116 | |
| 3117 | /* |
| 3118 | * find_busiest_queue - find the busiest runqueue among the cpus in group. |
| 3119 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3120 | static struct rq * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3121 | find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3122 | unsigned long imbalance, cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3124 | struct rq *busiest = NULL, *rq; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3125 | unsigned long max_load = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | int i; |
| 3127 | |
| 3128 | for_each_cpu_mask(i, group->cpumask) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3129 | unsigned long wl; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3130 | |
| 3131 | if (!cpu_isset(i, *cpus)) |
| 3132 | continue; |
| 3133 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3134 | rq = cpu_rq(i); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3135 | wl = weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3137 | if (rq->nr_running == 1 && wl > imbalance) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3138 | continue; |
| 3139 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3140 | if (wl > max_load) { |
| 3141 | max_load = wl; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3142 | busiest = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3143 | } |
| 3144 | } |
| 3145 | |
| 3146 | return busiest; |
| 3147 | } |
| 3148 | |
| 3149 | /* |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3150 | * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but |
| 3151 | * so long as it is large enough. |
| 3152 | */ |
| 3153 | #define MAX_PINNED_INTERVAL 512 |
| 3154 | |
| 3155 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3156 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3157 | * tasks if there is an imbalance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3158 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3159 | static int load_balance(int this_cpu, struct rq *this_rq, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3160 | struct sched_domain *sd, enum cpu_idle_type idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3161 | int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3162 | { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3163 | int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3164 | struct sched_group *group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | unsigned long imbalance; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3166 | struct rq *busiest; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3167 | cpumask_t cpus = CPU_MASK_ALL; |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3168 | unsigned long flags; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3169 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3170 | /* |
| 3171 | * When power savings policy is enabled for the parent domain, idle |
| 3172 | * sibling can pick up load irrespective of busy siblings. In this case, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3173 | * 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] | 3174 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3175 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3176 | if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3177 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3178 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3179 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3180 | schedstat_inc(sd, lb_count[idle]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3182 | redo: |
| 3183 | group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3184 | &cpus, balance); |
| 3185 | |
Chen, Kenneth W | 0606671 | 2006-12-10 02:20:35 -0800 | [diff] [blame] | 3186 | if (*balance == 0) |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3187 | goto out_balanced; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3189 | if (!group) { |
| 3190 | schedstat_inc(sd, lb_nobusyg[idle]); |
| 3191 | goto out_balanced; |
| 3192 | } |
| 3193 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3194 | busiest = find_busiest_queue(group, idle, imbalance, &cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3195 | if (!busiest) { |
| 3196 | schedstat_inc(sd, lb_nobusyq[idle]); |
| 3197 | goto out_balanced; |
| 3198 | } |
| 3199 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3200 | BUG_ON(busiest == this_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3201 | |
| 3202 | schedstat_add(sd, lb_imbalance[idle], imbalance); |
| 3203 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3204 | ld_moved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | if (busiest->nr_running > 1) { |
| 3206 | /* |
| 3207 | * Attempt to move tasks. If find_busiest_group has found |
| 3208 | * an imbalance but busiest->nr_running <= 1, the group is |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3209 | * still unbalanced. ld_moved simply stays zero, so it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | * correctly treated as an imbalance. |
| 3211 | */ |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3212 | local_irq_save(flags); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3213 | double_rq_lock(this_rq, busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3214 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3215 | imbalance, sd, idle, &all_pinned); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3216 | double_rq_unlock(this_rq, busiest); |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3217 | local_irq_restore(flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3218 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3219 | /* |
| 3220 | * some other cpu did the load balance for us. |
| 3221 | */ |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3222 | if (ld_moved && this_cpu != smp_processor_id()) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3223 | resched_cpu(this_cpu); |
| 3224 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3225 | /* All tasks on this runqueue were pinned by CPU affinity */ |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3226 | if (unlikely(all_pinned)) { |
| 3227 | cpu_clear(cpu_of(busiest), cpus); |
| 3228 | if (!cpus_empty(cpus)) |
| 3229 | goto redo; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3230 | goto out_balanced; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3231 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3232 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3233 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3234 | if (!ld_moved) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | schedstat_inc(sd, lb_failed[idle]); |
| 3236 | sd->nr_balance_failed++; |
| 3237 | |
| 3238 | if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3239 | |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3240 | spin_lock_irqsave(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3241 | |
| 3242 | /* don't kick the migration_thread, if the curr |
| 3243 | * task on busiest cpu can't be moved to this_cpu |
| 3244 | */ |
| 3245 | if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) { |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3246 | spin_unlock_irqrestore(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3247 | all_pinned = 1; |
| 3248 | goto out_one_pinned; |
| 3249 | } |
| 3250 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3251 | if (!busiest->active_balance) { |
| 3252 | busiest->active_balance = 1; |
| 3253 | busiest->push_cpu = this_cpu; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3254 | active_balance = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3255 | } |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3256 | spin_unlock_irqrestore(&busiest->lock, flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3257 | if (active_balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | wake_up_process(busiest->migration_thread); |
| 3259 | |
| 3260 | /* |
| 3261 | * We've kicked active balancing, reset the failure |
| 3262 | * counter. |
| 3263 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3264 | sd->nr_balance_failed = sd->cache_nice_tries+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3265 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3266 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 | sd->nr_balance_failed = 0; |
| 3268 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3269 | if (likely(!active_balance)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3270 | /* We were unbalanced, so reset the balancing interval */ |
| 3271 | sd->balance_interval = sd->min_interval; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3272 | } else { |
| 3273 | /* |
| 3274 | * If we've begun active balancing, start to back off. This |
| 3275 | * case may not be covered by the all_pinned logic if there |
| 3276 | * is only 1 task on the busy runqueue (because we don't call |
| 3277 | * move_tasks). |
| 3278 | */ |
| 3279 | if (sd->balance_interval < sd->max_interval) |
| 3280 | sd->balance_interval *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3281 | } |
| 3282 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3283 | if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3284 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3285 | return -1; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3286 | return ld_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3287 | |
| 3288 | out_balanced: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | schedstat_inc(sd, lb_balanced[idle]); |
| 3290 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3291 | sd->nr_balance_failed = 0; |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3292 | |
| 3293 | out_one_pinned: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | /* tune up the balancing interval */ |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3295 | if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) || |
| 3296 | (sd->balance_interval < sd->max_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3297 | sd->balance_interval *= 2; |
| 3298 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3299 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3300 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3301 | return -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 | return 0; |
| 3303 | } |
| 3304 | |
| 3305 | /* |
| 3306 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3307 | * tasks if there is an imbalance. |
| 3308 | * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3309 | * 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] | 3310 | * this_rq is locked. |
| 3311 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3312 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3313 | 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] | 3314 | { |
| 3315 | struct sched_group *group; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3316 | struct rq *busiest = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3317 | unsigned long imbalance; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3318 | int ld_moved = 0; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3319 | int sd_idle = 0; |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3320 | int all_pinned = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3321 | cpumask_t cpus = CPU_MASK_ALL; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3322 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3323 | /* |
| 3324 | * When power savings policy is enabled for the parent domain, idle |
| 3325 | * sibling can pick up load irrespective of busy siblings. In this case, |
| 3326 | * let the state of idle sibling percolate up as IDLE, instead of |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3327 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3328 | */ |
| 3329 | if (sd->flags & SD_SHARE_CPUPOWER && |
| 3330 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3331 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3333 | schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3334 | redo: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3335 | group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE, |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3336 | &sd_idle, &cpus, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | if (!group) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3338 | schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3339 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | } |
| 3341 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3342 | busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3343 | &cpus); |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3344 | if (!busiest) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3345 | schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3346 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | } |
| 3348 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3349 | BUG_ON(busiest == this_rq); |
| 3350 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3351 | schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3352 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3353 | ld_moved = 0; |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3354 | if (busiest->nr_running > 1) { |
| 3355 | /* Attempt to move tasks */ |
| 3356 | double_lock_balance(this_rq, busiest); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3357 | /* this_rq->clock is already updated */ |
| 3358 | update_rq_clock(busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3359 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3360 | imbalance, sd, CPU_NEWLY_IDLE, |
| 3361 | &all_pinned); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3362 | spin_unlock(&busiest->lock); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3363 | |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3364 | if (unlikely(all_pinned)) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3365 | cpu_clear(cpu_of(busiest), cpus); |
| 3366 | if (!cpus_empty(cpus)) |
| 3367 | goto redo; |
| 3368 | } |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3369 | } |
| 3370 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3371 | if (!ld_moved) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3372 | schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3373 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
| 3374 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3375 | return -1; |
| 3376 | } else |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3377 | sd->nr_balance_failed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3378 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3379 | return ld_moved; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3380 | |
| 3381 | out_balanced: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3382 | schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3383 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3384 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3385 | return -1; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3386 | sd->nr_balance_failed = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3387 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3388 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3389 | } |
| 3390 | |
| 3391 | /* |
| 3392 | * idle_balance is called by schedule() if this_cpu is about to become |
| 3393 | * idle. Attempts to pull tasks from other CPUs. |
| 3394 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3395 | static void idle_balance(int this_cpu, struct rq *this_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3396 | { |
| 3397 | struct sched_domain *sd; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3398 | int pulled_task = -1; |
| 3399 | unsigned long next_balance = jiffies + HZ; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3400 | |
| 3401 | for_each_domain(this_cpu, sd) { |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3402 | unsigned long interval; |
| 3403 | |
| 3404 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3405 | continue; |
| 3406 | |
| 3407 | if (sd->flags & SD_BALANCE_NEWIDLE) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3408 | /* If we've pulled tasks over stop searching: */ |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3409 | pulled_task = load_balance_newidle(this_cpu, |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3410 | this_rq, sd); |
| 3411 | |
| 3412 | interval = msecs_to_jiffies(sd->balance_interval); |
| 3413 | if (time_after(next_balance, sd->last_balance + interval)) |
| 3414 | next_balance = sd->last_balance + interval; |
| 3415 | if (pulled_task) |
| 3416 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3418 | if (pulled_task || time_after(jiffies, this_rq->next_balance)) { |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3419 | /* |
| 3420 | * We are going idle. next_balance may be set based on |
| 3421 | * a busy processor. So reset next_balance. |
| 3422 | */ |
| 3423 | this_rq->next_balance = next_balance; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3424 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3425 | } |
| 3426 | |
| 3427 | /* |
| 3428 | * active_load_balance is run by migration threads. It pushes running tasks |
| 3429 | * off the busiest CPU onto idle CPUs. It requires at least 1 task to be |
| 3430 | * running on each physical CPU where possible, and avoids physical / |
| 3431 | * logical imbalances. |
| 3432 | * |
| 3433 | * Called with busiest_rq locked. |
| 3434 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3435 | static void active_load_balance(struct rq *busiest_rq, int busiest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3436 | { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3437 | int target_cpu = busiest_rq->push_cpu; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3438 | struct sched_domain *sd; |
| 3439 | struct rq *target_rq; |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3440 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3441 | /* Is there any task to move? */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3442 | if (busiest_rq->nr_running <= 1) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3443 | return; |
| 3444 | |
| 3445 | target_rq = cpu_rq(target_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3446 | |
| 3447 | /* |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3448 | * This condition is "impossible", if it occurs |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3449 | * we need to fix it. Originally reported by |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3450 | * Bjorn Helgaas on a 128-cpu setup. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3452 | BUG_ON(busiest_rq == target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3454 | /* move a task from busiest_rq to target_rq */ |
| 3455 | double_lock_balance(busiest_rq, target_rq); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3456 | update_rq_clock(busiest_rq); |
| 3457 | update_rq_clock(target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3458 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3459 | /* Search for an sd spanning us and the target CPU. */ |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3460 | for_each_domain(target_cpu, sd) { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3461 | if ((sd->flags & SD_LOAD_BALANCE) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3462 | cpu_isset(busiest_cpu, sd->span)) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3463 | break; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3464 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3465 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3466 | if (likely(sd)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3467 | schedstat_inc(sd, alb_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3468 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3469 | if (move_one_task(target_rq, target_cpu, busiest_rq, |
| 3470 | sd, CPU_IDLE)) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3471 | schedstat_inc(sd, alb_pushed); |
| 3472 | else |
| 3473 | schedstat_inc(sd, alb_failed); |
| 3474 | } |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3475 | spin_unlock(&target_rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3476 | } |
| 3477 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3478 | #ifdef CONFIG_NO_HZ |
| 3479 | static struct { |
| 3480 | atomic_t load_balancer; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3481 | cpumask_t cpu_mask; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3482 | } nohz ____cacheline_aligned = { |
| 3483 | .load_balancer = ATOMIC_INIT(-1), |
| 3484 | .cpu_mask = CPU_MASK_NONE, |
| 3485 | }; |
| 3486 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3487 | /* |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3488 | * This routine will try to nominate the ilb (idle load balancing) |
| 3489 | * owner among the cpus whose ticks are stopped. ilb owner will do the idle |
| 3490 | * load balancing on behalf of all those cpus. If all the cpus in the system |
| 3491 | * go into this tickless mode, then there will be no ilb owner (as there is |
| 3492 | * no need for one) and all the cpus will sleep till the next wakeup event |
| 3493 | * arrives... |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3494 | * |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3495 | * For the ilb owner, tick is not stopped. And this tick will be used |
| 3496 | * for idle load balancing. ilb owner will still be part of |
| 3497 | * nohz.cpu_mask.. |
| 3498 | * |
| 3499 | * While stopping the tick, this cpu will become the ilb owner if there |
| 3500 | * is no other owner. And will be the owner till that cpu becomes busy |
| 3501 | * or if all cpus in the system stop their ticks at which point |
| 3502 | * there is no need for ilb owner. |
| 3503 | * |
| 3504 | * When the ilb owner becomes busy, it nominates another owner, during the |
| 3505 | * next busy scheduler_tick() |
| 3506 | */ |
| 3507 | int select_nohz_load_balancer(int stop_tick) |
| 3508 | { |
| 3509 | int cpu = smp_processor_id(); |
| 3510 | |
| 3511 | if (stop_tick) { |
| 3512 | cpu_set(cpu, nohz.cpu_mask); |
| 3513 | cpu_rq(cpu)->in_nohz_recently = 1; |
| 3514 | |
| 3515 | /* |
| 3516 | * If we are going offline and still the leader, give up! |
| 3517 | */ |
| 3518 | if (cpu_is_offline(cpu) && |
| 3519 | atomic_read(&nohz.load_balancer) == cpu) { |
| 3520 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3521 | BUG(); |
| 3522 | return 0; |
| 3523 | } |
| 3524 | |
| 3525 | /* time for ilb owner also to sleep */ |
| 3526 | if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3527 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3528 | atomic_set(&nohz.load_balancer, -1); |
| 3529 | return 0; |
| 3530 | } |
| 3531 | |
| 3532 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3533 | /* make me the ilb owner */ |
| 3534 | if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1) |
| 3535 | return 1; |
| 3536 | } else if (atomic_read(&nohz.load_balancer) == cpu) |
| 3537 | return 1; |
| 3538 | } else { |
| 3539 | if (!cpu_isset(cpu, nohz.cpu_mask)) |
| 3540 | return 0; |
| 3541 | |
| 3542 | cpu_clear(cpu, nohz.cpu_mask); |
| 3543 | |
| 3544 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3545 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3546 | BUG(); |
| 3547 | } |
| 3548 | return 0; |
| 3549 | } |
| 3550 | #endif |
| 3551 | |
| 3552 | static DEFINE_SPINLOCK(balancing); |
| 3553 | |
| 3554 | /* |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3555 | * It checks each scheduling domain to see if it is due to be balanced, |
| 3556 | * and initiates a balancing operation if so. |
| 3557 | * |
| 3558 | * Balancing parameters are set up in arch_init_sched_domains. |
| 3559 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3560 | static void rebalance_domains(int cpu, enum cpu_idle_type idle) |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3561 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3562 | int balance = 1; |
| 3563 | struct rq *rq = cpu_rq(cpu); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3564 | unsigned long interval; |
| 3565 | struct sched_domain *sd; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3566 | /* Earliest time when we have to do rebalance again */ |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3567 | unsigned long next_balance = jiffies + 60*HZ; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3568 | int update_next_balance = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3569 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3570 | for_each_domain(cpu, sd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3571 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3572 | continue; |
| 3573 | |
| 3574 | interval = sd->balance_interval; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3575 | if (idle != CPU_IDLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3576 | interval *= sd->busy_factor; |
| 3577 | |
| 3578 | /* scale ms to jiffies */ |
| 3579 | interval = msecs_to_jiffies(interval); |
| 3580 | if (unlikely(!interval)) |
| 3581 | interval = 1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3582 | if (interval > HZ*NR_CPUS/10) |
| 3583 | interval = HZ*NR_CPUS/10; |
| 3584 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3586 | if (sd->flags & SD_SERIALIZE) { |
| 3587 | if (!spin_trylock(&balancing)) |
| 3588 | goto out; |
| 3589 | } |
| 3590 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3591 | if (time_after_eq(jiffies, sd->last_balance + interval)) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3592 | if (load_balance(cpu, rq, sd, idle, &balance)) { |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3593 | /* |
| 3594 | * We've pulled tasks over so either we're no |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3595 | * longer idle, or one of our SMT siblings is |
| 3596 | * not idle. |
| 3597 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3598 | idle = CPU_NOT_IDLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3599 | } |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3600 | sd->last_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3601 | } |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3602 | if (sd->flags & SD_SERIALIZE) |
| 3603 | spin_unlock(&balancing); |
| 3604 | out: |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3605 | if (time_after(next_balance, sd->last_balance + interval)) { |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3606 | next_balance = sd->last_balance + interval; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3607 | update_next_balance = 1; |
| 3608 | } |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3609 | |
| 3610 | /* |
| 3611 | * Stop the load balance at this level. There is another |
| 3612 | * CPU in our sched group which is doing load balancing more |
| 3613 | * actively. |
| 3614 | */ |
| 3615 | if (!balance) |
| 3616 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3617 | } |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3618 | |
| 3619 | /* |
| 3620 | * next_balance will be updated only when there is a need. |
| 3621 | * When the cpu is attached to null domain for ex, it will not be |
| 3622 | * updated. |
| 3623 | */ |
| 3624 | if (likely(update_next_balance)) |
| 3625 | rq->next_balance = next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3626 | } |
| 3627 | |
| 3628 | /* |
| 3629 | * run_rebalance_domains is triggered when needed from the scheduler tick. |
| 3630 | * In CONFIG_NO_HZ case, the idle load balance owner will do the |
| 3631 | * rebalancing for all the cpus for whom scheduler ticks are stopped. |
| 3632 | */ |
| 3633 | static void run_rebalance_domains(struct softirq_action *h) |
| 3634 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3635 | int this_cpu = smp_processor_id(); |
| 3636 | struct rq *this_rq = cpu_rq(this_cpu); |
| 3637 | enum cpu_idle_type idle = this_rq->idle_at_tick ? |
| 3638 | CPU_IDLE : CPU_NOT_IDLE; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3639 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3640 | rebalance_domains(this_cpu, idle); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3641 | |
| 3642 | #ifdef CONFIG_NO_HZ |
| 3643 | /* |
| 3644 | * If this cpu is the owner for idle load balancing, then do the |
| 3645 | * balancing on behalf of the other idle cpus whose ticks are |
| 3646 | * stopped. |
| 3647 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3648 | if (this_rq->idle_at_tick && |
| 3649 | atomic_read(&nohz.load_balancer) == this_cpu) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3650 | cpumask_t cpus = nohz.cpu_mask; |
| 3651 | struct rq *rq; |
| 3652 | int balance_cpu; |
| 3653 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3654 | cpu_clear(this_cpu, cpus); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3655 | for_each_cpu_mask(balance_cpu, cpus) { |
| 3656 | /* |
| 3657 | * If this cpu gets work to do, stop the load balancing |
| 3658 | * work being done for other cpus. Next load |
| 3659 | * balancing owner will pick it up. |
| 3660 | */ |
| 3661 | if (need_resched()) |
| 3662 | break; |
| 3663 | |
Oleg Nesterov | de0cf89 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 3664 | rebalance_domains(balance_cpu, CPU_IDLE); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3665 | |
| 3666 | rq = cpu_rq(balance_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3667 | if (time_after(this_rq->next_balance, rq->next_balance)) |
| 3668 | this_rq->next_balance = rq->next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3669 | } |
| 3670 | } |
| 3671 | #endif |
| 3672 | } |
| 3673 | |
| 3674 | /* |
| 3675 | * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing. |
| 3676 | * |
| 3677 | * In case of CONFIG_NO_HZ, this is the place where we nominate a new |
| 3678 | * idle load balancing owner or decide to stop the periodic load balancing, |
| 3679 | * if the whole system is idle. |
| 3680 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3681 | static inline void trigger_load_balance(struct rq *rq, int cpu) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3682 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3683 | #ifdef CONFIG_NO_HZ |
| 3684 | /* |
| 3685 | * If we were in the nohz mode recently and busy at the current |
| 3686 | * scheduler tick, then check if we need to nominate new idle |
| 3687 | * load balancer. |
| 3688 | */ |
| 3689 | if (rq->in_nohz_recently && !rq->idle_at_tick) { |
| 3690 | rq->in_nohz_recently = 0; |
| 3691 | |
| 3692 | if (atomic_read(&nohz.load_balancer) == cpu) { |
| 3693 | cpu_clear(cpu, nohz.cpu_mask); |
| 3694 | atomic_set(&nohz.load_balancer, -1); |
| 3695 | } |
| 3696 | |
| 3697 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3698 | /* |
| 3699 | * simple selection for now: Nominate the |
| 3700 | * first cpu in the nohz list to be the next |
| 3701 | * ilb owner. |
| 3702 | * |
| 3703 | * TBD: Traverse the sched domains and nominate |
| 3704 | * the nearest cpu in the nohz.cpu_mask. |
| 3705 | */ |
| 3706 | int ilb = first_cpu(nohz.cpu_mask); |
| 3707 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 3708 | if (ilb < nr_cpu_ids) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3709 | resched_cpu(ilb); |
| 3710 | } |
| 3711 | } |
| 3712 | |
| 3713 | /* |
| 3714 | * If this cpu is idle and doing idle load balancing for all the |
| 3715 | * cpus with ticks stopped, is it time for that to stop? |
| 3716 | */ |
| 3717 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu && |
| 3718 | cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3719 | resched_cpu(cpu); |
| 3720 | return; |
| 3721 | } |
| 3722 | |
| 3723 | /* |
| 3724 | * If this cpu is idle and the idle load balancing is done by |
| 3725 | * someone else, then no need raise the SCHED_SOFTIRQ |
| 3726 | */ |
| 3727 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu && |
| 3728 | cpu_isset(cpu, nohz.cpu_mask)) |
| 3729 | return; |
| 3730 | #endif |
| 3731 | if (time_after_eq(jiffies, rq->next_balance)) |
| 3732 | raise_softirq(SCHED_SOFTIRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3734 | |
| 3735 | #else /* CONFIG_SMP */ |
| 3736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | /* |
| 3738 | * on UP we do not need to balance between CPUs: |
| 3739 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3740 | static inline void idle_balance(int cpu, struct rq *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | { |
| 3742 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3743 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3744 | #endif |
| 3745 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3746 | DEFINE_PER_CPU(struct kernel_stat, kstat); |
| 3747 | |
| 3748 | EXPORT_PER_CPU_SYMBOL(kstat); |
| 3749 | |
| 3750 | /* |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3751 | * Return p->sum_exec_runtime plus any more ns on the sched_clock |
| 3752 | * 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] | 3753 | */ |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3754 | unsigned long long task_sched_runtime(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3755 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3756 | unsigned long flags; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3757 | u64 ns, delta_exec; |
| 3758 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3759 | |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3760 | rq = task_rq_lock(p, &flags); |
| 3761 | ns = p->se.sum_exec_runtime; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 3762 | if (task_current(rq, p)) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3763 | update_rq_clock(rq); |
| 3764 | delta_exec = rq->clock - p->se.exec_start; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3765 | if ((s64)delta_exec > 0) |
| 3766 | ns += delta_exec; |
| 3767 | } |
| 3768 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3769 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3770 | return ns; |
| 3771 | } |
| 3772 | |
| 3773 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3774 | * Account user cpu time to a process. |
| 3775 | * @p: the process that the cpu time gets accounted to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3776 | * @cputime: the cpu time spent in user space since the last update |
| 3777 | */ |
| 3778 | void account_user_time(struct task_struct *p, cputime_t cputime) |
| 3779 | { |
| 3780 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3781 | cputime64_t tmp; |
| 3782 | |
| 3783 | p->utime = cputime_add(p->utime, cputime); |
| 3784 | |
| 3785 | /* Add user time to cpustat. */ |
| 3786 | tmp = cputime_to_cputime64(cputime); |
| 3787 | if (TASK_NICE(p) > 0) |
| 3788 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3789 | else |
| 3790 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3791 | } |
| 3792 | |
| 3793 | /* |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3794 | * Account guest cpu time to a process. |
| 3795 | * @p: the process that the cpu time gets accounted to |
| 3796 | * @cputime: the cpu time spent in virtual machine since the last update |
| 3797 | */ |
Adrian Bunk | f7402e0 | 2007-10-29 21:18:10 +0100 | [diff] [blame] | 3798 | static void account_guest_time(struct task_struct *p, cputime_t cputime) |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3799 | { |
| 3800 | cputime64_t tmp; |
| 3801 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3802 | |
| 3803 | tmp = cputime_to_cputime64(cputime); |
| 3804 | |
| 3805 | p->utime = cputime_add(p->utime, cputime); |
| 3806 | p->gtime = cputime_add(p->gtime, cputime); |
| 3807 | |
| 3808 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3809 | cpustat->guest = cputime64_add(cpustat->guest, tmp); |
| 3810 | } |
| 3811 | |
| 3812 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3813 | * Account scaled user cpu time to a process. |
| 3814 | * @p: the process that the cpu time gets accounted to |
| 3815 | * @cputime: the cpu time spent in user space since the last update |
| 3816 | */ |
| 3817 | void account_user_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3818 | { |
| 3819 | p->utimescaled = cputime_add(p->utimescaled, cputime); |
| 3820 | } |
| 3821 | |
| 3822 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3823 | * Account system cpu time to a process. |
| 3824 | * @p: the process that the cpu time gets accounted to |
| 3825 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3826 | * @cputime: the cpu time spent in kernel space since the last update |
| 3827 | */ |
| 3828 | void account_system_time(struct task_struct *p, int hardirq_offset, |
| 3829 | cputime_t cputime) |
| 3830 | { |
| 3831 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3832 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3833 | cputime64_t tmp; |
| 3834 | |
Christian Borntraeger | 9778385 | 2007-11-15 20:57:39 +0100 | [diff] [blame] | 3835 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) |
| 3836 | return account_guest_time(p, cputime); |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3838 | p->stime = cputime_add(p->stime, cputime); |
| 3839 | |
| 3840 | /* Add system time to cpustat. */ |
| 3841 | tmp = cputime_to_cputime64(cputime); |
| 3842 | if (hardirq_count() - hardirq_offset) |
| 3843 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3844 | else if (softirq_count()) |
| 3845 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3846 | else if (p != rq->idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3847 | cpustat->system = cputime64_add(cpustat->system, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3848 | else if (atomic_read(&rq->nr_iowait) > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3849 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3850 | else |
| 3851 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| 3852 | /* Account for system time used */ |
| 3853 | acct_update_integrals(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3854 | } |
| 3855 | |
| 3856 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3857 | * Account scaled system cpu time to a process. |
| 3858 | * @p: the process that the cpu time gets accounted to |
| 3859 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3860 | * @cputime: the cpu time spent in kernel space since the last update |
| 3861 | */ |
| 3862 | void account_system_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3863 | { |
| 3864 | p->stimescaled = cputime_add(p->stimescaled, cputime); |
| 3865 | } |
| 3866 | |
| 3867 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3868 | * Account for involuntary wait time. |
| 3869 | * @p: the process from which the cpu time has been stolen |
| 3870 | * @steal: the cpu time spent in involuntary wait |
| 3871 | */ |
| 3872 | void account_steal_time(struct task_struct *p, cputime_t steal) |
| 3873 | { |
| 3874 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3875 | cputime64_t tmp = cputime_to_cputime64(steal); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3876 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3877 | |
| 3878 | if (p == rq->idle) { |
| 3879 | p->stime = cputime_add(p->stime, steal); |
| 3880 | if (atomic_read(&rq->nr_iowait) > 0) |
| 3881 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3882 | else |
| 3883 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3884 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3885 | cpustat->steal = cputime64_add(cpustat->steal, tmp); |
| 3886 | } |
| 3887 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3888 | /* |
| 3889 | * This function gets called by the timer code, with HZ frequency. |
| 3890 | * We call it with interrupts disabled. |
| 3891 | * |
| 3892 | * It also gets called by the fork code, when changing the parent's |
| 3893 | * timeslices. |
| 3894 | */ |
| 3895 | void scheduler_tick(void) |
| 3896 | { |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3897 | int cpu = smp_processor_id(); |
| 3898 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3899 | struct task_struct *curr = rq->curr; |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3900 | u64 next_tick = rq->tick_timestamp + TICK_NSEC; |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3901 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3902 | spin_lock(&rq->lock); |
Ingo Molnar | 546fe3c | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3903 | __update_rq_clock(rq); |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3904 | /* |
| 3905 | * Let rq->clock advance by at least TICK_NSEC: |
| 3906 | */ |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3907 | if (unlikely(rq->clock < next_tick)) { |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3908 | rq->clock = next_tick; |
Guillaume Chazarain | cc203d2 | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 3909 | rq->clock_underflows++; |
| 3910 | } |
Ingo Molnar | 529c772 | 2007-08-10 23:05:11 +0200 | [diff] [blame] | 3911 | rq->tick_timestamp = rq->clock; |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 3912 | update_last_tick_seen(rq); |
Ingo Molnar | f1a438d | 2007-08-09 11:16:45 +0200 | [diff] [blame] | 3913 | update_cpu_load(rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 3914 | curr->sched_class->task_tick(rq, curr, 0); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3915 | spin_unlock(&rq->lock); |
| 3916 | |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3917 | #ifdef CONFIG_SMP |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3918 | rq->idle_at_tick = idle_cpu(cpu); |
| 3919 | trigger_load_balance(rq, cpu); |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 3920 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 | } |
| 3922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3923 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) |
| 3924 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 3925 | void __kprobes add_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3926 | { |
| 3927 | /* |
| 3928 | * Underflow? |
| 3929 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3930 | if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0))) |
| 3931 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | preempt_count() += val; |
| 3933 | /* |
| 3934 | * Spinlock count overflowing soon? |
| 3935 | */ |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 3936 | DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= |
| 3937 | PREEMPT_MASK - 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3938 | } |
| 3939 | EXPORT_SYMBOL(add_preempt_count); |
| 3940 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 3941 | void __kprobes sub_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3942 | { |
| 3943 | /* |
| 3944 | * Underflow? |
| 3945 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3946 | if (DEBUG_LOCKS_WARN_ON(val > preempt_count())) |
| 3947 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3948 | /* |
| 3949 | * Is the spinlock portion underflowing? |
| 3950 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 3951 | if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) && |
| 3952 | !(preempt_count() & PREEMPT_MASK))) |
| 3953 | return; |
| 3954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3955 | preempt_count() -= val; |
| 3956 | } |
| 3957 | EXPORT_SYMBOL(sub_preempt_count); |
| 3958 | |
| 3959 | #endif |
| 3960 | |
| 3961 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3962 | * Print scheduling while atomic bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3963 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3964 | static noinline void __schedule_bug(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3965 | { |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3966 | struct pt_regs *regs = get_irq_regs(); |
| 3967 | |
| 3968 | printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n", |
| 3969 | prev->comm, prev->pid, preempt_count()); |
| 3970 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3971 | debug_show_held_locks(prev); |
| 3972 | if (irqs_disabled()) |
| 3973 | print_irqtrace_events(prev); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 3974 | |
| 3975 | if (regs) |
| 3976 | show_regs(regs); |
| 3977 | else |
| 3978 | dump_stack(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3979 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3981 | /* |
| 3982 | * Various schedule()-time debugging checks and statistics: |
| 3983 | */ |
| 3984 | static inline void schedule_debug(struct task_struct *prev) |
| 3985 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3986 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3987 | * Test if we are atomic. Since do_exit() needs to call into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3988 | * schedule() atomically, we ignore that path for now. |
| 3989 | * Otherwise, whine if we are scheduling when we should not be. |
| 3990 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3991 | if (unlikely(in_atomic_preempt_off()) && unlikely(!prev->exit_state)) |
| 3992 | __schedule_bug(prev); |
| 3993 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | profile_hit(SCHED_PROFILING, __builtin_return_address(0)); |
| 3995 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3996 | schedstat_inc(this_rq(), sched_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 3997 | #ifdef CONFIG_SCHEDSTATS |
| 3998 | if (unlikely(prev->lock_depth >= 0)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3999 | schedstat_inc(this_rq(), bkl_count); |
| 4000 | schedstat_inc(prev, sched_info.bkl_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 4001 | } |
| 4002 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4003 | } |
| 4004 | |
| 4005 | /* |
| 4006 | * Pick up the highest-prio task: |
| 4007 | */ |
| 4008 | static inline struct task_struct * |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4009 | pick_next_task(struct rq *rq, struct task_struct *prev) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4010 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4011 | const struct sched_class *class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4012 | struct task_struct *p; |
| 4013 | |
| 4014 | /* |
| 4015 | * Optimization: we know that if all tasks are in |
| 4016 | * the fair class we can call that function directly: |
| 4017 | */ |
| 4018 | if (likely(rq->nr_running == rq->cfs.nr_running)) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4019 | p = fair_sched_class.pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4020 | if (likely(p)) |
| 4021 | return p; |
| 4022 | } |
| 4023 | |
| 4024 | class = sched_class_highest; |
| 4025 | for ( ; ; ) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4026 | p = class->pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4027 | if (p) |
| 4028 | return p; |
| 4029 | /* |
| 4030 | * Will never be NULL as the idle class always |
| 4031 | * returns a non-NULL p: |
| 4032 | */ |
| 4033 | class = class->next; |
| 4034 | } |
| 4035 | } |
| 4036 | |
| 4037 | /* |
| 4038 | * schedule() is the main scheduler function. |
| 4039 | */ |
| 4040 | asmlinkage void __sched schedule(void) |
| 4041 | { |
| 4042 | struct task_struct *prev, *next; |
Harvey Harrison | 67ca7bd | 2008-02-15 09:56:36 -0800 | [diff] [blame] | 4043 | unsigned long *switch_count; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4044 | struct rq *rq; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4045 | int cpu; |
| 4046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4047 | need_resched: |
| 4048 | preempt_disable(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4049 | cpu = smp_processor_id(); |
| 4050 | rq = cpu_rq(cpu); |
| 4051 | rcu_qsctr_inc(cpu); |
| 4052 | prev = rq->curr; |
| 4053 | switch_count = &prev->nivcsw; |
| 4054 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4055 | release_kernel_lock(prev); |
| 4056 | need_resched_nonpreemptible: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4057 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4058 | schedule_debug(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4060 | hrtick_clear(rq); |
| 4061 | |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4062 | /* |
| 4063 | * Do the rq-clock update outside the rq lock: |
| 4064 | */ |
| 4065 | local_irq_disable(); |
Ingo Molnar | c1b3da3 | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4066 | __update_rq_clock(rq); |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4067 | spin_lock(&rq->lock); |
| 4068 | clear_tsk_need_resched(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4069 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4070 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |
| 4071 | if (unlikely((prev->state & TASK_INTERRUPTIBLE) && |
Roel Kluin | 23e3c3c | 2008-03-13 17:41:59 +0100 | [diff] [blame] | 4072 | signal_pending(prev))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4073 | prev->state = TASK_RUNNING; |
| 4074 | } else { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4075 | deactivate_task(rq, prev, 1); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4076 | } |
| 4077 | switch_count = &prev->nvcsw; |
| 4078 | } |
| 4079 | |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4080 | #ifdef CONFIG_SMP |
| 4081 | if (prev->sched_class->pre_schedule) |
| 4082 | prev->sched_class->pre_schedule(rq, prev); |
| 4083 | #endif |
Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 4084 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4085 | if (unlikely(!rq->nr_running)) |
| 4086 | idle_balance(cpu, rq); |
| 4087 | |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4088 | prev->sched_class->put_prev_task(rq, prev); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4089 | next = pick_next_task(rq, prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4090 | |
| 4091 | sched_info_switch(prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4093 | if (likely(prev != next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4094 | rq->nr_switches++; |
| 4095 | rq->curr = next; |
| 4096 | ++*switch_count; |
| 4097 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4098 | context_switch(rq, prev, next); /* unlocks the rq */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4099 | /* |
| 4100 | * the context switch might have flipped the stack from under |
| 4101 | * us, hence refresh the local variables. |
| 4102 | */ |
| 4103 | cpu = smp_processor_id(); |
| 4104 | rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4105 | } else |
| 4106 | spin_unlock_irq(&rq->lock); |
| 4107 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4108 | hrtick_set(rq); |
| 4109 | |
| 4110 | if (unlikely(reacquire_kernel_lock(current) < 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | goto need_resched_nonpreemptible; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4112 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4113 | preempt_enable_no_resched(); |
| 4114 | if (unlikely(test_thread_flag(TIF_NEED_RESCHED))) |
| 4115 | goto need_resched; |
| 4116 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4117 | EXPORT_SYMBOL(schedule); |
| 4118 | |
| 4119 | #ifdef CONFIG_PREEMPT |
| 4120 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4121 | * this is the entry point to schedule() from in-kernel preemption |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4122 | * off of preempt_enable. Kernel preemptions off return from interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4123 | * occur there and call schedule directly. |
| 4124 | */ |
| 4125 | asmlinkage void __sched preempt_schedule(void) |
| 4126 | { |
| 4127 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4128 | struct task_struct *task = current; |
| 4129 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4131 | /* |
| 4132 | * If there is a non-zero preempt_count or interrupts are disabled, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4133 | * we do not want to preempt the current task. Just return.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4134 | */ |
Nick Piggin | beed33a | 2006-10-11 01:21:52 -0700 | [diff] [blame] | 4135 | if (likely(ti->preempt_count || irqs_disabled())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4136 | return; |
| 4137 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4138 | do { |
| 4139 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4140 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4141 | /* |
| 4142 | * We keep the big kernel semaphore locked, but we |
| 4143 | * clear ->lock_depth so that schedule() doesnt |
| 4144 | * auto-release the semaphore: |
| 4145 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4146 | saved_lock_depth = task->lock_depth; |
| 4147 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4148 | schedule(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4149 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4150 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4151 | |
| 4152 | /* |
| 4153 | * Check again in case we missed a preemption opportunity |
| 4154 | * between schedule and now. |
| 4155 | */ |
| 4156 | barrier(); |
| 4157 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4158 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | EXPORT_SYMBOL(preempt_schedule); |
| 4160 | |
| 4161 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4162 | * this is the entry point to schedule() from kernel preemption |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4163 | * off of irq context. |
| 4164 | * Note, that this is called and return with irqs disabled. This will |
| 4165 | * protect us against recursive calling from irq. |
| 4166 | */ |
| 4167 | asmlinkage void __sched preempt_schedule_irq(void) |
| 4168 | { |
| 4169 | struct thread_info *ti = current_thread_info(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4170 | struct task_struct *task = current; |
| 4171 | int saved_lock_depth; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4172 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4173 | /* Catch callers which need to be fixed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4174 | BUG_ON(ti->preempt_count || !irqs_disabled()); |
| 4175 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4176 | do { |
| 4177 | add_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4178 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4179 | /* |
| 4180 | * We keep the big kernel semaphore locked, but we |
| 4181 | * clear ->lock_depth so that schedule() doesnt |
| 4182 | * auto-release the semaphore: |
| 4183 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4184 | saved_lock_depth = task->lock_depth; |
| 4185 | task->lock_depth = -1; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4186 | local_irq_enable(); |
| 4187 | schedule(); |
| 4188 | local_irq_disable(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4189 | task->lock_depth = saved_lock_depth; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4190 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4191 | |
| 4192 | /* |
| 4193 | * Check again in case we missed a preemption opportunity |
| 4194 | * between schedule and now. |
| 4195 | */ |
| 4196 | barrier(); |
| 4197 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4198 | } |
| 4199 | |
| 4200 | #endif /* CONFIG_PREEMPT */ |
| 4201 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4202 | int default_wake_function(wait_queue_t *curr, unsigned mode, int sync, |
| 4203 | void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4204 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4205 | return try_to_wake_up(curr->private, mode, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4206 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4207 | EXPORT_SYMBOL(default_wake_function); |
| 4208 | |
| 4209 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4210 | * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just |
| 4211 | * 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] | 4212 | * number) then we wake all the non-exclusive tasks and one exclusive task. |
| 4213 | * |
| 4214 | * 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] | 4215 | * 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] | 4216 | * zero in this (rare) case, and we handle it by continuing to scan the queue. |
| 4217 | */ |
| 4218 | static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, |
| 4219 | int nr_exclusive, int sync, void *key) |
| 4220 | { |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4221 | wait_queue_t *curr, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4222 | |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4223 | list_for_each_entry_safe(curr, next, &q->task_list, task_list) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4224 | unsigned flags = curr->flags; |
| 4225 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4226 | if (curr->func(curr, mode, sync, key) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4227 | (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4228 | break; |
| 4229 | } |
| 4230 | } |
| 4231 | |
| 4232 | /** |
| 4233 | * __wake_up - wake up threads blocked on a waitqueue. |
| 4234 | * @q: the waitqueue |
| 4235 | * @mode: which threads |
| 4236 | * @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] | 4237 | * @key: is directly passed to the wakeup function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4238 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4239 | void __wake_up(wait_queue_head_t *q, unsigned int mode, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4240 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | { |
| 4242 | unsigned long flags; |
| 4243 | |
| 4244 | spin_lock_irqsave(&q->lock, flags); |
| 4245 | __wake_up_common(q, mode, nr_exclusive, 0, key); |
| 4246 | spin_unlock_irqrestore(&q->lock, flags); |
| 4247 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4248 | EXPORT_SYMBOL(__wake_up); |
| 4249 | |
| 4250 | /* |
| 4251 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
| 4252 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4253 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4254 | { |
| 4255 | __wake_up_common(q, mode, 1, 0, NULL); |
| 4256 | } |
| 4257 | |
| 4258 | /** |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 4259 | * __wake_up_sync - wake up threads blocked on a waitqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4260 | * @q: the waitqueue |
| 4261 | * @mode: which threads |
| 4262 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
| 4263 | * |
| 4264 | * The sync wakeup differs that the waker knows that it will schedule |
| 4265 | * away soon, so while the target thread will be woken up, it will not |
| 4266 | * be migrated to another CPU - ie. the two threads are 'synchronized' |
| 4267 | * with each other. This can prevent needless bouncing between CPUs. |
| 4268 | * |
| 4269 | * On UP it can prevent extra preemption. |
| 4270 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4271 | void |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4272 | __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] | 4273 | { |
| 4274 | unsigned long flags; |
| 4275 | int sync = 1; |
| 4276 | |
| 4277 | if (unlikely(!q)) |
| 4278 | return; |
| 4279 | |
| 4280 | if (unlikely(!nr_exclusive)) |
| 4281 | sync = 0; |
| 4282 | |
| 4283 | spin_lock_irqsave(&q->lock, flags); |
| 4284 | __wake_up_common(q, mode, nr_exclusive, sync, NULL); |
| 4285 | spin_unlock_irqrestore(&q->lock, flags); |
| 4286 | } |
| 4287 | EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */ |
| 4288 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4289 | void complete(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4290 | { |
| 4291 | unsigned long flags; |
| 4292 | |
| 4293 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4294 | x->done++; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4295 | __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4296 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4297 | } |
| 4298 | EXPORT_SYMBOL(complete); |
| 4299 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4300 | void complete_all(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4301 | { |
| 4302 | unsigned long flags; |
| 4303 | |
| 4304 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4305 | x->done += UINT_MAX/2; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4306 | __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4307 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4308 | } |
| 4309 | EXPORT_SYMBOL(complete_all); |
| 4310 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4311 | static inline long __sched |
| 4312 | do_wait_for_common(struct completion *x, long timeout, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4314 | if (!x->done) { |
| 4315 | DECLARE_WAITQUEUE(wait, current); |
| 4316 | |
| 4317 | wait.flags |= WQ_FLAG_EXCLUSIVE; |
| 4318 | __add_wait_queue_tail(&x->wait, &wait); |
| 4319 | do { |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4320 | if ((state == TASK_INTERRUPTIBLE && |
| 4321 | signal_pending(current)) || |
| 4322 | (state == TASK_KILLABLE && |
| 4323 | fatal_signal_pending(current))) { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4324 | __remove_wait_queue(&x->wait, &wait); |
| 4325 | return -ERESTARTSYS; |
| 4326 | } |
| 4327 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4328 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4329 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4330 | spin_lock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4331 | if (!timeout) { |
| 4332 | __remove_wait_queue(&x->wait, &wait); |
| 4333 | return timeout; |
| 4334 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4335 | } while (!x->done); |
| 4336 | __remove_wait_queue(&x->wait, &wait); |
| 4337 | } |
| 4338 | x->done--; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4339 | return timeout; |
| 4340 | } |
| 4341 | |
| 4342 | static long __sched |
| 4343 | wait_for_common(struct completion *x, long timeout, int state) |
| 4344 | { |
| 4345 | might_sleep(); |
| 4346 | |
| 4347 | spin_lock_irq(&x->wait.lock); |
| 4348 | timeout = do_wait_for_common(x, timeout, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4349 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4350 | return timeout; |
| 4351 | } |
| 4352 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4353 | void __sched wait_for_completion(struct completion *x) |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4354 | { |
| 4355 | wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4356 | } |
| 4357 | EXPORT_SYMBOL(wait_for_completion); |
| 4358 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4359 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4360 | wait_for_completion_timeout(struct completion *x, unsigned long timeout) |
| 4361 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4362 | return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4363 | } |
| 4364 | EXPORT_SYMBOL(wait_for_completion_timeout); |
| 4365 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4366 | int __sched wait_for_completion_interruptible(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4367 | { |
Andi Kleen | 51e9799 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 4368 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE); |
| 4369 | if (t == -ERESTARTSYS) |
| 4370 | return t; |
| 4371 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4372 | } |
| 4373 | EXPORT_SYMBOL(wait_for_completion_interruptible); |
| 4374 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4375 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4376 | wait_for_completion_interruptible_timeout(struct completion *x, |
| 4377 | unsigned long timeout) |
| 4378 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4379 | return wait_for_common(x, timeout, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4380 | } |
| 4381 | EXPORT_SYMBOL(wait_for_completion_interruptible_timeout); |
| 4382 | |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4383 | int __sched wait_for_completion_killable(struct completion *x) |
| 4384 | { |
| 4385 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE); |
| 4386 | if (t == -ERESTARTSYS) |
| 4387 | return t; |
| 4388 | return 0; |
| 4389 | } |
| 4390 | EXPORT_SYMBOL(wait_for_completion_killable); |
| 4391 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4392 | static long __sched |
| 4393 | sleep_on_common(wait_queue_head_t *q, int state, long timeout) |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4394 | { |
| 4395 | unsigned long flags; |
| 4396 | wait_queue_t wait; |
| 4397 | |
| 4398 | init_waitqueue_entry(&wait, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4399 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4400 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4401 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4402 | spin_lock_irqsave(&q->lock, flags); |
| 4403 | __add_wait_queue(q, &wait); |
| 4404 | spin_unlock(&q->lock); |
| 4405 | timeout = schedule_timeout(timeout); |
| 4406 | spin_lock_irq(&q->lock); |
| 4407 | __remove_wait_queue(q, &wait); |
| 4408 | spin_unlock_irqrestore(&q->lock, flags); |
| 4409 | |
| 4410 | return timeout; |
| 4411 | } |
| 4412 | |
| 4413 | void __sched interruptible_sleep_on(wait_queue_head_t *q) |
| 4414 | { |
| 4415 | sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4416 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | EXPORT_SYMBOL(interruptible_sleep_on); |
| 4418 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4419 | long __sched |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4420 | interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4421 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4422 | return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4424 | EXPORT_SYMBOL(interruptible_sleep_on_timeout); |
| 4425 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4426 | void __sched sleep_on(wait_queue_head_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4427 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4428 | sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4429 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4430 | EXPORT_SYMBOL(sleep_on); |
| 4431 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4432 | long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4433 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4434 | return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4435 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4436 | EXPORT_SYMBOL(sleep_on_timeout); |
| 4437 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4438 | #ifdef CONFIG_RT_MUTEXES |
| 4439 | |
| 4440 | /* |
| 4441 | * rt_mutex_setprio - set the current priority of a task |
| 4442 | * @p: task |
| 4443 | * @prio: prio value (kernel-internal form) |
| 4444 | * |
| 4445 | * This function changes the 'effective' priority of a task. It does |
| 4446 | * not touch ->normal_prio like __setscheduler(). |
| 4447 | * |
| 4448 | * Used by the rt_mutex code to implement priority inheritance logic. |
| 4449 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4450 | void rt_mutex_setprio(struct task_struct *p, int prio) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4451 | { |
| 4452 | unsigned long flags; |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4453 | int oldprio, on_rq, running; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4454 | struct rq *rq; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4455 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4456 | |
| 4457 | BUG_ON(prio < 0 || prio > MAX_PRIO); |
| 4458 | |
| 4459 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4460 | update_rq_clock(rq); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4461 | |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4462 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4463 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4464 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4465 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4466 | dequeue_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4467 | if (running) |
| 4468 | p->sched_class->put_prev_task(rq, p); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4469 | |
| 4470 | if (rt_prio(prio)) |
| 4471 | p->sched_class = &rt_sched_class; |
| 4472 | else |
| 4473 | p->sched_class = &fair_sched_class; |
| 4474 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4475 | p->prio = prio; |
| 4476 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4477 | if (running) |
| 4478 | p->sched_class->set_curr_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4479 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4480 | enqueue_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4481 | |
| 4482 | check_class_changed(rq, p, prev_class, oldprio, running); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4483 | } |
| 4484 | task_rq_unlock(rq, &flags); |
| 4485 | } |
| 4486 | |
| 4487 | #endif |
| 4488 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4489 | void set_user_nice(struct task_struct *p, long nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4490 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4491 | int old_prio, delta, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4492 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4493 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4494 | |
| 4495 | if (TASK_NICE(p) == nice || nice < -20 || nice > 19) |
| 4496 | return; |
| 4497 | /* |
| 4498 | * We have to be careful, if called from sys_setpriority(), |
| 4499 | * the task might be in the middle of scheduling on another CPU. |
| 4500 | */ |
| 4501 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4502 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4503 | /* |
| 4504 | * The RT priorities are set via sched_setscheduler(), but we still |
| 4505 | * allow the 'normal' nice value to be set - but as expected |
| 4506 | * it wont have any effect on scheduling until the task is |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4507 | * SCHED_FIFO/SCHED_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | */ |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4509 | if (task_has_rt_policy(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4510 | p->static_prio = NICE_TO_PRIO(nice); |
| 4511 | goto out_unlock; |
| 4512 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4513 | on_rq = p->se.on_rq; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 4514 | if (on_rq) { |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4515 | dequeue_task(rq, p, 0); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 4516 | dec_load(rq, p); |
| 4517 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4519 | p->static_prio = NICE_TO_PRIO(nice); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4520 | set_load_weight(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4521 | old_prio = p->prio; |
| 4522 | p->prio = effective_prio(p); |
| 4523 | delta = p->prio - old_prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4524 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4525 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4526 | enqueue_task(rq, p, 0); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 4527 | inc_load(rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4528 | /* |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4529 | * If the task increased its priority or is running and |
| 4530 | * lowered its priority, then reschedule its CPU: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4531 | */ |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4532 | if (delta < 0 || (delta > 0 && task_running(rq, p))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4533 | resched_task(rq->curr); |
| 4534 | } |
| 4535 | out_unlock: |
| 4536 | task_rq_unlock(rq, &flags); |
| 4537 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | EXPORT_SYMBOL(set_user_nice); |
| 4539 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4540 | /* |
| 4541 | * can_nice - check if a task can reduce its nice value |
| 4542 | * @p: task |
| 4543 | * @nice: nice value |
| 4544 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4545 | int can_nice(const struct task_struct *p, const int nice) |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4546 | { |
Matt Mackall | 024f474 | 2005-08-18 11:24:19 -0700 | [diff] [blame] | 4547 | /* convert nice value [19,-20] to rlimit style value [1,40] */ |
| 4548 | int nice_rlim = 20 - nice; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4549 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4550 | return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur || |
| 4551 | capable(CAP_SYS_NICE)); |
| 4552 | } |
| 4553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4554 | #ifdef __ARCH_WANT_SYS_NICE |
| 4555 | |
| 4556 | /* |
| 4557 | * sys_nice - change the priority of the current process. |
| 4558 | * @increment: priority increment |
| 4559 | * |
| 4560 | * sys_setpriority is a more generic, but much slower function that |
| 4561 | * does similar things. |
| 4562 | */ |
| 4563 | asmlinkage long sys_nice(int increment) |
| 4564 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4565 | long nice, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4566 | |
| 4567 | /* |
| 4568 | * Setpriority might change our priority at the same moment. |
| 4569 | * We don't have to worry. Conceptually one call occurs first |
| 4570 | * and we have a single winner. |
| 4571 | */ |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4572 | if (increment < -40) |
| 4573 | increment = -40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4574 | if (increment > 40) |
| 4575 | increment = 40; |
| 4576 | |
| 4577 | nice = PRIO_TO_NICE(current->static_prio) + increment; |
| 4578 | if (nice < -20) |
| 4579 | nice = -20; |
| 4580 | if (nice > 19) |
| 4581 | nice = 19; |
| 4582 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4583 | if (increment < 0 && !can_nice(current, nice)) |
| 4584 | return -EPERM; |
| 4585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4586 | retval = security_task_setnice(current, nice); |
| 4587 | if (retval) |
| 4588 | return retval; |
| 4589 | |
| 4590 | set_user_nice(current, nice); |
| 4591 | return 0; |
| 4592 | } |
| 4593 | |
| 4594 | #endif |
| 4595 | |
| 4596 | /** |
| 4597 | * task_prio - return the priority value of a given task. |
| 4598 | * @p: the task in question. |
| 4599 | * |
| 4600 | * This is the priority value as seen by users in /proc. |
| 4601 | * RT tasks are offset by -200. Normal tasks are centered |
| 4602 | * around 0, value goes from -16 to +15. |
| 4603 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4604 | int task_prio(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4605 | { |
| 4606 | return p->prio - MAX_RT_PRIO; |
| 4607 | } |
| 4608 | |
| 4609 | /** |
| 4610 | * task_nice - return the nice value of a given task. |
| 4611 | * @p: the task in question. |
| 4612 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4613 | int task_nice(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4614 | { |
| 4615 | return TASK_NICE(p); |
| 4616 | } |
Pavel Roskin | 150d8be | 2008-03-05 16:56:37 -0500 | [diff] [blame] | 4617 | EXPORT_SYMBOL(task_nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | |
| 4619 | /** |
| 4620 | * idle_cpu - is a given cpu idle currently? |
| 4621 | * @cpu: the processor in question. |
| 4622 | */ |
| 4623 | int idle_cpu(int cpu) |
| 4624 | { |
| 4625 | return cpu_curr(cpu) == cpu_rq(cpu)->idle; |
| 4626 | } |
| 4627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4628 | /** |
| 4629 | * idle_task - return the idle task for a given cpu. |
| 4630 | * @cpu: the processor in question. |
| 4631 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4632 | struct task_struct *idle_task(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4633 | { |
| 4634 | return cpu_rq(cpu)->idle; |
| 4635 | } |
| 4636 | |
| 4637 | /** |
| 4638 | * find_process_by_pid - find a process with a matching PID value. |
| 4639 | * @pid: the pid in question. |
| 4640 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4641 | static struct task_struct *find_process_by_pid(pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4642 | { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 4643 | return pid ? find_task_by_vpid(pid) : current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4644 | } |
| 4645 | |
| 4646 | /* Actually do priority change: must hold rq lock. */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4647 | static void |
| 4648 | __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4649 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4650 | BUG_ON(p->se.on_rq); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 | p->policy = policy; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4653 | switch (p->policy) { |
| 4654 | case SCHED_NORMAL: |
| 4655 | case SCHED_BATCH: |
| 4656 | case SCHED_IDLE: |
| 4657 | p->sched_class = &fair_sched_class; |
| 4658 | break; |
| 4659 | case SCHED_FIFO: |
| 4660 | case SCHED_RR: |
| 4661 | p->sched_class = &rt_sched_class; |
| 4662 | break; |
| 4663 | } |
| 4664 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4665 | p->rt_priority = prio; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4666 | p->normal_prio = normal_prio(p); |
| 4667 | /* we are holding p->pi_lock already */ |
| 4668 | p->prio = rt_mutex_getprio(p); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4669 | set_load_weight(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4670 | } |
| 4671 | |
| 4672 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4673 | * 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] | 4674 | * @p: the task in question. |
| 4675 | * @policy: new policy. |
| 4676 | * @param: structure containing the new RT priority. |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4677 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4678 | * NOTE that the task may be already dead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4679 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4680 | int sched_setscheduler(struct task_struct *p, int policy, |
| 4681 | struct sched_param *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4682 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4683 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | unsigned long flags; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4685 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4686 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4687 | |
Steven Rostedt | 66e5393 | 2006-06-27 02:54:44 -0700 | [diff] [blame] | 4688 | /* may grab non-irq protected spin_locks */ |
| 4689 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | recheck: |
| 4691 | /* double check policy once rq lock held */ |
| 4692 | if (policy < 0) |
| 4693 | policy = oldpolicy = p->policy; |
| 4694 | else if (policy != SCHED_FIFO && policy != SCHED_RR && |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4695 | policy != SCHED_NORMAL && policy != SCHED_BATCH && |
| 4696 | policy != SCHED_IDLE) |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 4697 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4698 | /* |
| 4699 | * Valid priorities for SCHED_FIFO and SCHED_RR are |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4700 | * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL, |
| 4701 | * SCHED_BATCH and SCHED_IDLE is 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4702 | */ |
| 4703 | if (param->sched_priority < 0 || |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4704 | (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) || |
Steven Rostedt | d46523e | 2005-07-25 16:28:39 -0400 | [diff] [blame] | 4705 | (!p->mm && param->sched_priority > MAX_RT_PRIO-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4706 | return -EINVAL; |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4707 | if (rt_policy(policy) != (param->sched_priority != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4708 | return -EINVAL; |
| 4709 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4710 | /* |
| 4711 | * Allow unprivileged RT tasks to decrease priority: |
| 4712 | */ |
| 4713 | if (!capable(CAP_SYS_NICE)) { |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4714 | if (rt_policy(policy)) { |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4715 | unsigned long rlim_rtprio; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4716 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4717 | if (!lock_task_sighand(p, &flags)) |
| 4718 | return -ESRCH; |
| 4719 | rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur; |
| 4720 | unlock_task_sighand(p, &flags); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4721 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4722 | /* can't set/change the rt policy */ |
| 4723 | if (policy != p->policy && !rlim_rtprio) |
| 4724 | return -EPERM; |
| 4725 | |
| 4726 | /* can't increase priority */ |
| 4727 | if (param->sched_priority > p->rt_priority && |
| 4728 | param->sched_priority > rlim_rtprio) |
| 4729 | return -EPERM; |
| 4730 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4731 | /* |
| 4732 | * Like positive nice levels, dont allow tasks to |
| 4733 | * move out of SCHED_IDLE either: |
| 4734 | */ |
| 4735 | if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) |
| 4736 | return -EPERM; |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4737 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4738 | /* can't change other user's priorities */ |
| 4739 | if ((current->euid != p->euid) && |
| 4740 | (current->euid != p->uid)) |
| 4741 | return -EPERM; |
| 4742 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4743 | |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 4744 | #ifdef CONFIG_RT_GROUP_SCHED |
| 4745 | /* |
| 4746 | * Do not allow realtime tasks into groups that have no runtime |
| 4747 | * assigned. |
| 4748 | */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 4749 | if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0) |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 4750 | return -EPERM; |
| 4751 | #endif |
| 4752 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | retval = security_task_setscheduler(p, policy, param); |
| 4754 | if (retval) |
| 4755 | return retval; |
| 4756 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4757 | * make sure no PI-waiters arrive (or leave) while we are |
| 4758 | * changing the priority of the task: |
| 4759 | */ |
| 4760 | spin_lock_irqsave(&p->pi_lock, flags); |
| 4761 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4762 | * To be able to change p->policy safely, the apropriate |
| 4763 | * runqueue lock must be held. |
| 4764 | */ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4765 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4766 | /* recheck policy now with rq lock held */ |
| 4767 | if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) { |
| 4768 | policy = oldpolicy = -1; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4769 | __task_rq_unlock(rq); |
| 4770 | spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4771 | goto recheck; |
| 4772 | } |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 4773 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4774 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4775 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4776 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4777 | deactivate_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4778 | if (running) |
| 4779 | p->sched_class->put_prev_task(rq, p); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4782 | __setscheduler(rq, p, policy, param->sched_priority); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4783 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4784 | if (running) |
| 4785 | p->sched_class->set_curr_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4786 | if (on_rq) { |
| 4787 | activate_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4788 | |
| 4789 | check_class_changed(rq, p, prev_class, oldprio, running); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4790 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4791 | __task_rq_unlock(rq); |
| 4792 | spin_unlock_irqrestore(&p->pi_lock, flags); |
| 4793 | |
Thomas Gleixner | 95e02ca | 2006-06-27 02:55:02 -0700 | [diff] [blame] | 4794 | rt_mutex_adjust_pi(p); |
| 4795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4796 | return 0; |
| 4797 | } |
| 4798 | EXPORT_SYMBOL_GPL(sched_setscheduler); |
| 4799 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4800 | static int |
| 4801 | 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] | 4802 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4803 | struct sched_param lparam; |
| 4804 | struct task_struct *p; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4805 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4806 | |
| 4807 | if (!param || pid < 0) |
| 4808 | return -EINVAL; |
| 4809 | if (copy_from_user(&lparam, param, sizeof(struct sched_param))) |
| 4810 | return -EFAULT; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4811 | |
| 4812 | rcu_read_lock(); |
| 4813 | retval = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4814 | p = find_process_by_pid(pid); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4815 | if (p != NULL) |
| 4816 | retval = sched_setscheduler(p, policy, &lparam); |
| 4817 | rcu_read_unlock(); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4818 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4819 | return retval; |
| 4820 | } |
| 4821 | |
| 4822 | /** |
| 4823 | * sys_sched_setscheduler - set/change the scheduler policy and RT priority |
| 4824 | * @pid: the pid in question. |
| 4825 | * @policy: new policy. |
| 4826 | * @param: structure containing the new RT priority. |
| 4827 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4828 | asmlinkage long |
| 4829 | 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] | 4830 | { |
Jason Baron | c21761f | 2006-01-18 17:43:03 -0800 | [diff] [blame] | 4831 | /* negative values for policy are not valid */ |
| 4832 | if (policy < 0) |
| 4833 | return -EINVAL; |
| 4834 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4835 | return do_sched_setscheduler(pid, policy, param); |
| 4836 | } |
| 4837 | |
| 4838 | /** |
| 4839 | * sys_sched_setparam - set/change the RT priority of a thread |
| 4840 | * @pid: the pid in question. |
| 4841 | * @param: structure containing the new RT priority. |
| 4842 | */ |
| 4843 | asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param) |
| 4844 | { |
| 4845 | return do_sched_setscheduler(pid, -1, param); |
| 4846 | } |
| 4847 | |
| 4848 | /** |
| 4849 | * sys_sched_getscheduler - get the policy (scheduling class) of a thread |
| 4850 | * @pid: the pid in question. |
| 4851 | */ |
| 4852 | asmlinkage long sys_sched_getscheduler(pid_t pid) |
| 4853 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4854 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4855 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | |
| 4857 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4858 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4859 | |
| 4860 | retval = -ESRCH; |
| 4861 | read_lock(&tasklist_lock); |
| 4862 | p = find_process_by_pid(pid); |
| 4863 | if (p) { |
| 4864 | retval = security_task_getscheduler(p); |
| 4865 | if (!retval) |
| 4866 | retval = p->policy; |
| 4867 | } |
| 4868 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4869 | return retval; |
| 4870 | } |
| 4871 | |
| 4872 | /** |
| 4873 | * sys_sched_getscheduler - get the RT priority of a thread |
| 4874 | * @pid: the pid in question. |
| 4875 | * @param: structure containing the RT priority. |
| 4876 | */ |
| 4877 | asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param) |
| 4878 | { |
| 4879 | struct sched_param lp; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4880 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4881 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4882 | |
| 4883 | if (!param || pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4884 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4885 | |
| 4886 | read_lock(&tasklist_lock); |
| 4887 | p = find_process_by_pid(pid); |
| 4888 | retval = -ESRCH; |
| 4889 | if (!p) |
| 4890 | goto out_unlock; |
| 4891 | |
| 4892 | retval = security_task_getscheduler(p); |
| 4893 | if (retval) |
| 4894 | goto out_unlock; |
| 4895 | |
| 4896 | lp.sched_priority = p->rt_priority; |
| 4897 | read_unlock(&tasklist_lock); |
| 4898 | |
| 4899 | /* |
| 4900 | * This one might sleep, we cannot do it with a spinlock held ... |
| 4901 | */ |
| 4902 | retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0; |
| 4903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4904 | return retval; |
| 4905 | |
| 4906 | out_unlock: |
| 4907 | read_unlock(&tasklist_lock); |
| 4908 | return retval; |
| 4909 | } |
| 4910 | |
| 4911 | long sched_setaffinity(pid_t pid, cpumask_t new_mask) |
| 4912 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4913 | cpumask_t cpus_allowed; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4914 | struct task_struct *p; |
| 4915 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4916 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4917 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4918 | read_lock(&tasklist_lock); |
| 4919 | |
| 4920 | p = find_process_by_pid(pid); |
| 4921 | if (!p) { |
| 4922 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4923 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4924 | return -ESRCH; |
| 4925 | } |
| 4926 | |
| 4927 | /* |
| 4928 | * It is not safe to call set_cpus_allowed with the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4929 | * tasklist_lock held. We will bump the task_struct's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4930 | * usage count and then drop tasklist_lock. |
| 4931 | */ |
| 4932 | get_task_struct(p); |
| 4933 | read_unlock(&tasklist_lock); |
| 4934 | |
| 4935 | retval = -EPERM; |
| 4936 | if ((current->euid != p->euid) && (current->euid != p->uid) && |
| 4937 | !capable(CAP_SYS_NICE)) |
| 4938 | goto out_unlock; |
| 4939 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 4940 | retval = security_task_setscheduler(p, 0, NULL); |
| 4941 | if (retval) |
| 4942 | goto out_unlock; |
| 4943 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4945 | cpus_and(new_mask, new_mask, cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4946 | again: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4947 | retval = set_cpus_allowed(p, new_mask); |
| 4948 | |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 4949 | if (!retval) { |
| 4950 | cpus_allowed = cpuset_cpus_allowed(p); |
| 4951 | if (!cpus_subset(new_mask, cpus_allowed)) { |
| 4952 | /* |
| 4953 | * We must have raced with a concurrent cpuset |
| 4954 | * update. Just reset the cpus_allowed to the |
| 4955 | * cpuset's cpus_allowed |
| 4956 | */ |
| 4957 | new_mask = cpus_allowed; |
| 4958 | goto again; |
| 4959 | } |
| 4960 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4961 | out_unlock: |
| 4962 | put_task_struct(p); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4963 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4964 | return retval; |
| 4965 | } |
| 4966 | |
| 4967 | static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len, |
| 4968 | cpumask_t *new_mask) |
| 4969 | { |
| 4970 | if (len < sizeof(cpumask_t)) { |
| 4971 | memset(new_mask, 0, sizeof(cpumask_t)); |
| 4972 | } else if (len > sizeof(cpumask_t)) { |
| 4973 | len = sizeof(cpumask_t); |
| 4974 | } |
| 4975 | return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0; |
| 4976 | } |
| 4977 | |
| 4978 | /** |
| 4979 | * sys_sched_setaffinity - set the cpu affinity of a process |
| 4980 | * @pid: pid of the process |
| 4981 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 4982 | * @user_mask_ptr: user-space pointer to the new cpu mask |
| 4983 | */ |
| 4984 | asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len, |
| 4985 | unsigned long __user *user_mask_ptr) |
| 4986 | { |
| 4987 | cpumask_t new_mask; |
| 4988 | int retval; |
| 4989 | |
| 4990 | retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask); |
| 4991 | if (retval) |
| 4992 | return retval; |
| 4993 | |
| 4994 | return sched_setaffinity(pid, new_mask); |
| 4995 | } |
| 4996 | |
| 4997 | /* |
| 4998 | * Represents all cpu's present in the system |
| 4999 | * In systems capable of hotplug, this map could dynamically grow |
| 5000 | * as new cpu's are detected in the system via any platform specific |
| 5001 | * method, such as ACPI for e.g. |
| 5002 | */ |
| 5003 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 5004 | cpumask_t cpu_present_map __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5005 | EXPORT_SYMBOL(cpu_present_map); |
| 5006 | |
| 5007 | #ifndef CONFIG_SMP |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 5008 | cpumask_t cpu_online_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 5009 | EXPORT_SYMBOL(cpu_online_map); |
| 5010 | |
Andi Kleen | 4cef0c6 | 2006-01-11 22:44:57 +0100 | [diff] [blame] | 5011 | cpumask_t cpu_possible_map __read_mostly = CPU_MASK_ALL; |
Greg Banks | e16b38f | 2006-10-02 02:17:40 -0700 | [diff] [blame] | 5012 | EXPORT_SYMBOL(cpu_possible_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5013 | #endif |
| 5014 | |
| 5015 | long sched_getaffinity(pid_t pid, cpumask_t *mask) |
| 5016 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5017 | struct task_struct *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5018 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5019 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5020 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5021 | read_lock(&tasklist_lock); |
| 5022 | |
| 5023 | retval = -ESRCH; |
| 5024 | p = find_process_by_pid(pid); |
| 5025 | if (!p) |
| 5026 | goto out_unlock; |
| 5027 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 5028 | retval = security_task_getscheduler(p); |
| 5029 | if (retval) |
| 5030 | goto out_unlock; |
| 5031 | |
Jack Steiner | 2f7016d | 2006-02-01 03:05:18 -0800 | [diff] [blame] | 5032 | cpus_and(*mask, p->cpus_allowed, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5033 | |
| 5034 | out_unlock: |
| 5035 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5036 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5037 | |
Ulrich Drepper | 9531b62 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5038 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | } |
| 5040 | |
| 5041 | /** |
| 5042 | * sys_sched_getaffinity - get the cpu affinity of a process |
| 5043 | * @pid: pid of the process |
| 5044 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 5045 | * @user_mask_ptr: user-space pointer to hold the current cpu mask |
| 5046 | */ |
| 5047 | asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len, |
| 5048 | unsigned long __user *user_mask_ptr) |
| 5049 | { |
| 5050 | int ret; |
| 5051 | cpumask_t mask; |
| 5052 | |
| 5053 | if (len < sizeof(cpumask_t)) |
| 5054 | return -EINVAL; |
| 5055 | |
| 5056 | ret = sched_getaffinity(pid, &mask); |
| 5057 | if (ret < 0) |
| 5058 | return ret; |
| 5059 | |
| 5060 | if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t))) |
| 5061 | return -EFAULT; |
| 5062 | |
| 5063 | return sizeof(cpumask_t); |
| 5064 | } |
| 5065 | |
| 5066 | /** |
| 5067 | * sys_sched_yield - yield the current processor to other threads. |
| 5068 | * |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5069 | * This function yields the current CPU to other tasks. If there are no |
| 5070 | * other threads running on this CPU then this function will return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5071 | */ |
| 5072 | asmlinkage long sys_sched_yield(void) |
| 5073 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5074 | struct rq *rq = this_rq_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 5076 | schedstat_inc(rq, yld_count); |
Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5077 | current->sched_class->yield_task(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5078 | |
| 5079 | /* |
| 5080 | * Since we are going to call schedule() anyway, there's |
| 5081 | * no need to preempt or enable interrupts: |
| 5082 | */ |
| 5083 | __release(rq->lock); |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 5084 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5085 | _raw_spin_unlock(&rq->lock); |
| 5086 | preempt_enable_no_resched(); |
| 5087 | |
| 5088 | schedule(); |
| 5089 | |
| 5090 | return 0; |
| 5091 | } |
| 5092 | |
Andrew Morton | e7b3840 | 2006-06-30 01:56:00 -0700 | [diff] [blame] | 5093 | static void __cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5094 | { |
Ingo Molnar | 8e0a43d | 2006-06-23 02:05:23 -0700 | [diff] [blame] | 5095 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 5096 | __might_sleep(__FILE__, __LINE__); |
| 5097 | #endif |
Ingo Molnar | 5bbcfd9 | 2005-07-07 17:57:04 -0700 | [diff] [blame] | 5098 | /* |
| 5099 | * The BKS might be reacquired before we have dropped |
| 5100 | * PREEMPT_ACTIVE, which could trigger a second |
| 5101 | * cond_resched() call. |
| 5102 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5103 | do { |
| 5104 | add_preempt_count(PREEMPT_ACTIVE); |
| 5105 | schedule(); |
| 5106 | sub_preempt_count(PREEMPT_ACTIVE); |
| 5107 | } while (need_resched()); |
| 5108 | } |
| 5109 | |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5110 | #if !defined(CONFIG_PREEMPT) || defined(CONFIG_PREEMPT_VOLUNTARY) |
| 5111 | int __sched _cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5112 | { |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 5113 | if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) && |
| 5114 | system_state == SYSTEM_RUNNING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5115 | __cond_resched(); |
| 5116 | return 1; |
| 5117 | } |
| 5118 | return 0; |
| 5119 | } |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5120 | EXPORT_SYMBOL(_cond_resched); |
| 5121 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5122 | |
| 5123 | /* |
| 5124 | * cond_resched_lock() - if a reschedule is pending, drop the given lock, |
| 5125 | * call schedule, and on return reacquire the lock. |
| 5126 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5127 | * 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] | 5128 | * operations here to prevent schedule() from being called twice (once via |
| 5129 | * spin_unlock(), once by hand). |
| 5130 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5131 | int cond_resched_lock(spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5132 | { |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5133 | int resched = need_resched() && system_state == SYSTEM_RUNNING; |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5134 | int ret = 0; |
| 5135 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5136 | if (spin_needbreak(lock) || resched) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5137 | spin_unlock(lock); |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5138 | if (resched && need_resched()) |
| 5139 | __cond_resched(); |
| 5140 | else |
| 5141 | cpu_relax(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5142 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5143 | spin_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5144 | } |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5145 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5146 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5147 | EXPORT_SYMBOL(cond_resched_lock); |
| 5148 | |
| 5149 | int __sched cond_resched_softirq(void) |
| 5150 | { |
| 5151 | BUG_ON(!in_softirq()); |
| 5152 | |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 5153 | if (need_resched() && system_state == SYSTEM_RUNNING) { |
Thomas Gleixner | 98d82567 | 2007-05-23 13:58:18 -0700 | [diff] [blame] | 5154 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5155 | __cond_resched(); |
| 5156 | local_bh_disable(); |
| 5157 | return 1; |
| 5158 | } |
| 5159 | return 0; |
| 5160 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5161 | EXPORT_SYMBOL(cond_resched_softirq); |
| 5162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5163 | /** |
| 5164 | * yield - yield the current processor to other threads. |
| 5165 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 5166 | * This is a shortcut for kernel-space yielding - it marks the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5167 | * thread runnable and calls sys_sched_yield(). |
| 5168 | */ |
| 5169 | void __sched yield(void) |
| 5170 | { |
| 5171 | set_current_state(TASK_RUNNING); |
| 5172 | sys_sched_yield(); |
| 5173 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5174 | EXPORT_SYMBOL(yield); |
| 5175 | |
| 5176 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5177 | * 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] | 5178 | * that process accounting knows that this is a task in IO wait state. |
| 5179 | * |
| 5180 | * But don't do that if it is a deliberate, throttling IO wait (this task |
| 5181 | * has set its backing_dev_info: the queue against which it should throttle) |
| 5182 | */ |
| 5183 | void __sched io_schedule(void) |
| 5184 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5185 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5186 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5187 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5188 | atomic_inc(&rq->nr_iowait); |
| 5189 | schedule(); |
| 5190 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5191 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5192 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5193 | EXPORT_SYMBOL(io_schedule); |
| 5194 | |
| 5195 | long __sched io_schedule_timeout(long timeout) |
| 5196 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5197 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5198 | long ret; |
| 5199 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5200 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5201 | atomic_inc(&rq->nr_iowait); |
| 5202 | ret = schedule_timeout(timeout); |
| 5203 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5204 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5205 | return ret; |
| 5206 | } |
| 5207 | |
| 5208 | /** |
| 5209 | * sys_sched_get_priority_max - return maximum RT priority. |
| 5210 | * @policy: scheduling class. |
| 5211 | * |
| 5212 | * this syscall returns the maximum rt_priority that can be used |
| 5213 | * by a given scheduling class. |
| 5214 | */ |
| 5215 | asmlinkage long sys_sched_get_priority_max(int policy) |
| 5216 | { |
| 5217 | int ret = -EINVAL; |
| 5218 | |
| 5219 | switch (policy) { |
| 5220 | case SCHED_FIFO: |
| 5221 | case SCHED_RR: |
| 5222 | ret = MAX_USER_RT_PRIO-1; |
| 5223 | break; |
| 5224 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5225 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5226 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5227 | ret = 0; |
| 5228 | break; |
| 5229 | } |
| 5230 | return ret; |
| 5231 | } |
| 5232 | |
| 5233 | /** |
| 5234 | * sys_sched_get_priority_min - return minimum RT priority. |
| 5235 | * @policy: scheduling class. |
| 5236 | * |
| 5237 | * this syscall returns the minimum rt_priority that can be used |
| 5238 | * by a given scheduling class. |
| 5239 | */ |
| 5240 | asmlinkage long sys_sched_get_priority_min(int policy) |
| 5241 | { |
| 5242 | int ret = -EINVAL; |
| 5243 | |
| 5244 | switch (policy) { |
| 5245 | case SCHED_FIFO: |
| 5246 | case SCHED_RR: |
| 5247 | ret = 1; |
| 5248 | break; |
| 5249 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5250 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5251 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5252 | ret = 0; |
| 5253 | } |
| 5254 | return ret; |
| 5255 | } |
| 5256 | |
| 5257 | /** |
| 5258 | * sys_sched_rr_get_interval - return the default timeslice of a process. |
| 5259 | * @pid: pid of the process. |
| 5260 | * @interval: userspace pointer to the timeslice value. |
| 5261 | * |
| 5262 | * this syscall writes the default timeslice value of a given process |
| 5263 | * into the user-space timespec buffer. A value of '0' means infinity. |
| 5264 | */ |
| 5265 | asmlinkage |
| 5266 | long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval) |
| 5267 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5268 | struct task_struct *p; |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5269 | unsigned int time_slice; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5270 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5271 | struct timespec t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5272 | |
| 5273 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5274 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5275 | |
| 5276 | retval = -ESRCH; |
| 5277 | read_lock(&tasklist_lock); |
| 5278 | p = find_process_by_pid(pid); |
| 5279 | if (!p) |
| 5280 | goto out_unlock; |
| 5281 | |
| 5282 | retval = security_task_getscheduler(p); |
| 5283 | if (retval) |
| 5284 | goto out_unlock; |
| 5285 | |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5286 | /* |
| 5287 | * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER |
| 5288 | * tasks that are on an otherwise idle runqueue: |
| 5289 | */ |
| 5290 | time_slice = 0; |
| 5291 | if (p->policy == SCHED_RR) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5292 | time_slice = DEF_TIMESLICE; |
Miao Xie | 1868f95 | 2008-03-07 09:35:06 +0800 | [diff] [blame] | 5293 | } else if (p->policy != SCHED_FIFO) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5294 | struct sched_entity *se = &p->se; |
| 5295 | unsigned long flags; |
| 5296 | struct rq *rq; |
| 5297 | |
| 5298 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5299 | if (rq->cfs.load.weight) |
| 5300 | time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se)); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5301 | task_rq_unlock(rq, &flags); |
| 5302 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5303 | read_unlock(&tasklist_lock); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5304 | jiffies_to_timespec(time_slice, &t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5305 | retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5306 | return retval; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5308 | out_unlock: |
| 5309 | read_unlock(&tasklist_lock); |
| 5310 | return retval; |
| 5311 | } |
| 5312 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5313 | static const char stat_nam[] = "RSDTtZX"; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5314 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5315 | void sched_show_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5316 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5317 | unsigned long free = 0; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5318 | unsigned state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5319 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5320 | state = p->state ? __ffs(p->state) + 1 : 0; |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5321 | printk(KERN_INFO "%-13.13s %c", p->comm, |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5322 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5323 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5324 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5325 | printk(KERN_CONT " running "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5326 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5327 | printk(KERN_CONT " %08lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5328 | #else |
| 5329 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5330 | printk(KERN_CONT " running task "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5331 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5332 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5333 | #endif |
| 5334 | #ifdef CONFIG_DEBUG_STACK_USAGE |
| 5335 | { |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5336 | unsigned long *n = end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5337 | while (!*n) |
| 5338 | n++; |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5339 | free = (unsigned long)n - (unsigned long)end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5340 | } |
| 5341 | #endif |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 5342 | printk(KERN_CONT "%5lu %5d %6d\n", free, |
Roland McGrath | fcfd50a | 2008-01-09 00:03:23 -0800 | [diff] [blame] | 5343 | task_pid_nr(p), task_pid_nr(p->real_parent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5344 | |
Nick Piggin | 5fb5e6d | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5345 | show_stack(p, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5346 | } |
| 5347 | |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5348 | void show_state_filter(unsigned long state_filter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5349 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5350 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5351 | |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5352 | #if BITS_PER_LONG == 32 |
| 5353 | printk(KERN_INFO |
| 5354 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5355 | #else |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5356 | printk(KERN_INFO |
| 5357 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5358 | #endif |
| 5359 | read_lock(&tasklist_lock); |
| 5360 | do_each_thread(g, p) { |
| 5361 | /* |
| 5362 | * reset the NMI-timeout, listing all files on a slow |
| 5363 | * console might take alot of time: |
| 5364 | */ |
| 5365 | touch_nmi_watchdog(); |
Ingo Molnar | 39bc89f | 2007-04-25 20:50:03 -0700 | [diff] [blame] | 5366 | if (!state_filter || (p->state & state_filter)) |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5367 | sched_show_task(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5368 | } while_each_thread(g, p); |
| 5369 | |
Jeremy Fitzhardinge | 04c9167 | 2007-05-08 00:28:05 -0700 | [diff] [blame] | 5370 | touch_all_softlockup_watchdogs(); |
| 5371 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5372 | #ifdef CONFIG_SCHED_DEBUG |
| 5373 | sysrq_sched_debug_show(); |
| 5374 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5375 | read_unlock(&tasklist_lock); |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5376 | /* |
| 5377 | * Only show locks if all tasks are dumped: |
| 5378 | */ |
| 5379 | if (state_filter == -1) |
| 5380 | debug_show_all_locks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5381 | } |
| 5382 | |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5383 | void __cpuinit init_idle_bootup_task(struct task_struct *idle) |
| 5384 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5385 | idle->sched_class = &idle_sched_class; |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5386 | } |
| 5387 | |
Ingo Molnar | f340c0d | 2005-06-28 16:40:42 +0200 | [diff] [blame] | 5388 | /** |
| 5389 | * init_idle - set up an idle thread for a given CPU |
| 5390 | * @idle: task in question |
| 5391 | * @cpu: cpu the idle task belongs to |
| 5392 | * |
| 5393 | * NOTE: this function does not set the idle thread's NEED_RESCHED |
| 5394 | * flag, to make booting more robust. |
| 5395 | */ |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 5396 | void __cpuinit init_idle(struct task_struct *idle, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5397 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5398 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5399 | unsigned long flags; |
| 5400 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5401 | __sched_fork(idle); |
| 5402 | idle->se.exec_start = sched_clock(); |
| 5403 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5404 | idle->prio = idle->normal_prio = MAX_PRIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5405 | idle->cpus_allowed = cpumask_of_cpu(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5406 | __set_task_cpu(idle, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5407 | |
| 5408 | spin_lock_irqsave(&rq->lock, flags); |
| 5409 | rq->curr = rq->idle = idle; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 5410 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
| 5411 | idle->oncpu = 1; |
| 5412 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5413 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5414 | |
| 5415 | /* Set the preempt count _outside_ the spinlocks! */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 5416 | task_thread_info(idle)->preempt_count = 0; |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 5417 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5418 | /* |
| 5419 | * The idle tasks have their own, simple scheduling class: |
| 5420 | */ |
| 5421 | idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5422 | } |
| 5423 | |
| 5424 | /* |
| 5425 | * In a system that switches off the HZ timer nohz_cpu_mask |
| 5426 | * indicates which cpus entered this state. This is used |
| 5427 | * in the rcu update to wait only for active cpus. For system |
| 5428 | * which do not switch off the HZ timer nohz_cpu_mask should |
| 5429 | * always be CPU_MASK_NONE. |
| 5430 | */ |
| 5431 | cpumask_t nohz_cpu_mask = CPU_MASK_NONE; |
| 5432 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5433 | /* |
| 5434 | * Increase the granularity value when there are more CPUs, |
| 5435 | * because with more CPUs the 'effective latency' as visible |
| 5436 | * to users decreases. But the relationship is not linear, |
| 5437 | * so pick a second-best guess by going with the log2 of the |
| 5438 | * number of CPUs. |
| 5439 | * |
| 5440 | * This idea comes from the SD scheduler of Con Kolivas: |
| 5441 | */ |
| 5442 | static inline void sched_init_granularity(void) |
| 5443 | { |
| 5444 | unsigned int factor = 1 + ilog2(num_online_cpus()); |
| 5445 | const unsigned long limit = 200000000; |
| 5446 | |
| 5447 | sysctl_sched_min_granularity *= factor; |
| 5448 | if (sysctl_sched_min_granularity > limit) |
| 5449 | sysctl_sched_min_granularity = limit; |
| 5450 | |
| 5451 | sysctl_sched_latency *= factor; |
| 5452 | if (sysctl_sched_latency > limit) |
| 5453 | sysctl_sched_latency = limit; |
| 5454 | |
| 5455 | sysctl_sched_wakeup_granularity *= factor; |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5456 | } |
| 5457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5458 | #ifdef CONFIG_SMP |
| 5459 | /* |
| 5460 | * This is how migration works: |
| 5461 | * |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5462 | * 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] | 5463 | * runqueue and wake up that CPU's migration thread. |
| 5464 | * 2) we down() the locked semaphore => thread blocks. |
| 5465 | * 3) migration thread wakes up (implicitly it forces the migrated |
| 5466 | * thread off the CPU) |
| 5467 | * 4) it gets the migration request and checks whether the migrated |
| 5468 | * task is still in the wrong runqueue. |
| 5469 | * 5) if it's in the wrong runqueue then the migration thread removes |
| 5470 | * it and puts it into the right queue. |
| 5471 | * 6) migration thread up()s the semaphore. |
| 5472 | * 7) we wake up and the migration is done. |
| 5473 | */ |
| 5474 | |
| 5475 | /* |
| 5476 | * Change a given task's CPU affinity. Migrate the thread to a |
| 5477 | * proper CPU and schedule it away if the CPU it's executing on |
| 5478 | * is removed from the allowed bitmask. |
| 5479 | * |
| 5480 | * NOTE: the caller must have a valid reference to the task, the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5481 | * task must not exit() & deallocate itself prematurely. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5482 | * call is not atomic; no spinlocks may be held. |
| 5483 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5484 | int set_cpus_allowed(struct task_struct *p, cpumask_t new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5485 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5486 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5487 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5488 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5489 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5490 | |
| 5491 | rq = task_rq_lock(p, &flags); |
| 5492 | if (!cpus_intersects(new_mask, cpu_online_map)) { |
| 5493 | ret = -EINVAL; |
| 5494 | goto out; |
| 5495 | } |
| 5496 | |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5497 | if (p->sched_class->set_cpus_allowed) |
| 5498 | p->sched_class->set_cpus_allowed(p, &new_mask); |
| 5499 | else { |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 5500 | p->cpus_allowed = new_mask; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 5501 | p->rt.nr_cpus_allowed = cpus_weight(new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5502 | } |
| 5503 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5504 | /* Can the task run on the task's current CPU? If so, we're done */ |
| 5505 | if (cpu_isset(task_cpu(p), new_mask)) |
| 5506 | goto out; |
| 5507 | |
| 5508 | if (migrate_task(p, any_online_cpu(new_mask), &req)) { |
| 5509 | /* Need help from migration thread: drop lock and wait. */ |
| 5510 | task_rq_unlock(rq, &flags); |
| 5511 | wake_up_process(rq->migration_thread); |
| 5512 | wait_for_completion(&req.done); |
| 5513 | tlb_migrate_finish(p->mm); |
| 5514 | return 0; |
| 5515 | } |
| 5516 | out: |
| 5517 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5518 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5519 | return ret; |
| 5520 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5521 | EXPORT_SYMBOL_GPL(set_cpus_allowed); |
| 5522 | |
| 5523 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5524 | * 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] | 5525 | * this because either it can't run here any more (set_cpus_allowed() |
| 5526 | * away from this CPU, or CPU going down), or because we're |
| 5527 | * attempting to rebalance this task on exec (sched_exec). |
| 5528 | * |
| 5529 | * So we race with normal scheduler movements, but that's OK, as long |
| 5530 | * as the task is no longer on this CPU. |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5531 | * |
| 5532 | * Returns non-zero if task was successfully migrated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5533 | */ |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5534 | 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] | 5535 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5536 | struct rq *rq_dest, *rq_src; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5537 | int ret = 0, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5538 | |
| 5539 | if (unlikely(cpu_is_offline(dest_cpu))) |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5540 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5541 | |
| 5542 | rq_src = cpu_rq(src_cpu); |
| 5543 | rq_dest = cpu_rq(dest_cpu); |
| 5544 | |
| 5545 | double_rq_lock(rq_src, rq_dest); |
| 5546 | /* Already moved. */ |
| 5547 | if (task_cpu(p) != src_cpu) |
| 5548 | goto out; |
| 5549 | /* Affinity changed (again). */ |
| 5550 | if (!cpu_isset(dest_cpu, p->cpus_allowed)) |
| 5551 | goto out; |
| 5552 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5553 | on_rq = p->se.on_rq; |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5554 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5555 | deactivate_task(rq_src, p, 0); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5556 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5557 | set_task_cpu(p, dest_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5558 | if (on_rq) { |
| 5559 | activate_task(rq_dest, p, 0); |
| 5560 | check_preempt_curr(rq_dest, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5561 | } |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5562 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5563 | out: |
| 5564 | double_rq_unlock(rq_src, rq_dest); |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5565 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5566 | } |
| 5567 | |
| 5568 | /* |
| 5569 | * migration_thread - this is a highprio system thread that performs |
| 5570 | * thread migration by bumping thread off CPU then 'pushing' onto |
| 5571 | * another runqueue. |
| 5572 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5573 | static int migration_thread(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5574 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5575 | int cpu = (long)data; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5576 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5577 | |
| 5578 | rq = cpu_rq(cpu); |
| 5579 | BUG_ON(rq->migration_thread != current); |
| 5580 | |
| 5581 | set_current_state(TASK_INTERRUPTIBLE); |
| 5582 | while (!kthread_should_stop()) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5583 | struct migration_req *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5584 | struct list_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5586 | spin_lock_irq(&rq->lock); |
| 5587 | |
| 5588 | if (cpu_is_offline(cpu)) { |
| 5589 | spin_unlock_irq(&rq->lock); |
| 5590 | goto wait_to_die; |
| 5591 | } |
| 5592 | |
| 5593 | if (rq->active_balance) { |
| 5594 | active_load_balance(rq, cpu); |
| 5595 | rq->active_balance = 0; |
| 5596 | } |
| 5597 | |
| 5598 | head = &rq->migration_queue; |
| 5599 | |
| 5600 | if (list_empty(head)) { |
| 5601 | spin_unlock_irq(&rq->lock); |
| 5602 | schedule(); |
| 5603 | set_current_state(TASK_INTERRUPTIBLE); |
| 5604 | continue; |
| 5605 | } |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5606 | req = list_entry(head->next, struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5607 | list_del_init(head->next); |
| 5608 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 5609 | spin_unlock(&rq->lock); |
| 5610 | __migrate_task(req->task, cpu, req->dest_cpu); |
| 5611 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5612 | |
| 5613 | complete(&req->done); |
| 5614 | } |
| 5615 | __set_current_state(TASK_RUNNING); |
| 5616 | return 0; |
| 5617 | |
| 5618 | wait_to_die: |
| 5619 | /* Wait for kthread_stop */ |
| 5620 | set_current_state(TASK_INTERRUPTIBLE); |
| 5621 | while (!kthread_should_stop()) { |
| 5622 | schedule(); |
| 5623 | set_current_state(TASK_INTERRUPTIBLE); |
| 5624 | } |
| 5625 | __set_current_state(TASK_RUNNING); |
| 5626 | return 0; |
| 5627 | } |
| 5628 | |
| 5629 | #ifdef CONFIG_HOTPLUG_CPU |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5630 | |
| 5631 | static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu) |
| 5632 | { |
| 5633 | int ret; |
| 5634 | |
| 5635 | local_irq_disable(); |
| 5636 | ret = __migrate_task(p, src_cpu, dest_cpu); |
| 5637 | local_irq_enable(); |
| 5638 | return ret; |
| 5639 | } |
| 5640 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5641 | /* |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5642 | * 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] | 5643 | * NOTE: interrupts should be disabled by the caller |
| 5644 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5645 | 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] | 5646 | { |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5647 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5648 | cpumask_t mask; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5649 | struct rq *rq; |
| 5650 | int dest_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5651 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5652 | do { |
| 5653 | /* On same node? */ |
| 5654 | mask = node_to_cpumask(cpu_to_node(dead_cpu)); |
| 5655 | cpus_and(mask, mask, p->cpus_allowed); |
| 5656 | dest_cpu = any_online_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5657 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5658 | /* On any allowed CPU? */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 5659 | if (dest_cpu >= nr_cpu_ids) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5660 | dest_cpu = any_online_cpu(p->cpus_allowed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5661 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5662 | /* No more Mr. Nice Guy. */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 5663 | if (dest_cpu >= nr_cpu_ids) { |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5664 | cpumask_t cpus_allowed = cpuset_cpus_allowed_locked(p); |
| 5665 | /* |
| 5666 | * Try to stay on the same cpuset, where the |
| 5667 | * current cpuset may be a subset of all cpus. |
| 5668 | * The cpuset_cpus_allowed_locked() variant of |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5669 | * cpuset_cpus_allowed() will not block. It must be |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5670 | * called within calls to cpuset_lock/cpuset_unlock. |
| 5671 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5672 | rq = task_rq_lock(p, &flags); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5673 | p->cpus_allowed = cpus_allowed; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5674 | dest_cpu = any_online_cpu(p->cpus_allowed); |
| 5675 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5676 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5677 | /* |
| 5678 | * Don't tell them about moving exiting tasks or |
| 5679 | * kernel threads (both mm NULL), since they never |
| 5680 | * leave kernel. |
| 5681 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5682 | if (p->mm && printk_ratelimit()) { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5683 | printk(KERN_INFO "process %d (%s) no " |
| 5684 | "longer affine to cpu%d\n", |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5685 | task_pid_nr(p), p->comm, dead_cpu); |
| 5686 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5687 | } |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5688 | } while (!__migrate_task_irq(p, dead_cpu, dest_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5689 | } |
| 5690 | |
| 5691 | /* |
| 5692 | * While a dead CPU has no uninterruptible tasks queued at this point, |
| 5693 | * it might still have a nonzero ->nr_uninterruptible counter, because |
| 5694 | * for performance reasons the counter is not stricly tracking tasks to |
| 5695 | * their home CPUs. So we just add the counter to another CPU's counter, |
| 5696 | * to keep the global sum constant after CPU-down: |
| 5697 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5698 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5699 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5700 | struct rq *rq_dest = cpu_rq(any_online_cpu(CPU_MASK_ALL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5701 | unsigned long flags; |
| 5702 | |
| 5703 | local_irq_save(flags); |
| 5704 | double_rq_lock(rq_src, rq_dest); |
| 5705 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
| 5706 | rq_src->nr_uninterruptible = 0; |
| 5707 | double_rq_unlock(rq_src, rq_dest); |
| 5708 | local_irq_restore(flags); |
| 5709 | } |
| 5710 | |
| 5711 | /* Run through task list and migrate tasks from the dead cpu. */ |
| 5712 | static void migrate_live_tasks(int src_cpu) |
| 5713 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5714 | struct task_struct *p, *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5715 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5716 | read_lock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5717 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5718 | do_each_thread(t, p) { |
| 5719 | if (p == current) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5720 | continue; |
| 5721 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5722 | if (task_cpu(p) == src_cpu) |
| 5723 | move_task_off_dead_cpu(src_cpu, p); |
| 5724 | } while_each_thread(t, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5725 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5726 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5727 | } |
| 5728 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5729 | /* |
| 5730 | * Schedules idle task to be the next runnable task on current CPU. |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5731 | * It does so by boosting its priority to highest possible. |
| 5732 | * Used by CPU offline code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5733 | */ |
| 5734 | void sched_idle_next(void) |
| 5735 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5736 | int this_cpu = smp_processor_id(); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5737 | struct rq *rq = cpu_rq(this_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5738 | struct task_struct *p = rq->idle; |
| 5739 | unsigned long flags; |
| 5740 | |
| 5741 | /* cpu has to be offline */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5742 | BUG_ON(cpu_online(this_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5743 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5744 | /* |
| 5745 | * Strictly not necessary since rest of the CPUs are stopped by now |
| 5746 | * and interrupts disabled on the current cpu. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5747 | */ |
| 5748 | spin_lock_irqsave(&rq->lock, flags); |
| 5749 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5750 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5751 | |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5752 | update_rq_clock(rq); |
| 5753 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5754 | |
| 5755 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5756 | } |
| 5757 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5758 | /* |
| 5759 | * 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] | 5760 | * offline. |
| 5761 | */ |
| 5762 | void idle_task_exit(void) |
| 5763 | { |
| 5764 | struct mm_struct *mm = current->active_mm; |
| 5765 | |
| 5766 | BUG_ON(cpu_online(smp_processor_id())); |
| 5767 | |
| 5768 | if (mm != &init_mm) |
| 5769 | switch_mm(mm, &init_mm, current); |
| 5770 | mmdrop(mm); |
| 5771 | } |
| 5772 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5773 | /* called under rq->lock with disabled interrupts */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5774 | static void migrate_dead(unsigned int dead_cpu, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5775 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5776 | struct rq *rq = cpu_rq(dead_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5777 | |
| 5778 | /* Must be exiting, otherwise would be on tasklist. */ |
Eugene Teo | 270f722 | 2007-10-18 23:40:38 -0700 | [diff] [blame] | 5779 | BUG_ON(!p->exit_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5780 | |
| 5781 | /* Cannot have done final schedule yet: would have vanished. */ |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 5782 | BUG_ON(p->state == TASK_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5783 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5784 | get_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5785 | |
| 5786 | /* |
| 5787 | * Drop lock around migration; if someone else moves it, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5788 | * 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] | 5789 | * fine. |
| 5790 | */ |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5791 | spin_unlock_irq(&rq->lock); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5792 | move_task_off_dead_cpu(dead_cpu, p); |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5793 | spin_lock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5794 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5795 | put_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5796 | } |
| 5797 | |
| 5798 | /* release_task() removes task from tasklist, so we won't find dead tasks. */ |
| 5799 | static void migrate_dead_tasks(unsigned int dead_cpu) |
| 5800 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5801 | struct rq *rq = cpu_rq(dead_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5802 | struct task_struct *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5803 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5804 | for ( ; ; ) { |
| 5805 | if (!rq->nr_running) |
| 5806 | break; |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5807 | update_rq_clock(rq); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5808 | next = pick_next_task(rq, rq->curr); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5809 | if (!next) |
| 5810 | break; |
| 5811 | migrate_dead(dead_cpu, next); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5812 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5813 | } |
| 5814 | } |
| 5815 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 5816 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5817 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
| 5818 | |
| 5819 | static struct ctl_table sd_ctl_dir[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5820 | { |
| 5821 | .procname = "sched_domain", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5822 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5823 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5824 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5825 | }; |
| 5826 | |
| 5827 | static struct ctl_table sd_ctl_root[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5828 | { |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5829 | .ctl_name = CTL_KERN, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5830 | .procname = "kernel", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5831 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5832 | .child = sd_ctl_dir, |
| 5833 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5834 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5835 | }; |
| 5836 | |
| 5837 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
| 5838 | { |
| 5839 | struct ctl_table *entry = |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5840 | kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5841 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5842 | return entry; |
| 5843 | } |
| 5844 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5845 | static void sd_free_ctl_entry(struct ctl_table **tablep) |
| 5846 | { |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5847 | struct ctl_table *entry; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5848 | |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5849 | /* |
| 5850 | * In the intermediate directories, both the child directory and |
| 5851 | * procname are dynamically allocated and could fail but the mode |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5852 | * will always be set. In the lowest directory the names are |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5853 | * static strings and all have proc handlers. |
| 5854 | */ |
| 5855 | for (entry = *tablep; entry->mode; entry++) { |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5856 | if (entry->child) |
| 5857 | sd_free_ctl_entry(&entry->child); |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5858 | if (entry->proc_handler == NULL) |
| 5859 | kfree(entry->procname); |
| 5860 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5861 | |
| 5862 | kfree(*tablep); |
| 5863 | *tablep = NULL; |
| 5864 | } |
| 5865 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5866 | static void |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5867 | set_table_entry(struct ctl_table *entry, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5868 | const char *procname, void *data, int maxlen, |
| 5869 | mode_t mode, proc_handler *proc_handler) |
| 5870 | { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5871 | entry->procname = procname; |
| 5872 | entry->data = data; |
| 5873 | entry->maxlen = maxlen; |
| 5874 | entry->mode = mode; |
| 5875 | entry->proc_handler = proc_handler; |
| 5876 | } |
| 5877 | |
| 5878 | static struct ctl_table * |
| 5879 | sd_alloc_ctl_domain_table(struct sched_domain *sd) |
| 5880 | { |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5881 | struct ctl_table *table = sd_alloc_ctl_entry(12); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5882 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5883 | if (table == NULL) |
| 5884 | return NULL; |
| 5885 | |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5886 | set_table_entry(&table[0], "min_interval", &sd->min_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5887 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5888 | set_table_entry(&table[1], "max_interval", &sd->max_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5889 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5890 | set_table_entry(&table[2], "busy_idx", &sd->busy_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5891 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5892 | set_table_entry(&table[3], "idle_idx", &sd->idle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5893 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5894 | set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5895 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5896 | set_table_entry(&table[5], "wake_idx", &sd->wake_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5897 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5898 | set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5899 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5900 | set_table_entry(&table[7], "busy_factor", &sd->busy_factor, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5901 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5902 | set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5903 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5904 | set_table_entry(&table[9], "cache_nice_tries", |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5905 | &sd->cache_nice_tries, |
| 5906 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5907 | set_table_entry(&table[10], "flags", &sd->flags, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5908 | sizeof(int), 0644, proc_dointvec_minmax); |
Milton Miller | 6323469f | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5909 | /* &table[11] is terminator */ |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5910 | |
| 5911 | return table; |
| 5912 | } |
| 5913 | |
Ingo Molnar | 9a4e715 | 2007-11-28 15:52:56 +0100 | [diff] [blame] | 5914 | static ctl_table *sd_alloc_ctl_cpu_table(int cpu) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5915 | { |
| 5916 | struct ctl_table *entry, *table; |
| 5917 | struct sched_domain *sd; |
| 5918 | int domain_num = 0, i; |
| 5919 | char buf[32]; |
| 5920 | |
| 5921 | for_each_domain(cpu, sd) |
| 5922 | domain_num++; |
| 5923 | entry = table = sd_alloc_ctl_entry(domain_num + 1); |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5924 | if (table == NULL) |
| 5925 | return NULL; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5926 | |
| 5927 | i = 0; |
| 5928 | for_each_domain(cpu, sd) { |
| 5929 | snprintf(buf, 32, "domain%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5930 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5931 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5932 | entry->child = sd_alloc_ctl_domain_table(sd); |
| 5933 | entry++; |
| 5934 | i++; |
| 5935 | } |
| 5936 | return table; |
| 5937 | } |
| 5938 | |
| 5939 | static struct ctl_table_header *sd_sysctl_header; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5940 | static void register_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5941 | { |
| 5942 | int i, cpu_num = num_online_cpus(); |
| 5943 | struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1); |
| 5944 | char buf[32]; |
| 5945 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5946 | WARN_ON(sd_ctl_dir[0].child); |
| 5947 | sd_ctl_dir[0].child = entry; |
| 5948 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5949 | if (entry == NULL) |
| 5950 | return; |
| 5951 | |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5952 | for_each_online_cpu(i) { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5953 | snprintf(buf, 32, "cpu%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5954 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5955 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5956 | entry->child = sd_alloc_ctl_cpu_table(i); |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5957 | entry++; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5958 | } |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5959 | |
| 5960 | WARN_ON(sd_sysctl_header); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5961 | sd_sysctl_header = register_sysctl_table(sd_ctl_root); |
| 5962 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5963 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5964 | /* may be called multiple times per register */ |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5965 | static void unregister_sched_domain_sysctl(void) |
| 5966 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5967 | if (sd_sysctl_header) |
| 5968 | unregister_sysctl_table(sd_sysctl_header); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5969 | sd_sysctl_header = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 5970 | if (sd_ctl_dir[0].child) |
| 5971 | sd_free_ctl_entry(&sd_ctl_dir[0].child); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5972 | } |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5973 | #else |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5974 | static void register_sched_domain_sysctl(void) |
| 5975 | { |
| 5976 | } |
| 5977 | static void unregister_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5978 | { |
| 5979 | } |
| 5980 | #endif |
| 5981 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5982 | /* |
| 5983 | * migration_call - callback that gets triggered when a CPU is added. |
| 5984 | * Here we can start up the necessary migration thread for the new CPU. |
| 5985 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5986 | static int __cpuinit |
| 5987 | migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5988 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5989 | struct task_struct *p; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5990 | int cpu = (long)hcpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5991 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5992 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5993 | |
| 5994 | switch (action) { |
Gautham R Shenoy | 5be9361 | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 5995 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5996 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 5997 | case CPU_UP_PREPARE_FROZEN: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5998 | p = kthread_create(migration_thread, hcpu, "migration/%d", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5999 | if (IS_ERR(p)) |
| 6000 | return NOTIFY_BAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6001 | kthread_bind(p, cpu); |
| 6002 | /* Must be high prio: stop_machine expects to yield to it. */ |
| 6003 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6004 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6005 | task_rq_unlock(rq, &flags); |
| 6006 | cpu_rq(cpu)->migration_thread = p; |
| 6007 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6008 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6009 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6010 | case CPU_ONLINE_FROZEN: |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 6011 | /* Strictly unnecessary, as first user will wake it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6012 | wake_up_process(cpu_rq(cpu)->migration_thread); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6013 | |
| 6014 | /* Update our root-domain */ |
| 6015 | rq = cpu_rq(cpu); |
| 6016 | spin_lock_irqsave(&rq->lock, flags); |
| 6017 | if (rq->rd) { |
| 6018 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 6019 | cpu_set(cpu, rq->rd->online); |
| 6020 | } |
| 6021 | spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6022 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6024 | #ifdef CONFIG_HOTPLUG_CPU |
| 6025 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6026 | case CPU_UP_CANCELED_FROZEN: |
Heiko Carstens | fc75cdf | 2006-06-25 05:49:10 -0700 | [diff] [blame] | 6027 | if (!cpu_rq(cpu)->migration_thread) |
| 6028 | break; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6029 | /* Unbind it from offline cpu so it can run. Fall thru. */ |
Heiko Carstens | a4c4af7 | 2005-11-07 00:58:38 -0800 | [diff] [blame] | 6030 | kthread_bind(cpu_rq(cpu)->migration_thread, |
| 6031 | any_online_cpu(cpu_online_map)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6032 | kthread_stop(cpu_rq(cpu)->migration_thread); |
| 6033 | cpu_rq(cpu)->migration_thread = NULL; |
| 6034 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6035 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6036 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6037 | case CPU_DEAD_FROZEN: |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 6038 | cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6039 | migrate_live_tasks(cpu); |
| 6040 | rq = cpu_rq(cpu); |
| 6041 | kthread_stop(rq->migration_thread); |
| 6042 | rq->migration_thread = NULL; |
| 6043 | /* Idle task back to normal (off runqueue, low prio) */ |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 6044 | spin_lock_irq(&rq->lock); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 6045 | update_rq_clock(rq); |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 6046 | deactivate_task(rq, rq->idle, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6047 | rq->idle->static_prio = MAX_PRIO; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6048 | __setscheduler(rq, rq->idle, SCHED_NORMAL, 0); |
| 6049 | rq->idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6050 | migrate_dead_tasks(cpu); |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 6051 | spin_unlock_irq(&rq->lock); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 6052 | cpuset_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6053 | migrate_nr_uninterruptible(rq); |
| 6054 | BUG_ON(rq->nr_running != 0); |
| 6055 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6056 | /* |
| 6057 | * No need to migrate the tasks: it was best-effort if |
| 6058 | * they didn't take sched_hotcpu_mutex. Just wake up |
| 6059 | * the requestors. |
| 6060 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6061 | spin_lock_irq(&rq->lock); |
| 6062 | while (!list_empty(&rq->migration_queue)) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6063 | struct migration_req *req; |
| 6064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6065 | req = list_entry(rq->migration_queue.next, |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6066 | struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6067 | list_del_init(&req->list); |
| 6068 | complete(&req->done); |
| 6069 | } |
| 6070 | spin_unlock_irq(&rq->lock); |
| 6071 | break; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6072 | |
Gregory Haskins | 08f503b | 2008-03-10 17:59:11 -0400 | [diff] [blame] | 6073 | case CPU_DYING: |
| 6074 | case CPU_DYING_FROZEN: |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6075 | /* Update our root-domain */ |
| 6076 | rq = cpu_rq(cpu); |
| 6077 | spin_lock_irqsave(&rq->lock, flags); |
| 6078 | if (rq->rd) { |
| 6079 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
| 6080 | cpu_clear(cpu, rq->rd->online); |
| 6081 | } |
| 6082 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6083 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6084 | #endif |
| 6085 | } |
| 6086 | return NOTIFY_OK; |
| 6087 | } |
| 6088 | |
| 6089 | /* Register at highest priority so that task migration (migrate_all_tasks) |
| 6090 | * happens before everything else. |
| 6091 | */ |
Chandra Seetharaman | 26c2143 | 2006-06-27 02:54:10 -0700 | [diff] [blame] | 6092 | static struct notifier_block __cpuinitdata migration_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6093 | .notifier_call = migration_call, |
| 6094 | .priority = 10 |
| 6095 | }; |
| 6096 | |
Adrian Bunk | e6fe664 | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 6097 | void __init migration_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6098 | { |
| 6099 | void *cpu = (void *)(long)smp_processor_id(); |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6100 | int err; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6101 | |
| 6102 | /* Start one for the boot CPU: */ |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6103 | err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu); |
| 6104 | BUG_ON(err == NOTIFY_BAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6105 | migration_call(&migration_notifier, CPU_ONLINE, cpu); |
| 6106 | register_cpu_notifier(&migration_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6107 | } |
| 6108 | #endif |
| 6109 | |
| 6110 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 6111 | |
| 6112 | /* Number of possible processor ids */ |
| 6113 | int nr_cpu_ids __read_mostly = NR_CPUS; |
| 6114 | EXPORT_SYMBOL(nr_cpu_ids); |
| 6115 | |
Ingo Molnar | 3e9830d | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6116 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6117 | |
| 6118 | static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level) |
| 6119 | { |
| 6120 | struct sched_group *group = sd->groups; |
| 6121 | cpumask_t groupmask; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 6122 | char str[256]; |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6123 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 6124 | cpulist_scnprintf(str, sizeof(str), sd->span); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6125 | cpus_clear(groupmask); |
| 6126 | |
| 6127 | printk(KERN_DEBUG "%*s domain %d: ", level, "", level); |
| 6128 | |
| 6129 | if (!(sd->flags & SD_LOAD_BALANCE)) { |
| 6130 | printk("does not load-balance\n"); |
| 6131 | if (sd->parent) |
| 6132 | printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain" |
| 6133 | " has parent"); |
| 6134 | return -1; |
| 6135 | } |
| 6136 | |
| 6137 | printk(KERN_CONT "span %s\n", str); |
| 6138 | |
| 6139 | if (!cpu_isset(cpu, sd->span)) { |
| 6140 | printk(KERN_ERR "ERROR: domain->span does not contain " |
| 6141 | "CPU%d\n", cpu); |
| 6142 | } |
| 6143 | if (!cpu_isset(cpu, group->cpumask)) { |
| 6144 | printk(KERN_ERR "ERROR: domain->groups does not contain" |
| 6145 | " CPU%d\n", cpu); |
| 6146 | } |
| 6147 | |
| 6148 | printk(KERN_DEBUG "%*s groups:", level + 1, ""); |
| 6149 | do { |
| 6150 | if (!group) { |
| 6151 | printk("\n"); |
| 6152 | printk(KERN_ERR "ERROR: group is NULL\n"); |
| 6153 | break; |
| 6154 | } |
| 6155 | |
| 6156 | if (!group->__cpu_power) { |
| 6157 | printk(KERN_CONT "\n"); |
| 6158 | printk(KERN_ERR "ERROR: domain->cpu_power not " |
| 6159 | "set\n"); |
| 6160 | break; |
| 6161 | } |
| 6162 | |
| 6163 | if (!cpus_weight(group->cpumask)) { |
| 6164 | printk(KERN_CONT "\n"); |
| 6165 | printk(KERN_ERR "ERROR: empty group\n"); |
| 6166 | break; |
| 6167 | } |
| 6168 | |
| 6169 | if (cpus_intersects(groupmask, group->cpumask)) { |
| 6170 | printk(KERN_CONT "\n"); |
| 6171 | printk(KERN_ERR "ERROR: repeated CPUs\n"); |
| 6172 | break; |
| 6173 | } |
| 6174 | |
| 6175 | cpus_or(groupmask, groupmask, group->cpumask); |
| 6176 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 6177 | cpulist_scnprintf(str, sizeof(str), group->cpumask); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6178 | printk(KERN_CONT " %s", str); |
| 6179 | |
| 6180 | group = group->next; |
| 6181 | } while (group != sd->groups); |
| 6182 | printk(KERN_CONT "\n"); |
| 6183 | |
| 6184 | if (!cpus_equal(sd->span, groupmask)) |
| 6185 | printk(KERN_ERR "ERROR: groups don't span domain->span\n"); |
| 6186 | |
| 6187 | if (sd->parent && !cpus_subset(groupmask, sd->parent->span)) |
| 6188 | printk(KERN_ERR "ERROR: parent span is not a superset " |
| 6189 | "of domain->span\n"); |
| 6190 | return 0; |
| 6191 | } |
| 6192 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6193 | static void sched_domain_debug(struct sched_domain *sd, int cpu) |
| 6194 | { |
| 6195 | int level = 0; |
| 6196 | |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 6197 | if (!sd) { |
| 6198 | printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu); |
| 6199 | return; |
| 6200 | } |
| 6201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6202 | printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu); |
| 6203 | |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6204 | for (;;) { |
| 6205 | if (sched_domain_debug_one(sd, cpu, level)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6206 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6207 | level++; |
| 6208 | sd = sd->parent; |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 6209 | if (!sd) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6210 | break; |
| 6211 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6212 | } |
| 6213 | #else |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6214 | # define sched_domain_debug(sd, cpu) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6215 | #endif |
| 6216 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6217 | static int sd_degenerate(struct sched_domain *sd) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6218 | { |
| 6219 | if (cpus_weight(sd->span) == 1) |
| 6220 | return 1; |
| 6221 | |
| 6222 | /* Following flags need at least 2 groups */ |
| 6223 | if (sd->flags & (SD_LOAD_BALANCE | |
| 6224 | SD_BALANCE_NEWIDLE | |
| 6225 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6226 | SD_BALANCE_EXEC | |
| 6227 | SD_SHARE_CPUPOWER | |
| 6228 | SD_SHARE_PKG_RESOURCES)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6229 | if (sd->groups != sd->groups->next) |
| 6230 | return 0; |
| 6231 | } |
| 6232 | |
| 6233 | /* Following flags don't use groups */ |
| 6234 | if (sd->flags & (SD_WAKE_IDLE | |
| 6235 | SD_WAKE_AFFINE | |
| 6236 | SD_WAKE_BALANCE)) |
| 6237 | return 0; |
| 6238 | |
| 6239 | return 1; |
| 6240 | } |
| 6241 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6242 | static int |
| 6243 | sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6244 | { |
| 6245 | unsigned long cflags = sd->flags, pflags = parent->flags; |
| 6246 | |
| 6247 | if (sd_degenerate(parent)) |
| 6248 | return 1; |
| 6249 | |
| 6250 | if (!cpus_equal(sd->span, parent->span)) |
| 6251 | return 0; |
| 6252 | |
| 6253 | /* Does parent contain flags not in child? */ |
| 6254 | /* WAKE_BALANCE is a subset of WAKE_AFFINE */ |
| 6255 | if (cflags & SD_WAKE_AFFINE) |
| 6256 | pflags &= ~SD_WAKE_BALANCE; |
| 6257 | /* Flags needing groups don't count if only 1 group in parent */ |
| 6258 | if (parent->groups == parent->groups->next) { |
| 6259 | pflags &= ~(SD_LOAD_BALANCE | |
| 6260 | SD_BALANCE_NEWIDLE | |
| 6261 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6262 | SD_BALANCE_EXEC | |
| 6263 | SD_SHARE_CPUPOWER | |
| 6264 | SD_SHARE_PKG_RESOURCES); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6265 | } |
| 6266 | if (~cflags & pflags) |
| 6267 | return 0; |
| 6268 | |
| 6269 | return 1; |
| 6270 | } |
| 6271 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6272 | static void rq_attach_root(struct rq *rq, struct root_domain *rd) |
| 6273 | { |
| 6274 | unsigned long flags; |
| 6275 | const struct sched_class *class; |
| 6276 | |
| 6277 | spin_lock_irqsave(&rq->lock, flags); |
| 6278 | |
| 6279 | if (rq->rd) { |
| 6280 | struct root_domain *old_rd = rq->rd; |
| 6281 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6282 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6283 | if (class->leave_domain) |
| 6284 | class->leave_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6285 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6286 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6287 | cpu_clear(rq->cpu, old_rd->span); |
| 6288 | cpu_clear(rq->cpu, old_rd->online); |
| 6289 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6290 | if (atomic_dec_and_test(&old_rd->refcount)) |
| 6291 | kfree(old_rd); |
| 6292 | } |
| 6293 | |
| 6294 | atomic_inc(&rd->refcount); |
| 6295 | rq->rd = rd; |
| 6296 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6297 | cpu_set(rq->cpu, rd->span); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6298 | if (cpu_isset(rq->cpu, cpu_online_map)) |
| 6299 | cpu_set(rq->cpu, rd->online); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6300 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6301 | for (class = sched_class_highest; class; class = class->next) { |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6302 | if (class->join_domain) |
| 6303 | class->join_domain(rq); |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6304 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6305 | |
| 6306 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6307 | } |
| 6308 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6309 | static void init_rootdomain(struct root_domain *rd) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6310 | { |
| 6311 | memset(rd, 0, sizeof(*rd)); |
| 6312 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6313 | cpus_clear(rd->span); |
| 6314 | cpus_clear(rd->online); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6315 | } |
| 6316 | |
| 6317 | static void init_defrootdomain(void) |
| 6318 | { |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6319 | init_rootdomain(&def_root_domain); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6320 | atomic_set(&def_root_domain.refcount, 1); |
| 6321 | } |
| 6322 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6323 | static struct root_domain *alloc_rootdomain(void) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6324 | { |
| 6325 | struct root_domain *rd; |
| 6326 | |
| 6327 | rd = kmalloc(sizeof(*rd), GFP_KERNEL); |
| 6328 | if (!rd) |
| 6329 | return NULL; |
| 6330 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6331 | init_rootdomain(rd); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6332 | |
| 6333 | return rd; |
| 6334 | } |
| 6335 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6336 | /* |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6337 | * Attach the domain 'sd' to 'cpu' as its base domain. Callers must |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6338 | * hold the hotplug lock. |
| 6339 | */ |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6340 | static void |
| 6341 | 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] | 6342 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6343 | struct rq *rq = cpu_rq(cpu); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6344 | struct sched_domain *tmp; |
| 6345 | |
| 6346 | /* Remove the sched domains which do not contribute to scheduling. */ |
| 6347 | for (tmp = sd; tmp; tmp = tmp->parent) { |
| 6348 | struct sched_domain *parent = tmp->parent; |
| 6349 | if (!parent) |
| 6350 | break; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6351 | if (sd_parent_degenerate(tmp, parent)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6352 | tmp->parent = parent->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6353 | if (parent->parent) |
| 6354 | parent->parent->child = tmp; |
| 6355 | } |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6356 | } |
| 6357 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6358 | if (sd && sd_degenerate(sd)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6359 | sd = sd->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6360 | if (sd) |
| 6361 | sd->child = NULL; |
| 6362 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6363 | |
| 6364 | sched_domain_debug(sd, cpu); |
| 6365 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6366 | rq_attach_root(rq, rd); |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 6367 | rcu_assign_pointer(rq->sd, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6368 | } |
| 6369 | |
| 6370 | /* cpus with isolated domains */ |
Tim Chen | 67af63a | 2006-12-22 01:07:50 -0800 | [diff] [blame] | 6371 | static cpumask_t cpu_isolated_map = CPU_MASK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6372 | |
| 6373 | /* Setup the mask of cpus configured for isolated domains */ |
| 6374 | static int __init isolated_cpu_setup(char *str) |
| 6375 | { |
| 6376 | int ints[NR_CPUS], i; |
| 6377 | |
| 6378 | str = get_options(str, ARRAY_SIZE(ints), ints); |
| 6379 | cpus_clear(cpu_isolated_map); |
| 6380 | for (i = 1; i <= ints[0]; i++) |
| 6381 | if (ints[i] < NR_CPUS) |
| 6382 | cpu_set(ints[i], cpu_isolated_map); |
| 6383 | return 1; |
| 6384 | } |
| 6385 | |
Ingo Molnar | 8927f49 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6386 | __setup("isolcpus=", isolated_cpu_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6387 | |
| 6388 | /* |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6389 | * init_sched_build_groups takes the cpumask we wish to span, and a pointer |
| 6390 | * to a function which identifies what group(along with sched group) a CPU |
| 6391 | * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS |
| 6392 | * (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] | 6393 | * |
| 6394 | * init_sched_build_groups will build a circular linked list of the groups |
| 6395 | * covered by the given span, and will set each group's ->cpumask correctly, |
| 6396 | * and ->cpu_power to 0. |
| 6397 | */ |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6398 | static void |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6399 | init_sched_build_groups(cpumask_t span, const cpumask_t *cpu_map, |
| 6400 | int (*group_fn)(int cpu, const cpumask_t *cpu_map, |
| 6401 | struct sched_group **sg)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6402 | { |
| 6403 | struct sched_group *first = NULL, *last = NULL; |
| 6404 | cpumask_t covered = CPU_MASK_NONE; |
| 6405 | int i; |
| 6406 | |
| 6407 | for_each_cpu_mask(i, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6408 | struct sched_group *sg; |
| 6409 | int group = group_fn(i, cpu_map, &sg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6410 | int j; |
| 6411 | |
| 6412 | if (cpu_isset(i, covered)) |
| 6413 | continue; |
| 6414 | |
| 6415 | sg->cpumask = CPU_MASK_NONE; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6416 | sg->__cpu_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6417 | |
| 6418 | for_each_cpu_mask(j, span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6419 | if (group_fn(j, cpu_map, NULL) != group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6420 | continue; |
| 6421 | |
| 6422 | cpu_set(j, covered); |
| 6423 | cpu_set(j, sg->cpumask); |
| 6424 | } |
| 6425 | if (!first) |
| 6426 | first = sg; |
| 6427 | if (last) |
| 6428 | last->next = sg; |
| 6429 | last = sg; |
| 6430 | } |
| 6431 | last->next = first; |
| 6432 | } |
| 6433 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6434 | #define SD_NODES_PER_DOMAIN 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6435 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6436 | #ifdef CONFIG_NUMA |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 6437 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6438 | /** |
| 6439 | * find_next_best_node - find the next node to include in a sched_domain |
| 6440 | * @node: node whose sched_domain we're building |
| 6441 | * @used_nodes: nodes already in the sched_domain |
| 6442 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6443 | * Find the next node to include in a given scheduling domain. Simply |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6444 | * finds the closest node not already in the @used_nodes map. |
| 6445 | * |
| 6446 | * Should use nodemask_t. |
| 6447 | */ |
| 6448 | static int find_next_best_node(int node, unsigned long *used_nodes) |
| 6449 | { |
| 6450 | int i, n, val, min_val, best_node = 0; |
| 6451 | |
| 6452 | min_val = INT_MAX; |
| 6453 | |
| 6454 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6455 | /* Start at @node */ |
| 6456 | n = (node + i) % MAX_NUMNODES; |
| 6457 | |
| 6458 | if (!nr_cpus_node(n)) |
| 6459 | continue; |
| 6460 | |
| 6461 | /* Skip already used nodes */ |
| 6462 | if (test_bit(n, used_nodes)) |
| 6463 | continue; |
| 6464 | |
| 6465 | /* Simple min distance search */ |
| 6466 | val = node_distance(node, n); |
| 6467 | |
| 6468 | if (val < min_val) { |
| 6469 | min_val = val; |
| 6470 | best_node = n; |
| 6471 | } |
| 6472 | } |
| 6473 | |
| 6474 | set_bit(best_node, used_nodes); |
| 6475 | return best_node; |
| 6476 | } |
| 6477 | |
| 6478 | /** |
| 6479 | * sched_domain_node_span - get a cpumask for a node's sched_domain |
| 6480 | * @node: node whose cpumask we're constructing |
| 6481 | * @size: number of nodes to include in this span |
| 6482 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6483 | * 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] | 6484 | * should be one that prevents unnecessary balancing, but also spreads tasks |
| 6485 | * out optimally. |
| 6486 | */ |
| 6487 | static cpumask_t sched_domain_node_span(int node) |
| 6488 | { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6489 | DECLARE_BITMAP(used_nodes, MAX_NUMNODES); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6490 | cpumask_t span, nodemask; |
| 6491 | int i; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6492 | |
| 6493 | cpus_clear(span); |
| 6494 | bitmap_zero(used_nodes, MAX_NUMNODES); |
| 6495 | |
| 6496 | nodemask = node_to_cpumask(node); |
| 6497 | cpus_or(span, span, nodemask); |
| 6498 | set_bit(node, used_nodes); |
| 6499 | |
| 6500 | for (i = 1; i < SD_NODES_PER_DOMAIN; i++) { |
| 6501 | int next_node = find_next_best_node(node, used_nodes); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6502 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6503 | nodemask = node_to_cpumask(next_node); |
| 6504 | cpus_or(span, span, nodemask); |
| 6505 | } |
| 6506 | |
| 6507 | return span; |
| 6508 | } |
| 6509 | #endif |
| 6510 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6511 | int sched_smt_power_savings = 0, sched_mc_power_savings = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6512 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6513 | /* |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6514 | * SMT sched-domains: |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6515 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6516 | #ifdef CONFIG_SCHED_SMT |
| 6517 | static DEFINE_PER_CPU(struct sched_domain, cpu_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6518 | static DEFINE_PER_CPU(struct sched_group, sched_group_cpus); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6519 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6520 | static int |
| 6521 | 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] | 6522 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6523 | if (sg) |
| 6524 | *sg = &per_cpu(sched_group_cpus, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6525 | return cpu; |
| 6526 | } |
| 6527 | #endif |
| 6528 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6529 | /* |
| 6530 | * multi-core sched-domains: |
| 6531 | */ |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6532 | #ifdef CONFIG_SCHED_MC |
| 6533 | static DEFINE_PER_CPU(struct sched_domain, core_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6534 | static DEFINE_PER_CPU(struct sched_group, sched_group_core); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6535 | #endif |
| 6536 | |
| 6537 | #if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6538 | static int |
| 6539 | 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] | 6540 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6541 | int group; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6542 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6543 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6544 | group = first_cpu(mask); |
| 6545 | if (sg) |
| 6546 | *sg = &per_cpu(sched_group_core, group); |
| 6547 | return group; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6548 | } |
| 6549 | #elif defined(CONFIG_SCHED_MC) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6550 | static int |
| 6551 | 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] | 6552 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6553 | if (sg) |
| 6554 | *sg = &per_cpu(sched_group_core, cpu); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6555 | return cpu; |
| 6556 | } |
| 6557 | #endif |
| 6558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6559 | static DEFINE_PER_CPU(struct sched_domain, phys_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6560 | static DEFINE_PER_CPU(struct sched_group, sched_group_phys); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6561 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6562 | static int |
| 6563 | 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] | 6564 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6565 | int group; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6566 | #ifdef CONFIG_SCHED_MC |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6567 | cpumask_t mask = cpu_coregroup_map(cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6568 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6569 | group = first_cpu(mask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6570 | #elif defined(CONFIG_SCHED_SMT) |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6571 | cpumask_t mask = per_cpu(cpu_sibling_map, cpu); |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6572 | cpus_and(mask, mask, *cpu_map); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6573 | group = first_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6574 | #else |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6575 | group = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6576 | #endif |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6577 | if (sg) |
| 6578 | *sg = &per_cpu(sched_group_phys, group); |
| 6579 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6580 | } |
| 6581 | |
| 6582 | #ifdef CONFIG_NUMA |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6583 | /* |
| 6584 | * The init_sched_build_groups can't handle what we want to do with node |
| 6585 | * groups, so roll our own. Now each node has its own list of groups which |
| 6586 | * gets dynamically allocated. |
| 6587 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6588 | static DEFINE_PER_CPU(struct sched_domain, node_domains); |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 6589 | static struct sched_group ***sched_group_nodes_bycpu; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6590 | |
| 6591 | static DEFINE_PER_CPU(struct sched_domain, allnodes_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6592 | static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6593 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6594 | static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map, |
| 6595 | struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6596 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6597 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(cpu)); |
| 6598 | int group; |
| 6599 | |
| 6600 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6601 | group = first_cpu(nodemask); |
| 6602 | |
| 6603 | if (sg) |
| 6604 | *sg = &per_cpu(sched_group_allnodes, group); |
| 6605 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6606 | } |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6607 | |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6608 | static void init_numa_sched_groups_power(struct sched_group *group_head) |
| 6609 | { |
| 6610 | struct sched_group *sg = group_head; |
| 6611 | int j; |
| 6612 | |
| 6613 | if (!sg) |
| 6614 | return; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6615 | do { |
| 6616 | for_each_cpu_mask(j, sg->cpumask) { |
| 6617 | struct sched_domain *sd; |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6618 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6619 | sd = &per_cpu(phys_domains, j); |
| 6620 | if (j != first_cpu(sd->groups->cpumask)) { |
| 6621 | /* |
| 6622 | * Only add "power" once for each |
| 6623 | * physical package. |
| 6624 | */ |
| 6625 | continue; |
| 6626 | } |
| 6627 | |
| 6628 | sg_inc_cpu_power(sg, sd->groups->__cpu_power); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6629 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6630 | sg = sg->next; |
| 6631 | } while (sg != group_head); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6632 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6633 | #endif |
| 6634 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6635 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6636 | /* Free memory allocated for various sched_group structures */ |
| 6637 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6638 | { |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6639 | int cpu, i; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6640 | |
| 6641 | for_each_cpu_mask(cpu, *cpu_map) { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6642 | struct sched_group **sched_group_nodes |
| 6643 | = sched_group_nodes_bycpu[cpu]; |
| 6644 | |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6645 | if (!sched_group_nodes) |
| 6646 | continue; |
| 6647 | |
| 6648 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6649 | cpumask_t nodemask = node_to_cpumask(i); |
| 6650 | struct sched_group *oldsg, *sg = sched_group_nodes[i]; |
| 6651 | |
| 6652 | cpus_and(nodemask, nodemask, *cpu_map); |
| 6653 | if (cpus_empty(nodemask)) |
| 6654 | continue; |
| 6655 | |
| 6656 | if (sg == NULL) |
| 6657 | continue; |
| 6658 | sg = sg->next; |
| 6659 | next_sg: |
| 6660 | oldsg = sg; |
| 6661 | sg = sg->next; |
| 6662 | kfree(oldsg); |
| 6663 | if (oldsg != sched_group_nodes[i]) |
| 6664 | goto next_sg; |
| 6665 | } |
| 6666 | kfree(sched_group_nodes); |
| 6667 | sched_group_nodes_bycpu[cpu] = NULL; |
| 6668 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6669 | } |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6670 | #else |
| 6671 | static void free_sched_groups(const cpumask_t *cpu_map) |
| 6672 | { |
| 6673 | } |
| 6674 | #endif |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6675 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6676 | /* |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6677 | * Initialize sched groups cpu_power. |
| 6678 | * |
| 6679 | * cpu_power indicates the capacity of sched group, which is used while |
| 6680 | * distributing the load between different sched groups in a sched domain. |
| 6681 | * Typically cpu_power for all the groups in a sched domain will be same unless |
| 6682 | * there are asymmetries in the topology. If there are asymmetries, group |
| 6683 | * having more cpu_power will pickup more load compared to the group having |
| 6684 | * less cpu_power. |
| 6685 | * |
| 6686 | * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents |
| 6687 | * the maximum number of tasks a group can handle in the presence of other idle |
| 6688 | * or lightly loaded groups in the same sched domain. |
| 6689 | */ |
| 6690 | static void init_sched_groups_power(int cpu, struct sched_domain *sd) |
| 6691 | { |
| 6692 | struct sched_domain *child; |
| 6693 | struct sched_group *group; |
| 6694 | |
| 6695 | WARN_ON(!sd || !sd->groups); |
| 6696 | |
| 6697 | if (cpu != first_cpu(sd->groups->cpumask)) |
| 6698 | return; |
| 6699 | |
| 6700 | child = sd->child; |
| 6701 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6702 | sd->groups->__cpu_power = 0; |
| 6703 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6704 | /* |
| 6705 | * For perf policy, if the groups in child domain share resources |
| 6706 | * (for example cores sharing some portions of the cache hierarchy |
| 6707 | * or SMT), then set this domain groups cpu_power such that each group |
| 6708 | * can handle only one task, when there are other idle groups in the |
| 6709 | * same sched domain. |
| 6710 | */ |
| 6711 | if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) && |
| 6712 | (child->flags & |
| 6713 | (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6714 | sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6715 | return; |
| 6716 | } |
| 6717 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6718 | /* |
| 6719 | * add cpu_power of each child group to this groups cpu_power |
| 6720 | */ |
| 6721 | group = child->groups; |
| 6722 | do { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6723 | sg_inc_cpu_power(sd->groups, group->__cpu_power); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6724 | group = group->next; |
| 6725 | } while (group != child->groups); |
| 6726 | } |
| 6727 | |
| 6728 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6729 | * Build sched domains for a given set of cpus and attach the sched domains |
| 6730 | * to the individual cpus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6731 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6732 | static int build_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6733 | { |
| 6734 | int i; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6735 | struct root_domain *rd; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6736 | #ifdef CONFIG_NUMA |
| 6737 | struct sched_group **sched_group_nodes = NULL; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6738 | int sd_allnodes = 0; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6739 | |
| 6740 | /* |
| 6741 | * Allocate the per-node list of sched groups |
| 6742 | */ |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6743 | sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *), |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6744 | GFP_KERNEL); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6745 | if (!sched_group_nodes) { |
| 6746 | printk(KERN_WARNING "Can not alloc sched group node list\n"); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6747 | return -ENOMEM; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6748 | } |
| 6749 | sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes; |
| 6750 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6751 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6752 | rd = alloc_rootdomain(); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6753 | if (!rd) { |
| 6754 | printk(KERN_WARNING "Cannot alloc root domain\n"); |
| 6755 | return -ENOMEM; |
| 6756 | } |
| 6757 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6758 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6759 | * Set up domains for cpus specified by the cpu_map. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6760 | */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6761 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6762 | struct sched_domain *sd = NULL, *p; |
| 6763 | cpumask_t nodemask = node_to_cpumask(cpu_to_node(i)); |
| 6764 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6765 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6766 | |
| 6767 | #ifdef CONFIG_NUMA |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6768 | if (cpus_weight(*cpu_map) > |
| 6769 | SD_NODES_PER_DOMAIN*cpus_weight(nodemask)) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6770 | sd = &per_cpu(allnodes_domains, i); |
| 6771 | *sd = SD_ALLNODES_INIT; |
| 6772 | sd->span = *cpu_map; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6773 | cpu_to_allnodes_group(i, cpu_map, &sd->groups); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6774 | p = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6775 | sd_allnodes = 1; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6776 | } else |
| 6777 | p = NULL; |
| 6778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6779 | sd = &per_cpu(node_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6780 | *sd = SD_NODE_INIT; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6781 | sd->span = sched_domain_node_span(cpu_to_node(i)); |
| 6782 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6783 | if (p) |
| 6784 | p->child = sd; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6785 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6786 | #endif |
| 6787 | |
| 6788 | p = sd; |
| 6789 | sd = &per_cpu(phys_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6790 | *sd = SD_CPU_INIT; |
| 6791 | sd->span = nodemask; |
| 6792 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6793 | if (p) |
| 6794 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6795 | cpu_to_phys_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6796 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6797 | #ifdef CONFIG_SCHED_MC |
| 6798 | p = sd; |
| 6799 | sd = &per_cpu(core_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6800 | *sd = SD_MC_INIT; |
| 6801 | sd->span = cpu_coregroup_map(i); |
| 6802 | cpus_and(sd->span, sd->span, *cpu_map); |
| 6803 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6804 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6805 | cpu_to_core_group(i, cpu_map, &sd->groups); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6806 | #endif |
| 6807 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6808 | #ifdef CONFIG_SCHED_SMT |
| 6809 | p = sd; |
| 6810 | sd = &per_cpu(cpu_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6811 | *sd = SD_SIBLING_INIT; |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6812 | sd->span = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6813 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6814 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6815 | p->child = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6816 | cpu_to_cpu_group(i, cpu_map, &sd->groups); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6817 | #endif |
| 6818 | } |
| 6819 | |
| 6820 | #ifdef CONFIG_SCHED_SMT |
| 6821 | /* Set up CPU (sibling) groups */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6822 | for_each_cpu_mask(i, *cpu_map) { |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 6823 | cpumask_t this_sibling_map = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6824 | cpus_and(this_sibling_map, this_sibling_map, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6825 | if (i != first_cpu(this_sibling_map)) |
| 6826 | continue; |
| 6827 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6828 | init_sched_build_groups(this_sibling_map, cpu_map, |
| 6829 | &cpu_to_cpu_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6830 | } |
| 6831 | #endif |
| 6832 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6833 | #ifdef CONFIG_SCHED_MC |
| 6834 | /* Set up multi-core groups */ |
| 6835 | for_each_cpu_mask(i, *cpu_map) { |
| 6836 | cpumask_t this_core_map = cpu_coregroup_map(i); |
| 6837 | cpus_and(this_core_map, this_core_map, *cpu_map); |
| 6838 | if (i != first_cpu(this_core_map)) |
| 6839 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6840 | init_sched_build_groups(this_core_map, cpu_map, |
| 6841 | &cpu_to_core_group); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6842 | } |
| 6843 | #endif |
| 6844 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6845 | /* Set up physical groups */ |
| 6846 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6847 | cpumask_t nodemask = node_to_cpumask(i); |
| 6848 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6849 | cpus_and(nodemask, nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6850 | if (cpus_empty(nodemask)) |
| 6851 | continue; |
| 6852 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6853 | init_sched_build_groups(nodemask, cpu_map, &cpu_to_phys_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6854 | } |
| 6855 | |
| 6856 | #ifdef CONFIG_NUMA |
| 6857 | /* Set up node groups */ |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6858 | if (sd_allnodes) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6859 | init_sched_build_groups(*cpu_map, cpu_map, |
| 6860 | &cpu_to_allnodes_group); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6861 | |
| 6862 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6863 | /* Set up node groups */ |
| 6864 | struct sched_group *sg, *prev; |
| 6865 | cpumask_t nodemask = node_to_cpumask(i); |
| 6866 | cpumask_t domainspan; |
| 6867 | cpumask_t covered = CPU_MASK_NONE; |
| 6868 | int j; |
| 6869 | |
| 6870 | cpus_and(nodemask, nodemask, *cpu_map); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6871 | if (cpus_empty(nodemask)) { |
| 6872 | sched_group_nodes[i] = NULL; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6873 | continue; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6874 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6875 | |
| 6876 | domainspan = sched_domain_node_span(i); |
| 6877 | cpus_and(domainspan, domainspan, *cpu_map); |
| 6878 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6879 | sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6880 | if (!sg) { |
| 6881 | printk(KERN_WARNING "Can not alloc domain group for " |
| 6882 | "node %d\n", i); |
| 6883 | goto error; |
| 6884 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6885 | sched_group_nodes[i] = sg; |
| 6886 | for_each_cpu_mask(j, nodemask) { |
| 6887 | struct sched_domain *sd; |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 6888 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6889 | sd = &per_cpu(node_domains, j); |
| 6890 | sd->groups = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6891 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6892 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6893 | sg->cpumask = nodemask; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6894 | sg->next = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6895 | cpus_or(covered, covered, nodemask); |
| 6896 | prev = sg; |
| 6897 | |
| 6898 | for (j = 0; j < MAX_NUMNODES; j++) { |
| 6899 | cpumask_t tmp, notcovered; |
| 6900 | int n = (i + j) % MAX_NUMNODES; |
| 6901 | |
| 6902 | cpus_complement(notcovered, covered); |
| 6903 | cpus_and(tmp, notcovered, *cpu_map); |
| 6904 | cpus_and(tmp, tmp, domainspan); |
| 6905 | if (cpus_empty(tmp)) |
| 6906 | break; |
| 6907 | |
| 6908 | nodemask = node_to_cpumask(n); |
| 6909 | cpus_and(tmp, tmp, nodemask); |
| 6910 | if (cpus_empty(tmp)) |
| 6911 | continue; |
| 6912 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 6913 | sg = kmalloc_node(sizeof(struct sched_group), |
| 6914 | GFP_KERNEL, i); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6915 | if (!sg) { |
| 6916 | printk(KERN_WARNING |
| 6917 | "Can not alloc domain group for node %d\n", j); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6918 | goto error; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6919 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6920 | sg->__cpu_power = 0; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6921 | sg->cpumask = tmp; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6922 | sg->next = prev->next; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6923 | cpus_or(covered, covered, tmp); |
| 6924 | prev->next = sg; |
| 6925 | prev = sg; |
| 6926 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6927 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6928 | #endif |
| 6929 | |
| 6930 | /* Calculate CPU power for physical packages and nodes */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6931 | #ifdef CONFIG_SCHED_SMT |
| 6932 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6933 | struct sched_domain *sd = &per_cpu(cpu_domains, i); |
| 6934 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6935 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6936 | } |
| 6937 | #endif |
| 6938 | #ifdef CONFIG_SCHED_MC |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6939 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6940 | struct sched_domain *sd = &per_cpu(core_domains, i); |
| 6941 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6942 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6943 | } |
| 6944 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6945 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6946 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6947 | struct sched_domain *sd = &per_cpu(phys_domains, i); |
| 6948 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6949 | init_sched_groups_power(i, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6950 | } |
| 6951 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6952 | #ifdef CONFIG_NUMA |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6953 | for (i = 0; i < MAX_NUMNODES; i++) |
| 6954 | init_numa_sched_groups_power(sched_group_nodes[i]); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6955 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6956 | if (sd_allnodes) { |
| 6957 | struct sched_group *sg; |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6958 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6959 | cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg); |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 6960 | init_numa_sched_groups_power(sg); |
| 6961 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6962 | #endif |
| 6963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6964 | /* Attach the domains */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6965 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6966 | struct sched_domain *sd; |
| 6967 | #ifdef CONFIG_SCHED_SMT |
| 6968 | sd = &per_cpu(cpu_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6969 | #elif defined(CONFIG_SCHED_MC) |
| 6970 | sd = &per_cpu(core_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6971 | #else |
| 6972 | sd = &per_cpu(phys_domains, i); |
| 6973 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6974 | cpu_attach_domain(sd, rd, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6975 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6976 | |
| 6977 | return 0; |
| 6978 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6979 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6980 | error: |
| 6981 | free_sched_groups(cpu_map); |
| 6982 | return -ENOMEM; |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6983 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6984 | } |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 6985 | |
| 6986 | static cpumask_t *doms_cur; /* current sched domains */ |
| 6987 | static int ndoms_cur; /* number of sched domains in 'doms_cur' */ |
| 6988 | |
| 6989 | /* |
| 6990 | * Special case: If a kmalloc of a doms_cur partition (array of |
| 6991 | * cpumask_t) fails, then fallback to a single sched domain, |
| 6992 | * as determined by the single cpumask_t fallback_doms. |
| 6993 | */ |
| 6994 | static cpumask_t fallback_doms; |
| 6995 | |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 6996 | void __attribute__((weak)) arch_update_cpu_topology(void) |
| 6997 | { |
| 6998 | } |
| 6999 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7000 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7001 | * Set up scheduler domains and groups. Callers must hold the hotplug lock. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7002 | * For now this just excludes isolated cpus, but could be used to |
| 7003 | * exclude other special cases in the future. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7004 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7005 | static int arch_init_sched_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7006 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7007 | int err; |
| 7008 | |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7009 | arch_update_cpu_topology(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7010 | ndoms_cur = 1; |
| 7011 | doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL); |
| 7012 | if (!doms_cur) |
| 7013 | doms_cur = &fallback_doms; |
| 7014 | cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7015 | err = build_sched_domains(doms_cur); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 7016 | register_sched_domain_sysctl(); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7017 | |
| 7018 | return err; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7019 | } |
| 7020 | |
| 7021 | static void arch_destroy_sched_domains(const cpumask_t *cpu_map) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7022 | { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7023 | free_sched_groups(cpu_map); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7024 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7025 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7026 | /* |
| 7027 | * Detach sched domains from a group of cpus specified in cpu_map |
| 7028 | * These cpus will now be attached to the NULL domain |
| 7029 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 7030 | static void detach_destroy_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7031 | { |
| 7032 | int i; |
| 7033 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 7034 | unregister_sched_domain_sysctl(); |
| 7035 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7036 | for_each_cpu_mask(i, *cpu_map) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7037 | cpu_attach_domain(NULL, &def_root_domain, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7038 | synchronize_sched(); |
| 7039 | arch_destroy_sched_domains(cpu_map); |
| 7040 | } |
| 7041 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7042 | /* |
| 7043 | * Partition sched domains as specified by the 'ndoms_new' |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7044 | * cpumasks in the array doms_new[] of cpumasks. This compares |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7045 | * doms_new[] to the current sched domain partitioning, doms_cur[]. |
| 7046 | * It destroys each deleted domain and builds each new domain. |
| 7047 | * |
| 7048 | * '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] | 7049 | * The masks don't intersect (don't overlap.) We should setup one |
| 7050 | * sched domain for each mask. CPUs not in any of the cpumasks will |
| 7051 | * not be load balanced. If the same cpumask appears both in the |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7052 | * current 'doms_cur' domains and in the new 'doms_new', we can leave |
| 7053 | * it as it is. |
| 7054 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7055 | * The passed in 'doms_new' should be kmalloc'd. This routine takes |
| 7056 | * 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] | 7057 | * failed the kmalloc call, then it can pass in doms_new == NULL, |
| 7058 | * and partition_sched_domains() will fallback to the single partition |
| 7059 | * 'fallback_doms'. |
| 7060 | * |
| 7061 | * Call with hotplug lock held |
| 7062 | */ |
| 7063 | void partition_sched_domains(int ndoms_new, cpumask_t *doms_new) |
| 7064 | { |
| 7065 | int i, j; |
| 7066 | |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7067 | lock_doms_cur(); |
| 7068 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7069 | /* always unregister in case we don't destroy any domains */ |
| 7070 | unregister_sched_domain_sysctl(); |
| 7071 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7072 | if (doms_new == NULL) { |
| 7073 | ndoms_new = 1; |
| 7074 | doms_new = &fallback_doms; |
| 7075 | cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map); |
| 7076 | } |
| 7077 | |
| 7078 | /* Destroy deleted domains */ |
| 7079 | for (i = 0; i < ndoms_cur; i++) { |
| 7080 | for (j = 0; j < ndoms_new; j++) { |
| 7081 | if (cpus_equal(doms_cur[i], doms_new[j])) |
| 7082 | goto match1; |
| 7083 | } |
| 7084 | /* no match - a current sched domain not in new doms_new[] */ |
| 7085 | detach_destroy_domains(doms_cur + i); |
| 7086 | match1: |
| 7087 | ; |
| 7088 | } |
| 7089 | |
| 7090 | /* Build new domains */ |
| 7091 | for (i = 0; i < ndoms_new; i++) { |
| 7092 | for (j = 0; j < ndoms_cur; j++) { |
| 7093 | if (cpus_equal(doms_new[i], doms_cur[j])) |
| 7094 | goto match2; |
| 7095 | } |
| 7096 | /* no match - add a new doms_new */ |
| 7097 | build_sched_domains(doms_new + i); |
| 7098 | match2: |
| 7099 | ; |
| 7100 | } |
| 7101 | |
| 7102 | /* Remember the new sched domains */ |
| 7103 | if (doms_cur != &fallback_doms) |
| 7104 | kfree(doms_cur); |
| 7105 | doms_cur = doms_new; |
| 7106 | ndoms_cur = ndoms_new; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7107 | |
| 7108 | register_sched_domain_sysctl(); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7109 | |
| 7110 | unlock_doms_cur(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7111 | } |
| 7112 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7113 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Heiko Carstens | 9aefd0a | 2008-03-12 18:31:58 +0100 | [diff] [blame] | 7114 | int arch_reinit_sched_domains(void) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7115 | { |
| 7116 | int err; |
| 7117 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7118 | get_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7119 | detach_destroy_domains(&cpu_online_map); |
| 7120 | err = arch_init_sched_domains(&cpu_online_map); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7121 | put_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7122 | |
| 7123 | return err; |
| 7124 | } |
| 7125 | |
| 7126 | static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt) |
| 7127 | { |
| 7128 | int ret; |
| 7129 | |
| 7130 | if (buf[0] != '0' && buf[0] != '1') |
| 7131 | return -EINVAL; |
| 7132 | |
| 7133 | if (smt) |
| 7134 | sched_smt_power_savings = (buf[0] == '1'); |
| 7135 | else |
| 7136 | sched_mc_power_savings = (buf[0] == '1'); |
| 7137 | |
| 7138 | ret = arch_reinit_sched_domains(); |
| 7139 | |
| 7140 | return ret ? ret : count; |
| 7141 | } |
| 7142 | |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7143 | #ifdef CONFIG_SCHED_MC |
| 7144 | static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page) |
| 7145 | { |
| 7146 | return sprintf(page, "%u\n", sched_mc_power_savings); |
| 7147 | } |
| 7148 | static ssize_t sched_mc_power_savings_store(struct sys_device *dev, |
| 7149 | const char *buf, size_t count) |
| 7150 | { |
| 7151 | return sched_power_savings_store(buf, count, 0); |
| 7152 | } |
| 7153 | static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show, |
| 7154 | sched_mc_power_savings_store); |
| 7155 | #endif |
| 7156 | |
| 7157 | #ifdef CONFIG_SCHED_SMT |
| 7158 | static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page) |
| 7159 | { |
| 7160 | return sprintf(page, "%u\n", sched_smt_power_savings); |
| 7161 | } |
| 7162 | static ssize_t sched_smt_power_savings_store(struct sys_device *dev, |
| 7163 | const char *buf, size_t count) |
| 7164 | { |
| 7165 | return sched_power_savings_store(buf, count, 1); |
| 7166 | } |
| 7167 | static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show, |
| 7168 | sched_smt_power_savings_store); |
| 7169 | #endif |
| 7170 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7171 | int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls) |
| 7172 | { |
| 7173 | int err = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7174 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7175 | #ifdef CONFIG_SCHED_SMT |
| 7176 | if (smt_capable()) |
| 7177 | err = sysfs_create_file(&cls->kset.kobj, |
| 7178 | &attr_sched_smt_power_savings.attr); |
| 7179 | #endif |
| 7180 | #ifdef CONFIG_SCHED_MC |
| 7181 | if (!err && mc_capable()) |
| 7182 | err = sysfs_create_file(&cls->kset.kobj, |
| 7183 | &attr_sched_mc_power_savings.attr); |
| 7184 | #endif |
| 7185 | return err; |
| 7186 | } |
| 7187 | #endif |
| 7188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7189 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7190 | * Force a reinitialization of the sched domains hierarchy. The domains |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7191 | * and groups cannot be updated in place without racing with the balancing |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7192 | * code, so we temporarily attach all running cpus to the NULL domain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7193 | * which will prevent rebalancing while the sched domains are recalculated. |
| 7194 | */ |
| 7195 | static int update_sched_domains(struct notifier_block *nfb, |
| 7196 | unsigned long action, void *hcpu) |
| 7197 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7198 | switch (action) { |
| 7199 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7200 | case CPU_UP_PREPARE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7201 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7202 | case CPU_DOWN_PREPARE_FROZEN: |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7203 | detach_destroy_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7204 | return NOTIFY_OK; |
| 7205 | |
| 7206 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7207 | case CPU_UP_CANCELED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7208 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7209 | case CPU_DOWN_FAILED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7210 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7211 | case CPU_ONLINE_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7212 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7213 | case CPU_DEAD_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7214 | /* |
| 7215 | * Fall through and re-initialise the domains. |
| 7216 | */ |
| 7217 | break; |
| 7218 | default: |
| 7219 | return NOTIFY_DONE; |
| 7220 | } |
| 7221 | |
| 7222 | /* The hotplug lock is already held by cpu_up/cpu_down */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7223 | arch_init_sched_domains(&cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7224 | |
| 7225 | return NOTIFY_OK; |
| 7226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7227 | |
| 7228 | void __init sched_init_smp(void) |
| 7229 | { |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7230 | cpumask_t non_isolated_cpus; |
| 7231 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7232 | #if defined(CONFIG_NUMA) |
| 7233 | sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **), |
| 7234 | GFP_KERNEL); |
| 7235 | BUG_ON(sched_group_nodes_bycpu == NULL); |
| 7236 | #endif |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7237 | get_online_cpus(); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7238 | arch_init_sched_domains(&cpu_online_map); |
Nathan Lynch | e5e5673 | 2007-01-10 23:15:28 -0800 | [diff] [blame] | 7239 | cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7240 | if (cpus_empty(non_isolated_cpus)) |
| 7241 | cpu_set(smp_processor_id(), non_isolated_cpus); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7242 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7243 | /* XXX: Theoretical race here - CPU may be hotplugged now */ |
| 7244 | hotcpu_notifier(update_sched_domains, 0); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7245 | |
| 7246 | /* Move init over to a non-isolated CPU */ |
| 7247 | if (set_cpus_allowed(current, non_isolated_cpus) < 0) |
| 7248 | BUG(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7249 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7250 | } |
| 7251 | #else |
| 7252 | void __init sched_init_smp(void) |
| 7253 | { |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7254 | #if defined(CONFIG_NUMA) |
| 7255 | sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **), |
| 7256 | GFP_KERNEL); |
| 7257 | BUG_ON(sched_group_nodes_bycpu == NULL); |
| 7258 | #endif |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7259 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7260 | } |
| 7261 | #endif /* CONFIG_SMP */ |
| 7262 | |
| 7263 | int in_sched_functions(unsigned long addr) |
| 7264 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7265 | return in_lock_functions(addr) || |
| 7266 | (addr >= (unsigned long)__sched_text_start |
| 7267 | && addr < (unsigned long)__sched_text_end); |
| 7268 | } |
| 7269 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 7270 | 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] | 7271 | { |
| 7272 | cfs_rq->tasks_timeline = RB_ROOT; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7273 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7274 | cfs_rq->rq = rq; |
| 7275 | #endif |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 7276 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7277 | } |
| 7278 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7279 | static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) |
| 7280 | { |
| 7281 | struct rt_prio_array *array; |
| 7282 | int i; |
| 7283 | |
| 7284 | array = &rt_rq->active; |
| 7285 | for (i = 0; i < MAX_RT_PRIO; i++) { |
| 7286 | INIT_LIST_HEAD(array->queue + i); |
| 7287 | __clear_bit(i, array->bitmap); |
| 7288 | } |
| 7289 | /* delimiter for bitsearch: */ |
| 7290 | __set_bit(MAX_RT_PRIO, array->bitmap); |
| 7291 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7292 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7293 | rt_rq->highest_prio = MAX_RT_PRIO; |
| 7294 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7295 | #ifdef CONFIG_SMP |
| 7296 | rt_rq->rt_nr_migratory = 0; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7297 | rt_rq->overloaded = 0; |
| 7298 | #endif |
| 7299 | |
| 7300 | rt_rq->rt_time = 0; |
| 7301 | rt_rq->rt_throttled = 0; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 7302 | rt_rq->rt_runtime = 0; |
| 7303 | spin_lock_init(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7304 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7305 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7306 | rt_rq->rt_nr_boosted = 0; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7307 | rt_rq->rq = rq; |
| 7308 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7309 | } |
| 7310 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7311 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7312 | static void init_tg_cfs_entry(struct rq *rq, struct task_group *tg, |
| 7313 | struct cfs_rq *cfs_rq, struct sched_entity *se, |
| 7314 | int cpu, int add) |
| 7315 | { |
| 7316 | tg->cfs_rq[cpu] = cfs_rq; |
| 7317 | init_cfs_rq(cfs_rq, rq); |
| 7318 | cfs_rq->tg = tg; |
| 7319 | if (add) |
| 7320 | list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
| 7321 | |
| 7322 | tg->se[cpu] = se; |
| 7323 | se->cfs_rq = &rq->cfs; |
| 7324 | se->my_q = cfs_rq; |
| 7325 | se->load.weight = tg->shares; |
| 7326 | se->load.inv_weight = div64_64(1ULL<<32, se->load.weight); |
| 7327 | se->parent = NULL; |
| 7328 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7329 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7330 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7331 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7332 | static void init_tg_rt_entry(struct rq *rq, struct task_group *tg, |
| 7333 | struct rt_rq *rt_rq, struct sched_rt_entity *rt_se, |
| 7334 | int cpu, int add) |
| 7335 | { |
| 7336 | tg->rt_rq[cpu] = rt_rq; |
| 7337 | init_rt_rq(rt_rq, rq); |
| 7338 | rt_rq->tg = tg; |
| 7339 | rt_rq->rt_se = rt_se; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 7340 | rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7341 | if (add) |
| 7342 | list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); |
| 7343 | |
| 7344 | tg->rt_se[cpu] = rt_se; |
| 7345 | rt_se->rt_rq = &rq->rt; |
| 7346 | rt_se->my_q = rt_rq; |
| 7347 | rt_se->parent = NULL; |
| 7348 | INIT_LIST_HEAD(&rt_se->run_list); |
| 7349 | } |
| 7350 | #endif |
| 7351 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7352 | void __init sched_init(void) |
| 7353 | { |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7354 | int highest_cpu = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7355 | int i, j; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7356 | unsigned long alloc_size = 0, ptr; |
| 7357 | |
| 7358 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7359 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 7360 | #endif |
| 7361 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7362 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 7363 | #endif |
| 7364 | /* |
| 7365 | * As sched_init() is called before page_alloc is setup, |
| 7366 | * we use alloc_bootmem(). |
| 7367 | */ |
| 7368 | if (alloc_size) { |
| 7369 | ptr = (unsigned long)alloc_bootmem_low(alloc_size); |
| 7370 | |
| 7371 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7372 | init_task_group.se = (struct sched_entity **)ptr; |
| 7373 | ptr += nr_cpu_ids * sizeof(void **); |
| 7374 | |
| 7375 | init_task_group.cfs_rq = (struct cfs_rq **)ptr; |
| 7376 | ptr += nr_cpu_ids * sizeof(void **); |
| 7377 | #endif |
| 7378 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7379 | init_task_group.rt_se = (struct sched_rt_entity **)ptr; |
| 7380 | ptr += nr_cpu_ids * sizeof(void **); |
| 7381 | |
| 7382 | init_task_group.rt_rq = (struct rt_rq **)ptr; |
| 7383 | #endif |
| 7384 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7385 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7386 | #ifdef CONFIG_SMP |
| 7387 | init_defrootdomain(); |
| 7388 | #endif |
| 7389 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7390 | init_rt_bandwidth(&def_rt_bandwidth, |
| 7391 | global_rt_period(), global_rt_runtime()); |
| 7392 | |
| 7393 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7394 | init_rt_bandwidth(&init_task_group.rt_bandwidth, |
| 7395 | global_rt_period(), global_rt_runtime()); |
| 7396 | #endif |
| 7397 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7398 | #ifdef CONFIG_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7399 | list_add(&init_task_group.list, &task_groups); |
| 7400 | #endif |
| 7401 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 7402 | for_each_possible_cpu(i) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7403 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7404 | |
| 7405 | rq = cpu_rq(i); |
| 7406 | spin_lock_init(&rq->lock); |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 7407 | lockdep_set_class(&rq->lock, &rq->rq_lock_key); |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 7408 | rq->nr_running = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7409 | rq->clock = 1; |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7410 | update_last_tick_seen(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7411 | init_cfs_rq(&rq->cfs, rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7412 | init_rt_rq(&rq->rt, rq); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7413 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7414 | init_task_group.shares = init_task_group_load; |
| 7415 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
| 7416 | init_tg_cfs_entry(rq, &init_task_group, |
| 7417 | &per_cpu(init_cfs_rq, i), |
| 7418 | &per_cpu(init_sched_entity, i), i, 1); |
| 7419 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7420 | #endif |
| 7421 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7422 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
| 7423 | init_tg_rt_entry(rq, &init_task_group, |
| 7424 | &per_cpu(init_rt_rq, i), |
| 7425 | &per_cpu(init_sched_rt_entity, i), i, 1); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 7426 | #else |
| 7427 | rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7428 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7429 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7430 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
| 7431 | rq->cpu_load[j] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7432 | #ifdef CONFIG_SMP |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7433 | rq->sd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7434 | rq->rd = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7435 | rq->active_balance = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7436 | rq->next_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7437 | rq->push_cpu = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 7438 | rq->cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7439 | rq->migration_thread = NULL; |
| 7440 | INIT_LIST_HEAD(&rq->migration_queue); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 7441 | rq_attach_root(rq, &def_root_domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7442 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7443 | init_rq_hrtick(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7444 | atomic_set(&rq->nr_iowait, 0); |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7445 | highest_cpu = i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7446 | } |
| 7447 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 7448 | set_load_weight(&init_task); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7449 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 7450 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 7451 | INIT_HLIST_HEAD(&init_task.preempt_notifiers); |
| 7452 | #endif |
| 7453 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7454 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 7455 | nr_cpu_ids = highest_cpu + 1; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7456 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL); |
| 7457 | #endif |
| 7458 | |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7459 | #ifdef CONFIG_RT_MUTEXES |
| 7460 | plist_head_init(&init_task.pi_waiters, &init_task.pi_lock); |
| 7461 | #endif |
| 7462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7463 | /* |
| 7464 | * The boot idle thread does lazy MMU switching as well: |
| 7465 | */ |
| 7466 | atomic_inc(&init_mm.mm_count); |
| 7467 | enter_lazy_tlb(&init_mm, current); |
| 7468 | |
| 7469 | /* |
| 7470 | * Make us the idle thread. Technically, schedule() should not be |
| 7471 | * called from this thread, however somewhere below it might be, |
| 7472 | * but because we are the idle thread, we just pick up running again |
| 7473 | * when this runqueue becomes "idle". |
| 7474 | */ |
| 7475 | init_idle(current, smp_processor_id()); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7476 | /* |
| 7477 | * During early bootup we pretend to be a normal task: |
| 7478 | */ |
| 7479 | current->sched_class = &fair_sched_class; |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 7480 | |
| 7481 | scheduler_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7482 | } |
| 7483 | |
| 7484 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 7485 | void __might_sleep(char *file, int line) |
| 7486 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7487 | #ifdef in_atomic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7488 | static unsigned long prev_jiffy; /* ratelimiting */ |
| 7489 | |
| 7490 | if ((in_atomic() || irqs_disabled()) && |
| 7491 | system_state == SYSTEM_RUNNING && !oops_in_progress) { |
| 7492 | if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy) |
| 7493 | return; |
| 7494 | prev_jiffy = jiffies; |
Ingo Molnar | 91368d7 | 2006-03-23 03:00:54 -0800 | [diff] [blame] | 7495 | printk(KERN_ERR "BUG: sleeping function called from invalid" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7496 | " context at %s:%d\n", file, line); |
| 7497 | printk("in_atomic():%d, irqs_disabled():%d\n", |
| 7498 | in_atomic(), irqs_disabled()); |
Peter Zijlstra | a4c410f | 2006-12-06 20:37:21 -0800 | [diff] [blame] | 7499 | debug_show_held_locks(current); |
Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 7500 | if (irqs_disabled()) |
| 7501 | print_irqtrace_events(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7502 | dump_stack(); |
| 7503 | } |
| 7504 | #endif |
| 7505 | } |
| 7506 | EXPORT_SYMBOL(__might_sleep); |
| 7507 | #endif |
| 7508 | |
| 7509 | #ifdef CONFIG_MAGIC_SYSRQ |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7510 | static void normalize_task(struct rq *rq, struct task_struct *p) |
| 7511 | { |
| 7512 | int on_rq; |
| 7513 | update_rq_clock(rq); |
| 7514 | on_rq = p->se.on_rq; |
| 7515 | if (on_rq) |
| 7516 | deactivate_task(rq, p, 0); |
| 7517 | __setscheduler(rq, p, SCHED_NORMAL, 0); |
| 7518 | if (on_rq) { |
| 7519 | activate_task(rq, p, 0); |
| 7520 | resched_task(rq->curr); |
| 7521 | } |
| 7522 | } |
| 7523 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7524 | void normalize_rt_tasks(void) |
| 7525 | { |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7526 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7527 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7528 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7529 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7530 | read_lock_irqsave(&tasklist_lock, flags); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7531 | do_each_thread(g, p) { |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7532 | /* |
| 7533 | * Only normalize user tasks: |
| 7534 | */ |
| 7535 | if (!p->mm) |
| 7536 | continue; |
| 7537 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7538 | p->se.exec_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7539 | #ifdef CONFIG_SCHEDSTATS |
| 7540 | p->se.wait_start = 0; |
| 7541 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7542 | p->se.block_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7543 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7544 | task_rq(p)->clock = 0; |
| 7545 | |
| 7546 | if (!rt_task(p)) { |
| 7547 | /* |
| 7548 | * Renice negative nice level userspace |
| 7549 | * tasks back to 0: |
| 7550 | */ |
| 7551 | if (TASK_NICE(p) < 0 && p->mm) |
| 7552 | set_user_nice(p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7553 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7554 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7555 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7556 | spin_lock(&p->pi_lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7557 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7558 | |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7559 | normalize_task(rq, p); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7560 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7561 | __task_rq_unlock(rq); |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7562 | spin_unlock(&p->pi_lock); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7563 | } while_each_thread(g, p); |
| 7564 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7565 | read_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7566 | } |
| 7567 | |
| 7568 | #endif /* CONFIG_MAGIC_SYSRQ */ |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7569 | |
| 7570 | #ifdef CONFIG_IA64 |
| 7571 | /* |
| 7572 | * These functions are only useful for the IA64 MCA handling. |
| 7573 | * |
| 7574 | * They can only be called when the whole system has been |
| 7575 | * stopped - every CPU needs to be quiescent, and no scheduling |
| 7576 | * activity can take place. Using them for anything else would |
| 7577 | * be a serious bug, and as a result, they aren't even visible |
| 7578 | * under any other configuration. |
| 7579 | */ |
| 7580 | |
| 7581 | /** |
| 7582 | * curr_task - return the current task for a given cpu. |
| 7583 | * @cpu: the processor in question. |
| 7584 | * |
| 7585 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7586 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7587 | struct task_struct *curr_task(int cpu) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7588 | { |
| 7589 | return cpu_curr(cpu); |
| 7590 | } |
| 7591 | |
| 7592 | /** |
| 7593 | * set_curr_task - set the current task for a given cpu. |
| 7594 | * @cpu: the processor in question. |
| 7595 | * @p: the task pointer to set. |
| 7596 | * |
| 7597 | * Description: This function must only be used when non-maskable interrupts |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7598 | * are serviced on a separate stack. It allows the architecture to switch the |
| 7599 | * 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] | 7600 | * must be called with all CPU's synchronized, and interrupts disabled, the |
| 7601 | * and caller must save the original value of the current task (see |
| 7602 | * curr_task() above) and restore that value before reenabling interrupts and |
| 7603 | * re-starting the system. |
| 7604 | * |
| 7605 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 7606 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 7607 | void set_curr_task(int cpu, struct task_struct *p) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7608 | { |
| 7609 | cpu_curr(cpu) = p; |
| 7610 | } |
| 7611 | |
| 7612 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7613 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7614 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7615 | static void free_fair_sched_group(struct task_group *tg) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7616 | { |
| 7617 | int i; |
| 7618 | |
| 7619 | for_each_possible_cpu(i) { |
| 7620 | if (tg->cfs_rq) |
| 7621 | kfree(tg->cfs_rq[i]); |
| 7622 | if (tg->se) |
| 7623 | kfree(tg->se[i]); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7624 | } |
| 7625 | |
| 7626 | kfree(tg->cfs_rq); |
| 7627 | kfree(tg->se); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7628 | } |
| 7629 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7630 | static int alloc_fair_sched_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7631 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7632 | struct cfs_rq *cfs_rq; |
| 7633 | struct sched_entity *se; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7634 | struct rq *rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7635 | int i; |
| 7636 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7637 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7638 | if (!tg->cfs_rq) |
| 7639 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7640 | tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7641 | if (!tg->se) |
| 7642 | goto err; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7643 | |
| 7644 | tg->shares = NICE_0_LOAD; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7645 | |
| 7646 | for_each_possible_cpu(i) { |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7647 | rq = cpu_rq(i); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7648 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7649 | cfs_rq = kmalloc_node(sizeof(struct cfs_rq), |
| 7650 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7651 | if (!cfs_rq) |
| 7652 | goto err; |
| 7653 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7654 | se = kmalloc_node(sizeof(struct sched_entity), |
| 7655 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7656 | if (!se) |
| 7657 | goto err; |
| 7658 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7659 | init_tg_cfs_entry(rq, tg, cfs_rq, se, i, 0); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7660 | } |
| 7661 | |
| 7662 | return 1; |
| 7663 | |
| 7664 | err: |
| 7665 | return 0; |
| 7666 | } |
| 7667 | |
| 7668 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 7669 | { |
| 7670 | list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list, |
| 7671 | &cpu_rq(cpu)->leaf_cfs_rq_list); |
| 7672 | } |
| 7673 | |
| 7674 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 7675 | { |
| 7676 | list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list); |
| 7677 | } |
| 7678 | #else |
| 7679 | static inline void free_fair_sched_group(struct task_group *tg) |
| 7680 | { |
| 7681 | } |
| 7682 | |
| 7683 | static inline int alloc_fair_sched_group(struct task_group *tg) |
| 7684 | { |
| 7685 | return 1; |
| 7686 | } |
| 7687 | |
| 7688 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 7689 | { |
| 7690 | } |
| 7691 | |
| 7692 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 7693 | { |
| 7694 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7695 | #endif |
| 7696 | |
| 7697 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7698 | static void free_rt_sched_group(struct task_group *tg) |
| 7699 | { |
| 7700 | int i; |
| 7701 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7702 | destroy_rt_bandwidth(&tg->rt_bandwidth); |
| 7703 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7704 | for_each_possible_cpu(i) { |
| 7705 | if (tg->rt_rq) |
| 7706 | kfree(tg->rt_rq[i]); |
| 7707 | if (tg->rt_se) |
| 7708 | kfree(tg->rt_se[i]); |
| 7709 | } |
| 7710 | |
| 7711 | kfree(tg->rt_rq); |
| 7712 | kfree(tg->rt_se); |
| 7713 | } |
| 7714 | |
| 7715 | static int alloc_rt_sched_group(struct task_group *tg) |
| 7716 | { |
| 7717 | struct rt_rq *rt_rq; |
| 7718 | struct sched_rt_entity *rt_se; |
| 7719 | struct rq *rq; |
| 7720 | int i; |
| 7721 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7722 | tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7723 | if (!tg->rt_rq) |
| 7724 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame^] | 7725 | tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7726 | if (!tg->rt_se) |
| 7727 | goto err; |
| 7728 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7729 | init_rt_bandwidth(&tg->rt_bandwidth, |
| 7730 | ktime_to_ns(def_rt_bandwidth.rt_period), 0); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7731 | |
| 7732 | for_each_possible_cpu(i) { |
| 7733 | rq = cpu_rq(i); |
| 7734 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7735 | rt_rq = kmalloc_node(sizeof(struct rt_rq), |
| 7736 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7737 | if (!rt_rq) |
| 7738 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7739 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7740 | rt_se = kmalloc_node(sizeof(struct sched_rt_entity), |
| 7741 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 7742 | if (!rt_se) |
| 7743 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7744 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7745 | init_tg_rt_entry(rq, tg, rt_rq, rt_se, i, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7746 | } |
| 7747 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7748 | return 1; |
| 7749 | |
| 7750 | err: |
| 7751 | return 0; |
| 7752 | } |
| 7753 | |
| 7754 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 7755 | { |
| 7756 | list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list, |
| 7757 | &cpu_rq(cpu)->leaf_rt_rq_list); |
| 7758 | } |
| 7759 | |
| 7760 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 7761 | { |
| 7762 | list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list); |
| 7763 | } |
| 7764 | #else |
| 7765 | static inline void free_rt_sched_group(struct task_group *tg) |
| 7766 | { |
| 7767 | } |
| 7768 | |
| 7769 | static inline int alloc_rt_sched_group(struct task_group *tg) |
| 7770 | { |
| 7771 | return 1; |
| 7772 | } |
| 7773 | |
| 7774 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 7775 | { |
| 7776 | } |
| 7777 | |
| 7778 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 7779 | { |
| 7780 | } |
| 7781 | #endif |
| 7782 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7783 | #ifdef CONFIG_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7784 | static void free_sched_group(struct task_group *tg) |
| 7785 | { |
| 7786 | free_fair_sched_group(tg); |
| 7787 | free_rt_sched_group(tg); |
| 7788 | kfree(tg); |
| 7789 | } |
| 7790 | |
| 7791 | /* allocate runqueue etc for a new task group */ |
| 7792 | struct task_group *sched_create_group(void) |
| 7793 | { |
| 7794 | struct task_group *tg; |
| 7795 | unsigned long flags; |
| 7796 | int i; |
| 7797 | |
| 7798 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 7799 | if (!tg) |
| 7800 | return ERR_PTR(-ENOMEM); |
| 7801 | |
| 7802 | if (!alloc_fair_sched_group(tg)) |
| 7803 | goto err; |
| 7804 | |
| 7805 | if (!alloc_rt_sched_group(tg)) |
| 7806 | goto err; |
| 7807 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7808 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7809 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7810 | register_fair_sched_group(tg, i); |
| 7811 | register_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7812 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7813 | list_add_rcu(&tg->list, &task_groups); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7814 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7815 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7816 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7817 | |
| 7818 | err: |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7819 | free_sched_group(tg); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7820 | return ERR_PTR(-ENOMEM); |
| 7821 | } |
| 7822 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7823 | /* rcu callback to free various structures associated with a task group */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7824 | static void free_sched_group_rcu(struct rcu_head *rhp) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7825 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7826 | /* now it should be safe to free those cfs_rqs */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7827 | free_sched_group(container_of(rhp, struct task_group, rcu)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7828 | } |
| 7829 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7830 | /* Destroy runqueue etc associated with a task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7831 | void sched_destroy_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7832 | { |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7833 | unsigned long flags; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7834 | int i; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7835 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7836 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7837 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7838 | unregister_fair_sched_group(tg, i); |
| 7839 | unregister_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7840 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7841 | list_del_rcu(&tg->list); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7842 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7843 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7844 | /* wait for possible concurrent references to cfs_rqs complete */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7845 | call_rcu(&tg->rcu, free_sched_group_rcu); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7846 | } |
| 7847 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7848 | /* change task's runqueue when it moves between groups. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 7849 | * The caller of this function should have put the task in its new group |
| 7850 | * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to |
| 7851 | * reflect its new group. |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7852 | */ |
| 7853 | void sched_move_task(struct task_struct *tsk) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7854 | { |
| 7855 | int on_rq, running; |
| 7856 | unsigned long flags; |
| 7857 | struct rq *rq; |
| 7858 | |
| 7859 | rq = task_rq_lock(tsk, &flags); |
| 7860 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7861 | update_rq_clock(rq); |
| 7862 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 7863 | running = task_current(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7864 | on_rq = tsk->se.on_rq; |
| 7865 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 7866 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7867 | dequeue_task(rq, tsk, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 7868 | if (unlikely(running)) |
| 7869 | tsk->sched_class->put_prev_task(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7870 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7871 | set_task_rq(tsk, task_cpu(tsk)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7872 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 7873 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7874 | if (tsk->sched_class->moved_group) |
| 7875 | tsk->sched_class->moved_group(tsk); |
| 7876 | #endif |
| 7877 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 7878 | if (unlikely(running)) |
| 7879 | tsk->sched_class->set_curr_task(rq); |
| 7880 | if (on_rq) |
Dmitry Adamushko | 7074bad | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7881 | enqueue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7882 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7883 | task_rq_unlock(rq, &flags); |
| 7884 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7885 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7886 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7887 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7888 | static void set_se_shares(struct sched_entity *se, unsigned long shares) |
| 7889 | { |
| 7890 | struct cfs_rq *cfs_rq = se->cfs_rq; |
| 7891 | struct rq *rq = cfs_rq->rq; |
| 7892 | int on_rq; |
| 7893 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7894 | spin_lock_irq(&rq->lock); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7895 | |
| 7896 | on_rq = se->on_rq; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7897 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7898 | dequeue_entity(cfs_rq, se, 0); |
| 7899 | |
| 7900 | se->load.weight = shares; |
| 7901 | se->load.inv_weight = div64_64((1ULL<<32), shares); |
| 7902 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7903 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7904 | enqueue_entity(cfs_rq, se, 0); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7905 | |
| 7906 | spin_unlock_irq(&rq->lock); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7907 | } |
| 7908 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7909 | static DEFINE_MUTEX(shares_mutex); |
| 7910 | |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7911 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7912 | { |
| 7913 | int i; |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7914 | unsigned long flags; |
Ingo Molnar | c61935f | 2008-01-22 11:24:58 +0100 | [diff] [blame] | 7915 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7916 | /* |
| 7917 | * A weight of 0 or 1 can cause arithmetics problems. |
| 7918 | * (The default weight is 1024 - so there's no practical |
| 7919 | * limitation from this.) |
| 7920 | */ |
| 7921 | if (shares < 2) |
| 7922 | shares = 2; |
| 7923 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7924 | mutex_lock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7925 | if (tg->shares == shares) |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7926 | goto done; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7927 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7928 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7929 | for_each_possible_cpu(i) |
| 7930 | unregister_fair_sched_group(tg, i); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7931 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7932 | |
| 7933 | /* wait for any ongoing reference to this group to finish */ |
| 7934 | synchronize_sched(); |
| 7935 | |
| 7936 | /* |
| 7937 | * Now we are free to modify the group's share on each cpu |
| 7938 | * w/o tripping rebalance_share or load_balance_fair. |
| 7939 | */ |
| 7940 | tg->shares = shares; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 7941 | for_each_possible_cpu(i) |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7942 | set_se_shares(tg->se[i], shares); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7943 | |
| 7944 | /* |
| 7945 | * Enable load balance activity on this group, by inserting it back on |
| 7946 | * each cpu's rq->leaf_cfs_rq_list. |
| 7947 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7948 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7949 | for_each_possible_cpu(i) |
| 7950 | register_fair_sched_group(tg, i); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7951 | spin_unlock_irqrestore(&task_group_lock, flags); |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7952 | done: |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7953 | mutex_unlock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 7954 | return 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 7955 | } |
| 7956 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7957 | unsigned long sched_group_shares(struct task_group *tg) |
| 7958 | { |
| 7959 | return tg->shares; |
| 7960 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7961 | #endif |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 7962 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7963 | #ifdef CONFIG_RT_GROUP_SCHED |
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 | * Ensure that the real time constraints are schedulable. |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7966 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7967 | static DEFINE_MUTEX(rt_constraints_mutex); |
| 7968 | |
| 7969 | static unsigned long to_ratio(u64 period, u64 runtime) |
| 7970 | { |
| 7971 | if (runtime == RUNTIME_INF) |
| 7972 | return 1ULL << 16; |
| 7973 | |
Peter Zijlstra | 2692a24 | 2008-02-27 12:00:46 +0100 | [diff] [blame] | 7974 | return div64_64(runtime << 16, period); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7975 | } |
| 7976 | |
| 7977 | static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7978 | { |
| 7979 | struct task_group *tgi; |
| 7980 | unsigned long total = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7981 | unsigned long global_ratio = |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7982 | to_ratio(global_rt_period(), global_rt_runtime()); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7983 | |
| 7984 | rcu_read_lock(); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7985 | list_for_each_entry_rcu(tgi, &task_groups, list) { |
| 7986 | if (tgi == tg) |
| 7987 | continue; |
| 7988 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7989 | total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period), |
| 7990 | tgi->rt_bandwidth.rt_runtime); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7991 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7992 | rcu_read_unlock(); |
| 7993 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7994 | return total + to_ratio(period, runtime) < global_ratio; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7995 | } |
| 7996 | |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 7997 | /* Must be called with tasklist_lock held */ |
| 7998 | static inline int tg_has_rt_tasks(struct task_group *tg) |
| 7999 | { |
| 8000 | struct task_struct *g, *p; |
| 8001 | do_each_thread(g, p) { |
| 8002 | if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg) |
| 8003 | return 1; |
| 8004 | } while_each_thread(g, p); |
| 8005 | return 0; |
| 8006 | } |
| 8007 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8008 | static int tg_set_bandwidth(struct task_group *tg, |
| 8009 | u64 rt_period, u64 rt_runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8010 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8011 | int i, err = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8012 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8013 | mutex_lock(&rt_constraints_mutex); |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8014 | read_lock(&tasklist_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8015 | if (rt_runtime == 0 && tg_has_rt_tasks(tg)) { |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8016 | err = -EBUSY; |
| 8017 | goto unlock; |
| 8018 | } |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8019 | if (!__rt_schedulable(tg, rt_period, rt_runtime)) { |
| 8020 | err = -EINVAL; |
| 8021 | goto unlock; |
| 8022 | } |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8023 | |
| 8024 | spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8025 | tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period); |
| 8026 | tg->rt_bandwidth.rt_runtime = rt_runtime; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8027 | |
| 8028 | for_each_possible_cpu(i) { |
| 8029 | struct rt_rq *rt_rq = tg->rt_rq[i]; |
| 8030 | |
| 8031 | spin_lock(&rt_rq->rt_runtime_lock); |
| 8032 | rt_rq->rt_runtime = rt_runtime; |
| 8033 | spin_unlock(&rt_rq->rt_runtime_lock); |
| 8034 | } |
| 8035 | spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8036 | unlock: |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8037 | read_unlock(&tasklist_lock); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8038 | mutex_unlock(&rt_constraints_mutex); |
| 8039 | |
| 8040 | return err; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8041 | } |
| 8042 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8043 | int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us) |
| 8044 | { |
| 8045 | u64 rt_runtime, rt_period; |
| 8046 | |
| 8047 | rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8048 | rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC; |
| 8049 | if (rt_runtime_us < 0) |
| 8050 | rt_runtime = RUNTIME_INF; |
| 8051 | |
| 8052 | return tg_set_bandwidth(tg, rt_period, rt_runtime); |
| 8053 | } |
| 8054 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8055 | long sched_group_rt_runtime(struct task_group *tg) |
| 8056 | { |
| 8057 | u64 rt_runtime_us; |
| 8058 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8059 | if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF) |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8060 | return -1; |
| 8061 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8062 | rt_runtime_us = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8063 | do_div(rt_runtime_us, NSEC_PER_USEC); |
| 8064 | return rt_runtime_us; |
| 8065 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8066 | |
| 8067 | int sched_group_set_rt_period(struct task_group *tg, long rt_period_us) |
| 8068 | { |
| 8069 | u64 rt_runtime, rt_period; |
| 8070 | |
| 8071 | rt_period = (u64)rt_period_us * NSEC_PER_USEC; |
| 8072 | rt_runtime = tg->rt_bandwidth.rt_runtime; |
| 8073 | |
| 8074 | return tg_set_bandwidth(tg, rt_period, rt_runtime); |
| 8075 | } |
| 8076 | |
| 8077 | long sched_group_rt_period(struct task_group *tg) |
| 8078 | { |
| 8079 | u64 rt_period_us; |
| 8080 | |
| 8081 | rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8082 | do_div(rt_period_us, NSEC_PER_USEC); |
| 8083 | return rt_period_us; |
| 8084 | } |
| 8085 | |
| 8086 | static int sched_rt_global_constraints(void) |
| 8087 | { |
| 8088 | int ret = 0; |
| 8089 | |
| 8090 | mutex_lock(&rt_constraints_mutex); |
| 8091 | if (!__rt_schedulable(NULL, 1, 0)) |
| 8092 | ret = -EINVAL; |
| 8093 | mutex_unlock(&rt_constraints_mutex); |
| 8094 | |
| 8095 | return ret; |
| 8096 | } |
| 8097 | #else |
| 8098 | static int sched_rt_global_constraints(void) |
| 8099 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8100 | unsigned long flags; |
| 8101 | int i; |
| 8102 | |
| 8103 | spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags); |
| 8104 | for_each_possible_cpu(i) { |
| 8105 | struct rt_rq *rt_rq = &cpu_rq(i)->rt; |
| 8106 | |
| 8107 | spin_lock(&rt_rq->rt_runtime_lock); |
| 8108 | rt_rq->rt_runtime = global_rt_runtime(); |
| 8109 | spin_unlock(&rt_rq->rt_runtime_lock); |
| 8110 | } |
| 8111 | spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags); |
| 8112 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8113 | return 0; |
| 8114 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8115 | #endif |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8116 | |
| 8117 | int sched_rt_handler(struct ctl_table *table, int write, |
| 8118 | struct file *filp, void __user *buffer, size_t *lenp, |
| 8119 | loff_t *ppos) |
| 8120 | { |
| 8121 | int ret; |
| 8122 | int old_period, old_runtime; |
| 8123 | static DEFINE_MUTEX(mutex); |
| 8124 | |
| 8125 | mutex_lock(&mutex); |
| 8126 | old_period = sysctl_sched_rt_period; |
| 8127 | old_runtime = sysctl_sched_rt_runtime; |
| 8128 | |
| 8129 | ret = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
| 8130 | |
| 8131 | if (!ret && write) { |
| 8132 | ret = sched_rt_global_constraints(); |
| 8133 | if (ret) { |
| 8134 | sysctl_sched_rt_period = old_period; |
| 8135 | sysctl_sched_rt_runtime = old_runtime; |
| 8136 | } else { |
| 8137 | def_rt_bandwidth.rt_runtime = global_rt_runtime(); |
| 8138 | def_rt_bandwidth.rt_period = |
| 8139 | ns_to_ktime(global_rt_period()); |
| 8140 | } |
| 8141 | } |
| 8142 | mutex_unlock(&mutex); |
| 8143 | |
| 8144 | return ret; |
| 8145 | } |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8146 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8147 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8148 | |
| 8149 | /* return corresponding task_group object of a cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8150 | static inline struct task_group *cgroup_tg(struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8151 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8152 | return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id), |
| 8153 | struct task_group, css); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8154 | } |
| 8155 | |
| 8156 | static struct cgroup_subsys_state * |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8157 | cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8158 | { |
| 8159 | struct task_group *tg; |
| 8160 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8161 | if (!cgrp->parent) { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8162 | /* This is early initialization for the top cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8163 | init_task_group.css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8164 | return &init_task_group.css; |
| 8165 | } |
| 8166 | |
| 8167 | /* we support only 1-level deep hierarchical scheduler atm */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8168 | if (cgrp->parent->parent) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8169 | return ERR_PTR(-EINVAL); |
| 8170 | |
| 8171 | tg = sched_create_group(); |
| 8172 | if (IS_ERR(tg)) |
| 8173 | return ERR_PTR(-ENOMEM); |
| 8174 | |
| 8175 | /* Bind the cgroup to task_group object we just created */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8176 | tg->css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8177 | |
| 8178 | return &tg->css; |
| 8179 | } |
| 8180 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8181 | static void |
| 8182 | cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8183 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8184 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8185 | |
| 8186 | sched_destroy_group(tg); |
| 8187 | } |
| 8188 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8189 | static int |
| 8190 | cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
| 8191 | struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8192 | { |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8193 | #ifdef CONFIG_RT_GROUP_SCHED |
| 8194 | /* Don't accept realtime tasks when there is no way for them to run */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8195 | if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0) |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8196 | return -EINVAL; |
| 8197 | #else |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8198 | /* We don't support RT-tasks being in separate groups */ |
| 8199 | if (tsk->sched_class != &fair_sched_class) |
| 8200 | return -EINVAL; |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8201 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8202 | |
| 8203 | return 0; |
| 8204 | } |
| 8205 | |
| 8206 | static void |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8207 | cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8208 | struct cgroup *old_cont, struct task_struct *tsk) |
| 8209 | { |
| 8210 | sched_move_task(tsk); |
| 8211 | } |
| 8212 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8213 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8214 | static int cpu_shares_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 8215 | u64 shareval) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8216 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8217 | return sched_group_set_shares(cgroup_tg(cgrp), shareval); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8218 | } |
| 8219 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8220 | static u64 cpu_shares_read_uint(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8221 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8222 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8223 | |
| 8224 | return (u64) tg->shares; |
| 8225 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8226 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8227 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8228 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8229 | static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8230 | struct file *file, |
| 8231 | const char __user *userbuf, |
| 8232 | size_t nbytes, loff_t *unused_ppos) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8233 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8234 | char buffer[64]; |
| 8235 | int retval = 0; |
| 8236 | s64 val; |
| 8237 | char *end; |
| 8238 | |
| 8239 | if (!nbytes) |
| 8240 | return -EINVAL; |
| 8241 | if (nbytes >= sizeof(buffer)) |
| 8242 | return -E2BIG; |
| 8243 | if (copy_from_user(buffer, userbuf, nbytes)) |
| 8244 | return -EFAULT; |
| 8245 | |
| 8246 | buffer[nbytes] = 0; /* nul-terminate */ |
| 8247 | |
| 8248 | /* strip newline if necessary */ |
| 8249 | if (nbytes && (buffer[nbytes-1] == '\n')) |
| 8250 | buffer[nbytes-1] = 0; |
| 8251 | val = simple_strtoll(buffer, &end, 0); |
| 8252 | if (*end) |
| 8253 | return -EINVAL; |
| 8254 | |
| 8255 | /* Pass to subsystem */ |
| 8256 | retval = sched_group_set_rt_runtime(cgroup_tg(cgrp), val); |
| 8257 | if (!retval) |
| 8258 | retval = nbytes; |
| 8259 | return retval; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8260 | } |
| 8261 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8262 | static ssize_t cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft, |
| 8263 | struct file *file, |
| 8264 | char __user *buf, size_t nbytes, |
| 8265 | loff_t *ppos) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8266 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8267 | char tmp[64]; |
| 8268 | long val = sched_group_rt_runtime(cgroup_tg(cgrp)); |
| 8269 | int len = sprintf(tmp, "%ld\n", val); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8270 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8271 | return simple_read_from_buffer(buf, nbytes, ppos, tmp, len); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8272 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8273 | |
| 8274 | static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 8275 | u64 rt_period_us) |
| 8276 | { |
| 8277 | return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us); |
| 8278 | } |
| 8279 | |
| 8280 | static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft) |
| 8281 | { |
| 8282 | return sched_group_rt_period(cgroup_tg(cgrp)); |
| 8283 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8284 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8285 | |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8286 | static struct cftype cpu_files[] = { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8287 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8288 | { |
| 8289 | .name = "shares", |
| 8290 | .read_uint = cpu_shares_read_uint, |
| 8291 | .write_uint = cpu_shares_write_uint, |
| 8292 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8293 | #endif |
| 8294 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8295 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8296 | .name = "rt_runtime_us", |
| 8297 | .read = cpu_rt_runtime_read, |
| 8298 | .write = cpu_rt_runtime_write, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8299 | }, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8300 | { |
| 8301 | .name = "rt_period_us", |
| 8302 | .read_uint = cpu_rt_period_read_uint, |
| 8303 | .write_uint = cpu_rt_period_write_uint, |
| 8304 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8305 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8306 | }; |
| 8307 | |
| 8308 | static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 8309 | { |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8310 | return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8311 | } |
| 8312 | |
| 8313 | struct cgroup_subsys cpu_cgroup_subsys = { |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8314 | .name = "cpu", |
| 8315 | .create = cpu_cgroup_create, |
| 8316 | .destroy = cpu_cgroup_destroy, |
| 8317 | .can_attach = cpu_cgroup_can_attach, |
| 8318 | .attach = cpu_cgroup_attach, |
| 8319 | .populate = cpu_cgroup_populate, |
| 8320 | .subsys_id = cpu_cgroup_subsys_id, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8321 | .early_init = 1, |
| 8322 | }; |
| 8323 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8324 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8325 | |
| 8326 | #ifdef CONFIG_CGROUP_CPUACCT |
| 8327 | |
| 8328 | /* |
| 8329 | * CPU accounting code for task groups. |
| 8330 | * |
| 8331 | * Based on the work by Paul Menage (menage@google.com) and Balbir Singh |
| 8332 | * (balbir@in.ibm.com). |
| 8333 | */ |
| 8334 | |
| 8335 | /* track cpu usage of a group of tasks */ |
| 8336 | struct cpuacct { |
| 8337 | struct cgroup_subsys_state css; |
| 8338 | /* cpuusage holds pointer to a u64-type object on every cpu */ |
| 8339 | u64 *cpuusage; |
| 8340 | }; |
| 8341 | |
| 8342 | struct cgroup_subsys cpuacct_subsys; |
| 8343 | |
| 8344 | /* return cpu accounting group corresponding to this container */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8345 | static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8346 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8347 | return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id), |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8348 | struct cpuacct, css); |
| 8349 | } |
| 8350 | |
| 8351 | /* return cpu accounting group to which this task belongs */ |
| 8352 | static inline struct cpuacct *task_ca(struct task_struct *tsk) |
| 8353 | { |
| 8354 | return container_of(task_subsys_state(tsk, cpuacct_subsys_id), |
| 8355 | struct cpuacct, css); |
| 8356 | } |
| 8357 | |
| 8358 | /* create a new cpu accounting group */ |
| 8359 | static struct cgroup_subsys_state *cpuacct_create( |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8360 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8361 | { |
| 8362 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); |
| 8363 | |
| 8364 | if (!ca) |
| 8365 | return ERR_PTR(-ENOMEM); |
| 8366 | |
| 8367 | ca->cpuusage = alloc_percpu(u64); |
| 8368 | if (!ca->cpuusage) { |
| 8369 | kfree(ca); |
| 8370 | return ERR_PTR(-ENOMEM); |
| 8371 | } |
| 8372 | |
| 8373 | return &ca->css; |
| 8374 | } |
| 8375 | |
| 8376 | /* destroy an existing cpu accounting group */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8377 | static void |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8378 | cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8379 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8380 | struct cpuacct *ca = cgroup_ca(cgrp); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8381 | |
| 8382 | free_percpu(ca->cpuusage); |
| 8383 | kfree(ca); |
| 8384 | } |
| 8385 | |
| 8386 | /* return total cpu usage (in nanoseconds) of a group */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8387 | static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8388 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8389 | struct cpuacct *ca = cgroup_ca(cgrp); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8390 | u64 totalcpuusage = 0; |
| 8391 | int i; |
| 8392 | |
| 8393 | for_each_possible_cpu(i) { |
| 8394 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8395 | |
| 8396 | /* |
| 8397 | * Take rq->lock to make 64-bit addition safe on 32-bit |
| 8398 | * platforms. |
| 8399 | */ |
| 8400 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8401 | totalcpuusage += *cpuusage; |
| 8402 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8403 | } |
| 8404 | |
| 8405 | return totalcpuusage; |
| 8406 | } |
| 8407 | |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 8408 | static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype, |
| 8409 | u64 reset) |
| 8410 | { |
| 8411 | struct cpuacct *ca = cgroup_ca(cgrp); |
| 8412 | int err = 0; |
| 8413 | int i; |
| 8414 | |
| 8415 | if (reset) { |
| 8416 | err = -EINVAL; |
| 8417 | goto out; |
| 8418 | } |
| 8419 | |
| 8420 | for_each_possible_cpu(i) { |
| 8421 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8422 | |
| 8423 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8424 | *cpuusage = 0; |
| 8425 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8426 | } |
| 8427 | out: |
| 8428 | return err; |
| 8429 | } |
| 8430 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8431 | static struct cftype files[] = { |
| 8432 | { |
| 8433 | .name = "usage", |
| 8434 | .read_uint = cpuusage_read, |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 8435 | .write_uint = cpuusage_write, |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8436 | }, |
| 8437 | }; |
| 8438 | |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8439 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8440 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8441 | return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files)); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8442 | } |
| 8443 | |
| 8444 | /* |
| 8445 | * charge this task's execution time to its accounting group. |
| 8446 | * |
| 8447 | * called with rq->lock held. |
| 8448 | */ |
| 8449 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime) |
| 8450 | { |
| 8451 | struct cpuacct *ca; |
| 8452 | |
| 8453 | if (!cpuacct_subsys.active) |
| 8454 | return; |
| 8455 | |
| 8456 | ca = task_ca(tsk); |
| 8457 | if (ca) { |
| 8458 | u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk)); |
| 8459 | |
| 8460 | *cpuusage += cputime; |
| 8461 | } |
| 8462 | } |
| 8463 | |
| 8464 | struct cgroup_subsys cpuacct_subsys = { |
| 8465 | .name = "cpuacct", |
| 8466 | .create = cpuacct_create, |
| 8467 | .destroy = cpuacct_destroy, |
| 8468 | .populate = cpuacct_populate, |
| 8469 | .subsys_id = cpuacct_subsys_id, |
| 8470 | }; |
| 8471 | #endif /* CONFIG_CGROUP_CPUACCT */ |