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> |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 71 | #include <linux/debugfs.h> |
| 72 | #include <linux/ctype.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 74 | #include <asm/tlb.h> |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 75 | #include <asm/irq_regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 77 | #include "sched_cpupri.h" |
| 78 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | /* |
| 80 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
| 81 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
| 82 | * and back. |
| 83 | */ |
| 84 | #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20) |
| 85 | #define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20) |
| 86 | #define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio) |
| 87 | |
| 88 | /* |
| 89 | * 'User priority' is the nice value converted to something we |
| 90 | * can work with better when scaling various scheduler parameters, |
| 91 | * it's a [ 0 ... 39 ] range. |
| 92 | */ |
| 93 | #define USER_PRIO(p) ((p)-MAX_RT_PRIO) |
| 94 | #define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio) |
| 95 | #define MAX_USER_PRIO (USER_PRIO(MAX_PRIO)) |
| 96 | |
| 97 | /* |
Ingo Molnar | d7876a0 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 98 | * Helpers for converting nanosecond timing to jiffy resolution |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | */ |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 100 | #define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 102 | #define NICE_0_LOAD SCHED_LOAD_SCALE |
| 103 | #define NICE_0_SHIFT SCHED_LOAD_SHIFT |
| 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | /* |
| 106 | * These are the 'tuning knobs' of the scheduler: |
| 107 | * |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 108 | * default timeslice is 100 msecs (used only for SCHED_RR tasks). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | * Timeslices get refilled after they expire. |
| 110 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | #define DEF_TIMESLICE (100 * HZ / 1000) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 112 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 113 | /* |
| 114 | * single value that denotes runtime == period, ie unlimited time. |
| 115 | */ |
| 116 | #define RUNTIME_INF ((u64)~0ULL) |
| 117 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 118 | #ifdef CONFIG_SMP |
| 119 | /* |
| 120 | * Divide a load by a sched group cpu_power : (load / sg->__cpu_power) |
| 121 | * Since cpu_power is a 'constant', we can use a reciprocal divide. |
| 122 | */ |
| 123 | static inline u32 sg_div_cpu_power(const struct sched_group *sg, u32 load) |
| 124 | { |
| 125 | return reciprocal_divide(load, sg->reciprocal_cpu_power); |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * Each time a sched group cpu_power is changed, |
| 130 | * we must compute its reciprocal value |
| 131 | */ |
| 132 | static inline void sg_inc_cpu_power(struct sched_group *sg, u32 val) |
| 133 | { |
| 134 | sg->__cpu_power += val; |
| 135 | sg->reciprocal_cpu_power = reciprocal_value(sg->__cpu_power); |
| 136 | } |
| 137 | #endif |
| 138 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 139 | static inline int rt_policy(int policy) |
| 140 | { |
Roel Kluin | 3f33a7c | 2008-05-13 23:44:11 +0200 | [diff] [blame] | 141 | if (unlikely(policy == SCHED_FIFO || policy == SCHED_RR)) |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 142 | return 1; |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | static inline int task_has_rt_policy(struct task_struct *p) |
| 147 | { |
| 148 | return rt_policy(p->policy); |
| 149 | } |
| 150 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | /* |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 152 | * This is the priority-queue data structure of the RT scheduling class: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 154 | struct rt_prio_array { |
| 155 | DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */ |
Gregory Haskins | 45c01e8 | 2008-05-12 21:20:41 +0200 | [diff] [blame] | 156 | struct list_head xqueue[MAX_RT_PRIO]; /* exclusive queue */ |
| 157 | struct list_head squeue[MAX_RT_PRIO]; /* shared queue */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 158 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 160 | struct rt_bandwidth { |
Ingo Molnar | ea736ed | 2008-03-25 13:51:45 +0100 | [diff] [blame] | 161 | /* nests inside the rq lock: */ |
| 162 | spinlock_t rt_runtime_lock; |
| 163 | ktime_t rt_period; |
| 164 | u64 rt_runtime; |
| 165 | struct hrtimer rt_period_timer; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 166 | }; |
| 167 | |
| 168 | static struct rt_bandwidth def_rt_bandwidth; |
| 169 | |
| 170 | static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun); |
| 171 | |
| 172 | static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer) |
| 173 | { |
| 174 | struct rt_bandwidth *rt_b = |
| 175 | container_of(timer, struct rt_bandwidth, rt_period_timer); |
| 176 | ktime_t now; |
| 177 | int overrun; |
| 178 | int idle = 0; |
| 179 | |
| 180 | for (;;) { |
| 181 | now = hrtimer_cb_get_time(timer); |
| 182 | overrun = hrtimer_forward(timer, now, rt_b->rt_period); |
| 183 | |
| 184 | if (!overrun) |
| 185 | break; |
| 186 | |
| 187 | idle = do_sched_rt_period_timer(rt_b, overrun); |
| 188 | } |
| 189 | |
| 190 | return idle ? HRTIMER_NORESTART : HRTIMER_RESTART; |
| 191 | } |
| 192 | |
| 193 | static |
| 194 | void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime) |
| 195 | { |
| 196 | rt_b->rt_period = ns_to_ktime(period); |
| 197 | rt_b->rt_runtime = runtime; |
| 198 | |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 199 | spin_lock_init(&rt_b->rt_runtime_lock); |
| 200 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 201 | hrtimer_init(&rt_b->rt_period_timer, |
| 202 | CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 203 | rt_b->rt_period_timer.function = sched_rt_period_timer; |
| 204 | rt_b->rt_period_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 205 | } |
| 206 | |
| 207 | static void start_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 208 | { |
| 209 | ktime_t now; |
| 210 | |
| 211 | if (rt_b->rt_runtime == RUNTIME_INF) |
| 212 | return; |
| 213 | |
| 214 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 215 | return; |
| 216 | |
| 217 | spin_lock(&rt_b->rt_runtime_lock); |
| 218 | for (;;) { |
| 219 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 220 | break; |
| 221 | |
| 222 | now = hrtimer_cb_get_time(&rt_b->rt_period_timer); |
| 223 | hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period); |
| 224 | hrtimer_start(&rt_b->rt_period_timer, |
| 225 | rt_b->rt_period_timer.expires, |
| 226 | HRTIMER_MODE_ABS); |
| 227 | } |
| 228 | spin_unlock(&rt_b->rt_runtime_lock); |
| 229 | } |
| 230 | |
| 231 | #ifdef CONFIG_RT_GROUP_SCHED |
| 232 | static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 233 | { |
| 234 | hrtimer_cancel(&rt_b->rt_period_timer); |
| 235 | } |
| 236 | #endif |
| 237 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 238 | /* |
| 239 | * sched_domains_mutex serializes calls to arch_init_sched_domains, |
| 240 | * detach_destroy_domains and partition_sched_domains. |
| 241 | */ |
| 242 | static DEFINE_MUTEX(sched_domains_mutex); |
| 243 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 244 | #ifdef CONFIG_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 245 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 246 | #include <linux/cgroup.h> |
| 247 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 248 | struct cfs_rq; |
| 249 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 250 | static LIST_HEAD(task_groups); |
| 251 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 252 | /* task group related information */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 253 | struct task_group { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 254 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 255 | struct cgroup_subsys_state css; |
| 256 | #endif |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 257 | |
| 258 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 259 | /* schedulable entities of this group on each cpu */ |
| 260 | struct sched_entity **se; |
| 261 | /* runqueue "owned" by this group on each cpu */ |
| 262 | struct cfs_rq **cfs_rq; |
| 263 | unsigned long shares; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 264 | #endif |
| 265 | |
| 266 | #ifdef CONFIG_RT_GROUP_SCHED |
| 267 | struct sched_rt_entity **rt_se; |
| 268 | struct rt_rq **rt_rq; |
| 269 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 270 | struct rt_bandwidth rt_bandwidth; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 271 | #endif |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 272 | |
Srivatsa Vaddagiri | ae8393e | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 273 | struct rcu_head rcu; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 274 | struct list_head list; |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 275 | |
| 276 | struct task_group *parent; |
| 277 | struct list_head siblings; |
| 278 | struct list_head children; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 279 | }; |
| 280 | |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 281 | #ifdef CONFIG_USER_SCHED |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * Root task group. |
| 285 | * Every UID task group (including init_task_group aka UID-0) will |
| 286 | * be a child to this group. |
| 287 | */ |
| 288 | struct task_group root_task_group; |
| 289 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 290 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 291 | /* Default task group's sched entity on each cpu */ |
| 292 | static DEFINE_PER_CPU(struct sched_entity, init_sched_entity); |
| 293 | /* Default task group's cfs_rq on each cpu */ |
| 294 | static DEFINE_PER_CPU(struct cfs_rq, init_cfs_rq) ____cacheline_aligned_in_smp; |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 295 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 296 | |
| 297 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 298 | static DEFINE_PER_CPU(struct sched_rt_entity, init_sched_rt_entity); |
| 299 | static DEFINE_PER_CPU(struct rt_rq, init_rt_rq) ____cacheline_aligned_in_smp; |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 300 | #endif /* CONFIG_RT_GROUP_SCHED */ |
| 301 | #else /* !CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 302 | #define root_task_group init_task_group |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 303 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 304 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 305 | /* 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] | 306 | * a task group's cpu shares. |
| 307 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 308 | static DEFINE_SPINLOCK(task_group_lock); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 309 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 310 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 311 | #ifdef CONFIG_USER_SCHED |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 312 | # define INIT_TASK_GROUP_LOAD (2*NICE_0_LOAD) |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 313 | #else /* !CONFIG_USER_SCHED */ |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 314 | # define INIT_TASK_GROUP_LOAD NICE_0_LOAD |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 315 | #endif /* CONFIG_USER_SCHED */ |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 316 | |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 317 | /* |
| 318 | * A weight of 0, 1 or ULONG_MAX can cause arithmetics problems. |
| 319 | * (The default weight is 1024 - so there's no practical |
| 320 | * limitation from this.) |
| 321 | */ |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 322 | #define MIN_SHARES 2 |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 323 | #define MAX_SHARES (ULONG_MAX - 1) |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 324 | |
Srivatsa Vaddagiri | 93f992c | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 325 | static int init_task_group_load = INIT_TASK_GROUP_LOAD; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 326 | #endif |
| 327 | |
| 328 | /* Default task group. |
| 329 | * Every task in system belong to this group at bootup. |
| 330 | */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 331 | struct task_group init_task_group; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 332 | |
| 333 | /* return group to which a task belongs */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 334 | static inline struct task_group *task_group(struct task_struct *p) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 335 | { |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 336 | struct task_group *tg; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 337 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 338 | #ifdef CONFIG_USER_SCHED |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 339 | tg = p->user->tg; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 340 | #elif defined(CONFIG_CGROUP_SCHED) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 341 | tg = container_of(task_subsys_state(p, cpu_cgroup_subsys_id), |
| 342 | struct task_group, css); |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 343 | #else |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 344 | tg = &init_task_group; |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 345 | #endif |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 346 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 347 | } |
| 348 | |
| 349 | /* 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] | 350 | 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] | 351 | { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 352 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 353 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 354 | p->se.parent = task_group(p)->se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 355 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 356 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 357 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 358 | p->rt.rt_rq = task_group(p)->rt_rq[cpu]; |
| 359 | p->rt.parent = task_group(p)->rt_se[cpu]; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 360 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 361 | } |
| 362 | |
| 363 | #else |
| 364 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 365 | 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] | 366 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 367 | #endif /* CONFIG_GROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 368 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 369 | /* CFS-related fields in a runqueue */ |
| 370 | struct cfs_rq { |
| 371 | struct load_weight load; |
| 372 | unsigned long nr_running; |
| 373 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 374 | u64 exec_clock; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 375 | u64 min_vruntime; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 376 | |
| 377 | struct rb_root tasks_timeline; |
| 378 | struct rb_node *rb_leftmost; |
Peter Zijlstra | 4a55bd5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 379 | |
| 380 | struct list_head tasks; |
| 381 | struct list_head *balance_iterator; |
| 382 | |
| 383 | /* |
| 384 | * 'curr' points to currently running entity on this cfs_rq. |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 385 | * It is set to NULL otherwise (i.e when none are currently running). |
| 386 | */ |
Peter Zijlstra | aa2ac25 | 2008-03-14 21:12:12 +0100 | [diff] [blame] | 387 | struct sched_entity *curr, *next; |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 388 | |
| 389 | unsigned long nr_spread_over; |
| 390 | |
Ingo Molnar | 62160e3 | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 391 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 392 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
| 393 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 394 | /* |
| 395 | * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 396 | * a hierarchy). Non-leaf lrqs hold other higher schedulable entities |
| 397 | * (like users, containers etc.) |
| 398 | * |
| 399 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
| 400 | * list is used during load balance. |
| 401 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 402 | struct list_head leaf_cfs_rq_list; |
| 403 | struct task_group *tg; /* group that "owns" this runqueue */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 404 | #endif |
| 405 | }; |
| 406 | |
| 407 | /* Real-Time classes' related field in a runqueue: */ |
| 408 | struct rt_rq { |
| 409 | struct rt_prio_array active; |
Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 410 | unsigned long rt_nr_running; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 411 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 412 | int highest_prio; /* highest queued rt task prio */ |
| 413 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 414 | #ifdef CONFIG_SMP |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 415 | unsigned long rt_nr_migratory; |
Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 416 | int overloaded; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 417 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 418 | int rt_throttled; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 419 | u64 rt_time; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 420 | u64 rt_runtime; |
Ingo Molnar | ea736ed | 2008-03-25 13:51:45 +0100 | [diff] [blame] | 421 | /* Nests inside the rq lock: */ |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 422 | spinlock_t rt_runtime_lock; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 423 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 424 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 425 | unsigned long rt_nr_boosted; |
| 426 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 427 | struct rq *rq; |
| 428 | struct list_head leaf_rt_rq_list; |
| 429 | struct task_group *tg; |
| 430 | struct sched_rt_entity *rt_se; |
| 431 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 432 | }; |
| 433 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 434 | #ifdef CONFIG_SMP |
| 435 | |
| 436 | /* |
| 437 | * 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] | 438 | * variables. Each exclusive cpuset essentially defines an island domain by |
| 439 | * fully partitioning the member cpus from any other cpuset. Whenever a new |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 440 | * exclusive cpuset is created, we also create and attach a new root-domain |
| 441 | * object. |
| 442 | * |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 443 | */ |
| 444 | struct root_domain { |
| 445 | atomic_t refcount; |
| 446 | cpumask_t span; |
| 447 | cpumask_t online; |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 448 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 449 | /* |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 450 | * The "RT overload" flag: it gets set if a CPU has more than |
| 451 | * one runnable RT task. |
| 452 | */ |
| 453 | cpumask_t rto_mask; |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 454 | atomic_t rto_count; |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 455 | #ifdef CONFIG_SMP |
| 456 | struct cpupri cpupri; |
| 457 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 458 | }; |
| 459 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 460 | /* |
| 461 | * By default the system creates a single root-domain with all cpus as |
| 462 | * members (mimicking the global state we have today). |
| 463 | */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 464 | static struct root_domain def_root_domain; |
| 465 | |
| 466 | #endif |
| 467 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 468 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | * This is the main, per-CPU runqueue data structure. |
| 470 | * |
| 471 | * Locking rule: those places that want to lock multiple runqueues |
| 472 | * (such as the load balancing or the thread migration code), lock |
| 473 | * acquire operations must be ordered by ascending &runqueue. |
| 474 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 475 | struct rq { |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 476 | /* runqueue lock: */ |
| 477 | spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | |
| 479 | /* |
| 480 | * nr_running and cpu_load should be in the same cacheline because |
| 481 | * remote CPUs use both these fields when doing load calculation. |
| 482 | */ |
| 483 | unsigned long nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 484 | #define CPU_LOAD_IDX_MAX 5 |
| 485 | unsigned long cpu_load[CPU_LOAD_IDX_MAX]; |
Siddha, Suresh B | bdecea3 | 2007-05-08 00:32:48 -0700 | [diff] [blame] | 486 | unsigned char idle_at_tick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 487 | #ifdef CONFIG_NO_HZ |
Guillaume Chazarain | 15934a3 | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 488 | unsigned long last_tick_seen; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 489 | unsigned char in_nohz_recently; |
| 490 | #endif |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 491 | /* capture load from *all* tasks on this cpu: */ |
| 492 | struct load_weight load; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 493 | unsigned long nr_load_updates; |
| 494 | u64 nr_switches; |
| 495 | |
| 496 | struct cfs_rq cfs; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 497 | struct rt_rq rt; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 498 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 499 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 500 | /* list of leaf cfs_rq on this cpu: */ |
| 501 | struct list_head leaf_cfs_rq_list; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 502 | #endif |
| 503 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 504 | struct list_head leaf_rt_rq_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | |
| 507 | /* |
| 508 | * This is part of a global counter where only the total sum |
| 509 | * over all CPUs matters. A task can increase this counter on |
| 510 | * one CPU and if it got migrated afterwards it may decrease |
| 511 | * it on another CPU. Always updated under the runqueue lock: |
| 512 | */ |
| 513 | unsigned long nr_uninterruptible; |
| 514 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 515 | struct task_struct *curr, *idle; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 516 | unsigned long next_balance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | struct mm_struct *prev_mm; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 518 | |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 519 | u64 clock; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | atomic_t nr_iowait; |
| 522 | |
| 523 | #ifdef CONFIG_SMP |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 524 | struct root_domain *rd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | struct sched_domain *sd; |
| 526 | |
| 527 | /* For active balancing */ |
| 528 | int active_balance; |
| 529 | int push_cpu; |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 530 | /* cpu of this runqueue: */ |
| 531 | int cpu; |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 532 | int online; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 533 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 534 | struct task_struct *migration_thread; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | struct list_head migration_queue; |
| 536 | #endif |
| 537 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 538 | #ifdef CONFIG_SCHED_HRTICK |
| 539 | unsigned long hrtick_flags; |
| 540 | ktime_t hrtick_expire; |
| 541 | struct hrtimer hrtick_timer; |
| 542 | #endif |
| 543 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | #ifdef CONFIG_SCHEDSTATS |
| 545 | /* latency stats */ |
| 546 | struct sched_info rq_sched_info; |
| 547 | |
| 548 | /* sys_sched_yield() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 549 | unsigned int yld_exp_empty; |
| 550 | unsigned int yld_act_empty; |
| 551 | unsigned int yld_both_empty; |
| 552 | unsigned int yld_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
| 554 | /* schedule() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 555 | unsigned int sched_switch; |
| 556 | unsigned int sched_count; |
| 557 | unsigned int sched_goidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
| 559 | /* try_to_wake_up() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 560 | unsigned int ttwu_count; |
| 561 | unsigned int ttwu_local; |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 562 | |
| 563 | /* BKL stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 564 | unsigned int bkl_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | #endif |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 566 | struct lock_class_key rq_lock_key; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | }; |
| 568 | |
Fenghua Yu | f34e3b6 | 2007-07-19 01:48:13 -0700 | [diff] [blame] | 569 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 571 | static inline void check_preempt_curr(struct rq *rq, struct task_struct *p) |
| 572 | { |
| 573 | rq->curr->sched_class->check_preempt_curr(rq, p); |
| 574 | } |
| 575 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 576 | static inline int cpu_of(struct rq *rq) |
| 577 | { |
| 578 | #ifdef CONFIG_SMP |
| 579 | return rq->cpu; |
| 580 | #else |
| 581 | return 0; |
| 582 | #endif |
| 583 | } |
| 584 | |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 585 | /* |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 586 | * 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] | 587 | * See detach_destroy_domains: synchronize_sched for details. |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 588 | * |
| 589 | * The domain tree of any CPU may only be accessed from within |
| 590 | * preempt-disabled sections. |
| 591 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 592 | #define for_each_domain(cpu, __sd) \ |
| 593 | for (__sd = rcu_dereference(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | |
| 595 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu))) |
| 596 | #define this_rq() (&__get_cpu_var(runqueues)) |
| 597 | #define task_rq(p) cpu_rq(task_cpu(p)) |
| 598 | #define cpu_curr(cpu) (cpu_rq(cpu)->curr) |
| 599 | |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 600 | static inline void update_rq_clock(struct rq *rq) |
| 601 | { |
| 602 | rq->clock = sched_clock_cpu(cpu_of(rq)); |
| 603 | } |
| 604 | |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 605 | /* |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 606 | * Tunables that become constants when CONFIG_SCHED_DEBUG is off: |
| 607 | */ |
| 608 | #ifdef CONFIG_SCHED_DEBUG |
| 609 | # define const_debug __read_mostly |
| 610 | #else |
| 611 | # define const_debug static const |
| 612 | #endif |
| 613 | |
| 614 | /* |
| 615 | * Debugging: various feature bits |
| 616 | */ |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 617 | |
| 618 | #define SCHED_FEAT(name, enabled) \ |
| 619 | __SCHED_FEAT_##name , |
| 620 | |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 621 | enum { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 622 | #include "sched_features.h" |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 623 | }; |
| 624 | |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 625 | #undef SCHED_FEAT |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 626 | |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 627 | #define SCHED_FEAT(name, enabled) \ |
| 628 | (1UL << __SCHED_FEAT_##name) * enabled | |
| 629 | |
| 630 | const_debug unsigned int sysctl_sched_features = |
| 631 | #include "sched_features.h" |
| 632 | 0; |
| 633 | |
| 634 | #undef SCHED_FEAT |
| 635 | |
| 636 | #ifdef CONFIG_SCHED_DEBUG |
| 637 | #define SCHED_FEAT(name, enabled) \ |
| 638 | #name , |
| 639 | |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 640 | static __read_mostly char *sched_feat_names[] = { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 641 | #include "sched_features.h" |
| 642 | NULL |
| 643 | }; |
| 644 | |
| 645 | #undef SCHED_FEAT |
| 646 | |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 647 | static int sched_feat_open(struct inode *inode, struct file *filp) |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 648 | { |
| 649 | filp->private_data = inode->i_private; |
| 650 | return 0; |
| 651 | } |
| 652 | |
| 653 | static ssize_t |
| 654 | sched_feat_read(struct file *filp, char __user *ubuf, |
| 655 | size_t cnt, loff_t *ppos) |
| 656 | { |
| 657 | char *buf; |
| 658 | int r = 0; |
| 659 | int len = 0; |
| 660 | int i; |
| 661 | |
| 662 | for (i = 0; sched_feat_names[i]; i++) { |
| 663 | len += strlen(sched_feat_names[i]); |
| 664 | len += 4; |
| 665 | } |
| 666 | |
| 667 | buf = kmalloc(len + 2, GFP_KERNEL); |
| 668 | if (!buf) |
| 669 | return -ENOMEM; |
| 670 | |
| 671 | for (i = 0; sched_feat_names[i]; i++) { |
| 672 | if (sysctl_sched_features & (1UL << i)) |
| 673 | r += sprintf(buf + r, "%s ", sched_feat_names[i]); |
| 674 | else |
Ingo Molnar | c24b7c5 | 2008-04-18 10:55:34 +0200 | [diff] [blame] | 675 | r += sprintf(buf + r, "NO_%s ", sched_feat_names[i]); |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | r += sprintf(buf + r, "\n"); |
| 679 | WARN_ON(r >= len + 2); |
| 680 | |
| 681 | r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
| 682 | |
| 683 | kfree(buf); |
| 684 | |
| 685 | return r; |
| 686 | } |
| 687 | |
| 688 | static ssize_t |
| 689 | sched_feat_write(struct file *filp, const char __user *ubuf, |
| 690 | size_t cnt, loff_t *ppos) |
| 691 | { |
| 692 | char buf[64]; |
| 693 | char *cmp = buf; |
| 694 | int neg = 0; |
| 695 | int i; |
| 696 | |
| 697 | if (cnt > 63) |
| 698 | cnt = 63; |
| 699 | |
| 700 | if (copy_from_user(&buf, ubuf, cnt)) |
| 701 | return -EFAULT; |
| 702 | |
| 703 | buf[cnt] = 0; |
| 704 | |
Ingo Molnar | c24b7c5 | 2008-04-18 10:55:34 +0200 | [diff] [blame] | 705 | if (strncmp(buf, "NO_", 3) == 0) { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 706 | neg = 1; |
| 707 | cmp += 3; |
| 708 | } |
| 709 | |
| 710 | for (i = 0; sched_feat_names[i]; i++) { |
| 711 | int len = strlen(sched_feat_names[i]); |
| 712 | |
| 713 | if (strncmp(cmp, sched_feat_names[i], len) == 0) { |
| 714 | if (neg) |
| 715 | sysctl_sched_features &= ~(1UL << i); |
| 716 | else |
| 717 | sysctl_sched_features |= (1UL << i); |
| 718 | break; |
| 719 | } |
| 720 | } |
| 721 | |
| 722 | if (!sched_feat_names[i]) |
| 723 | return -EINVAL; |
| 724 | |
| 725 | filp->f_pos += cnt; |
| 726 | |
| 727 | return cnt; |
| 728 | } |
| 729 | |
| 730 | static struct file_operations sched_feat_fops = { |
| 731 | .open = sched_feat_open, |
| 732 | .read = sched_feat_read, |
| 733 | .write = sched_feat_write, |
| 734 | }; |
| 735 | |
| 736 | static __init int sched_init_debug(void) |
| 737 | { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 738 | debugfs_create_file("sched_features", 0644, NULL, NULL, |
| 739 | &sched_feat_fops); |
| 740 | |
| 741 | return 0; |
| 742 | } |
| 743 | late_initcall(sched_init_debug); |
| 744 | |
| 745 | #endif |
| 746 | |
| 747 | #define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x)) |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 748 | |
| 749 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 750 | * Number of tasks to iterate in a single balance run. |
| 751 | * Limited because this is done with IRQs disabled. |
| 752 | */ |
| 753 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
| 754 | |
| 755 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 756 | * period over which we measure -rt task cpu usage in us. |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 757 | * default: 1s |
| 758 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 759 | unsigned int sysctl_sched_rt_period = 1000000; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 760 | |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 761 | static __read_mostly int scheduler_running; |
| 762 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 763 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 764 | * part of the period that we allow rt tasks to run in us. |
| 765 | * default: 0.95s |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 766 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 767 | int sysctl_sched_rt_runtime = 950000; |
| 768 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 769 | static inline u64 global_rt_period(void) |
| 770 | { |
| 771 | return (u64)sysctl_sched_rt_period * NSEC_PER_USEC; |
| 772 | } |
| 773 | |
| 774 | static inline u64 global_rt_runtime(void) |
| 775 | { |
| 776 | if (sysctl_sched_rt_period < 0) |
| 777 | return RUNTIME_INF; |
| 778 | |
| 779 | return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC; |
| 780 | } |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 781 | |
Ingo Molnar | 690229a | 2008-04-23 09:31:35 +0200 | [diff] [blame] | 782 | unsigned long long time_sync_thresh = 100000; |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 783 | |
| 784 | static DEFINE_PER_CPU(unsigned long long, time_offset); |
| 785 | static DEFINE_PER_CPU(unsigned long long, prev_cpu_time); |
| 786 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 787 | /* |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 788 | * Global lock which we take every now and then to synchronize |
| 789 | * the CPUs time. This method is not warp-safe, but it's good |
| 790 | * enough to synchronize slowly diverging time sources and thus |
| 791 | * it's good enough for tracing: |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 792 | */ |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 793 | static DEFINE_SPINLOCK(time_sync_lock); |
| 794 | static unsigned long long prev_global_time; |
| 795 | |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 796 | static unsigned long long __sync_cpu_clock(unsigned long long time, int cpu) |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 797 | { |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 798 | /* |
| 799 | * We want this inlined, to not get tracer function calls |
| 800 | * in this critical section: |
| 801 | */ |
| 802 | spin_acquire(&time_sync_lock.dep_map, 0, 0, _THIS_IP_); |
| 803 | __raw_spin_lock(&time_sync_lock.raw_lock); |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 804 | |
| 805 | if (time < prev_global_time) { |
| 806 | per_cpu(time_offset, cpu) += prev_global_time - time; |
| 807 | time = prev_global_time; |
| 808 | } else { |
| 809 | prev_global_time = time; |
| 810 | } |
| 811 | |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 812 | __raw_spin_unlock(&time_sync_lock.raw_lock); |
| 813 | spin_release(&time_sync_lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 814 | |
| 815 | return time; |
| 816 | } |
| 817 | |
| 818 | static unsigned long long __cpu_clock(int cpu) |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 819 | { |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 820 | unsigned long long now; |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 821 | |
Ingo Molnar | 8ced5f6 | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 822 | /* |
| 823 | * Only call sched_clock() if the scheduler has already been |
| 824 | * initialized (some code might call cpu_clock() very early): |
| 825 | */ |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 826 | if (unlikely(!scheduler_running)) |
| 827 | return 0; |
| 828 | |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 829 | now = sched_clock_cpu(cpu); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 830 | |
| 831 | return now; |
| 832 | } |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 833 | |
| 834 | /* |
| 835 | * For kernel-internal use: high-speed (but slightly incorrect) per-cpu |
| 836 | * clock constructed from sched_clock(): |
| 837 | */ |
| 838 | unsigned long long cpu_clock(int cpu) |
| 839 | { |
| 840 | unsigned long long prev_cpu_time, time, delta_time; |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 841 | unsigned long flags; |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 842 | |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 843 | local_irq_save(flags); |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 844 | prev_cpu_time = per_cpu(prev_cpu_time, cpu); |
| 845 | time = __cpu_clock(cpu) + per_cpu(time_offset, cpu); |
| 846 | delta_time = time-prev_cpu_time; |
| 847 | |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 848 | if (unlikely(delta_time > time_sync_thresh)) { |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 849 | time = __sync_cpu_clock(time, cpu); |
Ingo Molnar | dfbf4a1 | 2008-04-23 09:24:06 +0200 | [diff] [blame] | 850 | per_cpu(prev_cpu_time, cpu) = time; |
| 851 | } |
| 852 | local_irq_restore(flags); |
Ingo Molnar | 27ec440 | 2008-02-28 21:00:21 +0100 | [diff] [blame] | 853 | |
| 854 | return time; |
| 855 | } |
Paul E. McKenney | a58f6f2 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 856 | EXPORT_SYMBOL_GPL(cpu_clock); |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | #ifndef prepare_arch_switch |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 859 | # define prepare_arch_switch(next) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 861 | #ifndef finish_arch_switch |
| 862 | # define finish_arch_switch(prev) do { } while (0) |
| 863 | #endif |
| 864 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 865 | static inline int task_current(struct rq *rq, struct task_struct *p) |
| 866 | { |
| 867 | return rq->curr == p; |
| 868 | } |
| 869 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 870 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 871 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 872 | { |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 873 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 874 | } |
| 875 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 876 | 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] | 877 | { |
| 878 | } |
| 879 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 880 | 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] | 881 | { |
Ingo Molnar | da04c03 | 2005-09-13 11:17:59 +0200 | [diff] [blame] | 882 | #ifdef CONFIG_DEBUG_SPINLOCK |
| 883 | /* this is a valid case when another task releases the spinlock */ |
| 884 | rq->lock.owner = current; |
| 885 | #endif |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 886 | /* |
| 887 | * If we are tracking spinlock dependencies then we have to |
| 888 | * fix up the runqueue lock - which gets 'carried over' from |
| 889 | * prev into current: |
| 890 | */ |
| 891 | spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_); |
| 892 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 893 | spin_unlock_irq(&rq->lock); |
| 894 | } |
| 895 | |
| 896 | #else /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 897 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 898 | { |
| 899 | #ifdef CONFIG_SMP |
| 900 | return p->oncpu; |
| 901 | #else |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 902 | return task_current(rq, p); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 903 | #endif |
| 904 | } |
| 905 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 906 | 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] | 907 | { |
| 908 | #ifdef CONFIG_SMP |
| 909 | /* |
| 910 | * We can optimise this out completely for !SMP, because the |
| 911 | * SMP rebalancing from interrupt is the only thing that cares |
| 912 | * here. |
| 913 | */ |
| 914 | next->oncpu = 1; |
| 915 | #endif |
| 916 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 917 | spin_unlock_irq(&rq->lock); |
| 918 | #else |
| 919 | spin_unlock(&rq->lock); |
| 920 | #endif |
| 921 | } |
| 922 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 923 | 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] | 924 | { |
| 925 | #ifdef CONFIG_SMP |
| 926 | /* |
| 927 | * After ->oncpu is cleared, the task can be moved to a different CPU. |
| 928 | * We must ensure this doesn't happen until the switch is completely |
| 929 | * finished. |
| 930 | */ |
| 931 | smp_wmb(); |
| 932 | prev->oncpu = 0; |
| 933 | #endif |
| 934 | #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 935 | local_irq_enable(); |
| 936 | #endif |
| 937 | } |
| 938 | #endif /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | |
| 940 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 941 | * __task_rq_lock - lock the runqueue a given task resides on. |
| 942 | * Must be called interrupts disabled. |
| 943 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 944 | static inline struct rq *__task_rq_lock(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 945 | __acquires(rq->lock) |
| 946 | { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 947 | for (;;) { |
| 948 | struct rq *rq = task_rq(p); |
| 949 | spin_lock(&rq->lock); |
| 950 | if (likely(rq == task_rq(p))) |
| 951 | return rq; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 952 | spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 953 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 954 | } |
| 955 | |
| 956 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 957 | * 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] | 958 | * interrupts. Note the ordering: we can safely lookup the task_rq without |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | * explicitly disabling preemption. |
| 960 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 961 | 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] | 962 | __acquires(rq->lock) |
| 963 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 964 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 966 | for (;;) { |
| 967 | local_irq_save(*flags); |
| 968 | rq = task_rq(p); |
| 969 | spin_lock(&rq->lock); |
| 970 | if (likely(rq == task_rq(p))) |
| 971 | return rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 972 | spin_unlock_irqrestore(&rq->lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | } |
| 975 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 976 | static void __task_rq_unlock(struct rq *rq) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 977 | __releases(rq->lock) |
| 978 | { |
| 979 | spin_unlock(&rq->lock); |
| 980 | } |
| 981 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 982 | static inline void task_rq_unlock(struct rq *rq, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 983 | __releases(rq->lock) |
| 984 | { |
| 985 | spin_unlock_irqrestore(&rq->lock, *flags); |
| 986 | } |
| 987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | /* |
Robert P. J. Day | cc2a73b | 2006-12-10 02:20:00 -0800 | [diff] [blame] | 989 | * this_rq_lock - lock this runqueue and disable interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 991 | static struct rq *this_rq_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | __acquires(rq->lock) |
| 993 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 994 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | |
| 996 | local_irq_disable(); |
| 997 | rq = this_rq(); |
| 998 | spin_lock(&rq->lock); |
| 999 | |
| 1000 | return rq; |
| 1001 | } |
| 1002 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1003 | static void __resched_task(struct task_struct *p, int tif_bit); |
| 1004 | |
| 1005 | static inline void resched_task(struct task_struct *p) |
| 1006 | { |
| 1007 | __resched_task(p, TIF_NEED_RESCHED); |
| 1008 | } |
| 1009 | |
| 1010 | #ifdef CONFIG_SCHED_HRTICK |
| 1011 | /* |
| 1012 | * Use HR-timers to deliver accurate preemption points. |
| 1013 | * |
| 1014 | * Its all a bit involved since we cannot program an hrt while holding the |
| 1015 | * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a |
| 1016 | * reschedule event. |
| 1017 | * |
| 1018 | * When we get rescheduled we reprogram the hrtick_timer outside of the |
| 1019 | * rq->lock. |
| 1020 | */ |
| 1021 | static inline void resched_hrt(struct task_struct *p) |
| 1022 | { |
| 1023 | __resched_task(p, TIF_HRTICK_RESCHED); |
| 1024 | } |
| 1025 | |
| 1026 | static inline void resched_rq(struct rq *rq) |
| 1027 | { |
| 1028 | unsigned long flags; |
| 1029 | |
| 1030 | spin_lock_irqsave(&rq->lock, flags); |
| 1031 | resched_task(rq->curr); |
| 1032 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1033 | } |
| 1034 | |
| 1035 | enum { |
| 1036 | HRTICK_SET, /* re-programm hrtick_timer */ |
| 1037 | HRTICK_RESET, /* not a new slice */ |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1038 | HRTICK_BLOCK, /* stop hrtick operations */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1039 | }; |
| 1040 | |
| 1041 | /* |
| 1042 | * Use hrtick when: |
| 1043 | * - enabled by features |
| 1044 | * - hrtimer is actually high res |
| 1045 | */ |
| 1046 | static inline int hrtick_enabled(struct rq *rq) |
| 1047 | { |
| 1048 | if (!sched_feat(HRTICK)) |
| 1049 | return 0; |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1050 | if (unlikely(test_bit(HRTICK_BLOCK, &rq->hrtick_flags))) |
| 1051 | return 0; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1052 | return hrtimer_is_hres_active(&rq->hrtick_timer); |
| 1053 | } |
| 1054 | |
| 1055 | /* |
| 1056 | * Called to set the hrtick timer state. |
| 1057 | * |
| 1058 | * called with rq->lock held and irqs disabled |
| 1059 | */ |
| 1060 | static void hrtick_start(struct rq *rq, u64 delay, int reset) |
| 1061 | { |
| 1062 | assert_spin_locked(&rq->lock); |
| 1063 | |
| 1064 | /* |
| 1065 | * preempt at: now + delay |
| 1066 | */ |
| 1067 | rq->hrtick_expire = |
| 1068 | ktime_add_ns(rq->hrtick_timer.base->get_time(), delay); |
| 1069 | /* |
| 1070 | * indicate we need to program the timer |
| 1071 | */ |
| 1072 | __set_bit(HRTICK_SET, &rq->hrtick_flags); |
| 1073 | if (reset) |
| 1074 | __set_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 1075 | |
| 1076 | /* |
| 1077 | * New slices are called from the schedule path and don't need a |
| 1078 | * forced reschedule. |
| 1079 | */ |
| 1080 | if (reset) |
| 1081 | resched_hrt(rq->curr); |
| 1082 | } |
| 1083 | |
| 1084 | static void hrtick_clear(struct rq *rq) |
| 1085 | { |
| 1086 | if (hrtimer_active(&rq->hrtick_timer)) |
| 1087 | hrtimer_cancel(&rq->hrtick_timer); |
| 1088 | } |
| 1089 | |
| 1090 | /* |
| 1091 | * Update the timer from the possible pending state. |
| 1092 | */ |
| 1093 | static void hrtick_set(struct rq *rq) |
| 1094 | { |
| 1095 | ktime_t time; |
| 1096 | int set, reset; |
| 1097 | unsigned long flags; |
| 1098 | |
| 1099 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1100 | |
| 1101 | spin_lock_irqsave(&rq->lock, flags); |
| 1102 | set = __test_and_clear_bit(HRTICK_SET, &rq->hrtick_flags); |
| 1103 | reset = __test_and_clear_bit(HRTICK_RESET, &rq->hrtick_flags); |
| 1104 | time = rq->hrtick_expire; |
| 1105 | clear_thread_flag(TIF_HRTICK_RESCHED); |
| 1106 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1107 | |
| 1108 | if (set) { |
| 1109 | hrtimer_start(&rq->hrtick_timer, time, HRTIMER_MODE_ABS); |
| 1110 | if (reset && !hrtimer_active(&rq->hrtick_timer)) |
| 1111 | resched_rq(rq); |
| 1112 | } else |
| 1113 | hrtick_clear(rq); |
| 1114 | } |
| 1115 | |
| 1116 | /* |
| 1117 | * High-resolution timer tick. |
| 1118 | * Runs from hardirq context with interrupts disabled. |
| 1119 | */ |
| 1120 | static enum hrtimer_restart hrtick(struct hrtimer *timer) |
| 1121 | { |
| 1122 | struct rq *rq = container_of(timer, struct rq, hrtick_timer); |
| 1123 | |
| 1124 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1125 | |
| 1126 | spin_lock(&rq->lock); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 1127 | update_rq_clock(rq); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1128 | rq->curr->sched_class->task_tick(rq, rq->curr, 1); |
| 1129 | spin_unlock(&rq->lock); |
| 1130 | |
| 1131 | return HRTIMER_NORESTART; |
| 1132 | } |
| 1133 | |
Rabin Vincent | 81d41d7 | 2008-05-11 05:55:33 +0530 | [diff] [blame] | 1134 | #ifdef CONFIG_SMP |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1135 | static void hotplug_hrtick_disable(int cpu) |
| 1136 | { |
| 1137 | struct rq *rq = cpu_rq(cpu); |
| 1138 | unsigned long flags; |
| 1139 | |
| 1140 | spin_lock_irqsave(&rq->lock, flags); |
| 1141 | rq->hrtick_flags = 0; |
| 1142 | __set_bit(HRTICK_BLOCK, &rq->hrtick_flags); |
| 1143 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1144 | |
| 1145 | hrtick_clear(rq); |
| 1146 | } |
| 1147 | |
| 1148 | static void hotplug_hrtick_enable(int cpu) |
| 1149 | { |
| 1150 | struct rq *rq = cpu_rq(cpu); |
| 1151 | unsigned long flags; |
| 1152 | |
| 1153 | spin_lock_irqsave(&rq->lock, flags); |
| 1154 | __clear_bit(HRTICK_BLOCK, &rq->hrtick_flags); |
| 1155 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1156 | } |
| 1157 | |
| 1158 | static int |
| 1159 | hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu) |
| 1160 | { |
| 1161 | int cpu = (int)(long)hcpu; |
| 1162 | |
| 1163 | switch (action) { |
| 1164 | case CPU_UP_CANCELED: |
| 1165 | case CPU_UP_CANCELED_FROZEN: |
| 1166 | case CPU_DOWN_PREPARE: |
| 1167 | case CPU_DOWN_PREPARE_FROZEN: |
| 1168 | case CPU_DEAD: |
| 1169 | case CPU_DEAD_FROZEN: |
| 1170 | hotplug_hrtick_disable(cpu); |
| 1171 | return NOTIFY_OK; |
| 1172 | |
| 1173 | case CPU_UP_PREPARE: |
| 1174 | case CPU_UP_PREPARE_FROZEN: |
| 1175 | case CPU_DOWN_FAILED: |
| 1176 | case CPU_DOWN_FAILED_FROZEN: |
| 1177 | case CPU_ONLINE: |
| 1178 | case CPU_ONLINE_FROZEN: |
| 1179 | hotplug_hrtick_enable(cpu); |
| 1180 | return NOTIFY_OK; |
| 1181 | } |
| 1182 | |
| 1183 | return NOTIFY_DONE; |
| 1184 | } |
| 1185 | |
| 1186 | static void init_hrtick(void) |
| 1187 | { |
| 1188 | hotcpu_notifier(hotplug_hrtick, 0); |
| 1189 | } |
Rabin Vincent | 81d41d7 | 2008-05-11 05:55:33 +0530 | [diff] [blame] | 1190 | #endif /* CONFIG_SMP */ |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1191 | |
| 1192 | static void init_rq_hrtick(struct rq *rq) |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1193 | { |
| 1194 | rq->hrtick_flags = 0; |
| 1195 | hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1196 | rq->hrtick_timer.function = hrtick; |
| 1197 | rq->hrtick_timer.cb_mode = HRTIMER_CB_IRQSAFE_NO_SOFTIRQ; |
| 1198 | } |
| 1199 | |
| 1200 | void hrtick_resched(void) |
| 1201 | { |
| 1202 | struct rq *rq; |
| 1203 | unsigned long flags; |
| 1204 | |
| 1205 | if (!test_thread_flag(TIF_HRTICK_RESCHED)) |
| 1206 | return; |
| 1207 | |
| 1208 | local_irq_save(flags); |
| 1209 | rq = cpu_rq(smp_processor_id()); |
| 1210 | hrtick_set(rq); |
| 1211 | local_irq_restore(flags); |
| 1212 | } |
| 1213 | #else |
| 1214 | static inline void hrtick_clear(struct rq *rq) |
| 1215 | { |
| 1216 | } |
| 1217 | |
| 1218 | static inline void hrtick_set(struct rq *rq) |
| 1219 | { |
| 1220 | } |
| 1221 | |
| 1222 | static inline void init_rq_hrtick(struct rq *rq) |
| 1223 | { |
| 1224 | } |
| 1225 | |
| 1226 | void hrtick_resched(void) |
| 1227 | { |
| 1228 | } |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1229 | |
| 1230 | static inline void init_hrtick(void) |
| 1231 | { |
| 1232 | } |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1233 | #endif |
| 1234 | |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1235 | /* |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1236 | * resched_task - mark a task 'to be rescheduled now'. |
| 1237 | * |
| 1238 | * On UP this means the setting of the need_resched flag, on SMP it |
| 1239 | * might also involve a cross-CPU call to trigger the scheduler on |
| 1240 | * the target CPU. |
| 1241 | */ |
| 1242 | #ifdef CONFIG_SMP |
| 1243 | |
| 1244 | #ifndef tsk_is_polling |
| 1245 | #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG) |
| 1246 | #endif |
| 1247 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1248 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1249 | { |
| 1250 | int cpu; |
| 1251 | |
| 1252 | assert_spin_locked(&task_rq(p)->lock); |
| 1253 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1254 | if (unlikely(test_tsk_thread_flag(p, tif_bit))) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1255 | return; |
| 1256 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1257 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1258 | |
| 1259 | cpu = task_cpu(p); |
| 1260 | if (cpu == smp_processor_id()) |
| 1261 | return; |
| 1262 | |
| 1263 | /* NEED_RESCHED must be visible before we test polling */ |
| 1264 | smp_mb(); |
| 1265 | if (!tsk_is_polling(p)) |
| 1266 | smp_send_reschedule(cpu); |
| 1267 | } |
| 1268 | |
| 1269 | static void resched_cpu(int cpu) |
| 1270 | { |
| 1271 | struct rq *rq = cpu_rq(cpu); |
| 1272 | unsigned long flags; |
| 1273 | |
| 1274 | if (!spin_trylock_irqsave(&rq->lock, flags)) |
| 1275 | return; |
| 1276 | resched_task(cpu_curr(cpu)); |
| 1277 | spin_unlock_irqrestore(&rq->lock, flags); |
| 1278 | } |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1279 | |
| 1280 | #ifdef CONFIG_NO_HZ |
| 1281 | /* |
| 1282 | * When add_timer_on() enqueues a timer into the timer wheel of an |
| 1283 | * idle CPU then this timer might expire before the next timer event |
| 1284 | * which is scheduled to wake up that CPU. In case of a completely |
| 1285 | * idle system the next event might even be infinite time into the |
| 1286 | * future. wake_up_idle_cpu() ensures that the CPU is woken up and |
| 1287 | * leaves the inner idle loop so the newly added timer is taken into |
| 1288 | * account when the CPU goes back to idle and evaluates the timer |
| 1289 | * wheel for the next timer event. |
| 1290 | */ |
| 1291 | void wake_up_idle_cpu(int cpu) |
| 1292 | { |
| 1293 | struct rq *rq = cpu_rq(cpu); |
| 1294 | |
| 1295 | if (cpu == smp_processor_id()) |
| 1296 | return; |
| 1297 | |
| 1298 | /* |
| 1299 | * This is safe, as this function is called with the timer |
| 1300 | * wheel base lock of (cpu) held. When the CPU is on the way |
| 1301 | * to idle and has not yet set rq->curr to idle then it will |
| 1302 | * be serialized on the timer wheel base lock and take the new |
| 1303 | * timer into account automatically. |
| 1304 | */ |
| 1305 | if (rq->curr != rq->idle) |
| 1306 | return; |
| 1307 | |
| 1308 | /* |
| 1309 | * We can set TIF_RESCHED on the idle task of the other CPU |
| 1310 | * lockless. The worst case is that the other CPU runs the |
| 1311 | * idle task through an additional NOOP schedule() |
| 1312 | */ |
| 1313 | set_tsk_thread_flag(rq->idle, TIF_NEED_RESCHED); |
| 1314 | |
| 1315 | /* NEED_RESCHED must be visible before we test polling */ |
| 1316 | smp_mb(); |
| 1317 | if (!tsk_is_polling(rq->idle)) |
| 1318 | smp_send_reschedule(cpu); |
| 1319 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1320 | #endif /* CONFIG_NO_HZ */ |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1321 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1322 | #else /* !CONFIG_SMP */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1323 | static void __resched_task(struct task_struct *p, int tif_bit) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1324 | { |
| 1325 | assert_spin_locked(&task_rq(p)->lock); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1326 | set_tsk_thread_flag(p, tif_bit); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1327 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1328 | #endif /* CONFIG_SMP */ |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1329 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1330 | #if BITS_PER_LONG == 32 |
| 1331 | # define WMULT_CONST (~0UL) |
| 1332 | #else |
| 1333 | # define WMULT_CONST (1UL << 32) |
| 1334 | #endif |
| 1335 | |
| 1336 | #define WMULT_SHIFT 32 |
| 1337 | |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1338 | /* |
| 1339 | * Shift right and round: |
| 1340 | */ |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1341 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1342 | |
Ingo Molnar | cb1c4fc | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1343 | static unsigned long |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1344 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 1345 | struct load_weight *lw) |
| 1346 | { |
| 1347 | u64 tmp; |
| 1348 | |
Peter Zijlstra | e05510d | 2008-05-05 23:56:17 +0200 | [diff] [blame] | 1349 | if (!lw->inv_weight) |
| 1350 | lw->inv_weight = 1 + (WMULT_CONST-lw->weight/2)/(lw->weight+1); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1351 | |
| 1352 | tmp = (u64)delta_exec * weight; |
| 1353 | /* |
| 1354 | * Check whether we'd overflow the 64-bit multiplication: |
| 1355 | */ |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1356 | if (unlikely(tmp > WMULT_CONST)) |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1357 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1358 | WMULT_SHIFT/2); |
| 1359 | else |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1360 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1361 | |
Ingo Molnar | ecf691d | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1362 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1363 | } |
| 1364 | |
Ingo Molnar | f9305d4 | 2008-05-29 11:23:17 +0200 | [diff] [blame] | 1365 | static inline unsigned long |
| 1366 | calc_delta_fair(unsigned long delta_exec, struct load_weight *lw) |
| 1367 | { |
| 1368 | return calc_delta_mine(delta_exec, NICE_0_LOAD, lw); |
| 1369 | } |
| 1370 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1371 | 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] | 1372 | { |
| 1373 | lw->weight += inc; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1374 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1375 | } |
| 1376 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1377 | 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] | 1378 | { |
| 1379 | lw->weight -= dec; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1380 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1381 | } |
| 1382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1384 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
| 1385 | * of tasks with abnormal "nice" values across CPUs the contribution that |
| 1386 | * 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] | 1387 | * 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] | 1388 | * scaled version of the new time slice allocation that they receive on time |
| 1389 | * slice expiry etc. |
| 1390 | */ |
| 1391 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1392 | #define WEIGHT_IDLEPRIO 2 |
| 1393 | #define WMULT_IDLEPRIO (1 << 31) |
| 1394 | |
| 1395 | /* |
| 1396 | * Nice levels are multiplicative, with a gentle 10% change for every |
| 1397 | * nice level changed. I.e. when a CPU-bound task goes from nice 0 to |
| 1398 | * nice 1, it will get ~10% less CPU time than another CPU-bound task |
| 1399 | * that remained on nice 0. |
| 1400 | * |
| 1401 | * The "10% effect" is relative and cumulative: from _any_ nice level, |
| 1402 | * 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] | 1403 | * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25. |
| 1404 | * If a task goes up by ~10% and another task goes down by ~10% then |
| 1405 | * the relative distance between them is ~25%.) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1406 | */ |
| 1407 | static const int prio_to_weight[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1408 | /* -20 */ 88761, 71755, 56483, 46273, 36291, |
| 1409 | /* -15 */ 29154, 23254, 18705, 14949, 11916, |
| 1410 | /* -10 */ 9548, 7620, 6100, 4904, 3906, |
| 1411 | /* -5 */ 3121, 2501, 1991, 1586, 1277, |
| 1412 | /* 0 */ 1024, 820, 655, 526, 423, |
| 1413 | /* 5 */ 335, 272, 215, 172, 137, |
| 1414 | /* 10 */ 110, 87, 70, 56, 45, |
| 1415 | /* 15 */ 36, 29, 23, 18, 15, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1416 | }; |
| 1417 | |
Ingo Molnar | 5714d2d | 2007-07-16 09:46:31 +0200 | [diff] [blame] | 1418 | /* |
| 1419 | * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated. |
| 1420 | * |
| 1421 | * In cases where the weight does not change often, we can use the |
| 1422 | * precalculated inverse to speed up arithmetics by turning divisions |
| 1423 | * into multiplications: |
| 1424 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1425 | static const u32 prio_to_wmult[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1426 | /* -20 */ 48388, 59856, 76040, 92818, 118348, |
| 1427 | /* -15 */ 147320, 184698, 229616, 287308, 360437, |
| 1428 | /* -10 */ 449829, 563644, 704093, 875809, 1099582, |
| 1429 | /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326, |
| 1430 | /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587, |
| 1431 | /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126, |
| 1432 | /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717, |
| 1433 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1434 | }; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1435 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1436 | static void activate_task(struct rq *rq, struct task_struct *p, int wakeup); |
| 1437 | |
| 1438 | /* |
| 1439 | * runqueue iterator, to support SMP load-balancing between different |
| 1440 | * scheduling classes, without having to expose their internal data |
| 1441 | * structures to the load-balancing proper: |
| 1442 | */ |
| 1443 | struct rq_iterator { |
| 1444 | void *arg; |
| 1445 | struct task_struct *(*start)(void *); |
| 1446 | struct task_struct *(*next)(void *); |
| 1447 | }; |
| 1448 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1449 | #ifdef CONFIG_SMP |
| 1450 | static unsigned long |
| 1451 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1452 | unsigned long max_load_move, struct sched_domain *sd, |
| 1453 | enum cpu_idle_type idle, int *all_pinned, |
| 1454 | int *this_best_prio, struct rq_iterator *iterator); |
| 1455 | |
| 1456 | static int |
| 1457 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 1458 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 1459 | struct rq_iterator *iterator); |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 1460 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1461 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1462 | #ifdef CONFIG_CGROUP_CPUACCT |
| 1463 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime); |
| 1464 | #else |
| 1465 | static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {} |
| 1466 | #endif |
| 1467 | |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1468 | static inline void inc_cpu_load(struct rq *rq, unsigned long load) |
| 1469 | { |
| 1470 | update_load_add(&rq->load, load); |
| 1471 | } |
| 1472 | |
| 1473 | static inline void dec_cpu_load(struct rq *rq, unsigned long load) |
| 1474 | { |
| 1475 | update_load_sub(&rq->load, load); |
| 1476 | } |
| 1477 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1478 | #ifdef CONFIG_SMP |
| 1479 | static unsigned long source_load(int cpu, int type); |
| 1480 | static unsigned long target_load(int cpu, int type); |
| 1481 | static unsigned long cpu_avg_load_per_task(int cpu); |
| 1482 | static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd); |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1483 | #else /* CONFIG_SMP */ |
| 1484 | |
| 1485 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 1486 | static void cfs_rq_set_shares(struct cfs_rq *cfs_rq, unsigned long shares) |
| 1487 | { |
| 1488 | } |
| 1489 | #endif |
| 1490 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1491 | #endif /* CONFIG_SMP */ |
| 1492 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1493 | #include "sched_stats.h" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1494 | #include "sched_idletask.c" |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1495 | #include "sched_fair.c" |
| 1496 | #include "sched_rt.c" |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1497 | #ifdef CONFIG_SCHED_DEBUG |
| 1498 | # include "sched_debug.c" |
| 1499 | #endif |
| 1500 | |
| 1501 | #define sched_class_highest (&rt_sched_class) |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 1502 | #define for_each_class(class) \ |
| 1503 | for (class = sched_class_highest; class; class = class->next) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1504 | |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1505 | static inline void inc_load(struct rq *rq, const struct task_struct *p) |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1506 | { |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1507 | update_load_add(&rq->load, p->se.load.weight); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 1508 | } |
| 1509 | |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1510 | static inline void dec_load(struct rq *rq, const struct task_struct *p) |
| 1511 | { |
| 1512 | update_load_sub(&rq->load, p->se.load.weight); |
| 1513 | } |
| 1514 | |
| 1515 | static void inc_nr_running(struct task_struct *p, struct rq *rq) |
| 1516 | { |
| 1517 | rq->nr_running++; |
| 1518 | inc_load(rq, p); |
| 1519 | } |
| 1520 | |
| 1521 | static void dec_nr_running(struct task_struct *p, struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1522 | { |
| 1523 | rq->nr_running--; |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1524 | dec_load(rq, p); |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1525 | } |
| 1526 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1527 | static void set_load_weight(struct task_struct *p) |
| 1528 | { |
| 1529 | if (task_has_rt_policy(p)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1530 | p->se.load.weight = prio_to_weight[0] * 2; |
| 1531 | p->se.load.inv_weight = prio_to_wmult[0] >> 1; |
| 1532 | return; |
| 1533 | } |
| 1534 | |
| 1535 | /* |
| 1536 | * SCHED_IDLE tasks get minimal weight: |
| 1537 | */ |
| 1538 | if (p->policy == SCHED_IDLE) { |
| 1539 | p->se.load.weight = WEIGHT_IDLEPRIO; |
| 1540 | p->se.load.inv_weight = WMULT_IDLEPRIO; |
| 1541 | return; |
| 1542 | } |
| 1543 | |
| 1544 | p->se.load.weight = prio_to_weight[p->static_prio - MAX_RT_PRIO]; |
| 1545 | 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] | 1546 | } |
| 1547 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1548 | 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] | 1549 | { |
| 1550 | sched_info_queued(p); |
Ingo Molnar | fd390f6 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1551 | p->sched_class->enqueue_task(rq, p, wakeup); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1552 | p->se.on_rq = 1; |
| 1553 | } |
| 1554 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1555 | 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] | 1556 | { |
Ingo Molnar | f02231e | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 1557 | p->sched_class->dequeue_task(rq, p, sleep); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1558 | p->se.on_rq = 0; |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1562 | * __normal_prio - return the priority that is based on the static prio |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1563 | */ |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1564 | static inline int __normal_prio(struct task_struct *p) |
| 1565 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1566 | return p->static_prio; |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1567 | } |
| 1568 | |
| 1569 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1570 | * Calculate the expected normal priority: i.e. priority |
| 1571 | * without taking RT-inheritance into account. Might be |
| 1572 | * boosted by interactivity modifiers. Changes upon fork, |
| 1573 | * setprio syscalls, and whenever the interactivity |
| 1574 | * estimator recalculates. |
| 1575 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1576 | static inline int normal_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1577 | { |
| 1578 | int prio; |
| 1579 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1580 | if (task_has_rt_policy(p)) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1581 | prio = MAX_RT_PRIO-1 - p->rt_priority; |
| 1582 | else |
| 1583 | prio = __normal_prio(p); |
| 1584 | return prio; |
| 1585 | } |
| 1586 | |
| 1587 | /* |
| 1588 | * Calculate the current priority, i.e. the priority |
| 1589 | * taken into account by the scheduler. This value might |
| 1590 | * be boosted by RT tasks, or might be boosted by |
| 1591 | * interactivity modifiers. Will be RT if the task got |
| 1592 | * RT-boosted. If not then it returns p->normal_prio. |
| 1593 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1594 | static int effective_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1595 | { |
| 1596 | p->normal_prio = normal_prio(p); |
| 1597 | /* |
| 1598 | * If we are RT tasks or we were boosted to RT priority, |
| 1599 | * keep the priority unchanged. Otherwise, update priority |
| 1600 | * to the normal priority: |
| 1601 | */ |
| 1602 | if (!rt_prio(p->prio)) |
| 1603 | return p->normal_prio; |
| 1604 | return p->prio; |
| 1605 | } |
| 1606 | |
| 1607 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1608 | * activate_task - move a task to the runqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1610 | 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] | 1611 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1612 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1613 | rq->nr_uninterruptible--; |
| 1614 | |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1615 | enqueue_task(rq, p, wakeup); |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1616 | inc_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1617 | } |
| 1618 | |
| 1619 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | * deactivate_task - remove a task from the runqueue. |
| 1621 | */ |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1622 | 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] | 1623 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 1624 | if (task_contributes_to_load(p)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1625 | rq->nr_uninterruptible++; |
| 1626 | |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 1627 | dequeue_task(rq, p, sleep); |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1628 | dec_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1629 | } |
| 1630 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1631 | /** |
| 1632 | * task_curr - is this task currently executing on a CPU? |
| 1633 | * @p: the task in question. |
| 1634 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1635 | inline int task_curr(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | { |
| 1637 | return cpu_curr(task_cpu(p)) == p; |
| 1638 | } |
| 1639 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1640 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1641 | { |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 1642 | set_task_rq(p, cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1643 | #ifdef CONFIG_SMP |
Dmitry Adamushko | ce96b5a | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 1644 | /* |
| 1645 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
| 1646 | * successfuly executed on another CPU. We must ensure that updates of |
| 1647 | * per-task data have been completed by this moment. |
| 1648 | */ |
| 1649 | smp_wmb(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1650 | task_thread_info(p)->cpu = cpu; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1651 | #endif |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1652 | } |
| 1653 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 1654 | static inline void check_class_changed(struct rq *rq, struct task_struct *p, |
| 1655 | const struct sched_class *prev_class, |
| 1656 | int oldprio, int running) |
| 1657 | { |
| 1658 | if (prev_class != p->sched_class) { |
| 1659 | if (prev_class->switched_from) |
| 1660 | prev_class->switched_from(rq, p, running); |
| 1661 | p->sched_class->switched_to(rq, p, running); |
| 1662 | } else |
| 1663 | p->sched_class->prio_changed(rq, p, oldprio, running); |
| 1664 | } |
| 1665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | #ifdef CONFIG_SMP |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1667 | |
Thomas Gleixner | e958b36 | 2008-06-04 23:22:32 +0200 | [diff] [blame] | 1668 | /* Used instead of source_load when we know the type == 0 */ |
| 1669 | static unsigned long weighted_cpuload(const int cpu) |
| 1670 | { |
| 1671 | return cpu_rq(cpu)->load.weight; |
| 1672 | } |
| 1673 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1674 | /* |
| 1675 | * Is this task likely cache-hot: |
| 1676 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1677 | static int |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1678 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 1679 | { |
| 1680 | s64 delta; |
| 1681 | |
Ingo Molnar | f540a60 | 2008-03-15 17:10:34 +0100 | [diff] [blame] | 1682 | /* |
| 1683 | * Buddy candidates are cache hot: |
| 1684 | */ |
Ingo Molnar | d25ce4c | 2008-03-17 09:36:53 +0100 | [diff] [blame] | 1685 | 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] | 1686 | return 1; |
| 1687 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1688 | if (p->sched_class != &fair_sched_class) |
| 1689 | return 0; |
| 1690 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1691 | if (sysctl_sched_migration_cost == -1) |
| 1692 | return 1; |
| 1693 | if (sysctl_sched_migration_cost == 0) |
| 1694 | return 0; |
| 1695 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1696 | delta = now - p->se.exec_start; |
| 1697 | |
| 1698 | return delta < (s64)sysctl_sched_migration_cost; |
| 1699 | } |
| 1700 | |
| 1701 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1702 | void set_task_cpu(struct task_struct *p, unsigned int new_cpu) |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1703 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1704 | int old_cpu = task_cpu(p); |
| 1705 | 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] | 1706 | struct cfs_rq *old_cfsrq = task_cfs_rq(p), |
| 1707 | *new_cfsrq = cpu_cfs_rq(old_cfsrq, new_cpu); |
Ingo Molnar | bbdba7c | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 1708 | u64 clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1709 | |
| 1710 | clock_offset = old_rq->clock - new_rq->clock; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1711 | |
| 1712 | #ifdef CONFIG_SCHEDSTATS |
| 1713 | if (p->se.wait_start) |
| 1714 | p->se.wait_start -= clock_offset; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1715 | if (p->se.sleep_start) |
| 1716 | p->se.sleep_start -= clock_offset; |
| 1717 | if (p->se.block_start) |
| 1718 | p->se.block_start -= clock_offset; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 1719 | if (old_cpu != new_cpu) { |
| 1720 | schedstat_inc(p, se.nr_migrations); |
| 1721 | if (task_hot(p, old_rq->clock, NULL)) |
| 1722 | schedstat_inc(p, se.nr_forced2_migrations); |
| 1723 | } |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1724 | #endif |
Srivatsa Vaddagiri | 2830cf8 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 1725 | p->se.vruntime -= old_cfsrq->min_vruntime - |
| 1726 | new_cfsrq->min_vruntime; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1727 | |
| 1728 | __set_task_cpu(p, new_cpu); |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 1729 | } |
| 1730 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1731 | struct migration_req { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1734 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | int dest_cpu; |
| 1736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | struct completion done; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1738 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | |
| 1740 | /* |
| 1741 | * The task's runqueue lock must be held. |
| 1742 | * Returns true if you have to wait for migration thread. |
| 1743 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1744 | static int |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1745 | 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] | 1746 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1747 | struct rq *rq = task_rq(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | |
| 1749 | /* |
| 1750 | * If the task is not on a runqueue (and not running), then |
| 1751 | * it is sufficient to simply update the task's cpu field. |
| 1752 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1753 | if (!p->se.on_rq && !task_running(rq, p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | set_task_cpu(p, dest_cpu); |
| 1755 | return 0; |
| 1756 | } |
| 1757 | |
| 1758 | init_completion(&req->done); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1759 | req->task = p; |
| 1760 | req->dest_cpu = dest_cpu; |
| 1761 | list_add(&req->list, &rq->migration_queue); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 1762 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | return 1; |
| 1764 | } |
| 1765 | |
| 1766 | /* |
| 1767 | * wait_task_inactive - wait for a thread to unschedule. |
| 1768 | * |
| 1769 | * The caller must ensure that the task *will* unschedule sometime soon, |
| 1770 | * else this function might spin for a *long* time. This function can't |
| 1771 | * be called with interrupts off, or it may introduce deadlock with |
| 1772 | * smp_call_function() if an IPI is sent by the same process we are |
| 1773 | * waiting to become inactive. |
| 1774 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1775 | void wait_task_inactive(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | { |
| 1777 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1778 | int running, on_rq; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1779 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1781 | for (;;) { |
| 1782 | /* |
| 1783 | * We do the initial early heuristics without holding |
| 1784 | * any task-queue locks at all. We'll only try to get |
| 1785 | * the runqueue lock when things look like they will |
| 1786 | * work out! |
| 1787 | */ |
| 1788 | rq = task_rq(p); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1789 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1790 | /* |
| 1791 | * If the task is actively running on another CPU |
| 1792 | * still, just relax and busy-wait without holding |
| 1793 | * any locks. |
| 1794 | * |
| 1795 | * NOTE! Since we don't hold any locks, it's not |
| 1796 | * even sure that "rq" stays as the right runqueue! |
| 1797 | * But we don't care, since "task_running()" will |
| 1798 | * return false if the runqueue has changed and p |
| 1799 | * is actually now running somewhere else! |
| 1800 | */ |
| 1801 | while (task_running(rq, p)) |
| 1802 | cpu_relax(); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1803 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1804 | /* |
| 1805 | * Ok, time to look more closely! We need the rq |
| 1806 | * lock now, to be *sure*. If we're wrong, we'll |
| 1807 | * just go back and repeat. |
| 1808 | */ |
| 1809 | rq = task_rq_lock(p, &flags); |
| 1810 | running = task_running(rq, p); |
| 1811 | on_rq = p->se.on_rq; |
| 1812 | task_rq_unlock(rq, &flags); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 1813 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1814 | /* |
| 1815 | * Was it really running after all now that we |
| 1816 | * checked with the proper locks actually held? |
| 1817 | * |
| 1818 | * Oops. Go back and try again.. |
| 1819 | */ |
| 1820 | if (unlikely(running)) { |
| 1821 | cpu_relax(); |
| 1822 | continue; |
| 1823 | } |
| 1824 | |
| 1825 | /* |
| 1826 | * It's not enough that it's not actively running, |
| 1827 | * it must be off the runqueue _entirely_, and not |
| 1828 | * preempted! |
| 1829 | * |
| 1830 | * So if it wa still runnable (but just not actively |
| 1831 | * running right now), it's preempted, and we should |
| 1832 | * yield - it could be a while. |
| 1833 | */ |
| 1834 | if (unlikely(on_rq)) { |
| 1835 | schedule_timeout_uninterruptible(1); |
| 1836 | continue; |
| 1837 | } |
| 1838 | |
| 1839 | /* |
| 1840 | * Ahh, all good. It wasn't running, and it wasn't |
| 1841 | * runnable, which means that it will never become |
| 1842 | * running in the future either. We're all done! |
| 1843 | */ |
| 1844 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1845 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | } |
| 1847 | |
| 1848 | /*** |
| 1849 | * kick_process - kick a running thread to enter/exit the kernel |
| 1850 | * @p: the to-be-kicked thread |
| 1851 | * |
| 1852 | * Cause a process which is running on another CPU to enter |
| 1853 | * kernel-mode, without any delay. (to get signals handled.) |
| 1854 | * |
| 1855 | * NOTE: this function doesnt have to take the runqueue lock, |
| 1856 | * because all it wants to ensure is that the remote task enters |
| 1857 | * the kernel. If the IPI races and the task has been migrated |
| 1858 | * to another CPU then no harm is done and the purpose has been |
| 1859 | * achieved as well. |
| 1860 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 1861 | void kick_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | { |
| 1863 | int cpu; |
| 1864 | |
| 1865 | preempt_disable(); |
| 1866 | cpu = task_cpu(p); |
| 1867 | if ((cpu != smp_processor_id()) && task_curr(p)) |
| 1868 | smp_send_reschedule(cpu); |
| 1869 | preempt_enable(); |
| 1870 | } |
| 1871 | |
| 1872 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1873 | * Return a low guess at the load of a migration-source cpu weighted |
| 1874 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | * |
| 1876 | * We want to under-estimate the load of migration sources, to |
| 1877 | * balance conservatively. |
| 1878 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1879 | static unsigned long source_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1880 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1881 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1882 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1883 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1884 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1885 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1886 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1887 | return min(rq->cpu_load[type-1], total); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1888 | } |
| 1889 | |
| 1890 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1891 | * Return a high guess at the load of a migration-target cpu weighted |
| 1892 | * according to the scheduling class and "nice" value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1894 | static unsigned long target_load(int cpu, int type) |
Con Kolivas | b910472 | 2005-11-08 21:38:55 -0800 | [diff] [blame] | 1895 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1896 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1897 | unsigned long total = weighted_cpuload(cpu); |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 1898 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1899 | if (type == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1900 | return total; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1901 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1902 | return max(rq->cpu_load[type-1], total); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1903 | } |
| 1904 | |
| 1905 | /* |
| 1906 | * Return the average load per task on the cpu's run queue |
| 1907 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1908 | static unsigned long cpu_avg_load_per_task(int cpu) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1909 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1910 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1911 | unsigned long total = weighted_cpuload(cpu); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1912 | unsigned long n = rq->nr_running; |
| 1913 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1914 | return n ? total / n : SCHED_LOAD_SCALE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | } |
| 1916 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1917 | /* |
| 1918 | * find_idlest_group finds and returns the least busy CPU group within the |
| 1919 | * domain. |
| 1920 | */ |
| 1921 | static struct sched_group * |
| 1922 | find_idlest_group(struct sched_domain *sd, struct task_struct *p, int this_cpu) |
| 1923 | { |
| 1924 | struct sched_group *idlest = NULL, *this = NULL, *group = sd->groups; |
| 1925 | unsigned long min_load = ULONG_MAX, this_load = 0; |
| 1926 | int load_idx = sd->forkexec_idx; |
| 1927 | int imbalance = 100 + (sd->imbalance_pct-100)/2; |
| 1928 | |
| 1929 | do { |
| 1930 | unsigned long load, avg_load; |
| 1931 | int local_group; |
| 1932 | int i; |
| 1933 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1934 | /* Skip over this group if it has no CPUs allowed */ |
| 1935 | if (!cpus_intersects(group->cpumask, p->cpus_allowed)) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1936 | continue; |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1937 | |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1938 | local_group = cpu_isset(this_cpu, group->cpumask); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1939 | |
| 1940 | /* Tally up the load of all CPUs in the group */ |
| 1941 | avg_load = 0; |
| 1942 | |
| 1943 | for_each_cpu_mask(i, group->cpumask) { |
| 1944 | /* Bias balancing toward cpus of our domain */ |
| 1945 | if (local_group) |
| 1946 | load = source_load(i, load_idx); |
| 1947 | else |
| 1948 | load = target_load(i, load_idx); |
| 1949 | |
| 1950 | avg_load += load; |
| 1951 | } |
| 1952 | |
| 1953 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 1954 | avg_load = sg_div_cpu_power(group, |
| 1955 | avg_load * SCHED_LOAD_SCALE); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1956 | |
| 1957 | if (local_group) { |
| 1958 | this_load = avg_load; |
| 1959 | this = group; |
| 1960 | } else if (avg_load < min_load) { |
| 1961 | min_load = avg_load; |
| 1962 | idlest = group; |
| 1963 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1964 | } while (group = group->next, group != sd->groups); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1965 | |
| 1966 | if (!idlest || 100*this_load < imbalance*min_load) |
| 1967 | return NULL; |
| 1968 | return idlest; |
| 1969 | } |
| 1970 | |
| 1971 | /* |
Satoru Takeuchi | 0feaece | 2006-10-03 01:14:10 -0700 | [diff] [blame] | 1972 | * find_idlest_cpu - find the idlest cpu among the cpus in group. |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1973 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 1974 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 1975 | find_idlest_cpu(struct sched_group *group, struct task_struct *p, int this_cpu, |
| 1976 | cpumask_t *tmp) |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1977 | { |
| 1978 | unsigned long load, min_load = ULONG_MAX; |
| 1979 | int idlest = -1; |
| 1980 | int i; |
| 1981 | |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1982 | /* Traverse only the allowed CPUs */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 1983 | cpus_and(*tmp, group->cpumask, p->cpus_allowed); |
M.Baris Demiray | da5a552 | 2005-09-10 00:26:09 -0700 | [diff] [blame] | 1984 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 1985 | for_each_cpu_mask(i, *tmp) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1986 | load = weighted_cpuload(i); |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 1987 | |
| 1988 | if (load < min_load || (load == min_load && i == this_cpu)) { |
| 1989 | min_load = load; |
| 1990 | idlest = i; |
| 1991 | } |
| 1992 | } |
| 1993 | |
| 1994 | return idlest; |
| 1995 | } |
| 1996 | |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 1997 | /* |
| 1998 | * sched_balance_self: balance the current task (running on cpu) in domains |
| 1999 | * that have the 'flag' flag set. In practice, this is SD_BALANCE_FORK and |
| 2000 | * SD_BALANCE_EXEC. |
| 2001 | * |
| 2002 | * Balance, ie. select the least loaded group. |
| 2003 | * |
| 2004 | * Returns the target CPU number, or the same CPU if no balancing is needed. |
| 2005 | * |
| 2006 | * preempt must be disabled. |
| 2007 | */ |
| 2008 | static int sched_balance_self(int cpu, int flag) |
| 2009 | { |
| 2010 | struct task_struct *t = current; |
| 2011 | struct sched_domain *tmp, *sd = NULL; |
Nick Piggin | 147cbb4 | 2005-06-25 14:57:19 -0700 | [diff] [blame] | 2012 | |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2013 | for_each_domain(cpu, tmp) { |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2014 | /* |
| 2015 | * If power savings logic is enabled for a domain, stop there. |
| 2016 | */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2017 | if (tmp->flags & SD_POWERSAVINGS_BALANCE) |
| 2018 | break; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2019 | if (tmp->flags & flag) |
| 2020 | sd = tmp; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2021 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2022 | |
| 2023 | while (sd) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 2024 | cpumask_t span, tmpmask; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2025 | struct sched_group *group; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 2026 | int new_cpu, weight; |
| 2027 | |
| 2028 | if (!(sd->flags & flag)) { |
| 2029 | sd = sd->child; |
| 2030 | continue; |
| 2031 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2032 | |
| 2033 | span = sd->span; |
| 2034 | group = find_idlest_group(sd, t, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 2035 | if (!group) { |
| 2036 | sd = sd->child; |
| 2037 | continue; |
| 2038 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2039 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 2040 | new_cpu = find_idlest_cpu(group, t, cpu, &tmpmask); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 2041 | if (new_cpu == -1 || new_cpu == cpu) { |
| 2042 | /* Now try balancing at a lower domain level of cpu */ |
| 2043 | sd = sd->child; |
| 2044 | continue; |
| 2045 | } |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2046 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 2047 | /* Now try balancing at a lower domain level of new_cpu */ |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2048 | cpu = new_cpu; |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2049 | sd = NULL; |
| 2050 | weight = cpus_weight(span); |
| 2051 | for_each_domain(cpu, tmp) { |
| 2052 | if (weight <= cpus_weight(tmp->span)) |
| 2053 | break; |
| 2054 | if (tmp->flags & flag) |
| 2055 | sd = tmp; |
| 2056 | } |
| 2057 | /* while loop will break here if sd == NULL */ |
| 2058 | } |
| 2059 | |
| 2060 | return cpu; |
| 2061 | } |
| 2062 | |
| 2063 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | /*** |
| 2066 | * try_to_wake_up - wake up a thread |
| 2067 | * @p: the to-be-woken-up thread |
| 2068 | * @state: the mask of task states that can be woken |
| 2069 | * @sync: do a synchronous wakeup? |
| 2070 | * |
| 2071 | * Put it on the run-queue if it's not already there. The "current" |
| 2072 | * thread is always on the run-queue (except when the actual |
| 2073 | * re-schedule is in progress), and as such you're allowed to do |
| 2074 | * the simpler "current->state = TASK_RUNNING" to mark yourself |
| 2075 | * runnable without the overhead of this. |
| 2076 | * |
| 2077 | * returns failure only if the task is already active. |
| 2078 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2079 | 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] | 2080 | { |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2081 | int cpu, orig_cpu, this_cpu, success = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | unsigned long flags; |
| 2083 | long old_state; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2084 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2085 | |
Ingo Molnar | b85d066 | 2008-03-16 20:03:22 +0100 | [diff] [blame] | 2086 | if (!sched_feat(SYNC_WAKEUPS)) |
| 2087 | sync = 0; |
| 2088 | |
Linus Torvalds | 04e2f17 | 2008-02-23 18:05:03 -0800 | [diff] [blame] | 2089 | smp_wmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | rq = task_rq_lock(p, &flags); |
| 2091 | old_state = p->state; |
| 2092 | if (!(old_state & state)) |
| 2093 | goto out; |
| 2094 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2095 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | goto out_running; |
| 2097 | |
| 2098 | cpu = task_cpu(p); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2099 | orig_cpu = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | this_cpu = smp_processor_id(); |
| 2101 | |
| 2102 | #ifdef CONFIG_SMP |
| 2103 | if (unlikely(task_running(rq, p))) |
| 2104 | goto out_activate; |
| 2105 | |
Dmitry Adamushko | 5d2f5a6 | 2008-01-25 21:08:21 +0100 | [diff] [blame] | 2106 | cpu = p->sched_class->select_task_rq(p, sync); |
| 2107 | if (cpu != orig_cpu) { |
| 2108 | set_task_cpu(p, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2109 | task_rq_unlock(rq, &flags); |
| 2110 | /* might preempt at this point */ |
| 2111 | rq = task_rq_lock(p, &flags); |
| 2112 | old_state = p->state; |
| 2113 | if (!(old_state & state)) |
| 2114 | goto out; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2115 | if (p->se.on_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | goto out_running; |
| 2117 | |
| 2118 | this_cpu = smp_processor_id(); |
| 2119 | cpu = task_cpu(p); |
| 2120 | } |
| 2121 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2122 | #ifdef CONFIG_SCHEDSTATS |
| 2123 | schedstat_inc(rq, ttwu_count); |
| 2124 | if (cpu == this_cpu) |
| 2125 | schedstat_inc(rq, ttwu_local); |
| 2126 | else { |
| 2127 | struct sched_domain *sd; |
| 2128 | for_each_domain(this_cpu, sd) { |
| 2129 | if (cpu_isset(cpu, sd->span)) { |
| 2130 | schedstat_inc(sd, ttwu_wake_remote); |
| 2131 | break; |
| 2132 | } |
| 2133 | } |
| 2134 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 2135 | #endif /* CONFIG_SCHEDSTATS */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2137 | out_activate: |
| 2138 | #endif /* CONFIG_SMP */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2139 | schedstat_inc(p, se.nr_wakeups); |
| 2140 | if (sync) |
| 2141 | schedstat_inc(p, se.nr_wakeups_sync); |
| 2142 | if (orig_cpu != cpu) |
| 2143 | schedstat_inc(p, se.nr_wakeups_migrate); |
| 2144 | if (cpu == this_cpu) |
| 2145 | schedstat_inc(p, se.nr_wakeups_local); |
| 2146 | else |
| 2147 | schedstat_inc(p, se.nr_wakeups_remote); |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2148 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2149 | activate_task(rq, p, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2150 | success = 1; |
| 2151 | |
| 2152 | out_running: |
Ingo Molnar | 4ae7d5c | 2008-03-19 01:42:00 +0100 | [diff] [blame] | 2153 | check_preempt_curr(rq, p); |
| 2154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2155 | p->state = TASK_RUNNING; |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2156 | #ifdef CONFIG_SMP |
| 2157 | if (p->sched_class->task_wake_up) |
| 2158 | p->sched_class->task_wake_up(rq, p); |
| 2159 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | out: |
| 2161 | task_rq_unlock(rq, &flags); |
| 2162 | |
| 2163 | return success; |
| 2164 | } |
| 2165 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2166 | int wake_up_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2167 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 2168 | return try_to_wake_up(p, TASK_ALL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2169 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | EXPORT_SYMBOL(wake_up_process); |
| 2171 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2172 | int wake_up_state(struct task_struct *p, unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | { |
| 2174 | return try_to_wake_up(p, state, 0); |
| 2175 | } |
| 2176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | /* |
| 2178 | * Perform scheduler related setup for a newly forked process p. |
| 2179 | * p is forked by current. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2180 | * |
| 2181 | * __sched_fork() is basic setup used by init_idle() too: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2183 | static void __sched_fork(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2184 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2185 | p->se.exec_start = 0; |
| 2186 | p->se.sum_exec_runtime = 0; |
Ingo Molnar | f6cf891 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 2187 | p->se.prev_sum_exec_runtime = 0; |
Ingo Molnar | 4ae7d5c | 2008-03-19 01:42:00 +0100 | [diff] [blame] | 2188 | p->se.last_wakeup = 0; |
| 2189 | p->se.avg_overlap = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2190 | |
| 2191 | #ifdef CONFIG_SCHEDSTATS |
| 2192 | p->se.wait_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2193 | p->se.sum_sleep_runtime = 0; |
| 2194 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2195 | p->se.block_start = 0; |
| 2196 | p->se.sleep_max = 0; |
| 2197 | p->se.block_max = 0; |
| 2198 | p->se.exec_max = 0; |
Ingo Molnar | eba1ed4 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 2199 | p->se.slice_max = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2200 | p->se.wait_max = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2201 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2202 | |
Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 2203 | INIT_LIST_HEAD(&p->rt.run_list); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2204 | p->se.on_rq = 0; |
Peter Zijlstra | 4a55bd5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 2205 | INIT_LIST_HEAD(&p->se.group_node); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2206 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2207 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2208 | INIT_HLIST_HEAD(&p->preempt_notifiers); |
| 2209 | #endif |
| 2210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | /* |
| 2212 | * We mark the process as running here, but have not actually |
| 2213 | * inserted it onto the runqueue yet. This guarantees that |
| 2214 | * nobody will actually run it, and a signal or other external |
| 2215 | * event cannot wake it up and insert it on the runqueue either. |
| 2216 | */ |
| 2217 | p->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2218 | } |
| 2219 | |
| 2220 | /* |
| 2221 | * fork()/clone()-time setup: |
| 2222 | */ |
| 2223 | void sched_fork(struct task_struct *p, int clone_flags) |
| 2224 | { |
| 2225 | int cpu = get_cpu(); |
| 2226 | |
| 2227 | __sched_fork(p); |
| 2228 | |
| 2229 | #ifdef CONFIG_SMP |
| 2230 | cpu = sched_balance_self(cpu, SD_BALANCE_FORK); |
| 2231 | #endif |
Ingo Molnar | 02e4bac | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 2232 | set_task_cpu(p, cpu); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2233 | |
| 2234 | /* |
| 2235 | * Make sure we do not leak PI boosting priority to the child: |
| 2236 | */ |
| 2237 | p->prio = current->normal_prio; |
Hiroshi Shimamoto | 2ddbf95 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 2238 | if (!rt_prio(p->prio)) |
| 2239 | p->sched_class = &fair_sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2240 | |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2241 | #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2242 | if (likely(sched_info_on())) |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2243 | memset(&p->sched_info, 0, sizeof(p->sched_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | #endif |
Chen, Kenneth W | d6077cb | 2006-02-14 13:53:10 -0800 | [diff] [blame] | 2245 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2246 | p->oncpu = 0; |
| 2247 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | #ifdef CONFIG_PREEMPT |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2249 | /* Want to start with kernel preemption disabled. */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 2250 | task_thread_info(p)->preempt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2252 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2253 | } |
| 2254 | |
| 2255 | /* |
| 2256 | * wake_up_new_task - wake up a newly created task for the first time. |
| 2257 | * |
| 2258 | * This function will do some initial scheduler statistics housekeeping |
| 2259 | * that must be done for every newly created context, then puts the task |
| 2260 | * on the runqueue and wakes it. |
| 2261 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2262 | 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] | 2263 | { |
| 2264 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2265 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | |
| 2267 | rq = task_rq_lock(p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2268 | BUG_ON(p->state != TASK_RUNNING); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 2269 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2270 | |
| 2271 | p->prio = effective_prio(p); |
| 2272 | |
Srivatsa Vaddagiri | b9dca1e | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2273 | if (!p->sched_class->task_new || !current->se.on_rq) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2274 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2275 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2276 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2277 | * Let the scheduling class do new task startup |
| 2278 | * management (if any): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2279 | */ |
Ingo Molnar | ee0827d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2280 | p->sched_class->task_new(rq, p); |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 2281 | inc_nr_running(p, rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2282 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2283 | check_preempt_curr(rq, p); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2284 | #ifdef CONFIG_SMP |
| 2285 | if (p->sched_class->task_wake_up) |
| 2286 | p->sched_class->task_wake_up(rq, p); |
| 2287 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2288 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | } |
| 2290 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2291 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2292 | |
| 2293 | /** |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2294 | * preempt_notifier_register - tell me when current is being being preempted & rescheduled |
| 2295 | * @notifier: notifier struct to register |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2296 | */ |
| 2297 | void preempt_notifier_register(struct preempt_notifier *notifier) |
| 2298 | { |
| 2299 | hlist_add_head(¬ifier->link, ¤t->preempt_notifiers); |
| 2300 | } |
| 2301 | EXPORT_SYMBOL_GPL(preempt_notifier_register); |
| 2302 | |
| 2303 | /** |
| 2304 | * preempt_notifier_unregister - no longer interested in preemption notifications |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2305 | * @notifier: notifier struct to unregister |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2306 | * |
| 2307 | * This is safe to call from within a preemption notifier. |
| 2308 | */ |
| 2309 | void preempt_notifier_unregister(struct preempt_notifier *notifier) |
| 2310 | { |
| 2311 | hlist_del(¬ifier->link); |
| 2312 | } |
| 2313 | EXPORT_SYMBOL_GPL(preempt_notifier_unregister); |
| 2314 | |
| 2315 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2316 | { |
| 2317 | struct preempt_notifier *notifier; |
| 2318 | struct hlist_node *node; |
| 2319 | |
| 2320 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2321 | notifier->ops->sched_in(notifier, raw_smp_processor_id()); |
| 2322 | } |
| 2323 | |
| 2324 | static void |
| 2325 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2326 | struct task_struct *next) |
| 2327 | { |
| 2328 | struct preempt_notifier *notifier; |
| 2329 | struct hlist_node *node; |
| 2330 | |
| 2331 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 2332 | notifier->ops->sched_out(notifier, next); |
| 2333 | } |
| 2334 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 2335 | #else /* !CONFIG_PREEMPT_NOTIFIERS */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2336 | |
| 2337 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 2338 | { |
| 2339 | } |
| 2340 | |
| 2341 | static void |
| 2342 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 2343 | struct task_struct *next) |
| 2344 | { |
| 2345 | } |
| 2346 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 2347 | #endif /* CONFIG_PREEMPT_NOTIFIERS */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2348 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2349 | /** |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2350 | * prepare_task_switch - prepare to switch tasks |
| 2351 | * @rq: the runqueue preparing to switch |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2352 | * @prev: the current task that is being switched out |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2353 | * @next: the task we are going to switch to. |
| 2354 | * |
| 2355 | * This is called with the rq lock held and interrupts off. It must |
| 2356 | * be paired with a subsequent finish_task_switch after the context |
| 2357 | * switch. |
| 2358 | * |
| 2359 | * prepare_task_switch sets up locking and calls architecture specific |
| 2360 | * hooks. |
| 2361 | */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2362 | static inline void |
| 2363 | prepare_task_switch(struct rq *rq, struct task_struct *prev, |
| 2364 | struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2365 | { |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2366 | fire_sched_out_preempt_notifiers(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2367 | prepare_lock_switch(rq, next); |
| 2368 | prepare_arch_switch(next); |
| 2369 | } |
| 2370 | |
| 2371 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2372 | * finish_task_switch - clean up after a task-switch |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 2373 | * @rq: runqueue associated with task-switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | * @prev: the thread we just switched away from. |
| 2375 | * |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2376 | * finish_task_switch must be called after the context switch, paired |
| 2377 | * with a prepare_task_switch call before the context switch. |
| 2378 | * finish_task_switch will reconcile locking set up by prepare_task_switch, |
| 2379 | * and do any other architecture-specific cleanup actions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | * |
| 2381 | * 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] | 2382 | * so, we finish that here outside of the runqueue lock. (Doing it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | * with the lock held can cause deadlocks; see schedule() for |
| 2384 | * details.) |
| 2385 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 2386 | static void finish_task_switch(struct rq *rq, struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | __releases(rq->lock) |
| 2388 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2389 | struct mm_struct *mm = rq->prev_mm; |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2390 | long prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2391 | |
| 2392 | rq->prev_mm = NULL; |
| 2393 | |
| 2394 | /* |
| 2395 | * A task struct has one reference for the use as "current". |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2396 | * 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] | 2397 | * schedule one last time. The schedule call will never return, and |
| 2398 | * the scheduled task must drop that reference. |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2399 | * The test for TASK_DEAD must occur while the runqueue locks are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | * still held, otherwise prev could be scheduled on another cpu, die |
| 2401 | * there before we look at prev->state, and then the reference would |
| 2402 | * be dropped twice. |
| 2403 | * Manfred Spraul <manfred@colorfullife.com> |
| 2404 | */ |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 2405 | prev_state = prev->state; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2406 | finish_arch_switch(prev); |
| 2407 | finish_lock_switch(rq, prev); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2408 | #ifdef CONFIG_SMP |
| 2409 | if (current->sched_class->post_schedule) |
| 2410 | current->sched_class->post_schedule(rq); |
| 2411 | #endif |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2412 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2413 | fire_sched_in_preempt_notifiers(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2414 | if (mm) |
| 2415 | mmdrop(mm); |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 2416 | if (unlikely(prev_state == TASK_DEAD)) { |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2417 | /* |
| 2418 | * Remove function-return probe instances associated with this |
| 2419 | * task and put them back on the free list. |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 2420 | */ |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2421 | kprobe_flush_task(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2422 | put_task_struct(prev); |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 2423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2424 | } |
| 2425 | |
| 2426 | /** |
| 2427 | * schedule_tail - first thing a freshly forked thread must call. |
| 2428 | * @prev: the thread we just switched away from. |
| 2429 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2430 | asmlinkage void schedule_tail(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2431 | __releases(rq->lock) |
| 2432 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2433 | struct rq *rq = this_rq(); |
| 2434 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2435 | finish_task_switch(rq, prev); |
| 2436 | #ifdef __ARCH_WANT_UNLOCKED_CTXSW |
| 2437 | /* In this case, finish_task_switch does not reenable preemption */ |
| 2438 | preempt_enable(); |
| 2439 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 | if (current->set_child_tid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 2441 | put_user(task_pid_vnr(current), current->set_child_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2442 | } |
| 2443 | |
| 2444 | /* |
| 2445 | * context_switch - switch to the new MM and the new |
| 2446 | * thread's register state. |
| 2447 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2448 | static inline void |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2449 | context_switch(struct rq *rq, struct task_struct *prev, |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2450 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2451 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2452 | struct mm_struct *mm, *oldmm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2454 | prepare_task_switch(rq, prev, next); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2455 | mm = next->mm; |
| 2456 | oldmm = prev->active_mm; |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 2457 | /* |
| 2458 | * For paravirt, this is coupled with an exit in switch_to to |
| 2459 | * combine the page table reload and the switch backend into |
| 2460 | * one hypercall. |
| 2461 | */ |
| 2462 | arch_enter_lazy_cpu_mode(); |
| 2463 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2464 | if (unlikely(!mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2465 | next->active_mm = oldmm; |
| 2466 | atomic_inc(&oldmm->mm_count); |
| 2467 | enter_lazy_tlb(oldmm, next); |
| 2468 | } else |
| 2469 | switch_mm(oldmm, mm, next); |
| 2470 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2471 | if (unlikely(!prev->mm)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | prev->active_mm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2473 | rq->prev_mm = oldmm; |
| 2474 | } |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2475 | /* |
| 2476 | * Since the runqueue lock will be released by the next |
| 2477 | * task (which is an invalid locking op but in the case |
| 2478 | * of the scheduler it's an obvious special-case), so we |
| 2479 | * do an early lockdep release here: |
| 2480 | */ |
| 2481 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 2482 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 2483 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2484 | |
| 2485 | /* Here we just switch the register state and the stack. */ |
| 2486 | switch_to(prev, next, prev); |
| 2487 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2488 | barrier(); |
| 2489 | /* |
| 2490 | * this_rq must be evaluated again because prev may have moved |
| 2491 | * CPUs since it called schedule(), thus the 'rq' on its stack |
| 2492 | * frame will be invalid. |
| 2493 | */ |
| 2494 | finish_task_switch(this_rq(), prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2495 | } |
| 2496 | |
| 2497 | /* |
| 2498 | * nr_running, nr_uninterruptible and nr_context_switches: |
| 2499 | * |
| 2500 | * externally visible scheduler statistics: current number of runnable |
| 2501 | * threads, current number of uninterruptible-sleeping threads, total |
| 2502 | * number of context switches performed since bootup. |
| 2503 | */ |
| 2504 | unsigned long nr_running(void) |
| 2505 | { |
| 2506 | unsigned long i, sum = 0; |
| 2507 | |
| 2508 | for_each_online_cpu(i) |
| 2509 | sum += cpu_rq(i)->nr_running; |
| 2510 | |
| 2511 | return sum; |
| 2512 | } |
| 2513 | |
| 2514 | unsigned long nr_uninterruptible(void) |
| 2515 | { |
| 2516 | unsigned long i, sum = 0; |
| 2517 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2518 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2519 | sum += cpu_rq(i)->nr_uninterruptible; |
| 2520 | |
| 2521 | /* |
| 2522 | * Since we read the counters lockless, it might be slightly |
| 2523 | * inaccurate. Do not allow it to go below zero though: |
| 2524 | */ |
| 2525 | if (unlikely((long)sum < 0)) |
| 2526 | sum = 0; |
| 2527 | |
| 2528 | return sum; |
| 2529 | } |
| 2530 | |
| 2531 | unsigned long long nr_context_switches(void) |
| 2532 | { |
Steven Rostedt | cc94abf | 2006-06-27 02:54:31 -0700 | [diff] [blame] | 2533 | int i; |
| 2534 | unsigned long long sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2535 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2536 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2537 | sum += cpu_rq(i)->nr_switches; |
| 2538 | |
| 2539 | return sum; |
| 2540 | } |
| 2541 | |
| 2542 | unsigned long nr_iowait(void) |
| 2543 | { |
| 2544 | unsigned long i, sum = 0; |
| 2545 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 2546 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2547 | sum += atomic_read(&cpu_rq(i)->nr_iowait); |
| 2548 | |
| 2549 | return sum; |
| 2550 | } |
| 2551 | |
Jack Steiner | db1b1fe | 2006-03-31 02:31:21 -0800 | [diff] [blame] | 2552 | unsigned long nr_active(void) |
| 2553 | { |
| 2554 | unsigned long i, running = 0, uninterruptible = 0; |
| 2555 | |
| 2556 | for_each_online_cpu(i) { |
| 2557 | running += cpu_rq(i)->nr_running; |
| 2558 | uninterruptible += cpu_rq(i)->nr_uninterruptible; |
| 2559 | } |
| 2560 | |
| 2561 | if (unlikely((long)uninterruptible < 0)) |
| 2562 | uninterruptible = 0; |
| 2563 | |
| 2564 | return running + uninterruptible; |
| 2565 | } |
| 2566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2568 | * Update rq->cpu_load[] statistics. This function is usually called every |
| 2569 | * scheduler tick (TICK_NSEC). |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2570 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2571 | static void update_cpu_load(struct rq *this_rq) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2572 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 2573 | unsigned long this_load = this_rq->load.weight; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2574 | int i, scale; |
| 2575 | |
| 2576 | this_rq->nr_load_updates++; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2577 | |
| 2578 | /* Update our load: */ |
| 2579 | for (i = 0, scale = 1; i < CPU_LOAD_IDX_MAX; i++, scale += scale) { |
| 2580 | unsigned long old_load, new_load; |
| 2581 | |
| 2582 | /* scale is effectively 1 << i now, and >> i divides by scale */ |
| 2583 | |
| 2584 | old_load = this_rq->cpu_load[i]; |
| 2585 | new_load = this_load; |
Ingo Molnar | a25707f | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 2586 | /* |
| 2587 | * Round up the averaging division if load is increasing. This |
| 2588 | * prevents us from getting stuck on 9 if the load is 10, for |
| 2589 | * example. |
| 2590 | */ |
| 2591 | if (new_load > old_load) |
| 2592 | new_load += scale-1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2593 | this_rq->cpu_load[i] = (old_load*(scale-1) + new_load) >> i; |
| 2594 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2595 | } |
| 2596 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2597 | #ifdef CONFIG_SMP |
| 2598 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2599 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2600 | * double_rq_lock - safely lock two runqueues |
| 2601 | * |
| 2602 | * Note this does not disable interrupts like task_rq_lock, |
| 2603 | * you need to do so manually before calling. |
| 2604 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2605 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | __acquires(rq1->lock) |
| 2607 | __acquires(rq2->lock) |
| 2608 | { |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2609 | BUG_ON(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2610 | if (rq1 == rq2) { |
| 2611 | spin_lock(&rq1->lock); |
| 2612 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 2613 | } else { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2614 | if (rq1 < rq2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2615 | spin_lock(&rq1->lock); |
| 2616 | spin_lock(&rq2->lock); |
| 2617 | } else { |
| 2618 | spin_lock(&rq2->lock); |
| 2619 | spin_lock(&rq1->lock); |
| 2620 | } |
| 2621 | } |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 2622 | update_rq_clock(rq1); |
| 2623 | update_rq_clock(rq2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | } |
| 2625 | |
| 2626 | /* |
| 2627 | * double_rq_unlock - safely unlock two runqueues |
| 2628 | * |
| 2629 | * Note this does not restore interrupts like task_rq_unlock, |
| 2630 | * you need to do so manually after calling. |
| 2631 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2632 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2633 | __releases(rq1->lock) |
| 2634 | __releases(rq2->lock) |
| 2635 | { |
| 2636 | spin_unlock(&rq1->lock); |
| 2637 | if (rq1 != rq2) |
| 2638 | spin_unlock(&rq2->lock); |
| 2639 | else |
| 2640 | __release(rq2->lock); |
| 2641 | } |
| 2642 | |
| 2643 | /* |
| 2644 | * double_lock_balance - lock the busiest runqueue, this_rq is locked already. |
| 2645 | */ |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2646 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | __releases(this_rq->lock) |
| 2648 | __acquires(busiest->lock) |
| 2649 | __acquires(this_rq->lock) |
| 2650 | { |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2651 | int ret = 0; |
| 2652 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 2653 | if (unlikely(!irqs_disabled())) { |
| 2654 | /* printk() doesn't work good under rq->lock */ |
| 2655 | spin_unlock(&this_rq->lock); |
| 2656 | BUG_ON(1); |
| 2657 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | if (unlikely(!spin_trylock(&busiest->lock))) { |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 2659 | if (busiest < this_rq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2660 | spin_unlock(&this_rq->lock); |
| 2661 | spin_lock(&busiest->lock); |
| 2662 | spin_lock(&this_rq->lock); |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2663 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2664 | } else |
| 2665 | spin_lock(&busiest->lock); |
| 2666 | } |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 2667 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2668 | } |
| 2669 | |
| 2670 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2671 | * If dest_cpu is allowed for this process, migrate the task to it. |
| 2672 | * This is accomplished by forcing the cpu_allowed mask to only |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 2673 | * allow dest_cpu, which will force the cpu onto dest_cpu. Then |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2674 | * the cpu_allowed mask is restored. |
| 2675 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2676 | static void sched_migrate_task(struct task_struct *p, int dest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2678 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2679 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2680 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | |
| 2682 | rq = task_rq_lock(p, &flags); |
| 2683 | if (!cpu_isset(dest_cpu, p->cpus_allowed) |
| 2684 | || unlikely(cpu_is_offline(dest_cpu))) |
| 2685 | goto out; |
| 2686 | |
| 2687 | /* force the process onto the specified CPU */ |
| 2688 | if (migrate_task(p, dest_cpu, &req)) { |
| 2689 | /* Need to wait for migration thread (might exit: take ref). */ |
| 2690 | struct task_struct *mt = rq->migration_thread; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | get_task_struct(mt); |
| 2693 | task_rq_unlock(rq, &flags); |
| 2694 | wake_up_process(mt); |
| 2695 | put_task_struct(mt); |
| 2696 | wait_for_completion(&req.done); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2697 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2698 | return; |
| 2699 | } |
| 2700 | out: |
| 2701 | task_rq_unlock(rq, &flags); |
| 2702 | } |
| 2703 | |
| 2704 | /* |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2705 | * sched_exec - execve() is a valuable balancing opportunity, because at |
| 2706 | * this point the task has the smallest effective memory and cache footprint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | */ |
| 2708 | void sched_exec(void) |
| 2709 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2710 | int new_cpu, this_cpu = get_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2711 | new_cpu = sched_balance_self(this_cpu, SD_BALANCE_EXEC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2712 | put_cpu(); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2713 | if (new_cpu != this_cpu) |
| 2714 | sched_migrate_task(current, new_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2715 | } |
| 2716 | |
| 2717 | /* |
| 2718 | * pull_task - move a task from a remote runqueue to the local runqueue. |
| 2719 | * Both runqueues must be locked. |
| 2720 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2721 | static void pull_task(struct rq *src_rq, struct task_struct *p, |
| 2722 | struct rq *this_rq, int this_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2723 | { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 2724 | deactivate_task(src_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2725 | set_task_cpu(p, this_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2726 | activate_task(this_rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | /* |
| 2728 | * Note that idle threads have a prio of MAX_PRIO, for this test |
| 2729 | * to be always true for them. |
| 2730 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2731 | check_preempt_curr(this_rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | } |
| 2733 | |
| 2734 | /* |
| 2735 | * can_migrate_task - may task p from runqueue rq be migrated to this_cpu? |
| 2736 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 2737 | static |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2738 | 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] | 2739 | struct sched_domain *sd, enum cpu_idle_type idle, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 2740 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2741 | { |
| 2742 | /* |
| 2743 | * We do not migrate tasks that are: |
| 2744 | * 1) running (obviously), or |
| 2745 | * 2) cannot be migrated to this CPU due to cpus_allowed, or |
| 2746 | * 3) are cache-hot on their current CPU. |
| 2747 | */ |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2748 | if (!cpu_isset(this_cpu, p->cpus_allowed)) { |
| 2749 | schedstat_inc(p, se.nr_failed_migrations_affine); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2750 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2751 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2752 | *all_pinned = 0; |
| 2753 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2754 | if (task_running(rq, p)) { |
| 2755 | schedstat_inc(p, se.nr_failed_migrations_running); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 2756 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2757 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2759 | /* |
| 2760 | * Aggressive migration if: |
| 2761 | * 1) task is cache cold, or |
| 2762 | * 2) too many balance attempts have failed. |
| 2763 | */ |
| 2764 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2765 | if (!task_hot(p, rq->clock, sd) || |
| 2766 | sd->nr_balance_failed > sd->cache_nice_tries) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2767 | #ifdef CONFIG_SCHEDSTATS |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2768 | if (task_hot(p, rq->clock, sd)) { |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2769 | schedstat_inc(sd, lb_hot_gained[idle]); |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2770 | schedstat_inc(p, se.nr_forced_migrations); |
| 2771 | } |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2772 | #endif |
| 2773 | return 1; |
| 2774 | } |
| 2775 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2776 | if (task_hot(p, rq->clock, sd)) { |
| 2777 | schedstat_inc(p, se.nr_failed_migrations_hot); |
Ingo Molnar | da84d96 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2778 | return 0; |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2779 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2780 | return 1; |
| 2781 | } |
| 2782 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2783 | static unsigned long |
| 2784 | balance_tasks(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2785 | unsigned long max_load_move, struct sched_domain *sd, |
| 2786 | enum cpu_idle_type idle, int *all_pinned, |
| 2787 | int *this_best_prio, struct rq_iterator *iterator) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2788 | { |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2789 | int loops = 0, pulled = 0, pinned = 0, skip_for_load; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2790 | struct task_struct *p; |
| 2791 | long rem_load_move = max_load_move; |
| 2792 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2793 | if (max_load_move == 0) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2794 | goto out; |
| 2795 | |
| 2796 | pinned = 1; |
| 2797 | |
| 2798 | /* |
| 2799 | * Start the load-balancing iterator: |
| 2800 | */ |
| 2801 | p = iterator->start(iterator->arg); |
| 2802 | next: |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2803 | if (!p || loops++ > sysctl_sched_nr_migrate) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2804 | goto out; |
| 2805 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2806 | * To help distribute high priority tasks across CPUs we don't |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2807 | * skip a task if it will be the highest priority task (i.e. smallest |
| 2808 | * prio value) on its new queue regardless of its load weight |
| 2809 | */ |
| 2810 | skip_for_load = (p->se.load.weight >> 1) > rem_load_move + |
| 2811 | SCHED_LOAD_SCALE_FUZZ; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2812 | if ((skip_for_load && p->prio >= *this_best_prio) || |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2813 | !can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2814 | p = iterator->next(iterator->arg); |
| 2815 | goto next; |
| 2816 | } |
| 2817 | |
| 2818 | pull_task(busiest, p, this_rq, this_cpu); |
| 2819 | pulled++; |
| 2820 | rem_load_move -= p->se.load.weight; |
| 2821 | |
| 2822 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 2823 | * 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] | 2824 | */ |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2825 | if (rem_load_move > 0) { |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2826 | if (p->prio < *this_best_prio) |
| 2827 | *this_best_prio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2828 | p = iterator->next(iterator->arg); |
| 2829 | goto next; |
| 2830 | } |
| 2831 | out: |
| 2832 | /* |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2833 | * 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] | 2834 | * so we can safely collect pull_task() stats here rather than |
| 2835 | * inside pull_task(). |
| 2836 | */ |
| 2837 | schedstat_add(sd, lb_gained[idle], pulled); |
| 2838 | |
| 2839 | if (all_pinned) |
| 2840 | *all_pinned = pinned; |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2841 | |
| 2842 | return max_load_move - rem_load_move; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2843 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2844 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2845 | /* |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2846 | * move_tasks tries to move up to max_load_move weighted load from busiest to |
| 2847 | * this_rq, as part of a balancing operation within domain "sd". |
| 2848 | * Returns 1 if successful and 0 otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2849 | * |
| 2850 | * Called with both runqueues locked. |
| 2851 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2852 | 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] | 2853 | unsigned long max_load_move, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2854 | struct sched_domain *sd, enum cpu_idle_type idle, |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2855 | int *all_pinned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2857 | const struct sched_class *class = sched_class_highest; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2858 | unsigned long total_load_moved = 0; |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2859 | int this_best_prio = this_rq->curr->prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2860 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2861 | do { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2862 | total_load_moved += |
| 2863 | class->load_balance(this_rq, this_cpu, busiest, |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2864 | max_load_move - total_load_moved, |
Peter Williams | a4ac01c | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2865 | sd, idle, all_pinned, &this_best_prio); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2866 | class = class->next; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2867 | } while (class && max_load_move > total_load_moved); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2869 | return total_load_moved > 0; |
| 2870 | } |
| 2871 | |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2872 | static int |
| 2873 | iter_move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2874 | struct sched_domain *sd, enum cpu_idle_type idle, |
| 2875 | struct rq_iterator *iterator) |
| 2876 | { |
| 2877 | struct task_struct *p = iterator->start(iterator->arg); |
| 2878 | int pinned = 0; |
| 2879 | |
| 2880 | while (p) { |
| 2881 | if (can_migrate_task(p, busiest, this_cpu, sd, idle, &pinned)) { |
| 2882 | pull_task(busiest, p, this_rq, this_cpu); |
| 2883 | /* |
| 2884 | * Right now, this is only the second place pull_task() |
| 2885 | * is called, so we can safely collect pull_task() |
| 2886 | * stats here rather than inside pull_task(). |
| 2887 | */ |
| 2888 | schedstat_inc(sd, lb_gained[idle]); |
| 2889 | |
| 2890 | return 1; |
| 2891 | } |
| 2892 | p = iterator->next(iterator->arg); |
| 2893 | } |
| 2894 | |
| 2895 | return 0; |
| 2896 | } |
| 2897 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2898 | /* |
| 2899 | * move_one_task tries to move exactly one task from busiest to this_rq, as |
| 2900 | * part of active balancing operations within "domain". |
| 2901 | * Returns 1 if successful and 0 otherwise. |
| 2902 | * |
| 2903 | * Called with both runqueues locked. |
| 2904 | */ |
| 2905 | static int move_one_task(struct rq *this_rq, int this_cpu, struct rq *busiest, |
| 2906 | struct sched_domain *sd, enum cpu_idle_type idle) |
| 2907 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 2908 | const struct sched_class *class; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2909 | |
| 2910 | for (class = sched_class_highest; class; class = class->next) |
Peter Williams | e1d1484 | 2007-10-24 18:23:51 +0200 | [diff] [blame] | 2911 | if (class->move_one_task(this_rq, this_cpu, busiest, sd, idle)) |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 2912 | return 1; |
| 2913 | |
| 2914 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2915 | } |
| 2916 | |
| 2917 | /* |
| 2918 | * find_busiest_group finds and returns the busiest CPU group within the |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 2919 | * domain. It calculates and returns the amount of weighted load which |
| 2920 | * should be moved to restore balance via the imbalance parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | */ |
| 2922 | static struct sched_group * |
| 2923 | find_busiest_group(struct sched_domain *sd, int this_cpu, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2924 | unsigned long *imbalance, enum cpu_idle_type idle, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 2925 | int *sd_idle, const cpumask_t *cpus, int *balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | { |
| 2927 | struct sched_group *busiest = NULL, *this = NULL, *group = sd->groups; |
| 2928 | 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] | 2929 | unsigned long max_pull; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2930 | unsigned long busiest_load_per_task, busiest_nr_running; |
| 2931 | unsigned long this_load_per_task, this_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2932 | int load_idx, group_imb = 0; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 2933 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 2934 | int power_savings_balance = 1; |
| 2935 | unsigned long leader_nr_running = 0, min_load_per_task = 0; |
| 2936 | unsigned long min_nr_running = ULONG_MAX; |
| 2937 | struct sched_group *group_min = NULL, *group_leader = NULL; |
| 2938 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2939 | |
| 2940 | max_load = this_load = total_load = total_pwr = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2941 | busiest_load_per_task = busiest_nr_running = 0; |
| 2942 | this_load_per_task = this_nr_running = 0; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2943 | if (idle == CPU_NOT_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2944 | load_idx = sd->busy_idx; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 2945 | else if (idle == CPU_NEWLY_IDLE) |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 2946 | load_idx = sd->newidle_idx; |
| 2947 | else |
| 2948 | load_idx = sd->idle_idx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | |
| 2950 | do { |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2951 | unsigned long load, group_capacity, max_cpu_load, min_cpu_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2952 | int local_group; |
| 2953 | int i; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2954 | int __group_imb = 0; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2955 | unsigned int balance_cpu = -1, first_idle_cpu = 0; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2956 | unsigned long sum_nr_running, sum_weighted_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2957 | |
| 2958 | local_group = cpu_isset(this_cpu, group->cpumask); |
| 2959 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2960 | if (local_group) |
| 2961 | balance_cpu = first_cpu(group->cpumask); |
| 2962 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | /* Tally up the load of all CPUs in the group */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2964 | sum_weighted_load = sum_nr_running = avg_load = 0; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2965 | max_cpu_load = 0; |
| 2966 | min_cpu_load = ~0UL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | |
| 2968 | for_each_cpu_mask(i, group->cpumask) { |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 2969 | struct rq *rq; |
| 2970 | |
| 2971 | if (!cpu_isset(i, *cpus)) |
| 2972 | continue; |
| 2973 | |
| 2974 | rq = cpu_rq(i); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2975 | |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 2976 | if (*sd_idle && rq->nr_running) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 2977 | *sd_idle = 0; |
| 2978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | /* Bias balancing toward cpus of our domain */ |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 2980 | if (local_group) { |
| 2981 | if (idle_cpu(i) && !first_idle_cpu) { |
| 2982 | first_idle_cpu = 1; |
| 2983 | balance_cpu = i; |
| 2984 | } |
| 2985 | |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2986 | load = target_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2987 | } else { |
Nick Piggin | a200057 | 2006-02-10 01:51:02 -0800 | [diff] [blame] | 2988 | load = source_load(i, load_idx); |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 2989 | if (load > max_cpu_load) |
| 2990 | max_cpu_load = load; |
| 2991 | if (min_cpu_load > load) |
| 2992 | min_cpu_load = load; |
| 2993 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | |
| 2995 | avg_load += load; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 2996 | sum_nr_running += rq->nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2997 | sum_weighted_load += weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2998 | } |
| 2999 | |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3000 | /* |
| 3001 | * First idle cpu or the first cpu(busiest) in this sched group |
| 3002 | * is eligible for doing load balancing at this and above |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3003 | * domains. In the newly idle case, we will allow all the cpu's |
| 3004 | * to do the newly idle load balance. |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3005 | */ |
Suresh Siddha | 9439aab | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3006 | if (idle != CPU_NEWLY_IDLE && local_group && |
| 3007 | balance_cpu != this_cpu && balance) { |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3008 | *balance = 0; |
| 3009 | goto ret; |
| 3010 | } |
| 3011 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3012 | total_load += avg_load; |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3013 | total_pwr += group->__cpu_power; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3014 | |
| 3015 | /* Adjust by relative CPU power of the group */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3016 | avg_load = sg_div_cpu_power(group, |
| 3017 | avg_load * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 3019 | if ((max_cpu_load - min_cpu_load) > SCHED_LOAD_SCALE) |
| 3020 | __group_imb = 1; |
| 3021 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3022 | group_capacity = group->__cpu_power / SCHED_LOAD_SCALE; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3024 | if (local_group) { |
| 3025 | this_load = avg_load; |
| 3026 | this = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3027 | this_nr_running = sum_nr_running; |
| 3028 | this_load_per_task = sum_weighted_load; |
| 3029 | } else if (avg_load > max_load && |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 3030 | (sum_nr_running > group_capacity || __group_imb)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3031 | max_load = avg_load; |
| 3032 | busiest = group; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3033 | busiest_nr_running = sum_nr_running; |
| 3034 | busiest_load_per_task = sum_weighted_load; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 3035 | group_imb = __group_imb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3036 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3037 | |
| 3038 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
| 3039 | /* |
| 3040 | * Busy processors will not participate in power savings |
| 3041 | * balance. |
| 3042 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3043 | if (idle == CPU_NOT_IDLE || |
| 3044 | !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
| 3045 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3046 | |
| 3047 | /* |
| 3048 | * If the local group is idle or completely loaded |
| 3049 | * no need to do power savings balance at this domain |
| 3050 | */ |
| 3051 | if (local_group && (this_nr_running >= group_capacity || |
| 3052 | !this_nr_running)) |
| 3053 | power_savings_balance = 0; |
| 3054 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3055 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3056 | * If a group is already running at full capacity or idle, |
| 3057 | * don't include that group in power savings calculations |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3058 | */ |
| 3059 | if (!power_savings_balance || sum_nr_running >= group_capacity |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3060 | || !sum_nr_running) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3061 | goto group_next; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3062 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3063 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3064 | * Calculate the group which has the least non-idle load. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3065 | * This is the group from where we need to pick up the load |
| 3066 | * for saving power |
| 3067 | */ |
| 3068 | if ((sum_nr_running < min_nr_running) || |
| 3069 | (sum_nr_running == min_nr_running && |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3070 | first_cpu(group->cpumask) < |
| 3071 | first_cpu(group_min->cpumask))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3072 | group_min = group; |
| 3073 | min_nr_running = sum_nr_running; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3074 | min_load_per_task = sum_weighted_load / |
| 3075 | sum_nr_running; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3076 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3077 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3078 | /* |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3079 | * Calculate the group which is almost near its |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3080 | * capacity but still has some space to pick up some load |
| 3081 | * from other group and save more power |
| 3082 | */ |
| 3083 | if (sum_nr_running <= group_capacity - 1) { |
| 3084 | if (sum_nr_running > leader_nr_running || |
| 3085 | (sum_nr_running == leader_nr_running && |
| 3086 | first_cpu(group->cpumask) > |
| 3087 | first_cpu(group_leader->cpumask))) { |
| 3088 | group_leader = group; |
| 3089 | leader_nr_running = sum_nr_running; |
| 3090 | } |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3091 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3092 | group_next: |
| 3093 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3094 | group = group->next; |
| 3095 | } while (group != sd->groups); |
| 3096 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3097 | if (!busiest || this_load >= max_load || busiest_nr_running == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3098 | goto out_balanced; |
| 3099 | |
| 3100 | avg_load = (SCHED_LOAD_SCALE * total_load) / total_pwr; |
| 3101 | |
| 3102 | if (this_load >= avg_load || |
| 3103 | 100*max_load <= sd->imbalance_pct*this_load) |
| 3104 | goto out_balanced; |
| 3105 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3106 | busiest_load_per_task /= busiest_nr_running; |
Ken Chen | 908a7c1 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 3107 | if (group_imb) |
| 3108 | busiest_load_per_task = min(busiest_load_per_task, avg_load); |
| 3109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | /* |
| 3111 | * We're trying to get all the cpus to the average_load, so we don't |
| 3112 | * want to push ourselves above the average load, nor do we wish to |
| 3113 | * reduce the max loaded cpu below the average load, as either of these |
| 3114 | * actions would just result in more rebalancing later, and ping-pong |
| 3115 | * tasks around. Thus we look for the minimum possible imbalance. |
| 3116 | * Negative imbalances (*we* are more loaded than anyone else) will |
| 3117 | * 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] | 3118 | * 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] | 3119 | * appear as very large values with unsigned longs. |
| 3120 | */ |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3121 | if (max_load <= busiest_load_per_task) |
| 3122 | goto out_balanced; |
| 3123 | |
| 3124 | /* |
| 3125 | * In the presence of smp nice balancing, certain scenarios can have |
| 3126 | * max load less than avg load(as we skip the groups at or below |
| 3127 | * its cpu_power, while calculating max_load..) |
| 3128 | */ |
| 3129 | if (max_load < avg_load) { |
| 3130 | *imbalance = 0; |
| 3131 | goto small_imbalance; |
| 3132 | } |
Siddha, Suresh B | 0c117f1 | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3133 | |
| 3134 | /* 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] | 3135 | 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] | 3136 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3137 | /* How much load to actually move to equalise the imbalance */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3138 | *imbalance = min(max_pull * busiest->__cpu_power, |
| 3139 | (avg_load - this_load) * this->__cpu_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | / SCHED_LOAD_SCALE; |
| 3141 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3142 | /* |
| 3143 | * if *imbalance is less than the average load per runnable task |
| 3144 | * there is no gaurantee that any tasks will be moved so we'll have |
| 3145 | * a think about bumping its value to force at least one task to be |
| 3146 | * moved |
| 3147 | */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 3148 | if (*imbalance < busiest_load_per_task) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3149 | unsigned long tmp, pwr_now, pwr_move; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3150 | unsigned int imbn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3151 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3152 | small_imbalance: |
| 3153 | pwr_move = pwr_now = 0; |
| 3154 | imbn = 2; |
| 3155 | if (this_nr_running) { |
| 3156 | this_load_per_task /= this_nr_running; |
| 3157 | if (busiest_load_per_task > this_load_per_task) |
| 3158 | imbn = 1; |
| 3159 | } else |
| 3160 | this_load_per_task = SCHED_LOAD_SCALE; |
| 3161 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3162 | if (max_load - this_load + SCHED_LOAD_SCALE_FUZZ >= |
| 3163 | busiest_load_per_task * imbn) { |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3164 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | return busiest; |
| 3166 | } |
| 3167 | |
| 3168 | /* |
| 3169 | * OK, we don't have enough imbalance to justify moving tasks, |
| 3170 | * however we may be able to increase total CPU power used by |
| 3171 | * moving them. |
| 3172 | */ |
| 3173 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3174 | pwr_now += busiest->__cpu_power * |
| 3175 | min(busiest_load_per_task, max_load); |
| 3176 | pwr_now += this->__cpu_power * |
| 3177 | min(this_load_per_task, this_load); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3178 | pwr_now /= SCHED_LOAD_SCALE; |
| 3179 | |
| 3180 | /* Amount of load we'd subtract */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3181 | tmp = sg_div_cpu_power(busiest, |
| 3182 | busiest_load_per_task * SCHED_LOAD_SCALE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3183 | if (max_load > tmp) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3184 | pwr_move += busiest->__cpu_power * |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3185 | min(busiest_load_per_task, max_load - tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3186 | |
| 3187 | /* Amount of load we'd add */ |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3188 | if (max_load * busiest->__cpu_power < |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 3189 | busiest_load_per_task * SCHED_LOAD_SCALE) |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3190 | tmp = sg_div_cpu_power(this, |
| 3191 | max_load * busiest->__cpu_power); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3192 | else |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 3193 | tmp = sg_div_cpu_power(this, |
| 3194 | busiest_load_per_task * SCHED_LOAD_SCALE); |
| 3195 | pwr_move += this->__cpu_power * |
| 3196 | min(this_load_per_task, this_load + tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3197 | pwr_move /= SCHED_LOAD_SCALE; |
| 3198 | |
| 3199 | /* Move if we gain throughput */ |
Suresh Siddha | 7fd0d2d | 2007-09-05 14:32:48 +0200 | [diff] [blame] | 3200 | if (pwr_move > pwr_now) |
| 3201 | *imbalance = busiest_load_per_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | } |
| 3203 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | return busiest; |
| 3205 | |
| 3206 | out_balanced: |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3207 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3208 | if (idle == CPU_NOT_IDLE || !(sd->flags & SD_POWERSAVINGS_BALANCE)) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3209 | goto ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3211 | if (this == group_leader && group_leader != group_min) { |
| 3212 | *imbalance = min_load_per_task; |
| 3213 | return group_min; |
| 3214 | } |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 3215 | #endif |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3216 | ret: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3217 | *imbalance = 0; |
| 3218 | return NULL; |
| 3219 | } |
| 3220 | |
| 3221 | /* |
| 3222 | * find_busiest_queue - find the busiest runqueue among the cpus in group. |
| 3223 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3224 | static struct rq * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3225 | find_busiest_queue(struct sched_group *group, enum cpu_idle_type idle, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3226 | unsigned long imbalance, const cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3227 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3228 | struct rq *busiest = NULL, *rq; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3229 | unsigned long max_load = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | int i; |
| 3231 | |
| 3232 | for_each_cpu_mask(i, group->cpumask) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3233 | unsigned long wl; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3234 | |
| 3235 | if (!cpu_isset(i, *cpus)) |
| 3236 | continue; |
| 3237 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3238 | rq = cpu_rq(i); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3239 | wl = weighted_cpuload(i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3241 | if (rq->nr_running == 1 && wl > imbalance) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 3242 | continue; |
| 3243 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3244 | if (wl > max_load) { |
| 3245 | max_load = wl; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3246 | busiest = rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3247 | } |
| 3248 | } |
| 3249 | |
| 3250 | return busiest; |
| 3251 | } |
| 3252 | |
| 3253 | /* |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3254 | * Max backoff if we encounter pinned tasks. Pretty arbitrary value, but |
| 3255 | * so long as it is large enough. |
| 3256 | */ |
| 3257 | #define MAX_PINNED_INTERVAL 512 |
| 3258 | |
| 3259 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3261 | * tasks if there is an imbalance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3262 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3263 | static int load_balance(int this_cpu, struct rq *this_rq, |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3264 | struct sched_domain *sd, enum cpu_idle_type idle, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3265 | int *balance, cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3266 | { |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3267 | int ld_moved, all_pinned = 0, active_balance = 0, sd_idle = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | struct sched_group *group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3269 | unsigned long imbalance; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3270 | struct rq *busiest; |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3271 | unsigned long flags; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3272 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3273 | cpus_setall(*cpus); |
| 3274 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3275 | /* |
| 3276 | * When power savings policy is enabled for the parent domain, idle |
| 3277 | * sibling can pick up load irrespective of busy siblings. In this case, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3278 | * 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] | 3279 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3280 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3281 | if (idle != CPU_NOT_IDLE && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3282 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3283 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3285 | schedstat_inc(sd, lb_count[idle]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3287 | redo: |
| 3288 | group = find_busiest_group(sd, this_cpu, &imbalance, idle, &sd_idle, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3289 | cpus, balance); |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3290 | |
Chen, Kenneth W | 0606671 | 2006-12-10 02:20:35 -0800 | [diff] [blame] | 3291 | if (*balance == 0) |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3292 | goto out_balanced; |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | if (!group) { |
| 3295 | schedstat_inc(sd, lb_nobusyg[idle]); |
| 3296 | goto out_balanced; |
| 3297 | } |
| 3298 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3299 | busiest = find_busiest_queue(group, idle, imbalance, cpus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3300 | if (!busiest) { |
| 3301 | schedstat_inc(sd, lb_nobusyq[idle]); |
| 3302 | goto out_balanced; |
| 3303 | } |
| 3304 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3305 | BUG_ON(busiest == this_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3306 | |
| 3307 | schedstat_add(sd, lb_imbalance[idle], imbalance); |
| 3308 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3309 | ld_moved = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3310 | if (busiest->nr_running > 1) { |
| 3311 | /* |
| 3312 | * Attempt to move tasks. If find_busiest_group has found |
| 3313 | * an imbalance but busiest->nr_running <= 1, the group is |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3314 | * still unbalanced. ld_moved simply stays zero, so it is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3315 | * correctly treated as an imbalance. |
| 3316 | */ |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3317 | local_irq_save(flags); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3318 | double_rq_lock(this_rq, busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3319 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3320 | imbalance, sd, idle, &all_pinned); |
Nick Piggin | e17224b | 2005-09-10 00:26:18 -0700 | [diff] [blame] | 3321 | double_rq_unlock(this_rq, busiest); |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3322 | local_irq_restore(flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3323 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3324 | /* |
| 3325 | * some other cpu did the load balance for us. |
| 3326 | */ |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3327 | if (ld_moved && this_cpu != smp_processor_id()) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3328 | resched_cpu(this_cpu); |
| 3329 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3330 | /* All tasks on this runqueue were pinned by CPU affinity */ |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3331 | if (unlikely(all_pinned)) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3332 | cpu_clear(cpu_of(busiest), *cpus); |
| 3333 | if (!cpus_empty(*cpus)) |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3334 | goto redo; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3335 | goto out_balanced; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3336 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3337 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3338 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3339 | if (!ld_moved) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | schedstat_inc(sd, lb_failed[idle]); |
| 3341 | sd->nr_balance_failed++; |
| 3342 | |
| 3343 | if (unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3344 | |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3345 | spin_lock_irqsave(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3346 | |
| 3347 | /* don't kick the migration_thread, if the curr |
| 3348 | * task on busiest cpu can't be moved to this_cpu |
| 3349 | */ |
| 3350 | if (!cpu_isset(this_cpu, busiest->curr->cpus_allowed)) { |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3351 | spin_unlock_irqrestore(&busiest->lock, flags); |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3352 | all_pinned = 1; |
| 3353 | goto out_one_pinned; |
| 3354 | } |
| 3355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3356 | if (!busiest->active_balance) { |
| 3357 | busiest->active_balance = 1; |
| 3358 | busiest->push_cpu = this_cpu; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3359 | active_balance = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3360 | } |
Christoph Lameter | fe2eea3 | 2006-12-10 02:20:21 -0800 | [diff] [blame] | 3361 | spin_unlock_irqrestore(&busiest->lock, flags); |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3362 | if (active_balance) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | wake_up_process(busiest->migration_thread); |
| 3364 | |
| 3365 | /* |
| 3366 | * We've kicked active balancing, reset the failure |
| 3367 | * counter. |
| 3368 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3369 | sd->nr_balance_failed = sd->cache_nice_tries+1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3370 | } |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3371 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | sd->nr_balance_failed = 0; |
| 3373 | |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3374 | if (likely(!active_balance)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3375 | /* We were unbalanced, so reset the balancing interval */ |
| 3376 | sd->balance_interval = sd->min_interval; |
Nick Piggin | 8102679 | 2005-06-25 14:57:07 -0700 | [diff] [blame] | 3377 | } else { |
| 3378 | /* |
| 3379 | * If we've begun active balancing, start to back off. This |
| 3380 | * case may not be covered by the all_pinned logic if there |
| 3381 | * is only 1 task on the busy runqueue (because we don't call |
| 3382 | * move_tasks). |
| 3383 | */ |
| 3384 | if (sd->balance_interval < sd->max_interval) |
| 3385 | sd->balance_interval *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3386 | } |
| 3387 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3388 | if (!ld_moved && !sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3389 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 3390 | return -1; |
| 3391 | return ld_moved; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3392 | |
| 3393 | out_balanced: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3394 | schedstat_inc(sd, lb_balanced[idle]); |
| 3395 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3396 | sd->nr_balance_failed = 0; |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3397 | |
| 3398 | out_one_pinned: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3399 | /* tune up the balancing interval */ |
Nick Piggin | 77391d7 | 2005-06-25 14:57:30 -0700 | [diff] [blame] | 3400 | if ((all_pinned && sd->balance_interval < MAX_PINNED_INTERVAL) || |
| 3401 | (sd->balance_interval < sd->max_interval)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3402 | sd->balance_interval *= 2; |
| 3403 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3404 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3405 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 3406 | return -1; |
| 3407 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3408 | } |
| 3409 | |
| 3410 | /* |
| 3411 | * Check this_cpu to ensure it is balanced within domain. Attempt to move |
| 3412 | * tasks if there is an imbalance. |
| 3413 | * |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3414 | * 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] | 3415 | * this_rq is locked. |
| 3416 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3417 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3418 | load_balance_newidle(int this_cpu, struct rq *this_rq, struct sched_domain *sd, |
| 3419 | cpumask_t *cpus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3420 | { |
| 3421 | struct sched_group *group; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3422 | struct rq *busiest = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3423 | unsigned long imbalance; |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3424 | int ld_moved = 0; |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3425 | int sd_idle = 0; |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3426 | int all_pinned = 0; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3427 | |
| 3428 | cpus_setall(*cpus); |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3429 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3430 | /* |
| 3431 | * When power savings policy is enabled for the parent domain, idle |
| 3432 | * sibling can pick up load irrespective of busy siblings. In this case, |
| 3433 | * let the state of idle sibling percolate up as IDLE, instead of |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3434 | * portraying it as CPU_NOT_IDLE. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3435 | */ |
| 3436 | if (sd->flags & SD_SHARE_CPUPOWER && |
| 3437 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3438 | sd_idle = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3439 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3440 | schedstat_inc(sd, lb_count[CPU_NEWLY_IDLE]); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3441 | redo: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3442 | group = find_busiest_group(sd, this_cpu, &imbalance, CPU_NEWLY_IDLE, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3443 | &sd_idle, cpus, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3444 | if (!group) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3445 | schedstat_inc(sd, lb_nobusyg[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3446 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3447 | } |
| 3448 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3449 | busiest = find_busiest_queue(group, CPU_NEWLY_IDLE, imbalance, cpus); |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3450 | if (!busiest) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3451 | schedstat_inc(sd, lb_nobusyq[CPU_NEWLY_IDLE]); |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3452 | goto out_balanced; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3453 | } |
| 3454 | |
Nick Piggin | db935db | 2005-06-25 14:57:11 -0700 | [diff] [blame] | 3455 | BUG_ON(busiest == this_rq); |
| 3456 | |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3457 | schedstat_add(sd, lb_imbalance[CPU_NEWLY_IDLE], imbalance); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3458 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3459 | ld_moved = 0; |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3460 | if (busiest->nr_running > 1) { |
| 3461 | /* Attempt to move tasks */ |
| 3462 | double_lock_balance(this_rq, busiest); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3463 | /* this_rq->clock is already updated */ |
| 3464 | update_rq_clock(busiest); |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3465 | ld_moved = move_tasks(this_rq, this_cpu, busiest, |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3466 | imbalance, sd, CPU_NEWLY_IDLE, |
| 3467 | &all_pinned); |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3468 | spin_unlock(&busiest->lock); |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3469 | |
Suresh Siddha | 969bb4e | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 3470 | if (unlikely(all_pinned)) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3471 | cpu_clear(cpu_of(busiest), *cpus); |
| 3472 | if (!cpus_empty(*cpus)) |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 3473 | goto redo; |
| 3474 | } |
Nick Piggin | d6d5cfa | 2005-09-10 00:26:16 -0700 | [diff] [blame] | 3475 | } |
| 3476 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3477 | if (!ld_moved) { |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3478 | schedstat_inc(sd, lb_failed[CPU_NEWLY_IDLE]); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3479 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
| 3480 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3481 | return -1; |
| 3482 | } else |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3483 | sd->nr_balance_failed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3484 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3485 | return ld_moved; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3486 | |
| 3487 | out_balanced: |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3488 | schedstat_inc(sd, lb_balanced[CPU_NEWLY_IDLE]); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3489 | if (!sd_idle && sd->flags & SD_SHARE_CPUPOWER && |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 3490 | !test_sd_parent(sd, SD_POWERSAVINGS_BALANCE)) |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3491 | return -1; |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3492 | sd->nr_balance_failed = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3493 | |
Nick Piggin | 16cfb1c | 2005-06-25 14:57:08 -0700 | [diff] [blame] | 3494 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3495 | } |
| 3496 | |
| 3497 | /* |
| 3498 | * idle_balance is called by schedule() if this_cpu is about to become |
| 3499 | * idle. Attempts to pull tasks from other CPUs. |
| 3500 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3501 | static void idle_balance(int this_cpu, struct rq *this_rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3502 | { |
| 3503 | struct sched_domain *sd; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3504 | int pulled_task = -1; |
| 3505 | unsigned long next_balance = jiffies + HZ; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3506 | cpumask_t tmpmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3507 | |
| 3508 | for_each_domain(this_cpu, sd) { |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3509 | unsigned long interval; |
| 3510 | |
| 3511 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3512 | continue; |
| 3513 | |
| 3514 | if (sd->flags & SD_BALANCE_NEWIDLE) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3515 | /* If we've pulled tasks over stop searching: */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3516 | pulled_task = load_balance_newidle(this_cpu, this_rq, |
| 3517 | sd, &tmpmask); |
Christoph Lameter | 92c4ca5 | 2007-06-23 17:16:33 -0700 | [diff] [blame] | 3518 | |
| 3519 | interval = msecs_to_jiffies(sd->balance_interval); |
| 3520 | if (time_after(next_balance, sd->last_balance + interval)) |
| 3521 | next_balance = sd->last_balance + interval; |
| 3522 | if (pulled_task) |
| 3523 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3524 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3525 | if (pulled_task || time_after(jiffies, this_rq->next_balance)) { |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3526 | /* |
| 3527 | * We are going idle. next_balance may be set based on |
| 3528 | * a busy processor. So reset next_balance. |
| 3529 | */ |
| 3530 | this_rq->next_balance = next_balance; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3531 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3532 | } |
| 3533 | |
| 3534 | /* |
| 3535 | * active_load_balance is run by migration threads. It pushes running tasks |
| 3536 | * off the busiest CPU onto idle CPUs. It requires at least 1 task to be |
| 3537 | * running on each physical CPU where possible, and avoids physical / |
| 3538 | * logical imbalances. |
| 3539 | * |
| 3540 | * Called with busiest_rq locked. |
| 3541 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3542 | static void active_load_balance(struct rq *busiest_rq, int busiest_cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3543 | { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3544 | int target_cpu = busiest_rq->push_cpu; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3545 | struct sched_domain *sd; |
| 3546 | struct rq *target_rq; |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3547 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3548 | /* Is there any task to move? */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3549 | if (busiest_rq->nr_running <= 1) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3550 | return; |
| 3551 | |
| 3552 | target_rq = cpu_rq(target_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3553 | |
| 3554 | /* |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3555 | * This condition is "impossible", if it occurs |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3556 | * we need to fix it. Originally reported by |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3557 | * Bjorn Helgaas on a 128-cpu setup. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | */ |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3559 | BUG_ON(busiest_rq == target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3561 | /* move a task from busiest_rq to target_rq */ |
| 3562 | double_lock_balance(busiest_rq, target_rq); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 3563 | update_rq_clock(busiest_rq); |
| 3564 | update_rq_clock(target_rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3565 | |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3566 | /* Search for an sd spanning us and the target CPU. */ |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3567 | for_each_domain(target_cpu, sd) { |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3568 | if ((sd->flags & SD_LOAD_BALANCE) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3569 | cpu_isset(busiest_cpu, sd->span)) |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3570 | break; |
Chen, Kenneth W | c96d145 | 2006-06-27 02:54:28 -0700 | [diff] [blame] | 3571 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3573 | if (likely(sd)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 3574 | schedstat_inc(sd, alb_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3575 | |
Peter Williams | 4301065 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 3576 | if (move_one_task(target_rq, target_cpu, busiest_rq, |
| 3577 | sd, CPU_IDLE)) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3578 | schedstat_inc(sd, alb_pushed); |
| 3579 | else |
| 3580 | schedstat_inc(sd, alb_failed); |
| 3581 | } |
Nick Piggin | 3950745 | 2005-06-25 14:57:09 -0700 | [diff] [blame] | 3582 | spin_unlock(&target_rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | } |
| 3584 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3585 | #ifdef CONFIG_NO_HZ |
| 3586 | static struct { |
| 3587 | atomic_t load_balancer; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3588 | cpumask_t cpu_mask; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3589 | } nohz ____cacheline_aligned = { |
| 3590 | .load_balancer = ATOMIC_INIT(-1), |
| 3591 | .cpu_mask = CPU_MASK_NONE, |
| 3592 | }; |
| 3593 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3594 | /* |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3595 | * This routine will try to nominate the ilb (idle load balancing) |
| 3596 | * owner among the cpus whose ticks are stopped. ilb owner will do the idle |
| 3597 | * load balancing on behalf of all those cpus. If all the cpus in the system |
| 3598 | * go into this tickless mode, then there will be no ilb owner (as there is |
| 3599 | * no need for one) and all the cpus will sleep till the next wakeup event |
| 3600 | * arrives... |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3601 | * |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3602 | * For the ilb owner, tick is not stopped. And this tick will be used |
| 3603 | * for idle load balancing. ilb owner will still be part of |
| 3604 | * nohz.cpu_mask.. |
| 3605 | * |
| 3606 | * While stopping the tick, this cpu will become the ilb owner if there |
| 3607 | * is no other owner. And will be the owner till that cpu becomes busy |
| 3608 | * or if all cpus in the system stop their ticks at which point |
| 3609 | * there is no need for ilb owner. |
| 3610 | * |
| 3611 | * When the ilb owner becomes busy, it nominates another owner, during the |
| 3612 | * next busy scheduler_tick() |
| 3613 | */ |
| 3614 | int select_nohz_load_balancer(int stop_tick) |
| 3615 | { |
| 3616 | int cpu = smp_processor_id(); |
| 3617 | |
| 3618 | if (stop_tick) { |
| 3619 | cpu_set(cpu, nohz.cpu_mask); |
| 3620 | cpu_rq(cpu)->in_nohz_recently = 1; |
| 3621 | |
| 3622 | /* |
| 3623 | * If we are going offline and still the leader, give up! |
| 3624 | */ |
| 3625 | if (cpu_is_offline(cpu) && |
| 3626 | atomic_read(&nohz.load_balancer) == cpu) { |
| 3627 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3628 | BUG(); |
| 3629 | return 0; |
| 3630 | } |
| 3631 | |
| 3632 | /* time for ilb owner also to sleep */ |
| 3633 | if (cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3634 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3635 | atomic_set(&nohz.load_balancer, -1); |
| 3636 | return 0; |
| 3637 | } |
| 3638 | |
| 3639 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3640 | /* make me the ilb owner */ |
| 3641 | if (atomic_cmpxchg(&nohz.load_balancer, -1, cpu) == -1) |
| 3642 | return 1; |
| 3643 | } else if (atomic_read(&nohz.load_balancer) == cpu) |
| 3644 | return 1; |
| 3645 | } else { |
| 3646 | if (!cpu_isset(cpu, nohz.cpu_mask)) |
| 3647 | return 0; |
| 3648 | |
| 3649 | cpu_clear(cpu, nohz.cpu_mask); |
| 3650 | |
| 3651 | if (atomic_read(&nohz.load_balancer) == cpu) |
| 3652 | if (atomic_cmpxchg(&nohz.load_balancer, cpu, -1) != cpu) |
| 3653 | BUG(); |
| 3654 | } |
| 3655 | return 0; |
| 3656 | } |
| 3657 | #endif |
| 3658 | |
| 3659 | static DEFINE_SPINLOCK(balancing); |
| 3660 | |
| 3661 | /* |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3662 | * It checks each scheduling domain to see if it is due to be balanced, |
| 3663 | * and initiates a balancing operation if so. |
| 3664 | * |
| 3665 | * Balancing parameters are set up in arch_init_sched_domains. |
| 3666 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3667 | static void rebalance_domains(int cpu, enum cpu_idle_type idle) |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3668 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3669 | int balance = 1; |
| 3670 | struct rq *rq = cpu_rq(cpu); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3671 | unsigned long interval; |
| 3672 | struct sched_domain *sd; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3673 | /* Earliest time when we have to do rebalance again */ |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3674 | unsigned long next_balance = jiffies + 60*HZ; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3675 | int update_next_balance = 0; |
Dmitry Adamushko | d07355f | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 3676 | int need_serialize; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3677 | cpumask_t tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3678 | |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3679 | for_each_domain(cpu, sd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3680 | if (!(sd->flags & SD_LOAD_BALANCE)) |
| 3681 | continue; |
| 3682 | |
| 3683 | interval = sd->balance_interval; |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3684 | if (idle != CPU_IDLE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | interval *= sd->busy_factor; |
| 3686 | |
| 3687 | /* scale ms to jiffies */ |
| 3688 | interval = msecs_to_jiffies(interval); |
| 3689 | if (unlikely(!interval)) |
| 3690 | interval = 1; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3691 | if (interval > HZ*NR_CPUS/10) |
| 3692 | interval = HZ*NR_CPUS/10; |
| 3693 | |
Dmitry Adamushko | d07355f | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 3694 | need_serialize = sd->flags & SD_SERIALIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3695 | |
Dmitry Adamushko | d07355f | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 3696 | if (need_serialize) { |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3697 | if (!spin_trylock(&balancing)) |
| 3698 | goto out; |
| 3699 | } |
| 3700 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3701 | if (time_after_eq(jiffies, sd->last_balance + interval)) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 3702 | if (load_balance(cpu, rq, sd, idle, &balance, &tmp)) { |
Siddha, Suresh B | fa3b6dd | 2005-09-10 00:26:21 -0700 | [diff] [blame] | 3703 | /* |
| 3704 | * We've pulled tasks over so either we're no |
Nick Piggin | 5969fe0 | 2005-09-10 00:26:19 -0700 | [diff] [blame] | 3705 | * longer idle, or one of our SMT siblings is |
| 3706 | * not idle. |
| 3707 | */ |
Ingo Molnar | d15bcfd | 2007-07-09 18:51:57 +0200 | [diff] [blame] | 3708 | idle = CPU_NOT_IDLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3709 | } |
Christoph Lameter | 1bd77f2 | 2006-12-10 02:20:27 -0800 | [diff] [blame] | 3710 | sd->last_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3711 | } |
Dmitry Adamushko | d07355f | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 3712 | if (need_serialize) |
Christoph Lameter | 08c183f | 2006-12-10 02:20:29 -0800 | [diff] [blame] | 3713 | spin_unlock(&balancing); |
| 3714 | out: |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3715 | if (time_after(next_balance, sd->last_balance + interval)) { |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 3716 | next_balance = sd->last_balance + interval; |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3717 | update_next_balance = 1; |
| 3718 | } |
Siddha, Suresh B | 783609c | 2006-12-10 02:20:33 -0800 | [diff] [blame] | 3719 | |
| 3720 | /* |
| 3721 | * Stop the load balance at this level. There is another |
| 3722 | * CPU in our sched group which is doing load balancing more |
| 3723 | * actively. |
| 3724 | */ |
| 3725 | if (!balance) |
| 3726 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3727 | } |
Suresh Siddha | f549da8 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 3728 | |
| 3729 | /* |
| 3730 | * next_balance will be updated only when there is a need. |
| 3731 | * When the cpu is attached to null domain for ex, it will not be |
| 3732 | * updated. |
| 3733 | */ |
| 3734 | if (likely(update_next_balance)) |
| 3735 | rq->next_balance = next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3736 | } |
| 3737 | |
| 3738 | /* |
| 3739 | * run_rebalance_domains is triggered when needed from the scheduler tick. |
| 3740 | * In CONFIG_NO_HZ case, the idle load balance owner will do the |
| 3741 | * rebalancing for all the cpus for whom scheduler ticks are stopped. |
| 3742 | */ |
| 3743 | static void run_rebalance_domains(struct softirq_action *h) |
| 3744 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3745 | int this_cpu = smp_processor_id(); |
| 3746 | struct rq *this_rq = cpu_rq(this_cpu); |
| 3747 | enum cpu_idle_type idle = this_rq->idle_at_tick ? |
| 3748 | CPU_IDLE : CPU_NOT_IDLE; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3749 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3750 | rebalance_domains(this_cpu, idle); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3751 | |
| 3752 | #ifdef CONFIG_NO_HZ |
| 3753 | /* |
| 3754 | * If this cpu is the owner for idle load balancing, then do the |
| 3755 | * balancing on behalf of the other idle cpus whose ticks are |
| 3756 | * stopped. |
| 3757 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3758 | if (this_rq->idle_at_tick && |
| 3759 | atomic_read(&nohz.load_balancer) == this_cpu) { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3760 | cpumask_t cpus = nohz.cpu_mask; |
| 3761 | struct rq *rq; |
| 3762 | int balance_cpu; |
| 3763 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3764 | cpu_clear(this_cpu, cpus); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3765 | for_each_cpu_mask(balance_cpu, cpus) { |
| 3766 | /* |
| 3767 | * If this cpu gets work to do, stop the load balancing |
| 3768 | * work being done for other cpus. Next load |
| 3769 | * balancing owner will pick it up. |
| 3770 | */ |
| 3771 | if (need_resched()) |
| 3772 | break; |
| 3773 | |
Oleg Nesterov | de0cf89 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 3774 | rebalance_domains(balance_cpu, CPU_IDLE); |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3775 | |
| 3776 | rq = cpu_rq(balance_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3777 | if (time_after(this_rq->next_balance, rq->next_balance)) |
| 3778 | this_rq->next_balance = rq->next_balance; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3779 | } |
| 3780 | } |
| 3781 | #endif |
| 3782 | } |
| 3783 | |
| 3784 | /* |
| 3785 | * Trigger the SCHED_SOFTIRQ if it is time to do periodic load balancing. |
| 3786 | * |
| 3787 | * In case of CONFIG_NO_HZ, this is the place where we nominate a new |
| 3788 | * idle load balancing owner or decide to stop the periodic load balancing, |
| 3789 | * if the whole system is idle. |
| 3790 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3791 | static inline void trigger_load_balance(struct rq *rq, int cpu) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3792 | { |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3793 | #ifdef CONFIG_NO_HZ |
| 3794 | /* |
| 3795 | * If we were in the nohz mode recently and busy at the current |
| 3796 | * scheduler tick, then check if we need to nominate new idle |
| 3797 | * load balancer. |
| 3798 | */ |
| 3799 | if (rq->in_nohz_recently && !rq->idle_at_tick) { |
| 3800 | rq->in_nohz_recently = 0; |
| 3801 | |
| 3802 | if (atomic_read(&nohz.load_balancer) == cpu) { |
| 3803 | cpu_clear(cpu, nohz.cpu_mask); |
| 3804 | atomic_set(&nohz.load_balancer, -1); |
| 3805 | } |
| 3806 | |
| 3807 | if (atomic_read(&nohz.load_balancer) == -1) { |
| 3808 | /* |
| 3809 | * simple selection for now: Nominate the |
| 3810 | * first cpu in the nohz list to be the next |
| 3811 | * ilb owner. |
| 3812 | * |
| 3813 | * TBD: Traverse the sched domains and nominate |
| 3814 | * the nearest cpu in the nohz.cpu_mask. |
| 3815 | */ |
| 3816 | int ilb = first_cpu(nohz.cpu_mask); |
| 3817 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 3818 | if (ilb < nr_cpu_ids) |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 3819 | resched_cpu(ilb); |
| 3820 | } |
| 3821 | } |
| 3822 | |
| 3823 | /* |
| 3824 | * If this cpu is idle and doing idle load balancing for all the |
| 3825 | * cpus with ticks stopped, is it time for that to stop? |
| 3826 | */ |
| 3827 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) == cpu && |
| 3828 | cpus_weight(nohz.cpu_mask) == num_online_cpus()) { |
| 3829 | resched_cpu(cpu); |
| 3830 | return; |
| 3831 | } |
| 3832 | |
| 3833 | /* |
| 3834 | * If this cpu is idle and the idle load balancing is done by |
| 3835 | * someone else, then no need raise the SCHED_SOFTIRQ |
| 3836 | */ |
| 3837 | if (rq->idle_at_tick && atomic_read(&nohz.load_balancer) != cpu && |
| 3838 | cpu_isset(cpu, nohz.cpu_mask)) |
| 3839 | return; |
| 3840 | #endif |
| 3841 | if (time_after_eq(jiffies, rq->next_balance)) |
| 3842 | raise_softirq(SCHED_SOFTIRQ); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3843 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3844 | |
| 3845 | #else /* CONFIG_SMP */ |
| 3846 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3847 | /* |
| 3848 | * on UP we do not need to balance between CPUs: |
| 3849 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3850 | static inline void idle_balance(int cpu, struct rq *rq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3851 | { |
| 3852 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3853 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3854 | #endif |
| 3855 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3856 | DEFINE_PER_CPU(struct kernel_stat, kstat); |
| 3857 | |
| 3858 | EXPORT_PER_CPU_SYMBOL(kstat); |
| 3859 | |
| 3860 | /* |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3861 | * Return p->sum_exec_runtime plus any more ns on the sched_clock |
| 3862 | * 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] | 3863 | */ |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3864 | unsigned long long task_sched_runtime(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3865 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3866 | unsigned long flags; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3867 | u64 ns, delta_exec; |
| 3868 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3869 | |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3870 | rq = task_rq_lock(p, &flags); |
| 3871 | ns = p->se.sum_exec_runtime; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 3872 | if (task_current(rq, p)) { |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 3873 | update_rq_clock(rq); |
| 3874 | delta_exec = rq->clock - p->se.exec_start; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3875 | if ((s64)delta_exec > 0) |
| 3876 | ns += delta_exec; |
| 3877 | } |
| 3878 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3880 | return ns; |
| 3881 | } |
| 3882 | |
| 3883 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3884 | * Account user cpu time to a process. |
| 3885 | * @p: the process that the cpu time gets accounted to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | * @cputime: the cpu time spent in user space since the last update |
| 3887 | */ |
| 3888 | void account_user_time(struct task_struct *p, cputime_t cputime) |
| 3889 | { |
| 3890 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3891 | cputime64_t tmp; |
| 3892 | |
| 3893 | p->utime = cputime_add(p->utime, cputime); |
| 3894 | |
| 3895 | /* Add user time to cpustat. */ |
| 3896 | tmp = cputime_to_cputime64(cputime); |
| 3897 | if (TASK_NICE(p) > 0) |
| 3898 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3899 | else |
| 3900 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3901 | } |
| 3902 | |
| 3903 | /* |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3904 | * Account guest cpu time to a process. |
| 3905 | * @p: the process that the cpu time gets accounted to |
| 3906 | * @cputime: the cpu time spent in virtual machine since the last update |
| 3907 | */ |
Adrian Bunk | f7402e0 | 2007-10-29 21:18:10 +0100 | [diff] [blame] | 3908 | static void account_guest_time(struct task_struct *p, cputime_t cputime) |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3909 | { |
| 3910 | cputime64_t tmp; |
| 3911 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3912 | |
| 3913 | tmp = cputime_to_cputime64(cputime); |
| 3914 | |
| 3915 | p->utime = cputime_add(p->utime, cputime); |
| 3916 | p->gtime = cputime_add(p->gtime, cputime); |
| 3917 | |
| 3918 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3919 | cpustat->guest = cputime64_add(cpustat->guest, tmp); |
| 3920 | } |
| 3921 | |
| 3922 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3923 | * Account scaled user cpu time to a process. |
| 3924 | * @p: the process that the cpu time gets accounted to |
| 3925 | * @cputime: the cpu time spent in user space since the last update |
| 3926 | */ |
| 3927 | void account_user_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3928 | { |
| 3929 | p->utimescaled = cputime_add(p->utimescaled, cputime); |
| 3930 | } |
| 3931 | |
| 3932 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3933 | * Account system cpu time to a process. |
| 3934 | * @p: the process that the cpu time gets accounted to |
| 3935 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3936 | * @cputime: the cpu time spent in kernel space since the last update |
| 3937 | */ |
| 3938 | void account_system_time(struct task_struct *p, int hardirq_offset, |
| 3939 | cputime_t cputime) |
| 3940 | { |
| 3941 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3942 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3943 | cputime64_t tmp; |
| 3944 | |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 3945 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) { |
| 3946 | account_guest_time(p, cputime); |
| 3947 | return; |
| 3948 | } |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3949 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3950 | p->stime = cputime_add(p->stime, cputime); |
| 3951 | |
| 3952 | /* Add system time to cpustat. */ |
| 3953 | tmp = cputime_to_cputime64(cputime); |
| 3954 | if (hardirq_count() - hardirq_offset) |
| 3955 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3956 | else if (softirq_count()) |
| 3957 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3958 | else if (p != rq->idle) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3959 | cpustat->system = cputime64_add(cpustat->system, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3960 | else if (atomic_read(&rq->nr_iowait) > 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3961 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3962 | else |
| 3963 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
| 3964 | /* Account for system time used */ |
| 3965 | acct_update_integrals(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3966 | } |
| 3967 | |
| 3968 | /* |
Michael Neuling | c66f08b | 2007-10-18 03:06:34 -0700 | [diff] [blame] | 3969 | * Account scaled system cpu time to a process. |
| 3970 | * @p: the process that the cpu time gets accounted to |
| 3971 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3972 | * @cputime: the cpu time spent in kernel space since the last update |
| 3973 | */ |
| 3974 | void account_system_time_scaled(struct task_struct *p, cputime_t cputime) |
| 3975 | { |
| 3976 | p->stimescaled = cputime_add(p->stimescaled, cputime); |
| 3977 | } |
| 3978 | |
| 3979 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3980 | * Account for involuntary wait time. |
| 3981 | * @p: the process from which the cpu time has been stolen |
| 3982 | * @steal: the cpu time spent in involuntary wait |
| 3983 | */ |
| 3984 | void account_steal_time(struct task_struct *p, cputime_t steal) |
| 3985 | { |
| 3986 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3987 | cputime64_t tmp = cputime_to_cputime64(steal); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3988 | struct rq *rq = this_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | |
| 3990 | if (p == rq->idle) { |
| 3991 | p->stime = cputime_add(p->stime, steal); |
| 3992 | if (atomic_read(&rq->nr_iowait) > 0) |
| 3993 | cpustat->iowait = cputime64_add(cpustat->iowait, tmp); |
| 3994 | else |
| 3995 | cpustat->idle = cputime64_add(cpustat->idle, tmp); |
Andrew Morton | cfb5285 | 2007-11-14 16:59:45 -0800 | [diff] [blame] | 3996 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3997 | cpustat->steal = cputime64_add(cpustat->steal, tmp); |
| 3998 | } |
| 3999 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4000 | /* |
| 4001 | * This function gets called by the timer code, with HZ frequency. |
| 4002 | * We call it with interrupts disabled. |
| 4003 | * |
| 4004 | * It also gets called by the fork code, when changing the parent's |
| 4005 | * timeslices. |
| 4006 | */ |
| 4007 | void scheduler_tick(void) |
| 4008 | { |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4009 | int cpu = smp_processor_id(); |
| 4010 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4011 | struct task_struct *curr = rq->curr; |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 4012 | |
| 4013 | sched_clock_tick(); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4014 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4015 | spin_lock(&rq->lock); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 4016 | update_rq_clock(rq); |
Ingo Molnar | f1a438d | 2007-08-09 11:16:45 +0200 | [diff] [blame] | 4017 | update_cpu_load(rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4018 | curr->sched_class->task_tick(rq, curr, 0); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4019 | spin_unlock(&rq->lock); |
| 4020 | |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 4021 | #ifdef CONFIG_SMP |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4022 | rq->idle_at_tick = idle_cpu(cpu); |
| 4023 | trigger_load_balance(rq, cpu); |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 4024 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4025 | } |
| 4026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4027 | #if defined(CONFIG_PREEMPT) && defined(CONFIG_DEBUG_PREEMPT) |
| 4028 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 4029 | void __kprobes add_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4030 | { |
| 4031 | /* |
| 4032 | * Underflow? |
| 4033 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4034 | if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0))) |
| 4035 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4036 | preempt_count() += val; |
| 4037 | /* |
| 4038 | * Spinlock count overflowing soon? |
| 4039 | */ |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 4040 | DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= |
| 4041 | PREEMPT_MASK - 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4042 | } |
| 4043 | EXPORT_SYMBOL(add_preempt_count); |
| 4044 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 4045 | void __kprobes sub_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4046 | { |
| 4047 | /* |
| 4048 | * Underflow? |
| 4049 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4050 | if (DEBUG_LOCKS_WARN_ON(val > preempt_count())) |
| 4051 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | /* |
| 4053 | * Is the spinlock portion underflowing? |
| 4054 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4055 | if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) && |
| 4056 | !(preempt_count() & PREEMPT_MASK))) |
| 4057 | return; |
| 4058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 | preempt_count() -= val; |
| 4060 | } |
| 4061 | EXPORT_SYMBOL(sub_preempt_count); |
| 4062 | |
| 4063 | #endif |
| 4064 | |
| 4065 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4066 | * Print scheduling while atomic bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4067 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4068 | static noinline void __schedule_bug(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4069 | { |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 4070 | struct pt_regs *regs = get_irq_regs(); |
| 4071 | |
| 4072 | printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n", |
| 4073 | prev->comm, prev->pid, preempt_count()); |
| 4074 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4075 | debug_show_held_locks(prev); |
Arjan van de Ven | e21f5b1 | 2008-05-23 09:05:58 -0700 | [diff] [blame] | 4076 | print_modules(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4077 | if (irqs_disabled()) |
| 4078 | print_irqtrace_events(prev); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 4079 | |
| 4080 | if (regs) |
| 4081 | show_regs(regs); |
| 4082 | else |
| 4083 | dump_stack(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4084 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4085 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4086 | /* |
| 4087 | * Various schedule()-time debugging checks and statistics: |
| 4088 | */ |
| 4089 | static inline void schedule_debug(struct task_struct *prev) |
| 4090 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4091 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4092 | * Test if we are atomic. Since do_exit() needs to call into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4093 | * schedule() atomically, we ignore that path for now. |
| 4094 | * Otherwise, whine if we are scheduling when we should not be. |
| 4095 | */ |
Roel Kluin | 3f33a7c | 2008-05-13 23:44:11 +0200 | [diff] [blame] | 4096 | if (unlikely(in_atomic_preempt_off() && !prev->exit_state)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4097 | __schedule_bug(prev); |
| 4098 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4099 | profile_hit(SCHED_PROFILING, __builtin_return_address(0)); |
| 4100 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4101 | schedstat_inc(this_rq(), sched_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 4102 | #ifdef CONFIG_SCHEDSTATS |
| 4103 | if (unlikely(prev->lock_depth >= 0)) { |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4104 | schedstat_inc(this_rq(), bkl_count); |
| 4105 | schedstat_inc(prev, sched_info.bkl_count); |
Ingo Molnar | b8efb56 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 4106 | } |
| 4107 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4108 | } |
| 4109 | |
| 4110 | /* |
| 4111 | * Pick up the highest-prio task: |
| 4112 | */ |
| 4113 | static inline struct task_struct * |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4114 | pick_next_task(struct rq *rq, struct task_struct *prev) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4115 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4116 | const struct sched_class *class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4117 | struct task_struct *p; |
| 4118 | |
| 4119 | /* |
| 4120 | * Optimization: we know that if all tasks are in |
| 4121 | * the fair class we can call that function directly: |
| 4122 | */ |
| 4123 | if (likely(rq->nr_running == rq->cfs.nr_running)) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4124 | p = fair_sched_class.pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4125 | if (likely(p)) |
| 4126 | return p; |
| 4127 | } |
| 4128 | |
| 4129 | class = sched_class_highest; |
| 4130 | for ( ; ; ) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4131 | p = class->pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4132 | if (p) |
| 4133 | return p; |
| 4134 | /* |
| 4135 | * Will never be NULL as the idle class always |
| 4136 | * returns a non-NULL p: |
| 4137 | */ |
| 4138 | class = class->next; |
| 4139 | } |
| 4140 | } |
| 4141 | |
| 4142 | /* |
| 4143 | * schedule() is the main scheduler function. |
| 4144 | */ |
| 4145 | asmlinkage void __sched schedule(void) |
| 4146 | { |
| 4147 | struct task_struct *prev, *next; |
Harvey Harrison | 67ca7bd | 2008-02-15 09:56:36 -0800 | [diff] [blame] | 4148 | unsigned long *switch_count; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4149 | struct rq *rq; |
Mike Galbraith | f333fdc | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 4150 | int cpu, hrtick = sched_feat(HRTICK); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4152 | need_resched: |
| 4153 | preempt_disable(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4154 | cpu = smp_processor_id(); |
| 4155 | rq = cpu_rq(cpu); |
| 4156 | rcu_qsctr_inc(cpu); |
| 4157 | prev = rq->curr; |
| 4158 | switch_count = &prev->nivcsw; |
| 4159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | release_kernel_lock(prev); |
| 4161 | need_resched_nonpreemptible: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4162 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4163 | schedule_debug(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4164 | |
Mike Galbraith | f333fdc | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 4165 | if (hrtick) |
| 4166 | hrtick_clear(rq); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4167 | |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4168 | /* |
| 4169 | * Do the rq-clock update outside the rq lock: |
| 4170 | */ |
| 4171 | local_irq_disable(); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 4172 | update_rq_clock(rq); |
Ingo Molnar | 1e81995 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4173 | spin_lock(&rq->lock); |
| 4174 | clear_tsk_need_resched(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4175 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4176 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |
| 4177 | if (unlikely((prev->state & TASK_INTERRUPTIBLE) && |
Roel Kluin | 23e3c3c | 2008-03-13 17:41:59 +0100 | [diff] [blame] | 4178 | signal_pending(prev))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4179 | prev->state = TASK_RUNNING; |
| 4180 | } else { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4181 | deactivate_task(rq, prev, 1); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4182 | } |
| 4183 | switch_count = &prev->nvcsw; |
| 4184 | } |
| 4185 | |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4186 | #ifdef CONFIG_SMP |
| 4187 | if (prev->sched_class->pre_schedule) |
| 4188 | prev->sched_class->pre_schedule(rq, prev); |
| 4189 | #endif |
Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 4190 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4191 | if (unlikely(!rq->nr_running)) |
| 4192 | idle_balance(cpu, rq); |
| 4193 | |
Ingo Molnar | 31ee529 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4194 | prev->sched_class->put_prev_task(rq, prev); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4195 | next = pick_next_task(rq, prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4197 | if (likely(prev != next)) { |
David Simner | 673a90a | 2008-04-29 10:08:59 +0100 | [diff] [blame] | 4198 | sched_info_switch(prev, next); |
| 4199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4200 | rq->nr_switches++; |
| 4201 | rq->curr = next; |
| 4202 | ++*switch_count; |
| 4203 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4204 | context_switch(rq, prev, next); /* unlocks the rq */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4205 | /* |
| 4206 | * the context switch might have flipped the stack from under |
| 4207 | * us, hence refresh the local variables. |
| 4208 | */ |
| 4209 | cpu = smp_processor_id(); |
| 4210 | rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4211 | } else |
| 4212 | spin_unlock_irq(&rq->lock); |
| 4213 | |
Mike Galbraith | f333fdc | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 4214 | if (hrtick) |
| 4215 | hrtick_set(rq); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4216 | |
| 4217 | if (unlikely(reacquire_kernel_lock(current) < 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4218 | goto need_resched_nonpreemptible; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4220 | preempt_enable_no_resched(); |
| 4221 | if (unlikely(test_thread_flag(TIF_NEED_RESCHED))) |
| 4222 | goto need_resched; |
| 4223 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4224 | EXPORT_SYMBOL(schedule); |
| 4225 | |
| 4226 | #ifdef CONFIG_PREEMPT |
| 4227 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4228 | * this is the entry point to schedule() from in-kernel preemption |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4229 | * off of preempt_enable. Kernel preemptions off return from interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | * occur there and call schedule directly. |
| 4231 | */ |
| 4232 | asmlinkage void __sched preempt_schedule(void) |
| 4233 | { |
| 4234 | struct thread_info *ti = current_thread_info(); |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4236 | /* |
| 4237 | * If there is a non-zero preempt_count or interrupts are disabled, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4238 | * we do not want to preempt the current task. Just return.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4239 | */ |
Nick Piggin | beed33a | 2006-10-11 01:21:52 -0700 | [diff] [blame] | 4240 | if (likely(ti->preempt_count || irqs_disabled())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | return; |
| 4242 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4243 | do { |
| 4244 | add_preempt_count(PREEMPT_ACTIVE); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4245 | schedule(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4246 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4247 | |
| 4248 | /* |
| 4249 | * Check again in case we missed a preemption opportunity |
| 4250 | * between schedule and now. |
| 4251 | */ |
| 4252 | barrier(); |
| 4253 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4254 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4255 | EXPORT_SYMBOL(preempt_schedule); |
| 4256 | |
| 4257 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4258 | * this is the entry point to schedule() from kernel preemption |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4259 | * off of irq context. |
| 4260 | * Note, that this is called and return with irqs disabled. This will |
| 4261 | * protect us against recursive calling from irq. |
| 4262 | */ |
| 4263 | asmlinkage void __sched preempt_schedule_irq(void) |
| 4264 | { |
| 4265 | struct thread_info *ti = current_thread_info(); |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4266 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4267 | /* Catch callers which need to be fixed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4268 | BUG_ON(ti->preempt_count || !irqs_disabled()); |
| 4269 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4270 | do { |
| 4271 | add_preempt_count(PREEMPT_ACTIVE); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4272 | local_irq_enable(); |
| 4273 | schedule(); |
| 4274 | local_irq_disable(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4275 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4276 | |
| 4277 | /* |
| 4278 | * Check again in case we missed a preemption opportunity |
| 4279 | * between schedule and now. |
| 4280 | */ |
| 4281 | barrier(); |
| 4282 | } while (unlikely(test_thread_flag(TIF_NEED_RESCHED))); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4283 | } |
| 4284 | |
| 4285 | #endif /* CONFIG_PREEMPT */ |
| 4286 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4287 | int default_wake_function(wait_queue_t *curr, unsigned mode, int sync, |
| 4288 | void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4289 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4290 | return try_to_wake_up(curr->private, mode, sync); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4291 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4292 | EXPORT_SYMBOL(default_wake_function); |
| 4293 | |
| 4294 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4295 | * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just |
| 4296 | * 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] | 4297 | * number) then we wake all the non-exclusive tasks and one exclusive task. |
| 4298 | * |
| 4299 | * 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] | 4300 | * 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] | 4301 | * zero in this (rare) case, and we handle it by continuing to scan the queue. |
| 4302 | */ |
| 4303 | static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, |
| 4304 | int nr_exclusive, int sync, void *key) |
| 4305 | { |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4306 | wait_queue_t *curr, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4307 | |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4308 | list_for_each_entry_safe(curr, next, &q->task_list, task_list) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4309 | unsigned flags = curr->flags; |
| 4310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4311 | if (curr->func(curr, mode, sync, key) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4312 | (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | break; |
| 4314 | } |
| 4315 | } |
| 4316 | |
| 4317 | /** |
| 4318 | * __wake_up - wake up threads blocked on a waitqueue. |
| 4319 | * @q: the waitqueue |
| 4320 | * @mode: which threads |
| 4321 | * @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] | 4322 | * @key: is directly passed to the wakeup function |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4324 | void __wake_up(wait_queue_head_t *q, unsigned int mode, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4325 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4326 | { |
| 4327 | unsigned long flags; |
| 4328 | |
| 4329 | spin_lock_irqsave(&q->lock, flags); |
| 4330 | __wake_up_common(q, mode, nr_exclusive, 0, key); |
| 4331 | spin_unlock_irqrestore(&q->lock, flags); |
| 4332 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4333 | EXPORT_SYMBOL(__wake_up); |
| 4334 | |
| 4335 | /* |
| 4336 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
| 4337 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4338 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4339 | { |
| 4340 | __wake_up_common(q, mode, 1, 0, NULL); |
| 4341 | } |
| 4342 | |
| 4343 | /** |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 4344 | * __wake_up_sync - wake up threads blocked on a waitqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | * @q: the waitqueue |
| 4346 | * @mode: which threads |
| 4347 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
| 4348 | * |
| 4349 | * The sync wakeup differs that the waker knows that it will schedule |
| 4350 | * away soon, so while the target thread will be woken up, it will not |
| 4351 | * be migrated to another CPU - ie. the two threads are 'synchronized' |
| 4352 | * with each other. This can prevent needless bouncing between CPUs. |
| 4353 | * |
| 4354 | * On UP it can prevent extra preemption. |
| 4355 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4356 | void |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4357 | __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] | 4358 | { |
| 4359 | unsigned long flags; |
| 4360 | int sync = 1; |
| 4361 | |
| 4362 | if (unlikely(!q)) |
| 4363 | return; |
| 4364 | |
| 4365 | if (unlikely(!nr_exclusive)) |
| 4366 | sync = 0; |
| 4367 | |
| 4368 | spin_lock_irqsave(&q->lock, flags); |
| 4369 | __wake_up_common(q, mode, nr_exclusive, sync, NULL); |
| 4370 | spin_unlock_irqrestore(&q->lock, flags); |
| 4371 | } |
| 4372 | EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */ |
| 4373 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4374 | void complete(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | { |
| 4376 | unsigned long flags; |
| 4377 | |
| 4378 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4379 | x->done++; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4380 | __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4381 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4382 | } |
| 4383 | EXPORT_SYMBOL(complete); |
| 4384 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4385 | void complete_all(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4386 | { |
| 4387 | unsigned long flags; |
| 4388 | |
| 4389 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4390 | x->done += UINT_MAX/2; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4391 | __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4392 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4393 | } |
| 4394 | EXPORT_SYMBOL(complete_all); |
| 4395 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4396 | static inline long __sched |
| 4397 | do_wait_for_common(struct completion *x, long timeout, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4398 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4399 | if (!x->done) { |
| 4400 | DECLARE_WAITQUEUE(wait, current); |
| 4401 | |
| 4402 | wait.flags |= WQ_FLAG_EXCLUSIVE; |
| 4403 | __add_wait_queue_tail(&x->wait, &wait); |
| 4404 | do { |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4405 | if ((state == TASK_INTERRUPTIBLE && |
| 4406 | signal_pending(current)) || |
| 4407 | (state == TASK_KILLABLE && |
| 4408 | fatal_signal_pending(current))) { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4409 | __remove_wait_queue(&x->wait, &wait); |
| 4410 | return -ERESTARTSYS; |
| 4411 | } |
| 4412 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4413 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4414 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4415 | spin_lock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4416 | if (!timeout) { |
| 4417 | __remove_wait_queue(&x->wait, &wait); |
| 4418 | return timeout; |
| 4419 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4420 | } while (!x->done); |
| 4421 | __remove_wait_queue(&x->wait, &wait); |
| 4422 | } |
| 4423 | x->done--; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4424 | return timeout; |
| 4425 | } |
| 4426 | |
| 4427 | static long __sched |
| 4428 | wait_for_common(struct completion *x, long timeout, int state) |
| 4429 | { |
| 4430 | might_sleep(); |
| 4431 | |
| 4432 | spin_lock_irq(&x->wait.lock); |
| 4433 | timeout = do_wait_for_common(x, timeout, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4434 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4435 | return timeout; |
| 4436 | } |
| 4437 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4438 | void __sched wait_for_completion(struct completion *x) |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4439 | { |
| 4440 | wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4441 | } |
| 4442 | EXPORT_SYMBOL(wait_for_completion); |
| 4443 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4444 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4445 | wait_for_completion_timeout(struct completion *x, unsigned long timeout) |
| 4446 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4447 | return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4448 | } |
| 4449 | EXPORT_SYMBOL(wait_for_completion_timeout); |
| 4450 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4451 | int __sched wait_for_completion_interruptible(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4452 | { |
Andi Kleen | 51e9799 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 4453 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE); |
| 4454 | if (t == -ERESTARTSYS) |
| 4455 | return t; |
| 4456 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4457 | } |
| 4458 | EXPORT_SYMBOL(wait_for_completion_interruptible); |
| 4459 | |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4460 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4461 | wait_for_completion_interruptible_timeout(struct completion *x, |
| 4462 | unsigned long timeout) |
| 4463 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4464 | return wait_for_common(x, timeout, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4465 | } |
| 4466 | EXPORT_SYMBOL(wait_for_completion_interruptible_timeout); |
| 4467 | |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4468 | int __sched wait_for_completion_killable(struct completion *x) |
| 4469 | { |
| 4470 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE); |
| 4471 | if (t == -ERESTARTSYS) |
| 4472 | return t; |
| 4473 | return 0; |
| 4474 | } |
| 4475 | EXPORT_SYMBOL(wait_for_completion_killable); |
| 4476 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4477 | static long __sched |
| 4478 | sleep_on_common(wait_queue_head_t *q, int state, long timeout) |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4479 | { |
| 4480 | unsigned long flags; |
| 4481 | wait_queue_t wait; |
| 4482 | |
| 4483 | init_waitqueue_entry(&wait, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4484 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4485 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4486 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4487 | spin_lock_irqsave(&q->lock, flags); |
| 4488 | __add_wait_queue(q, &wait); |
| 4489 | spin_unlock(&q->lock); |
| 4490 | timeout = schedule_timeout(timeout); |
| 4491 | spin_lock_irq(&q->lock); |
| 4492 | __remove_wait_queue(q, &wait); |
| 4493 | spin_unlock_irqrestore(&q->lock, flags); |
| 4494 | |
| 4495 | return timeout; |
| 4496 | } |
| 4497 | |
| 4498 | void __sched interruptible_sleep_on(wait_queue_head_t *q) |
| 4499 | { |
| 4500 | sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4501 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4502 | EXPORT_SYMBOL(interruptible_sleep_on); |
| 4503 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4504 | long __sched |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4505 | interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4506 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4507 | return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4509 | EXPORT_SYMBOL(interruptible_sleep_on_timeout); |
| 4510 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4511 | void __sched sleep_on(wait_queue_head_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4512 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4513 | sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4514 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4515 | EXPORT_SYMBOL(sleep_on); |
| 4516 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4517 | long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4518 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4519 | return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4520 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4521 | EXPORT_SYMBOL(sleep_on_timeout); |
| 4522 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4523 | #ifdef CONFIG_RT_MUTEXES |
| 4524 | |
| 4525 | /* |
| 4526 | * rt_mutex_setprio - set the current priority of a task |
| 4527 | * @p: task |
| 4528 | * @prio: prio value (kernel-internal form) |
| 4529 | * |
| 4530 | * This function changes the 'effective' priority of a task. It does |
| 4531 | * not touch ->normal_prio like __setscheduler(). |
| 4532 | * |
| 4533 | * Used by the rt_mutex code to implement priority inheritance logic. |
| 4534 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4535 | void rt_mutex_setprio(struct task_struct *p, int prio) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4536 | { |
| 4537 | unsigned long flags; |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4538 | int oldprio, on_rq, running; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4539 | struct rq *rq; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4540 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4541 | |
| 4542 | BUG_ON(prio < 0 || prio > MAX_PRIO); |
| 4543 | |
| 4544 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4545 | update_rq_clock(rq); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4546 | |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4547 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4548 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4549 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4550 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4551 | dequeue_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4552 | if (running) |
| 4553 | p->sched_class->put_prev_task(rq, p); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4554 | |
| 4555 | if (rt_prio(prio)) |
| 4556 | p->sched_class = &rt_sched_class; |
| 4557 | else |
| 4558 | p->sched_class = &fair_sched_class; |
| 4559 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4560 | p->prio = prio; |
| 4561 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4562 | if (running) |
| 4563 | p->sched_class->set_curr_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4564 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4565 | enqueue_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4566 | |
| 4567 | check_class_changed(rq, p, prev_class, oldprio, running); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4568 | } |
| 4569 | task_rq_unlock(rq, &flags); |
| 4570 | } |
| 4571 | |
| 4572 | #endif |
| 4573 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4574 | void set_user_nice(struct task_struct *p, long nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4575 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4576 | int old_prio, delta, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4577 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4578 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | |
| 4580 | if (TASK_NICE(p) == nice || nice < -20 || nice > 19) |
| 4581 | return; |
| 4582 | /* |
| 4583 | * We have to be careful, if called from sys_setpriority(), |
| 4584 | * the task might be in the middle of scheduling on another CPU. |
| 4585 | */ |
| 4586 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 4587 | update_rq_clock(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4588 | /* |
| 4589 | * The RT priorities are set via sched_setscheduler(), but we still |
| 4590 | * allow the 'normal' nice value to be set - but as expected |
| 4591 | * it wont have any effect on scheduling until the task is |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4592 | * SCHED_FIFO/SCHED_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4593 | */ |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4594 | if (task_has_rt_policy(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4595 | p->static_prio = NICE_TO_PRIO(nice); |
| 4596 | goto out_unlock; |
| 4597 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4598 | on_rq = p->se.on_rq; |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 4599 | if (on_rq) { |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4600 | dequeue_task(rq, p, 0); |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 4601 | dec_load(rq, p); |
| 4602 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4604 | p->static_prio = NICE_TO_PRIO(nice); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4605 | set_load_weight(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4606 | old_prio = p->prio; |
| 4607 | p->prio = effective_prio(p); |
| 4608 | delta = p->prio - old_prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4609 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4610 | if (on_rq) { |
Ingo Molnar | 8159f87 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4611 | enqueue_task(rq, p, 0); |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 4612 | inc_load(rq, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4613 | /* |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4614 | * If the task increased its priority or is running and |
| 4615 | * lowered its priority, then reschedule its CPU: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4616 | */ |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4617 | if (delta < 0 || (delta > 0 && task_running(rq, p))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | resched_task(rq->curr); |
| 4619 | } |
| 4620 | out_unlock: |
| 4621 | task_rq_unlock(rq, &flags); |
| 4622 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4623 | EXPORT_SYMBOL(set_user_nice); |
| 4624 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4625 | /* |
| 4626 | * can_nice - check if a task can reduce its nice value |
| 4627 | * @p: task |
| 4628 | * @nice: nice value |
| 4629 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4630 | int can_nice(const struct task_struct *p, const int nice) |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4631 | { |
Matt Mackall | 024f474 | 2005-08-18 11:24:19 -0700 | [diff] [blame] | 4632 | /* convert nice value [19,-20] to rlimit style value [1,40] */ |
| 4633 | int nice_rlim = 20 - nice; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4634 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4635 | return (nice_rlim <= p->signal->rlim[RLIMIT_NICE].rlim_cur || |
| 4636 | capable(CAP_SYS_NICE)); |
| 4637 | } |
| 4638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4639 | #ifdef __ARCH_WANT_SYS_NICE |
| 4640 | |
| 4641 | /* |
| 4642 | * sys_nice - change the priority of the current process. |
| 4643 | * @increment: priority increment |
| 4644 | * |
| 4645 | * sys_setpriority is a more generic, but much slower function that |
| 4646 | * does similar things. |
| 4647 | */ |
| 4648 | asmlinkage long sys_nice(int increment) |
| 4649 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4650 | long nice, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4651 | |
| 4652 | /* |
| 4653 | * Setpriority might change our priority at the same moment. |
| 4654 | * We don't have to worry. Conceptually one call occurs first |
| 4655 | * and we have a single winner. |
| 4656 | */ |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4657 | if (increment < -40) |
| 4658 | increment = -40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4659 | if (increment > 40) |
| 4660 | increment = 40; |
| 4661 | |
| 4662 | nice = PRIO_TO_NICE(current->static_prio) + increment; |
| 4663 | if (nice < -20) |
| 4664 | nice = -20; |
| 4665 | if (nice > 19) |
| 4666 | nice = 19; |
| 4667 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 4668 | if (increment < 0 && !can_nice(current, nice)) |
| 4669 | return -EPERM; |
| 4670 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4671 | retval = security_task_setnice(current, nice); |
| 4672 | if (retval) |
| 4673 | return retval; |
| 4674 | |
| 4675 | set_user_nice(current, nice); |
| 4676 | return 0; |
| 4677 | } |
| 4678 | |
| 4679 | #endif |
| 4680 | |
| 4681 | /** |
| 4682 | * task_prio - return the priority value of a given task. |
| 4683 | * @p: the task in question. |
| 4684 | * |
| 4685 | * This is the priority value as seen by users in /proc. |
| 4686 | * RT tasks are offset by -200. Normal tasks are centered |
| 4687 | * around 0, value goes from -16 to +15. |
| 4688 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4689 | int task_prio(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | { |
| 4691 | return p->prio - MAX_RT_PRIO; |
| 4692 | } |
| 4693 | |
| 4694 | /** |
| 4695 | * task_nice - return the nice value of a given task. |
| 4696 | * @p: the task in question. |
| 4697 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4698 | int task_nice(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4699 | { |
| 4700 | return TASK_NICE(p); |
| 4701 | } |
Pavel Roskin | 150d8be | 2008-03-05 16:56:37 -0500 | [diff] [blame] | 4702 | EXPORT_SYMBOL(task_nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4703 | |
| 4704 | /** |
| 4705 | * idle_cpu - is a given cpu idle currently? |
| 4706 | * @cpu: the processor in question. |
| 4707 | */ |
| 4708 | int idle_cpu(int cpu) |
| 4709 | { |
| 4710 | return cpu_curr(cpu) == cpu_rq(cpu)->idle; |
| 4711 | } |
| 4712 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4713 | /** |
| 4714 | * idle_task - return the idle task for a given cpu. |
| 4715 | * @cpu: the processor in question. |
| 4716 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4717 | struct task_struct *idle_task(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4718 | { |
| 4719 | return cpu_rq(cpu)->idle; |
| 4720 | } |
| 4721 | |
| 4722 | /** |
| 4723 | * find_process_by_pid - find a process with a matching PID value. |
| 4724 | * @pid: the pid in question. |
| 4725 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 4726 | static struct task_struct *find_process_by_pid(pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4727 | { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 4728 | return pid ? find_task_by_vpid(pid) : current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | } |
| 4730 | |
| 4731 | /* Actually do priority change: must hold rq lock. */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4732 | static void |
| 4733 | __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4734 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4735 | BUG_ON(p->se.on_rq); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4736 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4737 | p->policy = policy; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4738 | switch (p->policy) { |
| 4739 | case SCHED_NORMAL: |
| 4740 | case SCHED_BATCH: |
| 4741 | case SCHED_IDLE: |
| 4742 | p->sched_class = &fair_sched_class; |
| 4743 | break; |
| 4744 | case SCHED_FIFO: |
| 4745 | case SCHED_RR: |
| 4746 | p->sched_class = &rt_sched_class; |
| 4747 | break; |
| 4748 | } |
| 4749 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4750 | p->rt_priority = prio; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4751 | p->normal_prio = normal_prio(p); |
| 4752 | /* we are holding p->pi_lock already */ |
| 4753 | p->prio = rt_mutex_getprio(p); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4754 | set_load_weight(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4755 | } |
| 4756 | |
| 4757 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4758 | * 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] | 4759 | * @p: the task in question. |
| 4760 | * @policy: new policy. |
| 4761 | * @param: structure containing the new RT priority. |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4762 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 4763 | * NOTE that the task may be already dead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4764 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4765 | int sched_setscheduler(struct task_struct *p, int policy, |
| 4766 | struct sched_param *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4767 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4768 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 | unsigned long flags; |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4770 | const struct sched_class *prev_class = p->sched_class; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4771 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4772 | |
Steven Rostedt | 66e5393 | 2006-06-27 02:54:44 -0700 | [diff] [blame] | 4773 | /* may grab non-irq protected spin_locks */ |
| 4774 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4775 | recheck: |
| 4776 | /* double check policy once rq lock held */ |
| 4777 | if (policy < 0) |
| 4778 | policy = oldpolicy = p->policy; |
| 4779 | else if (policy != SCHED_FIFO && policy != SCHED_RR && |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4780 | policy != SCHED_NORMAL && policy != SCHED_BATCH && |
| 4781 | policy != SCHED_IDLE) |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 4782 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4783 | /* |
| 4784 | * Valid priorities for SCHED_FIFO and SCHED_RR are |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4785 | * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL, |
| 4786 | * SCHED_BATCH and SCHED_IDLE is 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4787 | */ |
| 4788 | if (param->sched_priority < 0 || |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4789 | (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) || |
Steven Rostedt | d46523e | 2005-07-25 16:28:39 -0400 | [diff] [blame] | 4790 | (!p->mm && param->sched_priority > MAX_RT_PRIO-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4791 | return -EINVAL; |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4792 | if (rt_policy(policy) != (param->sched_priority != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4793 | return -EINVAL; |
| 4794 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4795 | /* |
| 4796 | * Allow unprivileged RT tasks to decrease priority: |
| 4797 | */ |
| 4798 | if (!capable(CAP_SYS_NICE)) { |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4799 | if (rt_policy(policy)) { |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4800 | unsigned long rlim_rtprio; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4801 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4802 | if (!lock_task_sighand(p, &flags)) |
| 4803 | return -ESRCH; |
| 4804 | rlim_rtprio = p->signal->rlim[RLIMIT_RTPRIO].rlim_cur; |
| 4805 | unlock_task_sighand(p, &flags); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4806 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4807 | /* can't set/change the rt policy */ |
| 4808 | if (policy != p->policy && !rlim_rtprio) |
| 4809 | return -EPERM; |
| 4810 | |
| 4811 | /* can't increase priority */ |
| 4812 | if (param->sched_priority > p->rt_priority && |
| 4813 | param->sched_priority > rlim_rtprio) |
| 4814 | return -EPERM; |
| 4815 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4816 | /* |
| 4817 | * Like positive nice levels, dont allow tasks to |
| 4818 | * move out of SCHED_IDLE either: |
| 4819 | */ |
| 4820 | if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) |
| 4821 | return -EPERM; |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 4822 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 4823 | /* can't change other user's priorities */ |
| 4824 | if ((current->euid != p->euid) && |
| 4825 | (current->euid != p->uid)) |
| 4826 | return -EPERM; |
| 4827 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4828 | |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 4829 | #ifdef CONFIG_RT_GROUP_SCHED |
| 4830 | /* |
| 4831 | * Do not allow realtime tasks into groups that have no runtime |
| 4832 | * assigned. |
| 4833 | */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 4834 | if (rt_policy(policy) && task_group(p)->rt_bandwidth.rt_runtime == 0) |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 4835 | return -EPERM; |
| 4836 | #endif |
| 4837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4838 | retval = security_task_setscheduler(p, policy, param); |
| 4839 | if (retval) |
| 4840 | return retval; |
| 4841 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4842 | * make sure no PI-waiters arrive (or leave) while we are |
| 4843 | * changing the priority of the task: |
| 4844 | */ |
| 4845 | spin_lock_irqsave(&p->pi_lock, flags); |
| 4846 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4847 | * To be able to change p->policy safely, the apropriate |
| 4848 | * runqueue lock must be held. |
| 4849 | */ |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4850 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4851 | /* recheck policy now with rq lock held */ |
| 4852 | if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) { |
| 4853 | policy = oldpolicy = -1; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4854 | __task_rq_unlock(rq); |
| 4855 | spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4856 | goto recheck; |
| 4857 | } |
Ingo Molnar | 2daa357 | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 4858 | update_rq_clock(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4859 | on_rq = p->se.on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4860 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4861 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4862 | deactivate_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4863 | if (running) |
| 4864 | p->sched_class->put_prev_task(rq, p); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4866 | oldprio = p->prio; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4867 | __setscheduler(rq, p, policy, param->sched_priority); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4868 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4869 | if (running) |
| 4870 | p->sched_class->set_curr_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4871 | if (on_rq) { |
| 4872 | activate_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4873 | |
| 4874 | check_class_changed(rq, p, prev_class, oldprio, running); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4875 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4876 | __task_rq_unlock(rq); |
| 4877 | spin_unlock_irqrestore(&p->pi_lock, flags); |
| 4878 | |
Thomas Gleixner | 95e02ca | 2006-06-27 02:55:02 -0700 | [diff] [blame] | 4879 | rt_mutex_adjust_pi(p); |
| 4880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4881 | return 0; |
| 4882 | } |
| 4883 | EXPORT_SYMBOL_GPL(sched_setscheduler); |
| 4884 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4885 | static int |
| 4886 | 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] | 4887 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4888 | struct sched_param lparam; |
| 4889 | struct task_struct *p; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4890 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4891 | |
| 4892 | if (!param || pid < 0) |
| 4893 | return -EINVAL; |
| 4894 | if (copy_from_user(&lparam, param, sizeof(struct sched_param))) |
| 4895 | return -EFAULT; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4896 | |
| 4897 | rcu_read_lock(); |
| 4898 | retval = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4899 | p = find_process_by_pid(pid); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 4900 | if (p != NULL) |
| 4901 | retval = sched_setscheduler(p, policy, &lparam); |
| 4902 | rcu_read_unlock(); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4903 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4904 | return retval; |
| 4905 | } |
| 4906 | |
| 4907 | /** |
| 4908 | * sys_sched_setscheduler - set/change the scheduler policy and RT priority |
| 4909 | * @pid: the pid in question. |
| 4910 | * @policy: new policy. |
| 4911 | * @param: structure containing the new RT priority. |
| 4912 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4913 | asmlinkage long |
| 4914 | 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] | 4915 | { |
Jason Baron | c21761f | 2006-01-18 17:43:03 -0800 | [diff] [blame] | 4916 | /* negative values for policy are not valid */ |
| 4917 | if (policy < 0) |
| 4918 | return -EINVAL; |
| 4919 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4920 | return do_sched_setscheduler(pid, policy, param); |
| 4921 | } |
| 4922 | |
| 4923 | /** |
| 4924 | * sys_sched_setparam - set/change the RT priority of a thread |
| 4925 | * @pid: the pid in question. |
| 4926 | * @param: structure containing the new RT priority. |
| 4927 | */ |
| 4928 | asmlinkage long sys_sched_setparam(pid_t pid, struct sched_param __user *param) |
| 4929 | { |
| 4930 | return do_sched_setscheduler(pid, -1, param); |
| 4931 | } |
| 4932 | |
| 4933 | /** |
| 4934 | * sys_sched_getscheduler - get the policy (scheduling class) of a thread |
| 4935 | * @pid: the pid in question. |
| 4936 | */ |
| 4937 | asmlinkage long sys_sched_getscheduler(pid_t pid) |
| 4938 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4939 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4940 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4941 | |
| 4942 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4943 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4944 | |
| 4945 | retval = -ESRCH; |
| 4946 | read_lock(&tasklist_lock); |
| 4947 | p = find_process_by_pid(pid); |
| 4948 | if (p) { |
| 4949 | retval = security_task_getscheduler(p); |
| 4950 | if (!retval) |
| 4951 | retval = p->policy; |
| 4952 | } |
| 4953 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4954 | return retval; |
| 4955 | } |
| 4956 | |
| 4957 | /** |
| 4958 | * sys_sched_getscheduler - get the RT priority of a thread |
| 4959 | * @pid: the pid in question. |
| 4960 | * @param: structure containing the RT priority. |
| 4961 | */ |
| 4962 | asmlinkage long sys_sched_getparam(pid_t pid, struct sched_param __user *param) |
| 4963 | { |
| 4964 | struct sched_param lp; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4965 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4966 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4967 | |
| 4968 | if (!param || pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4969 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4970 | |
| 4971 | read_lock(&tasklist_lock); |
| 4972 | p = find_process_by_pid(pid); |
| 4973 | retval = -ESRCH; |
| 4974 | if (!p) |
| 4975 | goto out_unlock; |
| 4976 | |
| 4977 | retval = security_task_getscheduler(p); |
| 4978 | if (retval) |
| 4979 | goto out_unlock; |
| 4980 | |
| 4981 | lp.sched_priority = p->rt_priority; |
| 4982 | read_unlock(&tasklist_lock); |
| 4983 | |
| 4984 | /* |
| 4985 | * This one might sleep, we cannot do it with a spinlock held ... |
| 4986 | */ |
| 4987 | retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0; |
| 4988 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | return retval; |
| 4990 | |
| 4991 | out_unlock: |
| 4992 | read_unlock(&tasklist_lock); |
| 4993 | return retval; |
| 4994 | } |
| 4995 | |
Mike Travis | b53e921 | 2008-04-04 18:11:08 -0700 | [diff] [blame] | 4996 | long sched_setaffinity(pid_t pid, const cpumask_t *in_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4997 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4998 | cpumask_t cpus_allowed; |
Mike Travis | b53e921 | 2008-04-04 18:11:08 -0700 | [diff] [blame] | 4999 | cpumask_t new_mask = *in_mask; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5000 | struct task_struct *p; |
| 5001 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5003 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5004 | read_lock(&tasklist_lock); |
| 5005 | |
| 5006 | p = find_process_by_pid(pid); |
| 5007 | if (!p) { |
| 5008 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5009 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5010 | return -ESRCH; |
| 5011 | } |
| 5012 | |
| 5013 | /* |
| 5014 | * It is not safe to call set_cpus_allowed with the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5015 | * tasklist_lock held. We will bump the task_struct's |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5016 | * usage count and then drop tasklist_lock. |
| 5017 | */ |
| 5018 | get_task_struct(p); |
| 5019 | read_unlock(&tasklist_lock); |
| 5020 | |
| 5021 | retval = -EPERM; |
| 5022 | if ((current->euid != p->euid) && (current->euid != p->uid) && |
| 5023 | !capable(CAP_SYS_NICE)) |
| 5024 | goto out_unlock; |
| 5025 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 5026 | retval = security_task_setscheduler(p, 0, NULL); |
| 5027 | if (retval) |
| 5028 | goto out_unlock; |
| 5029 | |
Mike Travis | f9a86fc | 2008-04-04 18:11:07 -0700 | [diff] [blame] | 5030 | cpuset_cpus_allowed(p, &cpus_allowed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5031 | cpus_and(new_mask, new_mask, cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5032 | again: |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 5033 | retval = set_cpus_allowed_ptr(p, &new_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5034 | |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5035 | if (!retval) { |
Mike Travis | f9a86fc | 2008-04-04 18:11:07 -0700 | [diff] [blame] | 5036 | cpuset_cpus_allowed(p, &cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5037 | if (!cpus_subset(new_mask, cpus_allowed)) { |
| 5038 | /* |
| 5039 | * We must have raced with a concurrent cpuset |
| 5040 | * update. Just reset the cpus_allowed to the |
| 5041 | * cpuset's cpus_allowed |
| 5042 | */ |
| 5043 | new_mask = cpus_allowed; |
| 5044 | goto again; |
| 5045 | } |
| 5046 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5047 | out_unlock: |
| 5048 | put_task_struct(p); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5049 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5050 | return retval; |
| 5051 | } |
| 5052 | |
| 5053 | static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len, |
| 5054 | cpumask_t *new_mask) |
| 5055 | { |
| 5056 | if (len < sizeof(cpumask_t)) { |
| 5057 | memset(new_mask, 0, sizeof(cpumask_t)); |
| 5058 | } else if (len > sizeof(cpumask_t)) { |
| 5059 | len = sizeof(cpumask_t); |
| 5060 | } |
| 5061 | return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0; |
| 5062 | } |
| 5063 | |
| 5064 | /** |
| 5065 | * sys_sched_setaffinity - set the cpu affinity of a process |
| 5066 | * @pid: pid of the process |
| 5067 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 5068 | * @user_mask_ptr: user-space pointer to the new cpu mask |
| 5069 | */ |
| 5070 | asmlinkage long sys_sched_setaffinity(pid_t pid, unsigned int len, |
| 5071 | unsigned long __user *user_mask_ptr) |
| 5072 | { |
| 5073 | cpumask_t new_mask; |
| 5074 | int retval; |
| 5075 | |
| 5076 | retval = get_user_cpu_mask(user_mask_ptr, len, &new_mask); |
| 5077 | if (retval) |
| 5078 | return retval; |
| 5079 | |
Mike Travis | b53e921 | 2008-04-04 18:11:08 -0700 | [diff] [blame] | 5080 | return sched_setaffinity(pid, &new_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5081 | } |
| 5082 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5083 | long sched_getaffinity(pid_t pid, cpumask_t *mask) |
| 5084 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5085 | struct task_struct *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5086 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5087 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5088 | get_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | read_lock(&tasklist_lock); |
| 5090 | |
| 5091 | retval = -ESRCH; |
| 5092 | p = find_process_by_pid(pid); |
| 5093 | if (!p) |
| 5094 | goto out_unlock; |
| 5095 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 5096 | retval = security_task_getscheduler(p); |
| 5097 | if (retval) |
| 5098 | goto out_unlock; |
| 5099 | |
Jack Steiner | 2f7016d | 2006-02-01 03:05:18 -0800 | [diff] [blame] | 5100 | cpus_and(*mask, p->cpus_allowed, cpu_online_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5101 | |
| 5102 | out_unlock: |
| 5103 | read_unlock(&tasklist_lock); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5104 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | |
Ulrich Drepper | 9531b62 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5106 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5107 | } |
| 5108 | |
| 5109 | /** |
| 5110 | * sys_sched_getaffinity - get the cpu affinity of a process |
| 5111 | * @pid: pid of the process |
| 5112 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 5113 | * @user_mask_ptr: user-space pointer to hold the current cpu mask |
| 5114 | */ |
| 5115 | asmlinkage long sys_sched_getaffinity(pid_t pid, unsigned int len, |
| 5116 | unsigned long __user *user_mask_ptr) |
| 5117 | { |
| 5118 | int ret; |
| 5119 | cpumask_t mask; |
| 5120 | |
| 5121 | if (len < sizeof(cpumask_t)) |
| 5122 | return -EINVAL; |
| 5123 | |
| 5124 | ret = sched_getaffinity(pid, &mask); |
| 5125 | if (ret < 0) |
| 5126 | return ret; |
| 5127 | |
| 5128 | if (copy_to_user(user_mask_ptr, &mask, sizeof(cpumask_t))) |
| 5129 | return -EFAULT; |
| 5130 | |
| 5131 | return sizeof(cpumask_t); |
| 5132 | } |
| 5133 | |
| 5134 | /** |
| 5135 | * sys_sched_yield - yield the current processor to other threads. |
| 5136 | * |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5137 | * This function yields the current CPU to other tasks. If there are no |
| 5138 | * other threads running on this CPU then this function will return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5139 | */ |
| 5140 | asmlinkage long sys_sched_yield(void) |
| 5141 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5142 | struct rq *rq = this_rq_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5143 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 5144 | schedstat_inc(rq, yld_count); |
Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5145 | current->sched_class->yield_task(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5146 | |
| 5147 | /* |
| 5148 | * Since we are going to call schedule() anyway, there's |
| 5149 | * no need to preempt or enable interrupts: |
| 5150 | */ |
| 5151 | __release(rq->lock); |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 5152 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | _raw_spin_unlock(&rq->lock); |
| 5154 | preempt_enable_no_resched(); |
| 5155 | |
| 5156 | schedule(); |
| 5157 | |
| 5158 | return 0; |
| 5159 | } |
| 5160 | |
Andrew Morton | e7b3840 | 2006-06-30 01:56:00 -0700 | [diff] [blame] | 5161 | static void __cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5162 | { |
Ingo Molnar | 8e0a43d | 2006-06-23 02:05:23 -0700 | [diff] [blame] | 5163 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 5164 | __might_sleep(__FILE__, __LINE__); |
| 5165 | #endif |
Ingo Molnar | 5bbcfd9 | 2005-07-07 17:57:04 -0700 | [diff] [blame] | 5166 | /* |
| 5167 | * The BKS might be reacquired before we have dropped |
| 5168 | * PREEMPT_ACTIVE, which could trigger a second |
| 5169 | * cond_resched() call. |
| 5170 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5171 | do { |
| 5172 | add_preempt_count(PREEMPT_ACTIVE); |
| 5173 | schedule(); |
| 5174 | sub_preempt_count(PREEMPT_ACTIVE); |
| 5175 | } while (need_resched()); |
| 5176 | } |
| 5177 | |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5178 | int __sched _cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5179 | { |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 5180 | if (need_resched() && !(preempt_count() & PREEMPT_ACTIVE) && |
| 5181 | system_state == SYSTEM_RUNNING) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5182 | __cond_resched(); |
| 5183 | return 1; |
| 5184 | } |
| 5185 | return 0; |
| 5186 | } |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5187 | EXPORT_SYMBOL(_cond_resched); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5188 | |
| 5189 | /* |
| 5190 | * cond_resched_lock() - if a reschedule is pending, drop the given lock, |
| 5191 | * call schedule, and on return reacquire the lock. |
| 5192 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5193 | * 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] | 5194 | * operations here to prevent schedule() from being called twice (once via |
| 5195 | * spin_unlock(), once by hand). |
| 5196 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5197 | int cond_resched_lock(spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5198 | { |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5199 | int resched = need_resched() && system_state == SYSTEM_RUNNING; |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5200 | int ret = 0; |
| 5201 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5202 | if (spin_needbreak(lock) || resched) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5203 | spin_unlock(lock); |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5204 | if (resched && need_resched()) |
| 5205 | __cond_resched(); |
| 5206 | else |
| 5207 | cpu_relax(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5208 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5209 | spin_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5210 | } |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5211 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5212 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5213 | EXPORT_SYMBOL(cond_resched_lock); |
| 5214 | |
| 5215 | int __sched cond_resched_softirq(void) |
| 5216 | { |
| 5217 | BUG_ON(!in_softirq()); |
| 5218 | |
Ingo Molnar | 9414232 | 2006-12-29 16:48:13 -0800 | [diff] [blame] | 5219 | if (need_resched() && system_state == SYSTEM_RUNNING) { |
Thomas Gleixner | 98d82567 | 2007-05-23 13:58:18 -0700 | [diff] [blame] | 5220 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5221 | __cond_resched(); |
| 5222 | local_bh_disable(); |
| 5223 | return 1; |
| 5224 | } |
| 5225 | return 0; |
| 5226 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5227 | EXPORT_SYMBOL(cond_resched_softirq); |
| 5228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5229 | /** |
| 5230 | * yield - yield the current processor to other threads. |
| 5231 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 5232 | * This is a shortcut for kernel-space yielding - it marks the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5233 | * thread runnable and calls sys_sched_yield(). |
| 5234 | */ |
| 5235 | void __sched yield(void) |
| 5236 | { |
| 5237 | set_current_state(TASK_RUNNING); |
| 5238 | sys_sched_yield(); |
| 5239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | EXPORT_SYMBOL(yield); |
| 5241 | |
| 5242 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5243 | * 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] | 5244 | * that process accounting knows that this is a task in IO wait state. |
| 5245 | * |
| 5246 | * But don't do that if it is a deliberate, throttling IO wait (this task |
| 5247 | * has set its backing_dev_info: the queue against which it should throttle) |
| 5248 | */ |
| 5249 | void __sched io_schedule(void) |
| 5250 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5251 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5252 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5253 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5254 | atomic_inc(&rq->nr_iowait); |
| 5255 | schedule(); |
| 5256 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5257 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5258 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5259 | EXPORT_SYMBOL(io_schedule); |
| 5260 | |
| 5261 | long __sched io_schedule_timeout(long timeout) |
| 5262 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5263 | struct rq *rq = &__raw_get_cpu_var(runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5264 | long ret; |
| 5265 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5266 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5267 | atomic_inc(&rq->nr_iowait); |
| 5268 | ret = schedule_timeout(timeout); |
| 5269 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5270 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5271 | return ret; |
| 5272 | } |
| 5273 | |
| 5274 | /** |
| 5275 | * sys_sched_get_priority_max - return maximum RT priority. |
| 5276 | * @policy: scheduling class. |
| 5277 | * |
| 5278 | * this syscall returns the maximum rt_priority that can be used |
| 5279 | * by a given scheduling class. |
| 5280 | */ |
| 5281 | asmlinkage long sys_sched_get_priority_max(int policy) |
| 5282 | { |
| 5283 | int ret = -EINVAL; |
| 5284 | |
| 5285 | switch (policy) { |
| 5286 | case SCHED_FIFO: |
| 5287 | case SCHED_RR: |
| 5288 | ret = MAX_USER_RT_PRIO-1; |
| 5289 | break; |
| 5290 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5291 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5292 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5293 | ret = 0; |
| 5294 | break; |
| 5295 | } |
| 5296 | return ret; |
| 5297 | } |
| 5298 | |
| 5299 | /** |
| 5300 | * sys_sched_get_priority_min - return minimum RT priority. |
| 5301 | * @policy: scheduling class. |
| 5302 | * |
| 5303 | * this syscall returns the minimum rt_priority that can be used |
| 5304 | * by a given scheduling class. |
| 5305 | */ |
| 5306 | asmlinkage long sys_sched_get_priority_min(int policy) |
| 5307 | { |
| 5308 | int ret = -EINVAL; |
| 5309 | |
| 5310 | switch (policy) { |
| 5311 | case SCHED_FIFO: |
| 5312 | case SCHED_RR: |
| 5313 | ret = 1; |
| 5314 | break; |
| 5315 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5316 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5317 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5318 | ret = 0; |
| 5319 | } |
| 5320 | return ret; |
| 5321 | } |
| 5322 | |
| 5323 | /** |
| 5324 | * sys_sched_rr_get_interval - return the default timeslice of a process. |
| 5325 | * @pid: pid of the process. |
| 5326 | * @interval: userspace pointer to the timeslice value. |
| 5327 | * |
| 5328 | * this syscall writes the default timeslice value of a given process |
| 5329 | * into the user-space timespec buffer. A value of '0' means infinity. |
| 5330 | */ |
| 5331 | asmlinkage |
| 5332 | long sys_sched_rr_get_interval(pid_t pid, struct timespec __user *interval) |
| 5333 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5334 | struct task_struct *p; |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5335 | unsigned int time_slice; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5336 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5337 | struct timespec t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5338 | |
| 5339 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5340 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5341 | |
| 5342 | retval = -ESRCH; |
| 5343 | read_lock(&tasklist_lock); |
| 5344 | p = find_process_by_pid(pid); |
| 5345 | if (!p) |
| 5346 | goto out_unlock; |
| 5347 | |
| 5348 | retval = security_task_getscheduler(p); |
| 5349 | if (retval) |
| 5350 | goto out_unlock; |
| 5351 | |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5352 | /* |
| 5353 | * Time slice is 0 for SCHED_FIFO tasks and for SCHED_OTHER |
| 5354 | * tasks that are on an otherwise idle runqueue: |
| 5355 | */ |
| 5356 | time_slice = 0; |
| 5357 | if (p->policy == SCHED_RR) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5358 | time_slice = DEF_TIMESLICE; |
Miao Xie | 1868f95 | 2008-03-07 09:35:06 +0800 | [diff] [blame] | 5359 | } else if (p->policy != SCHED_FIFO) { |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5360 | struct sched_entity *se = &p->se; |
| 5361 | unsigned long flags; |
| 5362 | struct rq *rq; |
| 5363 | |
| 5364 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | 7703493 | 2007-12-04 17:04:39 +0100 | [diff] [blame] | 5365 | if (rq->cfs.load.weight) |
| 5366 | time_slice = NS_TO_JIFFIES(sched_slice(&rq->cfs, se)); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5367 | task_rq_unlock(rq, &flags); |
| 5368 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5369 | read_unlock(&tasklist_lock); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5370 | jiffies_to_timespec(time_slice, &t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5371 | retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5372 | return retval; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5374 | out_unlock: |
| 5375 | read_unlock(&tasklist_lock); |
| 5376 | return retval; |
| 5377 | } |
| 5378 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5379 | static const char stat_nam[] = "RSDTtZX"; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5380 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5381 | void sched_show_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5382 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5383 | unsigned long free = 0; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5384 | unsigned state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5386 | state = p->state ? __ffs(p->state) + 1 : 0; |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5387 | printk(KERN_INFO "%-13.13s %c", p->comm, |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5388 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5389 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5390 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5391 | printk(KERN_CONT " running "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5392 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5393 | printk(KERN_CONT " %08lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5394 | #else |
| 5395 | if (state == TASK_RUNNING) |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5396 | printk(KERN_CONT " running task "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5397 | else |
Ingo Molnar | cc4ea79 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 5398 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5399 | #endif |
| 5400 | #ifdef CONFIG_DEBUG_STACK_USAGE |
| 5401 | { |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5402 | unsigned long *n = end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5403 | while (!*n) |
| 5404 | n++; |
Al Viro | 10ebffd | 2005-11-13 16:06:56 -0800 | [diff] [blame] | 5405 | free = (unsigned long)n - (unsigned long)end_of_stack(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5406 | } |
| 5407 | #endif |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 5408 | printk(KERN_CONT "%5lu %5d %6d\n", free, |
Roland McGrath | fcfd50a | 2008-01-09 00:03:23 -0800 | [diff] [blame] | 5409 | task_pid_nr(p), task_pid_nr(p->real_parent)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5410 | |
Nick Piggin | 5fb5e6d | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5411 | show_stack(p, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5412 | } |
| 5413 | |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5414 | void show_state_filter(unsigned long state_filter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5415 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5416 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5418 | #if BITS_PER_LONG == 32 |
| 5419 | printk(KERN_INFO |
| 5420 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5421 | #else |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5422 | printk(KERN_INFO |
| 5423 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5424 | #endif |
| 5425 | read_lock(&tasklist_lock); |
| 5426 | do_each_thread(g, p) { |
| 5427 | /* |
| 5428 | * reset the NMI-timeout, listing all files on a slow |
| 5429 | * console might take alot of time: |
| 5430 | */ |
| 5431 | touch_nmi_watchdog(); |
Ingo Molnar | 39bc89f | 2007-04-25 20:50:03 -0700 | [diff] [blame] | 5432 | if (!state_filter || (p->state & state_filter)) |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5433 | sched_show_task(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5434 | } while_each_thread(g, p); |
| 5435 | |
Jeremy Fitzhardinge | 04c9167 | 2007-05-08 00:28:05 -0700 | [diff] [blame] | 5436 | touch_all_softlockup_watchdogs(); |
| 5437 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5438 | #ifdef CONFIG_SCHED_DEBUG |
| 5439 | sysrq_sched_debug_show(); |
| 5440 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5441 | read_unlock(&tasklist_lock); |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5442 | /* |
| 5443 | * Only show locks if all tasks are dumped: |
| 5444 | */ |
| 5445 | if (state_filter == -1) |
| 5446 | debug_show_all_locks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5447 | } |
| 5448 | |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5449 | void __cpuinit init_idle_bootup_task(struct task_struct *idle) |
| 5450 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5451 | idle->sched_class = &idle_sched_class; |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5452 | } |
| 5453 | |
Ingo Molnar | f340c0d | 2005-06-28 16:40:42 +0200 | [diff] [blame] | 5454 | /** |
| 5455 | * init_idle - set up an idle thread for a given CPU |
| 5456 | * @idle: task in question |
| 5457 | * @cpu: cpu the idle task belongs to |
| 5458 | * |
| 5459 | * NOTE: this function does not set the idle thread's NEED_RESCHED |
| 5460 | * flag, to make booting more robust. |
| 5461 | */ |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 5462 | void __cpuinit init_idle(struct task_struct *idle, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5463 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5464 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5465 | unsigned long flags; |
| 5466 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5467 | __sched_fork(idle); |
| 5468 | idle->se.exec_start = sched_clock(); |
| 5469 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5470 | idle->prio = idle->normal_prio = MAX_PRIO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5471 | idle->cpus_allowed = cpumask_of_cpu(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5472 | __set_task_cpu(idle, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5473 | |
| 5474 | spin_lock_irqsave(&rq->lock, flags); |
| 5475 | rq->curr = rq->idle = idle; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 5476 | #if defined(CONFIG_SMP) && defined(__ARCH_WANT_UNLOCKED_CTXSW) |
| 5477 | idle->oncpu = 1; |
| 5478 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5479 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5480 | |
| 5481 | /* Set the preempt count _outside_ the spinlocks! */ |
Linus Torvalds | 8e3e076 | 2008-05-10 20:58:02 -0700 | [diff] [blame] | 5482 | #if defined(CONFIG_PREEMPT) |
| 5483 | task_thread_info(idle)->preempt_count = (idle->lock_depth >= 0); |
| 5484 | #else |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 5485 | task_thread_info(idle)->preempt_count = 0; |
Linus Torvalds | 8e3e076 | 2008-05-10 20:58:02 -0700 | [diff] [blame] | 5486 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5487 | /* |
| 5488 | * The idle tasks have their own, simple scheduling class: |
| 5489 | */ |
| 5490 | idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5491 | } |
| 5492 | |
| 5493 | /* |
| 5494 | * In a system that switches off the HZ timer nohz_cpu_mask |
| 5495 | * indicates which cpus entered this state. This is used |
| 5496 | * in the rcu update to wait only for active cpus. For system |
| 5497 | * which do not switch off the HZ timer nohz_cpu_mask should |
| 5498 | * always be CPU_MASK_NONE. |
| 5499 | */ |
| 5500 | cpumask_t nohz_cpu_mask = CPU_MASK_NONE; |
| 5501 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5502 | /* |
| 5503 | * Increase the granularity value when there are more CPUs, |
| 5504 | * because with more CPUs the 'effective latency' as visible |
| 5505 | * to users decreases. But the relationship is not linear, |
| 5506 | * so pick a second-best guess by going with the log2 of the |
| 5507 | * number of CPUs. |
| 5508 | * |
| 5509 | * This idea comes from the SD scheduler of Con Kolivas: |
| 5510 | */ |
| 5511 | static inline void sched_init_granularity(void) |
| 5512 | { |
| 5513 | unsigned int factor = 1 + ilog2(num_online_cpus()); |
| 5514 | const unsigned long limit = 200000000; |
| 5515 | |
| 5516 | sysctl_sched_min_granularity *= factor; |
| 5517 | if (sysctl_sched_min_granularity > limit) |
| 5518 | sysctl_sched_min_granularity = limit; |
| 5519 | |
| 5520 | sysctl_sched_latency *= factor; |
| 5521 | if (sysctl_sched_latency > limit) |
| 5522 | sysctl_sched_latency = limit; |
| 5523 | |
| 5524 | sysctl_sched_wakeup_granularity *= factor; |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 5525 | } |
| 5526 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5527 | #ifdef CONFIG_SMP |
| 5528 | /* |
| 5529 | * This is how migration works: |
| 5530 | * |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5531 | * 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] | 5532 | * runqueue and wake up that CPU's migration thread. |
| 5533 | * 2) we down() the locked semaphore => thread blocks. |
| 5534 | * 3) migration thread wakes up (implicitly it forces the migrated |
| 5535 | * thread off the CPU) |
| 5536 | * 4) it gets the migration request and checks whether the migrated |
| 5537 | * task is still in the wrong runqueue. |
| 5538 | * 5) if it's in the wrong runqueue then the migration thread removes |
| 5539 | * it and puts it into the right queue. |
| 5540 | * 6) migration thread up()s the semaphore. |
| 5541 | * 7) we wake up and the migration is done. |
| 5542 | */ |
| 5543 | |
| 5544 | /* |
| 5545 | * Change a given task's CPU affinity. Migrate the thread to a |
| 5546 | * proper CPU and schedule it away if the CPU it's executing on |
| 5547 | * is removed from the allowed bitmask. |
| 5548 | * |
| 5549 | * NOTE: the caller must have a valid reference to the task, the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5550 | * task must not exit() & deallocate itself prematurely. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5551 | * call is not atomic; no spinlocks may be held. |
| 5552 | */ |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5553 | int set_cpus_allowed_ptr(struct task_struct *p, const cpumask_t *new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5554 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5555 | struct migration_req req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5556 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5557 | struct rq *rq; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5558 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5559 | |
| 5560 | rq = task_rq_lock(p, &flags); |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5561 | if (!cpus_intersects(*new_mask, cpu_online_map)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5562 | ret = -EINVAL; |
| 5563 | goto out; |
| 5564 | } |
| 5565 | |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5566 | if (p->sched_class->set_cpus_allowed) |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5567 | p->sched_class->set_cpus_allowed(p, new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5568 | else { |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5569 | p->cpus_allowed = *new_mask; |
| 5570 | p->rt.nr_cpus_allowed = cpus_weight(*new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 5571 | } |
| 5572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5573 | /* Can the task run on the task's current CPU? If so, we're done */ |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5574 | if (cpu_isset(task_cpu(p), *new_mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5575 | goto out; |
| 5576 | |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5577 | if (migrate_task(p, any_online_cpu(*new_mask), &req)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5578 | /* Need help from migration thread: drop lock and wait. */ |
| 5579 | task_rq_unlock(rq, &flags); |
| 5580 | wake_up_process(rq->migration_thread); |
| 5581 | wait_for_completion(&req.done); |
| 5582 | tlb_migrate_finish(p->mm); |
| 5583 | return 0; |
| 5584 | } |
| 5585 | out: |
| 5586 | task_rq_unlock(rq, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5587 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5588 | return ret; |
| 5589 | } |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 5590 | EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5591 | |
| 5592 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5593 | * 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] | 5594 | * this because either it can't run here any more (set_cpus_allowed() |
| 5595 | * away from this CPU, or CPU going down), or because we're |
| 5596 | * attempting to rebalance this task on exec (sched_exec). |
| 5597 | * |
| 5598 | * So we race with normal scheduler movements, but that's OK, as long |
| 5599 | * as the task is no longer on this CPU. |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5600 | * |
| 5601 | * Returns non-zero if task was successfully migrated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5602 | */ |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5603 | 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] | 5604 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5605 | struct rq *rq_dest, *rq_src; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5606 | int ret = 0, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5607 | |
| 5608 | if (unlikely(cpu_is_offline(dest_cpu))) |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5609 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5610 | |
| 5611 | rq_src = cpu_rq(src_cpu); |
| 5612 | rq_dest = cpu_rq(dest_cpu); |
| 5613 | |
| 5614 | double_rq_lock(rq_src, rq_dest); |
| 5615 | /* Already moved. */ |
| 5616 | if (task_cpu(p) != src_cpu) |
| 5617 | goto out; |
| 5618 | /* Affinity changed (again). */ |
| 5619 | if (!cpu_isset(dest_cpu, p->cpus_allowed)) |
| 5620 | goto out; |
| 5621 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5622 | on_rq = p->se.on_rq; |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5623 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5624 | deactivate_task(rq_src, p, 0); |
Ingo Molnar | 6e82a3b | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 5625 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5626 | set_task_cpu(p, dest_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5627 | if (on_rq) { |
| 5628 | activate_task(rq_dest, p, 0); |
| 5629 | check_preempt_curr(rq_dest, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5630 | } |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5631 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5632 | out: |
| 5633 | double_rq_unlock(rq_src, rq_dest); |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5634 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5635 | } |
| 5636 | |
| 5637 | /* |
| 5638 | * migration_thread - this is a highprio system thread that performs |
| 5639 | * thread migration by bumping thread off CPU then 'pushing' onto |
| 5640 | * another runqueue. |
| 5641 | */ |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5642 | static int migration_thread(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5643 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5644 | int cpu = (long)data; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5645 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5646 | |
| 5647 | rq = cpu_rq(cpu); |
| 5648 | BUG_ON(rq->migration_thread != current); |
| 5649 | |
| 5650 | set_current_state(TASK_INTERRUPTIBLE); |
| 5651 | while (!kthread_should_stop()) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5652 | struct migration_req *req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5653 | struct list_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5655 | spin_lock_irq(&rq->lock); |
| 5656 | |
| 5657 | if (cpu_is_offline(cpu)) { |
| 5658 | spin_unlock_irq(&rq->lock); |
| 5659 | goto wait_to_die; |
| 5660 | } |
| 5661 | |
| 5662 | if (rq->active_balance) { |
| 5663 | active_load_balance(rq, cpu); |
| 5664 | rq->active_balance = 0; |
| 5665 | } |
| 5666 | |
| 5667 | head = &rq->migration_queue; |
| 5668 | |
| 5669 | if (list_empty(head)) { |
| 5670 | spin_unlock_irq(&rq->lock); |
| 5671 | schedule(); |
| 5672 | set_current_state(TASK_INTERRUPTIBLE); |
| 5673 | continue; |
| 5674 | } |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5675 | req = list_entry(head->next, struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5676 | list_del_init(head->next); |
| 5677 | |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 5678 | spin_unlock(&rq->lock); |
| 5679 | __migrate_task(req->task, cpu, req->dest_cpu); |
| 5680 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5681 | |
| 5682 | complete(&req->done); |
| 5683 | } |
| 5684 | __set_current_state(TASK_RUNNING); |
| 5685 | return 0; |
| 5686 | |
| 5687 | wait_to_die: |
| 5688 | /* Wait for kthread_stop */ |
| 5689 | set_current_state(TASK_INTERRUPTIBLE); |
| 5690 | while (!kthread_should_stop()) { |
| 5691 | schedule(); |
| 5692 | set_current_state(TASK_INTERRUPTIBLE); |
| 5693 | } |
| 5694 | __set_current_state(TASK_RUNNING); |
| 5695 | return 0; |
| 5696 | } |
| 5697 | |
| 5698 | #ifdef CONFIG_HOTPLUG_CPU |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5699 | |
| 5700 | static int __migrate_task_irq(struct task_struct *p, int src_cpu, int dest_cpu) |
| 5701 | { |
| 5702 | int ret; |
| 5703 | |
| 5704 | local_irq_disable(); |
| 5705 | ret = __migrate_task(p, src_cpu, dest_cpu); |
| 5706 | local_irq_enable(); |
| 5707 | return ret; |
| 5708 | } |
| 5709 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5710 | /* |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 5711 | * 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] | 5712 | * NOTE: interrupts should be disabled by the caller |
| 5713 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5714 | 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] | 5715 | { |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 5716 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5717 | cpumask_t mask; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5718 | struct rq *rq; |
| 5719 | int dest_cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5720 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5721 | do { |
| 5722 | /* On same node? */ |
| 5723 | mask = node_to_cpumask(cpu_to_node(dead_cpu)); |
| 5724 | cpus_and(mask, mask, p->cpus_allowed); |
| 5725 | dest_cpu = any_online_cpu(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5726 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5727 | /* On any allowed CPU? */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 5728 | if (dest_cpu >= nr_cpu_ids) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5729 | dest_cpu = any_online_cpu(p->cpus_allowed); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5730 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5731 | /* No more Mr. Nice Guy. */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 5732 | if (dest_cpu >= nr_cpu_ids) { |
Mike Travis | f9a86fc | 2008-04-04 18:11:07 -0700 | [diff] [blame] | 5733 | cpumask_t cpus_allowed; |
| 5734 | |
| 5735 | cpuset_cpus_allowed_locked(p, &cpus_allowed); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5736 | /* |
| 5737 | * Try to stay on the same cpuset, where the |
| 5738 | * current cpuset may be a subset of all cpus. |
| 5739 | * The cpuset_cpus_allowed_locked() variant of |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5740 | * cpuset_cpus_allowed() will not block. It must be |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5741 | * called within calls to cpuset_lock/cpuset_unlock. |
| 5742 | */ |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5743 | rq = task_rq_lock(p, &flags); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 5744 | p->cpus_allowed = cpus_allowed; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5745 | dest_cpu = any_online_cpu(p->cpus_allowed); |
| 5746 | task_rq_unlock(rq, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5747 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5748 | /* |
| 5749 | * Don't tell them about moving exiting tasks or |
| 5750 | * kernel threads (both mm NULL), since they never |
| 5751 | * leave kernel. |
| 5752 | */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5753 | if (p->mm && printk_ratelimit()) { |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5754 | printk(KERN_INFO "process %d (%s) no " |
| 5755 | "longer affine to cpu%d\n", |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5756 | task_pid_nr(p), p->comm, dead_cpu); |
| 5757 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5758 | } |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5759 | } while (!__migrate_task_irq(p, dead_cpu, dest_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5760 | } |
| 5761 | |
| 5762 | /* |
| 5763 | * While a dead CPU has no uninterruptible tasks queued at this point, |
| 5764 | * it might still have a nonzero ->nr_uninterruptible counter, because |
| 5765 | * for performance reasons the counter is not stricly tracking tasks to |
| 5766 | * their home CPUs. So we just add the counter to another CPU's counter, |
| 5767 | * to keep the global sum constant after CPU-down: |
| 5768 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5769 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5770 | { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 5771 | struct rq *rq_dest = cpu_rq(any_online_cpu(*CPU_MASK_ALL_PTR)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5772 | unsigned long flags; |
| 5773 | |
| 5774 | local_irq_save(flags); |
| 5775 | double_rq_lock(rq_src, rq_dest); |
| 5776 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
| 5777 | rq_src->nr_uninterruptible = 0; |
| 5778 | double_rq_unlock(rq_src, rq_dest); |
| 5779 | local_irq_restore(flags); |
| 5780 | } |
| 5781 | |
| 5782 | /* Run through task list and migrate tasks from the dead cpu. */ |
| 5783 | static void migrate_live_tasks(int src_cpu) |
| 5784 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5785 | struct task_struct *p, *t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5786 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5787 | read_lock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5788 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5789 | do_each_thread(t, p) { |
| 5790 | if (p == current) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5791 | continue; |
| 5792 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5793 | if (task_cpu(p) == src_cpu) |
| 5794 | move_task_off_dead_cpu(src_cpu, p); |
| 5795 | } while_each_thread(t, p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5796 | |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5797 | read_unlock(&tasklist_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5798 | } |
| 5799 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5800 | /* |
| 5801 | * Schedules idle task to be the next runnable task on current CPU. |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5802 | * It does so by boosting its priority to highest possible. |
| 5803 | * Used by CPU offline code. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5804 | */ |
| 5805 | void sched_idle_next(void) |
| 5806 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5807 | int this_cpu = smp_processor_id(); |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5808 | struct rq *rq = cpu_rq(this_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5809 | struct task_struct *p = rq->idle; |
| 5810 | unsigned long flags; |
| 5811 | |
| 5812 | /* cpu has to be offline */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5813 | BUG_ON(cpu_online(this_cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5814 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5815 | /* |
| 5816 | * Strictly not necessary since rest of the CPUs are stopped by now |
| 5817 | * and interrupts disabled on the current cpu. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5818 | */ |
| 5819 | spin_lock_irqsave(&rq->lock, flags); |
| 5820 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5821 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5822 | |
Dmitry Adamushko | 94bc9a7 | 2007-11-15 20:57:40 +0100 | [diff] [blame] | 5823 | update_rq_clock(rq); |
| 5824 | activate_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5825 | |
| 5826 | spin_unlock_irqrestore(&rq->lock, flags); |
| 5827 | } |
| 5828 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5829 | /* |
| 5830 | * 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] | 5831 | * offline. |
| 5832 | */ |
| 5833 | void idle_task_exit(void) |
| 5834 | { |
| 5835 | struct mm_struct *mm = current->active_mm; |
| 5836 | |
| 5837 | BUG_ON(cpu_online(smp_processor_id())); |
| 5838 | |
| 5839 | if (mm != &init_mm) |
| 5840 | switch_mm(mm, &init_mm, current); |
| 5841 | mmdrop(mm); |
| 5842 | } |
| 5843 | |
Kirill Korotaev | 054b910 | 2006-12-10 02:20:11 -0800 | [diff] [blame] | 5844 | /* called under rq->lock with disabled interrupts */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5845 | static void migrate_dead(unsigned int dead_cpu, struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5846 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5847 | struct rq *rq = cpu_rq(dead_cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5848 | |
| 5849 | /* Must be exiting, otherwise would be on tasklist. */ |
Eugene Teo | 270f722 | 2007-10-18 23:40:38 -0700 | [diff] [blame] | 5850 | BUG_ON(!p->exit_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5851 | |
| 5852 | /* Cannot have done final schedule yet: would have vanished. */ |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 5853 | BUG_ON(p->state == TASK_DEAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5854 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5855 | get_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5856 | |
| 5857 | /* |
| 5858 | * Drop lock around migration; if someone else moves it, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5859 | * 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] | 5860 | * fine. |
| 5861 | */ |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5862 | spin_unlock_irq(&rq->lock); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5863 | move_task_off_dead_cpu(dead_cpu, p); |
Oleg Nesterov | f7b4cdd | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 5864 | spin_lock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5865 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5866 | put_task_struct(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5867 | } |
| 5868 | |
| 5869 | /* release_task() removes task from tasklist, so we won't find dead tasks. */ |
| 5870 | static void migrate_dead_tasks(unsigned int dead_cpu) |
| 5871 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5872 | struct rq *rq = cpu_rq(dead_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5873 | struct task_struct *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5874 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5875 | for ( ; ; ) { |
| 5876 | if (!rq->nr_running) |
| 5877 | break; |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 5878 | update_rq_clock(rq); |
Ingo Molnar | ff95f3d | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5879 | next = pick_next_task(rq, rq->curr); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5880 | if (!next) |
| 5881 | break; |
| 5882 | migrate_dead(dead_cpu, next); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5884 | } |
| 5885 | } |
| 5886 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 5887 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5888 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
| 5889 | |
| 5890 | static struct ctl_table sd_ctl_dir[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5891 | { |
| 5892 | .procname = "sched_domain", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5893 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5894 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5895 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5896 | }; |
| 5897 | |
| 5898 | static struct ctl_table sd_ctl_root[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5899 | { |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5900 | .ctl_name = CTL_KERN, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5901 | .procname = "kernel", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 5902 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5903 | .child = sd_ctl_dir, |
| 5904 | }, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 5905 | {0, }, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5906 | }; |
| 5907 | |
| 5908 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
| 5909 | { |
| 5910 | struct ctl_table *entry = |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5911 | kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5912 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5913 | return entry; |
| 5914 | } |
| 5915 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5916 | static void sd_free_ctl_entry(struct ctl_table **tablep) |
| 5917 | { |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5918 | struct ctl_table *entry; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5919 | |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5920 | /* |
| 5921 | * In the intermediate directories, both the child directory and |
| 5922 | * procname are dynamically allocated and could fail but the mode |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5923 | * will always be set. In the lowest directory the names are |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5924 | * static strings and all have proc handlers. |
| 5925 | */ |
| 5926 | for (entry = *tablep; entry->mode; entry++) { |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5927 | if (entry->child) |
| 5928 | sd_free_ctl_entry(&entry->child); |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 5929 | if (entry->proc_handler == NULL) |
| 5930 | kfree(entry->procname); |
| 5931 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5932 | |
| 5933 | kfree(*tablep); |
| 5934 | *tablep = NULL; |
| 5935 | } |
| 5936 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5937 | static void |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5938 | set_table_entry(struct ctl_table *entry, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5939 | const char *procname, void *data, int maxlen, |
| 5940 | mode_t mode, proc_handler *proc_handler) |
| 5941 | { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5942 | entry->procname = procname; |
| 5943 | entry->data = data; |
| 5944 | entry->maxlen = maxlen; |
| 5945 | entry->mode = mode; |
| 5946 | entry->proc_handler = proc_handler; |
| 5947 | } |
| 5948 | |
| 5949 | static struct ctl_table * |
| 5950 | sd_alloc_ctl_domain_table(struct sched_domain *sd) |
| 5951 | { |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5952 | struct ctl_table *table = sd_alloc_ctl_entry(12); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5953 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5954 | if (table == NULL) |
| 5955 | return NULL; |
| 5956 | |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5957 | set_table_entry(&table[0], "min_interval", &sd->min_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5958 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5959 | set_table_entry(&table[1], "max_interval", &sd->max_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5960 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5961 | set_table_entry(&table[2], "busy_idx", &sd->busy_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5962 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5963 | set_table_entry(&table[3], "idle_idx", &sd->idle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5964 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5965 | set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5966 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5967 | set_table_entry(&table[5], "wake_idx", &sd->wake_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5968 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5969 | set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5970 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5971 | set_table_entry(&table[7], "busy_factor", &sd->busy_factor, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5972 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5973 | set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5974 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5975 | set_table_entry(&table[9], "cache_nice_tries", |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5976 | &sd->cache_nice_tries, |
| 5977 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5978 | set_table_entry(&table[10], "flags", &sd->flags, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5979 | sizeof(int), 0644, proc_dointvec_minmax); |
Milton Miller | 6323469f | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5980 | /* &table[11] is terminator */ |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5981 | |
| 5982 | return table; |
| 5983 | } |
| 5984 | |
Ingo Molnar | 9a4e715 | 2007-11-28 15:52:56 +0100 | [diff] [blame] | 5985 | static ctl_table *sd_alloc_ctl_cpu_table(int cpu) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5986 | { |
| 5987 | struct ctl_table *entry, *table; |
| 5988 | struct sched_domain *sd; |
| 5989 | int domain_num = 0, i; |
| 5990 | char buf[32]; |
| 5991 | |
| 5992 | for_each_domain(cpu, sd) |
| 5993 | domain_num++; |
| 5994 | entry = table = sd_alloc_ctl_entry(domain_num + 1); |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 5995 | if (table == NULL) |
| 5996 | return NULL; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 5997 | |
| 5998 | i = 0; |
| 5999 | for_each_domain(cpu, sd) { |
| 6000 | snprintf(buf, 32, "domain%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6001 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6002 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6003 | entry->child = sd_alloc_ctl_domain_table(sd); |
| 6004 | entry++; |
| 6005 | i++; |
| 6006 | } |
| 6007 | return table; |
| 6008 | } |
| 6009 | |
| 6010 | static struct ctl_table_header *sd_sysctl_header; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6011 | static void register_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6012 | { |
| 6013 | int i, cpu_num = num_online_cpus(); |
| 6014 | struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1); |
| 6015 | char buf[32]; |
| 6016 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6017 | WARN_ON(sd_ctl_dir[0].child); |
| 6018 | sd_ctl_dir[0].child = entry; |
| 6019 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6020 | if (entry == NULL) |
| 6021 | return; |
| 6022 | |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6023 | for_each_online_cpu(i) { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6024 | snprintf(buf, 32, "cpu%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6025 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6026 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6027 | entry->child = sd_alloc_ctl_cpu_table(i); |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6028 | entry++; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6029 | } |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6030 | |
| 6031 | WARN_ON(sd_sysctl_header); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6032 | sd_sysctl_header = register_sysctl_table(sd_ctl_root); |
| 6033 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6034 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6035 | /* may be called multiple times per register */ |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6036 | static void unregister_sched_domain_sysctl(void) |
| 6037 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6038 | if (sd_sysctl_header) |
| 6039 | unregister_sysctl_table(sd_sysctl_header); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6040 | sd_sysctl_header = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6041 | if (sd_ctl_dir[0].child) |
| 6042 | sd_free_ctl_entry(&sd_ctl_dir[0].child); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6043 | } |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6044 | #else |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6045 | static void register_sched_domain_sysctl(void) |
| 6046 | { |
| 6047 | } |
| 6048 | static void unregister_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6049 | { |
| 6050 | } |
| 6051 | #endif |
| 6052 | |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6053 | static void set_rq_online(struct rq *rq) |
| 6054 | { |
| 6055 | if (!rq->online) { |
| 6056 | const struct sched_class *class; |
| 6057 | |
| 6058 | cpu_set(rq->cpu, rq->rd->online); |
| 6059 | rq->online = 1; |
| 6060 | |
| 6061 | for_each_class(class) { |
| 6062 | if (class->rq_online) |
| 6063 | class->rq_online(rq); |
| 6064 | } |
| 6065 | } |
| 6066 | } |
| 6067 | |
| 6068 | static void set_rq_offline(struct rq *rq) |
| 6069 | { |
| 6070 | if (rq->online) { |
| 6071 | const struct sched_class *class; |
| 6072 | |
| 6073 | for_each_class(class) { |
| 6074 | if (class->rq_offline) |
| 6075 | class->rq_offline(rq); |
| 6076 | } |
| 6077 | |
| 6078 | cpu_clear(rq->cpu, rq->rd->online); |
| 6079 | rq->online = 0; |
| 6080 | } |
| 6081 | } |
| 6082 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6083 | /* |
| 6084 | * migration_call - callback that gets triggered when a CPU is added. |
| 6085 | * Here we can start up the necessary migration thread for the new CPU. |
| 6086 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6087 | static int __cpuinit |
| 6088 | migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6089 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6090 | struct task_struct *p; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6091 | int cpu = (long)hcpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6092 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6093 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6094 | |
| 6095 | switch (action) { |
Gautham R Shenoy | 5be9361 | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 6096 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6097 | case CPU_UP_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6098 | case CPU_UP_PREPARE_FROZEN: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6099 | p = kthread_create(migration_thread, hcpu, "migration/%d", cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6100 | if (IS_ERR(p)) |
| 6101 | return NOTIFY_BAD; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6102 | kthread_bind(p, cpu); |
| 6103 | /* Must be high prio: stop_machine expects to yield to it. */ |
| 6104 | rq = task_rq_lock(p, &flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6105 | __setscheduler(rq, p, SCHED_FIFO, MAX_RT_PRIO-1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6106 | task_rq_unlock(rq, &flags); |
| 6107 | cpu_rq(cpu)->migration_thread = p; |
| 6108 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6110 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6111 | case CPU_ONLINE_FROZEN: |
Robert P. J. Day | 3a4fa0a | 2007-10-19 23:10:43 +0200 | [diff] [blame] | 6112 | /* Strictly unnecessary, as first user will wake it. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6113 | wake_up_process(cpu_rq(cpu)->migration_thread); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6114 | |
| 6115 | /* Update our root-domain */ |
| 6116 | rq = cpu_rq(cpu); |
| 6117 | spin_lock_irqsave(&rq->lock, flags); |
| 6118 | if (rq->rd) { |
| 6119 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6120 | |
| 6121 | set_rq_online(rq); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6122 | } |
| 6123 | spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6124 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6125 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6126 | #ifdef CONFIG_HOTPLUG_CPU |
| 6127 | case CPU_UP_CANCELED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6128 | case CPU_UP_CANCELED_FROZEN: |
Heiko Carstens | fc75cdf | 2006-06-25 05:49:10 -0700 | [diff] [blame] | 6129 | if (!cpu_rq(cpu)->migration_thread) |
| 6130 | break; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6131 | /* Unbind it from offline cpu so it can run. Fall thru. */ |
Heiko Carstens | a4c4af7 | 2005-11-07 00:58:38 -0800 | [diff] [blame] | 6132 | kthread_bind(cpu_rq(cpu)->migration_thread, |
| 6133 | any_online_cpu(cpu_online_map)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6134 | kthread_stop(cpu_rq(cpu)->migration_thread); |
| 6135 | cpu_rq(cpu)->migration_thread = NULL; |
| 6136 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6138 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 6139 | case CPU_DEAD_FROZEN: |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 6140 | cpuset_lock(); /* around calls to cpuset_cpus_allowed_lock() */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6141 | migrate_live_tasks(cpu); |
| 6142 | rq = cpu_rq(cpu); |
| 6143 | kthread_stop(rq->migration_thread); |
| 6144 | rq->migration_thread = NULL; |
| 6145 | /* Idle task back to normal (off runqueue, low prio) */ |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 6146 | spin_lock_irq(&rq->lock); |
Ingo Molnar | a8e504d | 2007-08-09 11:16:47 +0200 | [diff] [blame] | 6147 | update_rq_clock(rq); |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 6148 | deactivate_task(rq, rq->idle, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6149 | rq->idle->static_prio = MAX_PRIO; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6150 | __setscheduler(rq, rq->idle, SCHED_NORMAL, 0); |
| 6151 | rq->idle->sched_class = &idle_sched_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6152 | migrate_dead_tasks(cpu); |
Oleg Nesterov | d2da272 | 2007-10-16 23:30:56 -0700 | [diff] [blame] | 6153 | spin_unlock_irq(&rq->lock); |
Cliff Wickman | 470fd64 | 2007-10-18 23:40:46 -0700 | [diff] [blame] | 6154 | cpuset_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6155 | migrate_nr_uninterruptible(rq); |
| 6156 | BUG_ON(rq->nr_running != 0); |
| 6157 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6158 | /* |
| 6159 | * No need to migrate the tasks: it was best-effort if |
| 6160 | * they didn't take sched_hotcpu_mutex. Just wake up |
| 6161 | * the requestors. |
| 6162 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6163 | spin_lock_irq(&rq->lock); |
| 6164 | while (!list_empty(&rq->migration_queue)) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6165 | struct migration_req *req; |
| 6166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6167 | req = list_entry(rq->migration_queue.next, |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6168 | struct migration_req, list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6169 | list_del_init(&req->list); |
| 6170 | complete(&req->done); |
| 6171 | } |
| 6172 | spin_unlock_irq(&rq->lock); |
| 6173 | break; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6174 | |
Gregory Haskins | 08f503b | 2008-03-10 17:59:11 -0400 | [diff] [blame] | 6175 | case CPU_DYING: |
| 6176 | case CPU_DYING_FROZEN: |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6177 | /* Update our root-domain */ |
| 6178 | rq = cpu_rq(cpu); |
| 6179 | spin_lock_irqsave(&rq->lock, flags); |
| 6180 | if (rq->rd) { |
| 6181 | BUG_ON(!cpu_isset(cpu, rq->rd->span)); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6182 | set_rq_offline(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6183 | } |
| 6184 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6185 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6186 | #endif |
| 6187 | } |
| 6188 | return NOTIFY_OK; |
| 6189 | } |
| 6190 | |
| 6191 | /* Register at highest priority so that task migration (migrate_all_tasks) |
| 6192 | * happens before everything else. |
| 6193 | */ |
Chandra Seetharaman | 26c2143 | 2006-06-27 02:54:10 -0700 | [diff] [blame] | 6194 | static struct notifier_block __cpuinitdata migration_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6195 | .notifier_call = migration_call, |
| 6196 | .priority = 10 |
| 6197 | }; |
| 6198 | |
Adrian Bunk | e6fe664 | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 6199 | void __init migration_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6200 | { |
| 6201 | void *cpu = (void *)(long)smp_processor_id(); |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6202 | int err; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6203 | |
| 6204 | /* Start one for the boot CPU: */ |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6205 | err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu); |
| 6206 | BUG_ON(err == NOTIFY_BAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6207 | migration_call(&migration_notifier, CPU_ONLINE, cpu); |
| 6208 | register_cpu_notifier(&migration_notifier); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6209 | } |
| 6210 | #endif |
| 6211 | |
| 6212 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 6213 | |
Ingo Molnar | 3e9830d | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6214 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6215 | |
Gautham R Shenoy | 099f98c | 2008-05-29 20:56:32 +0530 | [diff] [blame] | 6216 | static inline const char *sd_level_to_string(enum sched_domain_level lvl) |
| 6217 | { |
| 6218 | switch (lvl) { |
| 6219 | case SD_LV_NONE: |
| 6220 | return "NONE"; |
| 6221 | case SD_LV_SIBLING: |
| 6222 | return "SIBLING"; |
| 6223 | case SD_LV_MC: |
| 6224 | return "MC"; |
| 6225 | case SD_LV_CPU: |
| 6226 | return "CPU"; |
| 6227 | case SD_LV_NODE: |
| 6228 | return "NODE"; |
| 6229 | case SD_LV_ALLNODES: |
| 6230 | return "ALLNODES"; |
| 6231 | case SD_LV_MAX: |
| 6232 | return "MAX"; |
| 6233 | |
| 6234 | } |
| 6235 | return "MAX"; |
| 6236 | } |
| 6237 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6238 | static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level, |
| 6239 | cpumask_t *groupmask) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6240 | { |
| 6241 | struct sched_group *group = sd->groups; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 6242 | char str[256]; |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6243 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 6244 | cpulist_scnprintf(str, sizeof(str), sd->span); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6245 | cpus_clear(*groupmask); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6246 | |
| 6247 | printk(KERN_DEBUG "%*s domain %d: ", level, "", level); |
| 6248 | |
| 6249 | if (!(sd->flags & SD_LOAD_BALANCE)) { |
| 6250 | printk("does not load-balance\n"); |
| 6251 | if (sd->parent) |
| 6252 | printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain" |
| 6253 | " has parent"); |
| 6254 | return -1; |
| 6255 | } |
| 6256 | |
Gautham R Shenoy | 099f98c | 2008-05-29 20:56:32 +0530 | [diff] [blame] | 6257 | printk(KERN_CONT "span %s level %s\n", |
| 6258 | str, sd_level_to_string(sd->level)); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6259 | |
| 6260 | if (!cpu_isset(cpu, sd->span)) { |
| 6261 | printk(KERN_ERR "ERROR: domain->span does not contain " |
| 6262 | "CPU%d\n", cpu); |
| 6263 | } |
| 6264 | if (!cpu_isset(cpu, group->cpumask)) { |
| 6265 | printk(KERN_ERR "ERROR: domain->groups does not contain" |
| 6266 | " CPU%d\n", cpu); |
| 6267 | } |
| 6268 | |
| 6269 | printk(KERN_DEBUG "%*s groups:", level + 1, ""); |
| 6270 | do { |
| 6271 | if (!group) { |
| 6272 | printk("\n"); |
| 6273 | printk(KERN_ERR "ERROR: group is NULL\n"); |
| 6274 | break; |
| 6275 | } |
| 6276 | |
| 6277 | if (!group->__cpu_power) { |
| 6278 | printk(KERN_CONT "\n"); |
| 6279 | printk(KERN_ERR "ERROR: domain->cpu_power not " |
| 6280 | "set\n"); |
| 6281 | break; |
| 6282 | } |
| 6283 | |
| 6284 | if (!cpus_weight(group->cpumask)) { |
| 6285 | printk(KERN_CONT "\n"); |
| 6286 | printk(KERN_ERR "ERROR: empty group\n"); |
| 6287 | break; |
| 6288 | } |
| 6289 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6290 | if (cpus_intersects(*groupmask, group->cpumask)) { |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6291 | printk(KERN_CONT "\n"); |
| 6292 | printk(KERN_ERR "ERROR: repeated CPUs\n"); |
| 6293 | break; |
| 6294 | } |
| 6295 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6296 | cpus_or(*groupmask, *groupmask, group->cpumask); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6297 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 6298 | cpulist_scnprintf(str, sizeof(str), group->cpumask); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6299 | printk(KERN_CONT " %s", str); |
| 6300 | |
| 6301 | group = group->next; |
| 6302 | } while (group != sd->groups); |
| 6303 | printk(KERN_CONT "\n"); |
| 6304 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6305 | if (!cpus_equal(sd->span, *groupmask)) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6306 | printk(KERN_ERR "ERROR: groups don't span domain->span\n"); |
| 6307 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6308 | if (sd->parent && !cpus_subset(*groupmask, sd->parent->span)) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6309 | printk(KERN_ERR "ERROR: parent span is not a superset " |
| 6310 | "of domain->span\n"); |
| 6311 | return 0; |
| 6312 | } |
| 6313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6314 | static void sched_domain_debug(struct sched_domain *sd, int cpu) |
| 6315 | { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6316 | cpumask_t *groupmask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6317 | int level = 0; |
| 6318 | |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 6319 | if (!sd) { |
| 6320 | printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu); |
| 6321 | return; |
| 6322 | } |
| 6323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6324 | printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu); |
| 6325 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6326 | groupmask = kmalloc(sizeof(cpumask_t), GFP_KERNEL); |
| 6327 | if (!groupmask) { |
| 6328 | printk(KERN_DEBUG "Cannot load-balance (out of memory)\n"); |
| 6329 | return; |
| 6330 | } |
| 6331 | |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6332 | for (;;) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6333 | if (sched_domain_debug_one(sd, cpu, level, groupmask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6334 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6335 | level++; |
| 6336 | sd = sd->parent; |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 6337 | if (!sd) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6338 | break; |
| 6339 | } |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6340 | kfree(groupmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6341 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6342 | #else /* !CONFIG_SCHED_DEBUG */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6343 | # define sched_domain_debug(sd, cpu) do { } while (0) |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6344 | #endif /* CONFIG_SCHED_DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6345 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6346 | static int sd_degenerate(struct sched_domain *sd) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6347 | { |
| 6348 | if (cpus_weight(sd->span) == 1) |
| 6349 | return 1; |
| 6350 | |
| 6351 | /* Following flags need at least 2 groups */ |
| 6352 | if (sd->flags & (SD_LOAD_BALANCE | |
| 6353 | SD_BALANCE_NEWIDLE | |
| 6354 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6355 | SD_BALANCE_EXEC | |
| 6356 | SD_SHARE_CPUPOWER | |
| 6357 | SD_SHARE_PKG_RESOURCES)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6358 | if (sd->groups != sd->groups->next) |
| 6359 | return 0; |
| 6360 | } |
| 6361 | |
| 6362 | /* Following flags don't use groups */ |
| 6363 | if (sd->flags & (SD_WAKE_IDLE | |
| 6364 | SD_WAKE_AFFINE | |
| 6365 | SD_WAKE_BALANCE)) |
| 6366 | return 0; |
| 6367 | |
| 6368 | return 1; |
| 6369 | } |
| 6370 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6371 | static int |
| 6372 | sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6373 | { |
| 6374 | unsigned long cflags = sd->flags, pflags = parent->flags; |
| 6375 | |
| 6376 | if (sd_degenerate(parent)) |
| 6377 | return 1; |
| 6378 | |
| 6379 | if (!cpus_equal(sd->span, parent->span)) |
| 6380 | return 0; |
| 6381 | |
| 6382 | /* Does parent contain flags not in child? */ |
| 6383 | /* WAKE_BALANCE is a subset of WAKE_AFFINE */ |
| 6384 | if (cflags & SD_WAKE_AFFINE) |
| 6385 | pflags &= ~SD_WAKE_BALANCE; |
| 6386 | /* Flags needing groups don't count if only 1 group in parent */ |
| 6387 | if (parent->groups == parent->groups->next) { |
| 6388 | pflags &= ~(SD_LOAD_BALANCE | |
| 6389 | SD_BALANCE_NEWIDLE | |
| 6390 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6391 | SD_BALANCE_EXEC | |
| 6392 | SD_SHARE_CPUPOWER | |
| 6393 | SD_SHARE_PKG_RESOURCES); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6394 | } |
| 6395 | if (~cflags & pflags) |
| 6396 | return 0; |
| 6397 | |
| 6398 | return 1; |
| 6399 | } |
| 6400 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6401 | static void rq_attach_root(struct rq *rq, struct root_domain *rd) |
| 6402 | { |
| 6403 | unsigned long flags; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6404 | |
| 6405 | spin_lock_irqsave(&rq->lock, flags); |
| 6406 | |
| 6407 | if (rq->rd) { |
| 6408 | struct root_domain *old_rd = rq->rd; |
| 6409 | |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6410 | if (cpu_isset(rq->cpu, old_rd->online)) |
| 6411 | set_rq_offline(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6412 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6413 | cpu_clear(rq->cpu, old_rd->span); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6414 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6415 | if (atomic_dec_and_test(&old_rd->refcount)) |
| 6416 | kfree(old_rd); |
| 6417 | } |
| 6418 | |
| 6419 | atomic_inc(&rd->refcount); |
| 6420 | rq->rd = rd; |
| 6421 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6422 | cpu_set(rq->cpu, rd->span); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6423 | if (cpu_isset(rq->cpu, cpu_online_map)) |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6424 | set_rq_online(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6425 | |
| 6426 | spin_unlock_irqrestore(&rq->lock, flags); |
| 6427 | } |
| 6428 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6429 | static void init_rootdomain(struct root_domain *rd) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6430 | { |
| 6431 | memset(rd, 0, sizeof(*rd)); |
| 6432 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6433 | cpus_clear(rd->span); |
| 6434 | cpus_clear(rd->online); |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 6435 | |
| 6436 | cpupri_init(&rd->cpupri); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6437 | } |
| 6438 | |
| 6439 | static void init_defrootdomain(void) |
| 6440 | { |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6441 | init_rootdomain(&def_root_domain); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6442 | atomic_set(&def_root_domain.refcount, 1); |
| 6443 | } |
| 6444 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6445 | static struct root_domain *alloc_rootdomain(void) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6446 | { |
| 6447 | struct root_domain *rd; |
| 6448 | |
| 6449 | rd = kmalloc(sizeof(*rd), GFP_KERNEL); |
| 6450 | if (!rd) |
| 6451 | return NULL; |
| 6452 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6453 | init_rootdomain(rd); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6454 | |
| 6455 | return rd; |
| 6456 | } |
| 6457 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6458 | /* |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6459 | * Attach the domain 'sd' to 'cpu' as its base domain. Callers must |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6460 | * hold the hotplug lock. |
| 6461 | */ |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6462 | static void |
| 6463 | 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] | 6464 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6465 | struct rq *rq = cpu_rq(cpu); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6466 | struct sched_domain *tmp; |
| 6467 | |
| 6468 | /* Remove the sched domains which do not contribute to scheduling. */ |
| 6469 | for (tmp = sd; tmp; tmp = tmp->parent) { |
| 6470 | struct sched_domain *parent = tmp->parent; |
| 6471 | if (!parent) |
| 6472 | break; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6473 | if (sd_parent_degenerate(tmp, parent)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6474 | tmp->parent = parent->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6475 | if (parent->parent) |
| 6476 | parent->parent->child = tmp; |
| 6477 | } |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6478 | } |
| 6479 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6480 | if (sd && sd_degenerate(sd)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6481 | sd = sd->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6482 | if (sd) |
| 6483 | sd->child = NULL; |
| 6484 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6485 | |
| 6486 | sched_domain_debug(sd, cpu); |
| 6487 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6488 | rq_attach_root(rq, rd); |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 6489 | rcu_assign_pointer(rq->sd, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6490 | } |
| 6491 | |
| 6492 | /* cpus with isolated domains */ |
Tim Chen | 67af63a | 2006-12-22 01:07:50 -0800 | [diff] [blame] | 6493 | static cpumask_t cpu_isolated_map = CPU_MASK_NONE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6494 | |
| 6495 | /* Setup the mask of cpus configured for isolated domains */ |
| 6496 | static int __init isolated_cpu_setup(char *str) |
| 6497 | { |
| 6498 | int ints[NR_CPUS], i; |
| 6499 | |
| 6500 | str = get_options(str, ARRAY_SIZE(ints), ints); |
| 6501 | cpus_clear(cpu_isolated_map); |
| 6502 | for (i = 1; i <= ints[0]; i++) |
| 6503 | if (ints[i] < NR_CPUS) |
| 6504 | cpu_set(ints[i], cpu_isolated_map); |
| 6505 | return 1; |
| 6506 | } |
| 6507 | |
Ingo Molnar | 8927f49 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6508 | __setup("isolcpus=", isolated_cpu_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6509 | |
| 6510 | /* |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6511 | * init_sched_build_groups takes the cpumask we wish to span, and a pointer |
| 6512 | * to a function which identifies what group(along with sched group) a CPU |
| 6513 | * belongs to. The return value of group_fn must be a >= 0 and < NR_CPUS |
| 6514 | * (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] | 6515 | * |
| 6516 | * init_sched_build_groups will build a circular linked list of the groups |
| 6517 | * covered by the given span, and will set each group's ->cpumask correctly, |
| 6518 | * and ->cpu_power to 0. |
| 6519 | */ |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6520 | static void |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6521 | init_sched_build_groups(const cpumask_t *span, const cpumask_t *cpu_map, |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6522 | int (*group_fn)(int cpu, const cpumask_t *cpu_map, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6523 | struct sched_group **sg, |
| 6524 | cpumask_t *tmpmask), |
| 6525 | cpumask_t *covered, cpumask_t *tmpmask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6526 | { |
| 6527 | struct sched_group *first = NULL, *last = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6528 | int i; |
| 6529 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6530 | cpus_clear(*covered); |
| 6531 | |
| 6532 | for_each_cpu_mask(i, *span) { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6533 | struct sched_group *sg; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6534 | int group = group_fn(i, cpu_map, &sg, tmpmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6535 | int j; |
| 6536 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6537 | if (cpu_isset(i, *covered)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6538 | continue; |
| 6539 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6540 | cpus_clear(sg->cpumask); |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6541 | sg->__cpu_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6542 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6543 | for_each_cpu_mask(j, *span) { |
| 6544 | if (group_fn(j, cpu_map, NULL, tmpmask) != group) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6545 | continue; |
| 6546 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6547 | cpu_set(j, *covered); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6548 | cpu_set(j, sg->cpumask); |
| 6549 | } |
| 6550 | if (!first) |
| 6551 | first = sg; |
| 6552 | if (last) |
| 6553 | last->next = sg; |
| 6554 | last = sg; |
| 6555 | } |
| 6556 | last->next = first; |
| 6557 | } |
| 6558 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6559 | #define SD_NODES_PER_DOMAIN 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6560 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6561 | #ifdef CONFIG_NUMA |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 6562 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6563 | /** |
| 6564 | * find_next_best_node - find the next node to include in a sched_domain |
| 6565 | * @node: node whose sched_domain we're building |
| 6566 | * @used_nodes: nodes already in the sched_domain |
| 6567 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6568 | * Find the next node to include in a given scheduling domain. Simply |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6569 | * finds the closest node not already in the @used_nodes map. |
| 6570 | * |
| 6571 | * Should use nodemask_t. |
| 6572 | */ |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6573 | static int find_next_best_node(int node, nodemask_t *used_nodes) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6574 | { |
| 6575 | int i, n, val, min_val, best_node = 0; |
| 6576 | |
| 6577 | min_val = INT_MAX; |
| 6578 | |
| 6579 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 6580 | /* Start at @node */ |
| 6581 | n = (node + i) % MAX_NUMNODES; |
| 6582 | |
| 6583 | if (!nr_cpus_node(n)) |
| 6584 | continue; |
| 6585 | |
| 6586 | /* Skip already used nodes */ |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6587 | if (node_isset(n, *used_nodes)) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6588 | continue; |
| 6589 | |
| 6590 | /* Simple min distance search */ |
| 6591 | val = node_distance(node, n); |
| 6592 | |
| 6593 | if (val < min_val) { |
| 6594 | min_val = val; |
| 6595 | best_node = n; |
| 6596 | } |
| 6597 | } |
| 6598 | |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6599 | node_set(best_node, *used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6600 | return best_node; |
| 6601 | } |
| 6602 | |
| 6603 | /** |
| 6604 | * sched_domain_node_span - get a cpumask for a node's sched_domain |
| 6605 | * @node: node whose cpumask we're constructing |
Randy Dunlap | 7348672 | 2008-04-22 10:07:22 -0700 | [diff] [blame] | 6606 | * @span: resulting cpumask |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6607 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6608 | * 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] | 6609 | * should be one that prevents unnecessary balancing, but also spreads tasks |
| 6610 | * out optimally. |
| 6611 | */ |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 6612 | static void sched_domain_node_span(int node, cpumask_t *span) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6613 | { |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6614 | nodemask_t used_nodes; |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6615 | node_to_cpumask_ptr(nodemask, node); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6616 | int i; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6617 | |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 6618 | cpus_clear(*span); |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6619 | nodes_clear(used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6620 | |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 6621 | cpus_or(*span, *span, *nodemask); |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6622 | node_set(node, used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6623 | |
| 6624 | for (i = 1; i < SD_NODES_PER_DOMAIN; i++) { |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6625 | int next_node = find_next_best_node(node, &used_nodes); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6626 | |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6627 | node_to_cpumask_ptr_next(nodemask, next_node); |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 6628 | cpus_or(*span, *span, *nodemask); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6629 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6630 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6631 | #endif /* CONFIG_NUMA */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6632 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 6633 | int sched_smt_power_savings = 0, sched_mc_power_savings = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6634 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6635 | /* |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6636 | * SMT sched-domains: |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6637 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6638 | #ifdef CONFIG_SCHED_SMT |
| 6639 | static DEFINE_PER_CPU(struct sched_domain, cpu_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6640 | static DEFINE_PER_CPU(struct sched_group, sched_group_cpus); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6641 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6642 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6643 | cpu_to_cpu_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg, |
| 6644 | cpumask_t *unused) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6645 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6646 | if (sg) |
| 6647 | *sg = &per_cpu(sched_group_cpus, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6648 | return cpu; |
| 6649 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6650 | #endif /* CONFIG_SCHED_SMT */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6651 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6652 | /* |
| 6653 | * multi-core sched-domains: |
| 6654 | */ |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6655 | #ifdef CONFIG_SCHED_MC |
| 6656 | static DEFINE_PER_CPU(struct sched_domain, core_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6657 | static DEFINE_PER_CPU(struct sched_group, sched_group_core); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6658 | #endif /* CONFIG_SCHED_MC */ |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6659 | |
| 6660 | #if defined(CONFIG_SCHED_MC) && defined(CONFIG_SCHED_SMT) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6661 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6662 | cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg, |
| 6663 | cpumask_t *mask) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6664 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6665 | int group; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6666 | |
| 6667 | *mask = per_cpu(cpu_sibling_map, cpu); |
| 6668 | cpus_and(*mask, *mask, *cpu_map); |
| 6669 | group = first_cpu(*mask); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6670 | if (sg) |
| 6671 | *sg = &per_cpu(sched_group_core, group); |
| 6672 | return group; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6673 | } |
| 6674 | #elif defined(CONFIG_SCHED_MC) |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6675 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6676 | cpu_to_core_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg, |
| 6677 | cpumask_t *unused) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6678 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6679 | if (sg) |
| 6680 | *sg = &per_cpu(sched_group_core, cpu); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6681 | return cpu; |
| 6682 | } |
| 6683 | #endif |
| 6684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6685 | static DEFINE_PER_CPU(struct sched_domain, phys_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6686 | static DEFINE_PER_CPU(struct sched_group, sched_group_phys); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6687 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6688 | static int |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6689 | cpu_to_phys_group(int cpu, const cpumask_t *cpu_map, struct sched_group **sg, |
| 6690 | cpumask_t *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6691 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6692 | int group; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6693 | #ifdef CONFIG_SCHED_MC |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6694 | *mask = cpu_coregroup_map(cpu); |
| 6695 | cpus_and(*mask, *mask, *cpu_map); |
| 6696 | group = first_cpu(*mask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 6697 | #elif defined(CONFIG_SCHED_SMT) |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6698 | *mask = per_cpu(cpu_sibling_map, cpu); |
| 6699 | cpus_and(*mask, *mask, *cpu_map); |
| 6700 | group = first_cpu(*mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6701 | #else |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6702 | group = cpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6703 | #endif |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6704 | if (sg) |
| 6705 | *sg = &per_cpu(sched_group_phys, group); |
| 6706 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6707 | } |
| 6708 | |
| 6709 | #ifdef CONFIG_NUMA |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6710 | /* |
| 6711 | * The init_sched_build_groups can't handle what we want to do with node |
| 6712 | * groups, so roll our own. Now each node has its own list of groups which |
| 6713 | * gets dynamically allocated. |
| 6714 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6715 | static DEFINE_PER_CPU(struct sched_domain, node_domains); |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 6716 | static struct sched_group ***sched_group_nodes_bycpu; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6717 | |
| 6718 | static DEFINE_PER_CPU(struct sched_domain, allnodes_domains); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6719 | static DEFINE_PER_CPU(struct sched_group, sched_group_allnodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6720 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6721 | static int cpu_to_allnodes_group(int cpu, const cpumask_t *cpu_map, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6722 | struct sched_group **sg, cpumask_t *nodemask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6723 | { |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6724 | int group; |
| 6725 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6726 | *nodemask = node_to_cpumask(cpu_to_node(cpu)); |
| 6727 | cpus_and(*nodemask, *nodemask, *cpu_map); |
| 6728 | group = first_cpu(*nodemask); |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6729 | |
| 6730 | if (sg) |
| 6731 | *sg = &per_cpu(sched_group_allnodes, group); |
| 6732 | return group; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6733 | } |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6734 | |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6735 | static void init_numa_sched_groups_power(struct sched_group *group_head) |
| 6736 | { |
| 6737 | struct sched_group *sg = group_head; |
| 6738 | int j; |
| 6739 | |
| 6740 | if (!sg) |
| 6741 | return; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6742 | do { |
| 6743 | for_each_cpu_mask(j, sg->cpumask) { |
| 6744 | struct sched_domain *sd; |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6745 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6746 | sd = &per_cpu(phys_domains, j); |
| 6747 | if (j != first_cpu(sd->groups->cpumask)) { |
| 6748 | /* |
| 6749 | * Only add "power" once for each |
| 6750 | * physical package. |
| 6751 | */ |
| 6752 | continue; |
| 6753 | } |
| 6754 | |
| 6755 | sg_inc_cpu_power(sg, sd->groups->__cpu_power); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6756 | } |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6757 | sg = sg->next; |
| 6758 | } while (sg != group_head); |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 6759 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6760 | #endif /* CONFIG_NUMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6761 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6762 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6763 | /* Free memory allocated for various sched_group structures */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6764 | static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask) |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6765 | { |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6766 | int cpu, i; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6767 | |
| 6768 | for_each_cpu_mask(cpu, *cpu_map) { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6769 | struct sched_group **sched_group_nodes |
| 6770 | = sched_group_nodes_bycpu[cpu]; |
| 6771 | |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6772 | if (!sched_group_nodes) |
| 6773 | continue; |
| 6774 | |
| 6775 | for (i = 0; i < MAX_NUMNODES; i++) { |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6776 | struct sched_group *oldsg, *sg = sched_group_nodes[i]; |
| 6777 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6778 | *nodemask = node_to_cpumask(i); |
| 6779 | cpus_and(*nodemask, *nodemask, *cpu_map); |
| 6780 | if (cpus_empty(*nodemask)) |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6781 | continue; |
| 6782 | |
| 6783 | if (sg == NULL) |
| 6784 | continue; |
| 6785 | sg = sg->next; |
| 6786 | next_sg: |
| 6787 | oldsg = sg; |
| 6788 | sg = sg->next; |
| 6789 | kfree(oldsg); |
| 6790 | if (oldsg != sched_group_nodes[i]) |
| 6791 | goto next_sg; |
| 6792 | } |
| 6793 | kfree(sched_group_nodes); |
| 6794 | sched_group_nodes_bycpu[cpu] = NULL; |
| 6795 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6796 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6797 | #else /* !CONFIG_NUMA */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6798 | static void free_sched_groups(const cpumask_t *cpu_map, cpumask_t *nodemask) |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 6799 | { |
| 6800 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6801 | #endif /* CONFIG_NUMA */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6802 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6803 | /* |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6804 | * Initialize sched groups cpu_power. |
| 6805 | * |
| 6806 | * cpu_power indicates the capacity of sched group, which is used while |
| 6807 | * distributing the load between different sched groups in a sched domain. |
| 6808 | * Typically cpu_power for all the groups in a sched domain will be same unless |
| 6809 | * there are asymmetries in the topology. If there are asymmetries, group |
| 6810 | * having more cpu_power will pickup more load compared to the group having |
| 6811 | * less cpu_power. |
| 6812 | * |
| 6813 | * cpu_power will be a multiple of SCHED_LOAD_SCALE. This multiple represents |
| 6814 | * the maximum number of tasks a group can handle in the presence of other idle |
| 6815 | * or lightly loaded groups in the same sched domain. |
| 6816 | */ |
| 6817 | static void init_sched_groups_power(int cpu, struct sched_domain *sd) |
| 6818 | { |
| 6819 | struct sched_domain *child; |
| 6820 | struct sched_group *group; |
| 6821 | |
| 6822 | WARN_ON(!sd || !sd->groups); |
| 6823 | |
| 6824 | if (cpu != first_cpu(sd->groups->cpumask)) |
| 6825 | return; |
| 6826 | |
| 6827 | child = sd->child; |
| 6828 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6829 | sd->groups->__cpu_power = 0; |
| 6830 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6831 | /* |
| 6832 | * For perf policy, if the groups in child domain share resources |
| 6833 | * (for example cores sharing some portions of the cache hierarchy |
| 6834 | * or SMT), then set this domain groups cpu_power such that each group |
| 6835 | * can handle only one task, when there are other idle groups in the |
| 6836 | * same sched domain. |
| 6837 | */ |
| 6838 | if (!child || (!(sd->flags & SD_POWERSAVINGS_BALANCE) && |
| 6839 | (child->flags & |
| 6840 | (SD_SHARE_CPUPOWER | SD_SHARE_PKG_RESOURCES)))) { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6841 | sg_inc_cpu_power(sd->groups, SCHED_LOAD_SCALE); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6842 | return; |
| 6843 | } |
| 6844 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6845 | /* |
| 6846 | * add cpu_power of each child group to this groups cpu_power |
| 6847 | */ |
| 6848 | group = child->groups; |
| 6849 | do { |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 6850 | sg_inc_cpu_power(sd->groups, group->__cpu_power); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6851 | group = group->next; |
| 6852 | } while (group != child->groups); |
| 6853 | } |
| 6854 | |
| 6855 | /* |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6856 | * Initializers for schedule domains |
| 6857 | * Non-inlined to reduce accumulated stack pressure in build_sched_domains() |
| 6858 | */ |
| 6859 | |
| 6860 | #define SD_INIT(sd, type) sd_init_##type(sd) |
| 6861 | #define SD_INIT_FUNC(type) \ |
| 6862 | static noinline void sd_init_##type(struct sched_domain *sd) \ |
| 6863 | { \ |
| 6864 | memset(sd, 0, sizeof(*sd)); \ |
| 6865 | *sd = SD_##type##_INIT; \ |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 6866 | sd->level = SD_LV_##type; \ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6867 | } |
| 6868 | |
| 6869 | SD_INIT_FUNC(CPU) |
| 6870 | #ifdef CONFIG_NUMA |
| 6871 | SD_INIT_FUNC(ALLNODES) |
| 6872 | SD_INIT_FUNC(NODE) |
| 6873 | #endif |
| 6874 | #ifdef CONFIG_SCHED_SMT |
| 6875 | SD_INIT_FUNC(SIBLING) |
| 6876 | #endif |
| 6877 | #ifdef CONFIG_SCHED_MC |
| 6878 | SD_INIT_FUNC(MC) |
| 6879 | #endif |
| 6880 | |
| 6881 | /* |
| 6882 | * To minimize stack usage kmalloc room for cpumasks and share the |
| 6883 | * space as the usage in build_sched_domains() dictates. Used only |
| 6884 | * if the amount of space is significant. |
| 6885 | */ |
| 6886 | struct allmasks { |
| 6887 | cpumask_t tmpmask; /* make this one first */ |
| 6888 | union { |
| 6889 | cpumask_t nodemask; |
| 6890 | cpumask_t this_sibling_map; |
| 6891 | cpumask_t this_core_map; |
| 6892 | }; |
| 6893 | cpumask_t send_covered; |
| 6894 | |
| 6895 | #ifdef CONFIG_NUMA |
| 6896 | cpumask_t domainspan; |
| 6897 | cpumask_t covered; |
| 6898 | cpumask_t notcovered; |
| 6899 | #endif |
| 6900 | }; |
| 6901 | |
| 6902 | #if NR_CPUS > 128 |
| 6903 | #define SCHED_CPUMASK_ALLOC 1 |
| 6904 | #define SCHED_CPUMASK_FREE(v) kfree(v) |
| 6905 | #define SCHED_CPUMASK_DECLARE(v) struct allmasks *v |
| 6906 | #else |
| 6907 | #define SCHED_CPUMASK_ALLOC 0 |
| 6908 | #define SCHED_CPUMASK_FREE(v) |
| 6909 | #define SCHED_CPUMASK_DECLARE(v) struct allmasks _v, *v = &_v |
| 6910 | #endif |
| 6911 | |
| 6912 | #define SCHED_CPUMASK_VAR(v, a) cpumask_t *v = (cpumask_t *) \ |
| 6913 | ((unsigned long)(a) + offsetof(struct allmasks, v)) |
| 6914 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 6915 | static int default_relax_domain_level = -1; |
| 6916 | |
| 6917 | static int __init setup_relax_domain_level(char *str) |
| 6918 | { |
| 6919 | default_relax_domain_level = simple_strtoul(str, NULL, 0); |
| 6920 | return 1; |
| 6921 | } |
| 6922 | __setup("relax_domain_level=", setup_relax_domain_level); |
| 6923 | |
| 6924 | static void set_domain_attribute(struct sched_domain *sd, |
| 6925 | struct sched_domain_attr *attr) |
| 6926 | { |
| 6927 | int request; |
| 6928 | |
| 6929 | if (!attr || attr->relax_domain_level < 0) { |
| 6930 | if (default_relax_domain_level < 0) |
| 6931 | return; |
| 6932 | else |
| 6933 | request = default_relax_domain_level; |
| 6934 | } else |
| 6935 | request = attr->relax_domain_level; |
| 6936 | if (request < sd->level) { |
| 6937 | /* turn off idle balance on this domain */ |
| 6938 | sd->flags &= ~(SD_WAKE_IDLE|SD_BALANCE_NEWIDLE); |
| 6939 | } else { |
| 6940 | /* turn on idle balance on this domain */ |
| 6941 | sd->flags |= (SD_WAKE_IDLE_FAR|SD_BALANCE_NEWIDLE); |
| 6942 | } |
| 6943 | } |
| 6944 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6945 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6946 | * Build sched domains for a given set of cpus and attach the sched domains |
| 6947 | * to the individual cpus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6948 | */ |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 6949 | static int __build_sched_domains(const cpumask_t *cpu_map, |
| 6950 | struct sched_domain_attr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6951 | { |
| 6952 | int i; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6953 | struct root_domain *rd; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6954 | SCHED_CPUMASK_DECLARE(allmasks); |
| 6955 | cpumask_t *tmpmask; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6956 | #ifdef CONFIG_NUMA |
| 6957 | struct sched_group **sched_group_nodes = NULL; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 6958 | int sd_allnodes = 0; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6959 | |
| 6960 | /* |
| 6961 | * Allocate the per-node list of sched groups |
| 6962 | */ |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6963 | sched_group_nodes = kcalloc(MAX_NUMNODES, sizeof(struct sched_group *), |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6964 | GFP_KERNEL); |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6965 | if (!sched_group_nodes) { |
| 6966 | printk(KERN_WARNING "Can not alloc sched group node list\n"); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 6967 | return -ENOMEM; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6968 | } |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6969 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6970 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6971 | rd = alloc_rootdomain(); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6972 | if (!rd) { |
| 6973 | printk(KERN_WARNING "Cannot alloc root domain\n"); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6974 | #ifdef CONFIG_NUMA |
| 6975 | kfree(sched_group_nodes); |
| 6976 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6977 | return -ENOMEM; |
| 6978 | } |
| 6979 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6980 | #if SCHED_CPUMASK_ALLOC |
| 6981 | /* get space for all scratch cpumask variables */ |
| 6982 | allmasks = kmalloc(sizeof(*allmasks), GFP_KERNEL); |
| 6983 | if (!allmasks) { |
| 6984 | printk(KERN_WARNING "Cannot alloc cpumask array\n"); |
| 6985 | kfree(rd); |
| 6986 | #ifdef CONFIG_NUMA |
| 6987 | kfree(sched_group_nodes); |
| 6988 | #endif |
| 6989 | return -ENOMEM; |
| 6990 | } |
| 6991 | #endif |
| 6992 | tmpmask = (cpumask_t *)allmasks; |
| 6993 | |
| 6994 | |
| 6995 | #ifdef CONFIG_NUMA |
| 6996 | sched_group_nodes_bycpu[first_cpu(*cpu_map)] = sched_group_nodes; |
| 6997 | #endif |
| 6998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6999 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7000 | * Set up domains for cpus specified by the cpu_map. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7001 | */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7002 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7003 | struct sched_domain *sd = NULL, *p; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7004 | SCHED_CPUMASK_VAR(nodemask, allmasks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7005 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7006 | *nodemask = node_to_cpumask(cpu_to_node(i)); |
| 7007 | cpus_and(*nodemask, *nodemask, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7008 | |
| 7009 | #ifdef CONFIG_NUMA |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7010 | if (cpus_weight(*cpu_map) > |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7011 | SD_NODES_PER_DOMAIN*cpus_weight(*nodemask)) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7012 | sd = &per_cpu(allnodes_domains, i); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7013 | SD_INIT(sd, ALLNODES); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7014 | set_domain_attribute(sd, attr); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7015 | sd->span = *cpu_map; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7016 | cpu_to_allnodes_group(i, cpu_map, &sd->groups, tmpmask); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7017 | p = sd; |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 7018 | sd_allnodes = 1; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7019 | } else |
| 7020 | p = NULL; |
| 7021 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7022 | sd = &per_cpu(node_domains, i); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7023 | SD_INIT(sd, NODE); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7024 | set_domain_attribute(sd, attr); |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 7025 | sched_domain_node_span(cpu_to_node(i), &sd->span); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7026 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 7027 | if (p) |
| 7028 | p->child = sd; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7029 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7030 | #endif |
| 7031 | |
| 7032 | p = sd; |
| 7033 | sd = &per_cpu(phys_domains, i); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7034 | SD_INIT(sd, CPU); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7035 | set_domain_attribute(sd, attr); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7036 | sd->span = *nodemask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7037 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 7038 | if (p) |
| 7039 | p->child = sd; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7040 | cpu_to_phys_group(i, cpu_map, &sd->groups, tmpmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7041 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7042 | #ifdef CONFIG_SCHED_MC |
| 7043 | p = sd; |
| 7044 | sd = &per_cpu(core_domains, i); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7045 | SD_INIT(sd, MC); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7046 | set_domain_attribute(sd, attr); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7047 | sd->span = cpu_coregroup_map(i); |
| 7048 | cpus_and(sd->span, sd->span, *cpu_map); |
| 7049 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 7050 | p->child = sd; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7051 | cpu_to_core_group(i, cpu_map, &sd->groups, tmpmask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7052 | #endif |
| 7053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7054 | #ifdef CONFIG_SCHED_SMT |
| 7055 | p = sd; |
| 7056 | sd = &per_cpu(cpu_domains, i); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7057 | SD_INIT(sd, SIBLING); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7058 | set_domain_attribute(sd, attr); |
Mike Travis | d5a7430 | 2007-10-16 01:24:05 -0700 | [diff] [blame] | 7059 | sd->span = per_cpu(cpu_sibling_map, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7060 | cpus_and(sd->span, sd->span, *cpu_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7061 | sd->parent = p; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 7062 | p->child = sd; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7063 | cpu_to_cpu_group(i, cpu_map, &sd->groups, tmpmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7064 | #endif |
| 7065 | } |
| 7066 | |
| 7067 | #ifdef CONFIG_SCHED_SMT |
| 7068 | /* Set up CPU (sibling) groups */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7069 | for_each_cpu_mask(i, *cpu_map) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7070 | SCHED_CPUMASK_VAR(this_sibling_map, allmasks); |
| 7071 | SCHED_CPUMASK_VAR(send_covered, allmasks); |
| 7072 | |
| 7073 | *this_sibling_map = per_cpu(cpu_sibling_map, i); |
| 7074 | cpus_and(*this_sibling_map, *this_sibling_map, *cpu_map); |
| 7075 | if (i != first_cpu(*this_sibling_map)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7076 | continue; |
| 7077 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7078 | init_sched_build_groups(this_sibling_map, cpu_map, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7079 | &cpu_to_cpu_group, |
| 7080 | send_covered, tmpmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7081 | } |
| 7082 | #endif |
| 7083 | |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7084 | #ifdef CONFIG_SCHED_MC |
| 7085 | /* Set up multi-core groups */ |
| 7086 | for_each_cpu_mask(i, *cpu_map) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7087 | SCHED_CPUMASK_VAR(this_core_map, allmasks); |
| 7088 | SCHED_CPUMASK_VAR(send_covered, allmasks); |
| 7089 | |
| 7090 | *this_core_map = cpu_coregroup_map(i); |
| 7091 | cpus_and(*this_core_map, *this_core_map, *cpu_map); |
| 7092 | if (i != first_cpu(*this_core_map)) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7093 | continue; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7094 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7095 | init_sched_build_groups(this_core_map, cpu_map, |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7096 | &cpu_to_core_group, |
| 7097 | send_covered, tmpmask); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7098 | } |
| 7099 | #endif |
| 7100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7101 | /* Set up physical groups */ |
| 7102 | for (i = 0; i < MAX_NUMNODES; i++) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7103 | SCHED_CPUMASK_VAR(nodemask, allmasks); |
| 7104 | SCHED_CPUMASK_VAR(send_covered, allmasks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7105 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7106 | *nodemask = node_to_cpumask(i); |
| 7107 | cpus_and(*nodemask, *nodemask, *cpu_map); |
| 7108 | if (cpus_empty(*nodemask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7109 | continue; |
| 7110 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7111 | init_sched_build_groups(nodemask, cpu_map, |
| 7112 | &cpu_to_phys_group, |
| 7113 | send_covered, tmpmask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7114 | } |
| 7115 | |
| 7116 | #ifdef CONFIG_NUMA |
| 7117 | /* Set up node groups */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7118 | if (sd_allnodes) { |
| 7119 | SCHED_CPUMASK_VAR(send_covered, allmasks); |
| 7120 | |
| 7121 | init_sched_build_groups(cpu_map, cpu_map, |
| 7122 | &cpu_to_allnodes_group, |
| 7123 | send_covered, tmpmask); |
| 7124 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7125 | |
| 7126 | for (i = 0; i < MAX_NUMNODES; i++) { |
| 7127 | /* Set up node groups */ |
| 7128 | struct sched_group *sg, *prev; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7129 | SCHED_CPUMASK_VAR(nodemask, allmasks); |
| 7130 | SCHED_CPUMASK_VAR(domainspan, allmasks); |
| 7131 | SCHED_CPUMASK_VAR(covered, allmasks); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7132 | int j; |
| 7133 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7134 | *nodemask = node_to_cpumask(i); |
| 7135 | cpus_clear(*covered); |
| 7136 | |
| 7137 | cpus_and(*nodemask, *nodemask, *cpu_map); |
| 7138 | if (cpus_empty(*nodemask)) { |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7139 | sched_group_nodes[i] = NULL; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7140 | continue; |
John Hawkes | d1b5513 | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7141 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7142 | |
Mike Travis | 4bdbaad3 | 2008-04-15 16:35:52 -0700 | [diff] [blame] | 7143 | sched_domain_node_span(i, domainspan); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7144 | cpus_and(*domainspan, *domainspan, *cpu_map); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7145 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 7146 | sg = kmalloc_node(sizeof(struct sched_group), GFP_KERNEL, i); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7147 | if (!sg) { |
| 7148 | printk(KERN_WARNING "Can not alloc domain group for " |
| 7149 | "node %d\n", i); |
| 7150 | goto error; |
| 7151 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7152 | sched_group_nodes[i] = sg; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7153 | for_each_cpu_mask(j, *nodemask) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7154 | struct sched_domain *sd; |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 7155 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7156 | sd = &per_cpu(node_domains, j); |
| 7157 | sd->groups = sg; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7158 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 7159 | sg->__cpu_power = 0; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7160 | sg->cpumask = *nodemask; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7161 | sg->next = sg; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7162 | cpus_or(*covered, *covered, *nodemask); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7163 | prev = sg; |
| 7164 | |
| 7165 | for (j = 0; j < MAX_NUMNODES; j++) { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7166 | SCHED_CPUMASK_VAR(notcovered, allmasks); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7167 | int n = (i + j) % MAX_NUMNODES; |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7168 | node_to_cpumask_ptr(pnodemask, n); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7169 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7170 | cpus_complement(*notcovered, *covered); |
| 7171 | cpus_and(*tmpmask, *notcovered, *cpu_map); |
| 7172 | cpus_and(*tmpmask, *tmpmask, *domainspan); |
| 7173 | if (cpus_empty(*tmpmask)) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7174 | break; |
| 7175 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7176 | cpus_and(*tmpmask, *tmpmask, *pnodemask); |
| 7177 | if (cpus_empty(*tmpmask)) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7178 | continue; |
| 7179 | |
Srivatsa Vaddagiri | 15f0b67 | 2006-06-27 02:54:40 -0700 | [diff] [blame] | 7180 | sg = kmalloc_node(sizeof(struct sched_group), |
| 7181 | GFP_KERNEL, i); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7182 | if (!sg) { |
| 7183 | printk(KERN_WARNING |
| 7184 | "Can not alloc domain group for node %d\n", j); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7185 | goto error; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7186 | } |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 7187 | sg->__cpu_power = 0; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7188 | sg->cpumask = *tmpmask; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7189 | sg->next = prev->next; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7190 | cpus_or(*covered, *covered, *tmpmask); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7191 | prev->next = sg; |
| 7192 | prev = sg; |
| 7193 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7195 | #endif |
| 7196 | |
| 7197 | /* Calculate CPU power for physical packages and nodes */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7198 | #ifdef CONFIG_SCHED_SMT |
| 7199 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7200 | struct sched_domain *sd = &per_cpu(cpu_domains, i); |
| 7201 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7202 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7203 | } |
| 7204 | #endif |
| 7205 | #ifdef CONFIG_SCHED_MC |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7206 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7207 | struct sched_domain *sd = &per_cpu(core_domains, i); |
| 7208 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7209 | init_sched_groups_power(i, sd); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7210 | } |
| 7211 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7212 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7213 | for_each_cpu_mask(i, *cpu_map) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7214 | struct sched_domain *sd = &per_cpu(phys_domains, i); |
| 7215 | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7216 | init_sched_groups_power(i, sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7217 | } |
| 7218 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7219 | #ifdef CONFIG_NUMA |
Siddha, Suresh B | 0806903 | 2006-03-27 01:15:23 -0800 | [diff] [blame] | 7220 | for (i = 0; i < MAX_NUMNODES; i++) |
| 7221 | init_numa_sched_groups_power(sched_group_nodes[i]); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7222 | |
Siddha, Suresh B | 6711cab | 2006-12-10 02:20:07 -0800 | [diff] [blame] | 7223 | if (sd_allnodes) { |
| 7224 | struct sched_group *sg; |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 7225 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7226 | cpu_to_allnodes_group(first_cpu(*cpu_map), cpu_map, &sg, |
| 7227 | tmpmask); |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 7228 | init_numa_sched_groups_power(sg); |
| 7229 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7230 | #endif |
| 7231 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7232 | /* Attach the domains */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7233 | for_each_cpu_mask(i, *cpu_map) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7234 | struct sched_domain *sd; |
| 7235 | #ifdef CONFIG_SCHED_SMT |
| 7236 | sd = &per_cpu(cpu_domains, i); |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7237 | #elif defined(CONFIG_SCHED_MC) |
| 7238 | sd = &per_cpu(core_domains, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7239 | #else |
| 7240 | sd = &per_cpu(phys_domains, i); |
| 7241 | #endif |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7242 | cpu_attach_domain(sd, rd, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7243 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7244 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7245 | SCHED_CPUMASK_FREE((void *)allmasks); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7246 | return 0; |
| 7247 | |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 7248 | #ifdef CONFIG_NUMA |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7249 | error: |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7250 | free_sched_groups(cpu_map, tmpmask); |
| 7251 | SCHED_CPUMASK_FREE((void *)allmasks); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7252 | return -ENOMEM; |
Siddha, Suresh B | a616058 | 2006-10-03 01:14:06 -0700 | [diff] [blame] | 7253 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7254 | } |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7255 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7256 | static int build_sched_domains(const cpumask_t *cpu_map) |
| 7257 | { |
| 7258 | return __build_sched_domains(cpu_map, NULL); |
| 7259 | } |
| 7260 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7261 | static cpumask_t *doms_cur; /* current sched domains */ |
| 7262 | static int ndoms_cur; /* number of sched domains in 'doms_cur' */ |
Ingo Molnar | 4285f594 | 2008-05-16 17:47:14 +0200 | [diff] [blame] | 7263 | static struct sched_domain_attr *dattr_cur; |
| 7264 | /* attribues of custom domains in 'doms_cur' */ |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7265 | |
| 7266 | /* |
| 7267 | * Special case: If a kmalloc of a doms_cur partition (array of |
| 7268 | * cpumask_t) fails, then fallback to a single sched domain, |
| 7269 | * as determined by the single cpumask_t fallback_doms. |
| 7270 | */ |
| 7271 | static cpumask_t fallback_doms; |
| 7272 | |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7273 | void __attribute__((weak)) arch_update_cpu_topology(void) |
| 7274 | { |
| 7275 | } |
| 7276 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7277 | /* |
Max Krasnyansky | 5c8e1ed | 2008-05-29 11:17:01 -0700 | [diff] [blame] | 7278 | * Free current domain masks. |
| 7279 | * Called after all cpus are attached to NULL domain. |
| 7280 | */ |
| 7281 | static void free_sched_domains(void) |
| 7282 | { |
| 7283 | ndoms_cur = 0; |
| 7284 | if (doms_cur != &fallback_doms) |
| 7285 | kfree(doms_cur); |
| 7286 | doms_cur = &fallback_doms; |
| 7287 | } |
| 7288 | |
| 7289 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7290 | * Set up scheduler domains and groups. Callers must hold the hotplug lock. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7291 | * For now this just excludes isolated cpus, but could be used to |
| 7292 | * exclude other special cases in the future. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7293 | */ |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7294 | static int arch_init_sched_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7295 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7296 | int err; |
| 7297 | |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7298 | arch_update_cpu_topology(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7299 | ndoms_cur = 1; |
| 7300 | doms_cur = kmalloc(sizeof(cpumask_t), GFP_KERNEL); |
| 7301 | if (!doms_cur) |
| 7302 | doms_cur = &fallback_doms; |
| 7303 | cpus_andnot(*doms_cur, *cpu_map, cpu_isolated_map); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7304 | dattr_cur = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7305 | err = build_sched_domains(doms_cur); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 7306 | register_sched_domain_sysctl(); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7307 | |
| 7308 | return err; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7309 | } |
| 7310 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7311 | static void arch_destroy_sched_domains(const cpumask_t *cpu_map, |
| 7312 | cpumask_t *tmpmask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7313 | { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7314 | free_sched_groups(cpu_map, tmpmask); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7315 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7316 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7317 | /* |
| 7318 | * Detach sched domains from a group of cpus specified in cpu_map |
| 7319 | * These cpus will now be attached to the NULL domain |
| 7320 | */ |
Arjan van de Ven | 858119e | 2006-01-14 13:20:43 -0800 | [diff] [blame] | 7321 | static void detach_destroy_domains(const cpumask_t *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7322 | { |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7323 | cpumask_t tmpmask; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7324 | int i; |
| 7325 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 7326 | unregister_sched_domain_sysctl(); |
| 7327 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7328 | for_each_cpu_mask(i, *cpu_map) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7329 | cpu_attach_domain(NULL, &def_root_domain, i); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7330 | synchronize_sched(); |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7331 | arch_destroy_sched_domains(cpu_map, &tmpmask); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7332 | } |
| 7333 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7334 | /* handle null as "default" */ |
| 7335 | static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur, |
| 7336 | struct sched_domain_attr *new, int idx_new) |
| 7337 | { |
| 7338 | struct sched_domain_attr tmp; |
| 7339 | |
| 7340 | /* fast path */ |
| 7341 | if (!new && !cur) |
| 7342 | return 1; |
| 7343 | |
| 7344 | tmp = SD_ATTR_INIT; |
| 7345 | return !memcmp(cur ? (cur + idx_cur) : &tmp, |
| 7346 | new ? (new + idx_new) : &tmp, |
| 7347 | sizeof(struct sched_domain_attr)); |
| 7348 | } |
| 7349 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7350 | /* |
| 7351 | * Partition sched domains as specified by the 'ndoms_new' |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7352 | * cpumasks in the array doms_new[] of cpumasks. This compares |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7353 | * doms_new[] to the current sched domain partitioning, doms_cur[]. |
| 7354 | * It destroys each deleted domain and builds each new domain. |
| 7355 | * |
| 7356 | * '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] | 7357 | * The masks don't intersect (don't overlap.) We should setup one |
| 7358 | * sched domain for each mask. CPUs not in any of the cpumasks will |
| 7359 | * not be load balanced. If the same cpumask appears both in the |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7360 | * current 'doms_cur' domains and in the new 'doms_new', we can leave |
| 7361 | * it as it is. |
| 7362 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7363 | * The passed in 'doms_new' should be kmalloc'd. This routine takes |
| 7364 | * 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] | 7365 | * failed the kmalloc call, then it can pass in doms_new == NULL, |
| 7366 | * and partition_sched_domains() will fallback to the single partition |
| 7367 | * 'fallback_doms'. |
| 7368 | * |
| 7369 | * Call with hotplug lock held |
| 7370 | */ |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7371 | void partition_sched_domains(int ndoms_new, cpumask_t *doms_new, |
| 7372 | struct sched_domain_attr *dattr_new) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7373 | { |
| 7374 | int i, j; |
| 7375 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7376 | mutex_lock(&sched_domains_mutex); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7377 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7378 | /* always unregister in case we don't destroy any domains */ |
| 7379 | unregister_sched_domain_sysctl(); |
| 7380 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7381 | if (doms_new == NULL) { |
| 7382 | ndoms_new = 1; |
| 7383 | doms_new = &fallback_doms; |
| 7384 | cpus_andnot(doms_new[0], cpu_online_map, cpu_isolated_map); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7385 | dattr_new = NULL; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7386 | } |
| 7387 | |
| 7388 | /* Destroy deleted domains */ |
| 7389 | for (i = 0; i < ndoms_cur; i++) { |
| 7390 | for (j = 0; j < ndoms_new; j++) { |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7391 | if (cpus_equal(doms_cur[i], doms_new[j]) |
| 7392 | && dattrs_equal(dattr_cur, i, dattr_new, j)) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7393 | goto match1; |
| 7394 | } |
| 7395 | /* no match - a current sched domain not in new doms_new[] */ |
| 7396 | detach_destroy_domains(doms_cur + i); |
| 7397 | match1: |
| 7398 | ; |
| 7399 | } |
| 7400 | |
| 7401 | /* Build new domains */ |
| 7402 | for (i = 0; i < ndoms_new; i++) { |
| 7403 | for (j = 0; j < ndoms_cur; j++) { |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7404 | if (cpus_equal(doms_new[i], doms_cur[j]) |
| 7405 | && dattrs_equal(dattr_new, i, dattr_cur, j)) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7406 | goto match2; |
| 7407 | } |
| 7408 | /* no match - add a new doms_new */ |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7409 | __build_sched_domains(doms_new + i, |
| 7410 | dattr_new ? dattr_new + i : NULL); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7411 | match2: |
| 7412 | ; |
| 7413 | } |
| 7414 | |
| 7415 | /* Remember the new sched domains */ |
| 7416 | if (doms_cur != &fallback_doms) |
| 7417 | kfree(doms_cur); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7418 | kfree(dattr_cur); /* kfree(NULL) is safe */ |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7419 | doms_cur = doms_new; |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7420 | dattr_cur = dattr_new; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7421 | ndoms_cur = ndoms_new; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7422 | |
| 7423 | register_sched_domain_sysctl(); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7424 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7425 | mutex_unlock(&sched_domains_mutex); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7426 | } |
| 7427 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7428 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Heiko Carstens | 9aefd0a | 2008-03-12 18:31:58 +0100 | [diff] [blame] | 7429 | int arch_reinit_sched_domains(void) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7430 | { |
| 7431 | int err; |
| 7432 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7433 | get_online_cpus(); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7434 | mutex_lock(&sched_domains_mutex); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7435 | detach_destroy_domains(&cpu_online_map); |
Max Krasnyansky | 5c8e1ed | 2008-05-29 11:17:01 -0700 | [diff] [blame] | 7436 | free_sched_domains(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7437 | err = arch_init_sched_domains(&cpu_online_map); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7438 | mutex_unlock(&sched_domains_mutex); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7439 | put_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7440 | |
| 7441 | return err; |
| 7442 | } |
| 7443 | |
| 7444 | static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt) |
| 7445 | { |
| 7446 | int ret; |
| 7447 | |
| 7448 | if (buf[0] != '0' && buf[0] != '1') |
| 7449 | return -EINVAL; |
| 7450 | |
| 7451 | if (smt) |
| 7452 | sched_smt_power_savings = (buf[0] == '1'); |
| 7453 | else |
| 7454 | sched_mc_power_savings = (buf[0] == '1'); |
| 7455 | |
| 7456 | ret = arch_reinit_sched_domains(); |
| 7457 | |
| 7458 | return ret ? ret : count; |
| 7459 | } |
| 7460 | |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7461 | #ifdef CONFIG_SCHED_MC |
| 7462 | static ssize_t sched_mc_power_savings_show(struct sys_device *dev, char *page) |
| 7463 | { |
| 7464 | return sprintf(page, "%u\n", sched_mc_power_savings); |
| 7465 | } |
| 7466 | static ssize_t sched_mc_power_savings_store(struct sys_device *dev, |
| 7467 | const char *buf, size_t count) |
| 7468 | { |
| 7469 | return sched_power_savings_store(buf, count, 0); |
| 7470 | } |
| 7471 | static SYSDEV_ATTR(sched_mc_power_savings, 0644, sched_mc_power_savings_show, |
| 7472 | sched_mc_power_savings_store); |
| 7473 | #endif |
| 7474 | |
| 7475 | #ifdef CONFIG_SCHED_SMT |
| 7476 | static ssize_t sched_smt_power_savings_show(struct sys_device *dev, char *page) |
| 7477 | { |
| 7478 | return sprintf(page, "%u\n", sched_smt_power_savings); |
| 7479 | } |
| 7480 | static ssize_t sched_smt_power_savings_store(struct sys_device *dev, |
| 7481 | const char *buf, size_t count) |
| 7482 | { |
| 7483 | return sched_power_savings_store(buf, count, 1); |
| 7484 | } |
| 7485 | static SYSDEV_ATTR(sched_smt_power_savings, 0644, sched_smt_power_savings_show, |
| 7486 | sched_smt_power_savings_store); |
| 7487 | #endif |
| 7488 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7489 | int sched_create_sysfs_power_savings_entries(struct sysdev_class *cls) |
| 7490 | { |
| 7491 | int err = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7492 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7493 | #ifdef CONFIG_SCHED_SMT |
| 7494 | if (smt_capable()) |
| 7495 | err = sysfs_create_file(&cls->kset.kobj, |
| 7496 | &attr_sched_smt_power_savings.attr); |
| 7497 | #endif |
| 7498 | #ifdef CONFIG_SCHED_MC |
| 7499 | if (!err && mc_capable()) |
| 7500 | err = sysfs_create_file(&cls->kset.kobj, |
| 7501 | &attr_sched_mc_power_savings.attr); |
| 7502 | #endif |
| 7503 | return err; |
| 7504 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7505 | #endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7507 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7508 | * Force a reinitialization of the sched domains hierarchy. The domains |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7509 | * and groups cannot be updated in place without racing with the balancing |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7510 | * code, so we temporarily attach all running cpus to the NULL domain |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7511 | * which will prevent rebalancing while the sched domains are recalculated. |
| 7512 | */ |
| 7513 | static int update_sched_domains(struct notifier_block *nfb, |
| 7514 | unsigned long action, void *hcpu) |
| 7515 | { |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame^] | 7516 | int cpu = (int)(long)hcpu; |
| 7517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7518 | switch (action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7519 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7520 | case CPU_DOWN_PREPARE_FROZEN: |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame^] | 7521 | disable_runtime(cpu_rq(cpu)); |
| 7522 | /* fall-through */ |
| 7523 | case CPU_UP_PREPARE: |
| 7524 | case CPU_UP_PREPARE_FROZEN: |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7525 | detach_destroy_domains(&cpu_online_map); |
Max Krasnyansky | 5c8e1ed | 2008-05-29 11:17:01 -0700 | [diff] [blame] | 7526 | free_sched_domains(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7527 | return NOTIFY_OK; |
| 7528 | |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame^] | 7529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7530 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7531 | case CPU_DOWN_FAILED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7532 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7533 | case CPU_ONLINE_FROZEN: |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame^] | 7534 | enable_runtime(cpu_rq(cpu)); |
| 7535 | /* fall-through */ |
| 7536 | case CPU_UP_CANCELED: |
| 7537 | case CPU_UP_CANCELED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7538 | case CPU_DEAD: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7539 | case CPU_DEAD_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7540 | /* |
| 7541 | * Fall through and re-initialise the domains. |
| 7542 | */ |
| 7543 | break; |
| 7544 | default: |
| 7545 | return NOTIFY_DONE; |
| 7546 | } |
| 7547 | |
Max Krasnyansky | 5c8e1ed | 2008-05-29 11:17:01 -0700 | [diff] [blame] | 7548 | #ifndef CONFIG_CPUSETS |
| 7549 | /* |
| 7550 | * Create default domain partitioning if cpusets are disabled. |
| 7551 | * Otherwise we let cpusets rebuild the domains based on the |
| 7552 | * current setup. |
| 7553 | */ |
| 7554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7555 | /* The hotplug lock is already held by cpu_up/cpu_down */ |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7556 | arch_init_sched_domains(&cpu_online_map); |
Max Krasnyansky | 5c8e1ed | 2008-05-29 11:17:01 -0700 | [diff] [blame] | 7557 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7558 | |
| 7559 | return NOTIFY_OK; |
| 7560 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7561 | |
| 7562 | void __init sched_init_smp(void) |
| 7563 | { |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7564 | cpumask_t non_isolated_cpus; |
| 7565 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7566 | #if defined(CONFIG_NUMA) |
| 7567 | sched_group_nodes_bycpu = kzalloc(nr_cpu_ids * sizeof(void **), |
| 7568 | GFP_KERNEL); |
| 7569 | BUG_ON(sched_group_nodes_bycpu == NULL); |
| 7570 | #endif |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7571 | get_online_cpus(); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7572 | mutex_lock(&sched_domains_mutex); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7573 | arch_init_sched_domains(&cpu_online_map); |
Nathan Lynch | e5e5673 | 2007-01-10 23:15:28 -0800 | [diff] [blame] | 7574 | cpus_andnot(non_isolated_cpus, cpu_possible_map, cpu_isolated_map); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7575 | if (cpus_empty(non_isolated_cpus)) |
| 7576 | cpu_set(smp_processor_id(), non_isolated_cpus); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7577 | mutex_unlock(&sched_domains_mutex); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7578 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7579 | /* XXX: Theoretical race here - CPU may be hotplugged now */ |
| 7580 | hotcpu_notifier(update_sched_domains, 0); |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 7581 | init_hrtick(); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7582 | |
| 7583 | /* Move init over to a non-isolated CPU */ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7584 | if (set_cpus_allowed_ptr(current, &non_isolated_cpus) < 0) |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7585 | BUG(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7586 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7587 | } |
| 7588 | #else |
| 7589 | void __init sched_init_smp(void) |
| 7590 | { |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7591 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7592 | } |
| 7593 | #endif /* CONFIG_SMP */ |
| 7594 | |
| 7595 | int in_sched_functions(unsigned long addr) |
| 7596 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7597 | return in_lock_functions(addr) || |
| 7598 | (addr >= (unsigned long)__sched_text_start |
| 7599 | && addr < (unsigned long)__sched_text_end); |
| 7600 | } |
| 7601 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 7602 | 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] | 7603 | { |
| 7604 | cfs_rq->tasks_timeline = RB_ROOT; |
Peter Zijlstra | 4a55bd5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7605 | INIT_LIST_HEAD(&cfs_rq->tasks); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7606 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7607 | cfs_rq->rq = rq; |
| 7608 | #endif |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 7609 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7610 | } |
| 7611 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7612 | static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) |
| 7613 | { |
| 7614 | struct rt_prio_array *array; |
| 7615 | int i; |
| 7616 | |
| 7617 | array = &rt_rq->active; |
| 7618 | for (i = 0; i < MAX_RT_PRIO; i++) { |
Gregory Haskins | 45c01e8 | 2008-05-12 21:20:41 +0200 | [diff] [blame] | 7619 | INIT_LIST_HEAD(array->xqueue + i); |
| 7620 | INIT_LIST_HEAD(array->squeue + i); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7621 | __clear_bit(i, array->bitmap); |
| 7622 | } |
| 7623 | /* delimiter for bitsearch: */ |
| 7624 | __set_bit(MAX_RT_PRIO, array->bitmap); |
| 7625 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7626 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 48d5e25 | 2008-01-25 21:08:31 +0100 | [diff] [blame] | 7627 | rt_rq->highest_prio = MAX_RT_PRIO; |
| 7628 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7629 | #ifdef CONFIG_SMP |
| 7630 | rt_rq->rt_nr_migratory = 0; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7631 | rt_rq->overloaded = 0; |
| 7632 | #endif |
| 7633 | |
| 7634 | rt_rq->rt_time = 0; |
| 7635 | rt_rq->rt_throttled = 0; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 7636 | rt_rq->rt_runtime = 0; |
| 7637 | spin_lock_init(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7638 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7639 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7640 | rt_rq->rt_nr_boosted = 0; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7641 | rt_rq->rq = rq; |
| 7642 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7643 | } |
| 7644 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7645 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7646 | static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, |
| 7647 | struct sched_entity *se, int cpu, int add, |
| 7648 | struct sched_entity *parent) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7649 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7650 | struct rq *rq = cpu_rq(cpu); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7651 | tg->cfs_rq[cpu] = cfs_rq; |
| 7652 | init_cfs_rq(cfs_rq, rq); |
| 7653 | cfs_rq->tg = tg; |
| 7654 | if (add) |
| 7655 | list_add(&cfs_rq->leaf_cfs_rq_list, &rq->leaf_cfs_rq_list); |
| 7656 | |
| 7657 | tg->se[cpu] = se; |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7658 | /* se could be NULL for init_task_group */ |
| 7659 | if (!se) |
| 7660 | return; |
| 7661 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7662 | if (!parent) |
| 7663 | se->cfs_rq = &rq->cfs; |
| 7664 | else |
| 7665 | se->cfs_rq = parent->my_q; |
| 7666 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7667 | se->my_q = cfs_rq; |
| 7668 | se->load.weight = tg->shares; |
Peter Zijlstra | e05510d | 2008-05-05 23:56:17 +0200 | [diff] [blame] | 7669 | se->load.inv_weight = 0; |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7670 | se->parent = parent; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7671 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7672 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7673 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7674 | #ifdef CONFIG_RT_GROUP_SCHED |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7675 | static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq, |
| 7676 | struct sched_rt_entity *rt_se, int cpu, int add, |
| 7677 | struct sched_rt_entity *parent) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7678 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7679 | struct rq *rq = cpu_rq(cpu); |
| 7680 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7681 | tg->rt_rq[cpu] = rt_rq; |
| 7682 | init_rt_rq(rt_rq, rq); |
| 7683 | rt_rq->tg = tg; |
| 7684 | rt_rq->rt_se = rt_se; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 7685 | rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7686 | if (add) |
| 7687 | list_add(&rt_rq->leaf_rt_rq_list, &rq->leaf_rt_rq_list); |
| 7688 | |
| 7689 | tg->rt_se[cpu] = rt_se; |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7690 | if (!rt_se) |
| 7691 | return; |
| 7692 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7693 | if (!parent) |
| 7694 | rt_se->rt_rq = &rq->rt; |
| 7695 | else |
| 7696 | rt_se->rt_rq = parent->my_q; |
| 7697 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7698 | rt_se->rt_rq = &rq->rt; |
| 7699 | rt_se->my_q = rt_rq; |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7700 | rt_se->parent = parent; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7701 | INIT_LIST_HEAD(&rt_se->run_list); |
| 7702 | } |
| 7703 | #endif |
| 7704 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7705 | void __init sched_init(void) |
| 7706 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7707 | int i, j; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7708 | unsigned long alloc_size = 0, ptr; |
| 7709 | |
| 7710 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7711 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 7712 | #endif |
| 7713 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7714 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 7715 | #endif |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7716 | #ifdef CONFIG_USER_SCHED |
| 7717 | alloc_size *= 2; |
| 7718 | #endif |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7719 | /* |
| 7720 | * As sched_init() is called before page_alloc is setup, |
| 7721 | * we use alloc_bootmem(). |
| 7722 | */ |
| 7723 | if (alloc_size) { |
David Miller | 5a9d322 | 2008-04-24 20:46:20 -0700 | [diff] [blame] | 7724 | ptr = (unsigned long)alloc_bootmem(alloc_size); |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7725 | |
| 7726 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7727 | init_task_group.se = (struct sched_entity **)ptr; |
| 7728 | ptr += nr_cpu_ids * sizeof(void **); |
| 7729 | |
| 7730 | init_task_group.cfs_rq = (struct cfs_rq **)ptr; |
| 7731 | ptr += nr_cpu_ids * sizeof(void **); |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7732 | |
| 7733 | #ifdef CONFIG_USER_SCHED |
| 7734 | root_task_group.se = (struct sched_entity **)ptr; |
| 7735 | ptr += nr_cpu_ids * sizeof(void **); |
| 7736 | |
| 7737 | root_task_group.cfs_rq = (struct cfs_rq **)ptr; |
| 7738 | ptr += nr_cpu_ids * sizeof(void **); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7739 | #endif /* CONFIG_USER_SCHED */ |
| 7740 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7741 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7742 | init_task_group.rt_se = (struct sched_rt_entity **)ptr; |
| 7743 | ptr += nr_cpu_ids * sizeof(void **); |
| 7744 | |
| 7745 | init_task_group.rt_rq = (struct rt_rq **)ptr; |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7746 | ptr += nr_cpu_ids * sizeof(void **); |
| 7747 | |
| 7748 | #ifdef CONFIG_USER_SCHED |
| 7749 | root_task_group.rt_se = (struct sched_rt_entity **)ptr; |
| 7750 | ptr += nr_cpu_ids * sizeof(void **); |
| 7751 | |
| 7752 | root_task_group.rt_rq = (struct rt_rq **)ptr; |
| 7753 | ptr += nr_cpu_ids * sizeof(void **); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7754 | #endif /* CONFIG_USER_SCHED */ |
| 7755 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 7756 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7757 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7758 | #ifdef CONFIG_SMP |
| 7759 | init_defrootdomain(); |
| 7760 | #endif |
| 7761 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7762 | init_rt_bandwidth(&def_rt_bandwidth, |
| 7763 | global_rt_period(), global_rt_runtime()); |
| 7764 | |
| 7765 | #ifdef CONFIG_RT_GROUP_SCHED |
| 7766 | init_rt_bandwidth(&init_task_group.rt_bandwidth, |
| 7767 | global_rt_period(), global_rt_runtime()); |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7768 | #ifdef CONFIG_USER_SCHED |
| 7769 | init_rt_bandwidth(&root_task_group.rt_bandwidth, |
| 7770 | global_rt_period(), RUNTIME_INF); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7771 | #endif /* CONFIG_USER_SCHED */ |
| 7772 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 7773 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7774 | #ifdef CONFIG_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7775 | list_add(&init_task_group.list, &task_groups); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7776 | INIT_LIST_HEAD(&init_task_group.children); |
| 7777 | |
| 7778 | #ifdef CONFIG_USER_SCHED |
| 7779 | INIT_LIST_HEAD(&root_task_group.children); |
| 7780 | init_task_group.parent = &root_task_group; |
| 7781 | list_add(&init_task_group.siblings, &root_task_group.children); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7782 | #endif /* CONFIG_USER_SCHED */ |
| 7783 | #endif /* CONFIG_GROUP_SCHED */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7784 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 7785 | for_each_possible_cpu(i) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7786 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7787 | |
| 7788 | rq = cpu_rq(i); |
| 7789 | spin_lock_init(&rq->lock); |
Ingo Molnar | fcb9937 | 2006-07-03 00:25:10 -0700 | [diff] [blame] | 7790 | lockdep_set_class(&rq->lock, &rq->rq_lock_key); |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 7791 | rq->nr_running = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7792 | init_cfs_rq(&rq->cfs, rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7793 | init_rt_rq(&rq->rt, rq); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7794 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 7795 | init_task_group.shares = init_task_group_load; |
| 7796 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7797 | #ifdef CONFIG_CGROUP_SCHED |
| 7798 | /* |
| 7799 | * How much cpu bandwidth does init_task_group get? |
| 7800 | * |
| 7801 | * In case of task-groups formed thr' the cgroup filesystem, it |
| 7802 | * gets 100% of the cpu resources in the system. This overall |
| 7803 | * system cpu resource is divided among the tasks of |
| 7804 | * init_task_group and its child task-groups in a fair manner, |
| 7805 | * based on each entity's (task or task-group's) weight |
| 7806 | * (se->load.weight). |
| 7807 | * |
| 7808 | * In other words, if init_task_group has 10 tasks of weight |
| 7809 | * 1024) and two child groups A0 and A1 (of weight 1024 each), |
| 7810 | * then A0's share of the cpu resource is: |
| 7811 | * |
| 7812 | * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33% |
| 7813 | * |
| 7814 | * We achieve this by letting init_task_group's tasks sit |
| 7815 | * directly in rq->cfs (i.e init_task_group->se[] = NULL). |
| 7816 | */ |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7817 | init_tg_cfs_entry(&init_task_group, &rq->cfs, NULL, i, 1, NULL); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7818 | #elif defined CONFIG_USER_SCHED |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7819 | root_task_group.shares = NICE_0_LOAD; |
| 7820 | init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, 0, NULL); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7821 | /* |
| 7822 | * In case of task-groups formed thr' the user id of tasks, |
| 7823 | * init_task_group represents tasks belonging to root user. |
| 7824 | * Hence it forms a sibling of all subsequent groups formed. |
| 7825 | * In this case, init_task_group gets only a fraction of overall |
| 7826 | * system cpu resource, based on the weight assigned to root |
| 7827 | * user's cpu share (INIT_TASK_GROUP_LOAD). This is accomplished |
| 7828 | * by letting tasks of init_task_group sit in a separate cfs_rq |
| 7829 | * (init_cfs_rq) and having one entity represent this group of |
| 7830 | * tasks in rq->cfs (i.e init_task_group->se[] != NULL). |
| 7831 | */ |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7832 | init_tg_cfs_entry(&init_task_group, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7833 | &per_cpu(init_cfs_rq, i), |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7834 | &per_cpu(init_sched_entity, i), i, 1, |
| 7835 | root_task_group.se[i]); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7836 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7837 | #endif |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7838 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 7839 | |
| 7840 | rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 7841 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7842 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7843 | #ifdef CONFIG_CGROUP_SCHED |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7844 | init_tg_rt_entry(&init_task_group, &rq->rt, NULL, i, 1, NULL); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7845 | #elif defined CONFIG_USER_SCHED |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7846 | init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, 0, NULL); |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7847 | init_tg_rt_entry(&init_task_group, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7848 | &per_cpu(init_rt_rq, i), |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7849 | &per_cpu(init_sched_rt_entity, i), i, 1, |
| 7850 | root_task_group.rt_se[i]); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 7851 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 7852 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7853 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7854 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
| 7855 | rq->cpu_load[j] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7856 | #ifdef CONFIG_SMP |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 7857 | rq->sd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7858 | rq->rd = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7859 | rq->active_balance = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7860 | rq->next_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7861 | rq->push_cpu = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 7862 | rq->cpu = i; |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 7863 | rq->online = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7864 | rq->migration_thread = NULL; |
| 7865 | INIT_LIST_HEAD(&rq->migration_queue); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 7866 | rq_attach_root(rq, &def_root_domain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7867 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7868 | init_rq_hrtick(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7869 | atomic_set(&rq->nr_iowait, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7870 | } |
| 7871 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 7872 | set_load_weight(&init_task); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7873 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 7874 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 7875 | INIT_HLIST_HEAD(&init_task.preempt_notifiers); |
| 7876 | #endif |
| 7877 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 7878 | #ifdef CONFIG_SMP |
| 7879 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains, NULL); |
| 7880 | #endif |
| 7881 | |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 7882 | #ifdef CONFIG_RT_MUTEXES |
| 7883 | plist_head_init(&init_task.pi_waiters, &init_task.pi_lock); |
| 7884 | #endif |
| 7885 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7886 | /* |
| 7887 | * The boot idle thread does lazy MMU switching as well: |
| 7888 | */ |
| 7889 | atomic_inc(&init_mm.mm_count); |
| 7890 | enter_lazy_tlb(&init_mm, current); |
| 7891 | |
| 7892 | /* |
| 7893 | * Make us the idle thread. Technically, schedule() should not be |
| 7894 | * called from this thread, however somewhere below it might be, |
| 7895 | * but because we are the idle thread, we just pick up running again |
| 7896 | * when this runqueue becomes "idle". |
| 7897 | */ |
| 7898 | init_idle(current, smp_processor_id()); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7899 | /* |
| 7900 | * During early bootup we pretend to be a normal task: |
| 7901 | */ |
| 7902 | current->sched_class = &fair_sched_class; |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 7903 | |
| 7904 | scheduler_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7905 | } |
| 7906 | |
| 7907 | #ifdef CONFIG_DEBUG_SPINLOCK_SLEEP |
| 7908 | void __might_sleep(char *file, int line) |
| 7909 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7910 | #ifdef in_atomic |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7911 | static unsigned long prev_jiffy; /* ratelimiting */ |
| 7912 | |
| 7913 | if ((in_atomic() || irqs_disabled()) && |
| 7914 | system_state == SYSTEM_RUNNING && !oops_in_progress) { |
| 7915 | if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy) |
| 7916 | return; |
| 7917 | prev_jiffy = jiffies; |
Ingo Molnar | 91368d7 | 2006-03-23 03:00:54 -0800 | [diff] [blame] | 7918 | printk(KERN_ERR "BUG: sleeping function called from invalid" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7919 | " context at %s:%d\n", file, line); |
| 7920 | printk("in_atomic():%d, irqs_disabled():%d\n", |
| 7921 | in_atomic(), irqs_disabled()); |
Peter Zijlstra | a4c410f | 2006-12-06 20:37:21 -0800 | [diff] [blame] | 7922 | debug_show_held_locks(current); |
Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 7923 | if (irqs_disabled()) |
| 7924 | print_irqtrace_events(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7925 | dump_stack(); |
| 7926 | } |
| 7927 | #endif |
| 7928 | } |
| 7929 | EXPORT_SYMBOL(__might_sleep); |
| 7930 | #endif |
| 7931 | |
| 7932 | #ifdef CONFIG_MAGIC_SYSRQ |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7933 | static void normalize_task(struct rq *rq, struct task_struct *p) |
| 7934 | { |
| 7935 | int on_rq; |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 7936 | |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7937 | update_rq_clock(rq); |
| 7938 | on_rq = p->se.on_rq; |
| 7939 | if (on_rq) |
| 7940 | deactivate_task(rq, p, 0); |
| 7941 | __setscheduler(rq, p, SCHED_NORMAL, 0); |
| 7942 | if (on_rq) { |
| 7943 | activate_task(rq, p, 0); |
| 7944 | resched_task(rq->curr); |
| 7945 | } |
| 7946 | } |
| 7947 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7948 | void normalize_rt_tasks(void) |
| 7949 | { |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7950 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7951 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 7952 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7953 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7954 | read_lock_irqsave(&tasklist_lock, flags); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7955 | do_each_thread(g, p) { |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7956 | /* |
| 7957 | * Only normalize user tasks: |
| 7958 | */ |
| 7959 | if (!p->mm) |
| 7960 | continue; |
| 7961 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7962 | p->se.exec_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7963 | #ifdef CONFIG_SCHEDSTATS |
| 7964 | p->se.wait_start = 0; |
| 7965 | p->se.sleep_start = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7966 | p->se.block_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 7967 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7968 | |
| 7969 | if (!rt_task(p)) { |
| 7970 | /* |
| 7971 | * Renice negative nice level userspace |
| 7972 | * tasks back to 0: |
| 7973 | */ |
| 7974 | if (TASK_NICE(p) < 0 && p->mm) |
| 7975 | set_user_nice(p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7976 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7977 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7978 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7979 | spin_lock(&p->pi_lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7980 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7981 | |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 7982 | normalize_task(rq, p); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 7983 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 7984 | __task_rq_unlock(rq); |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7985 | spin_unlock(&p->pi_lock); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 7986 | } while_each_thread(g, p); |
| 7987 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 7988 | read_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7989 | } |
| 7990 | |
| 7991 | #endif /* CONFIG_MAGIC_SYSRQ */ |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 7992 | |
| 7993 | #ifdef CONFIG_IA64 |
| 7994 | /* |
| 7995 | * These functions are only useful for the IA64 MCA handling. |
| 7996 | * |
| 7997 | * They can only be called when the whole system has been |
| 7998 | * stopped - every CPU needs to be quiescent, and no scheduling |
| 7999 | * activity can take place. Using them for anything else would |
| 8000 | * be a serious bug, and as a result, they aren't even visible |
| 8001 | * under any other configuration. |
| 8002 | */ |
| 8003 | |
| 8004 | /** |
| 8005 | * curr_task - return the current task for a given cpu. |
| 8006 | * @cpu: the processor in question. |
| 8007 | * |
| 8008 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 8009 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 8010 | struct task_struct *curr_task(int cpu) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8011 | { |
| 8012 | return cpu_curr(cpu); |
| 8013 | } |
| 8014 | |
| 8015 | /** |
| 8016 | * set_curr_task - set the current task for a given cpu. |
| 8017 | * @cpu: the processor in question. |
| 8018 | * @p: the task pointer to set. |
| 8019 | * |
| 8020 | * Description: This function must only be used when non-maskable interrupts |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8021 | * are serviced on a separate stack. It allows the architecture to switch the |
| 8022 | * 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] | 8023 | * must be called with all CPU's synchronized, and interrupts disabled, the |
| 8024 | * and caller must save the original value of the current task (see |
| 8025 | * curr_task() above) and restore that value before reenabling interrupts and |
| 8026 | * re-starting the system. |
| 8027 | * |
| 8028 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 8029 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 8030 | void set_curr_task(int cpu, struct task_struct *p) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8031 | { |
| 8032 | cpu_curr(cpu) = p; |
| 8033 | } |
| 8034 | |
| 8035 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8036 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8037 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 8038 | static void free_fair_sched_group(struct task_group *tg) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8039 | { |
| 8040 | int i; |
| 8041 | |
| 8042 | for_each_possible_cpu(i) { |
| 8043 | if (tg->cfs_rq) |
| 8044 | kfree(tg->cfs_rq[i]); |
| 8045 | if (tg->se) |
| 8046 | kfree(tg->se[i]); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8047 | } |
| 8048 | |
| 8049 | kfree(tg->cfs_rq); |
| 8050 | kfree(tg->se); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8051 | } |
| 8052 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8053 | static |
| 8054 | int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8055 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8056 | struct cfs_rq *cfs_rq; |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8057 | struct sched_entity *se, *parent_se; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8058 | struct rq *rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8059 | int i; |
| 8060 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8061 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8062 | if (!tg->cfs_rq) |
| 8063 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8064 | tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8065 | if (!tg->se) |
| 8066 | goto err; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8067 | |
| 8068 | tg->shares = NICE_0_LOAD; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8069 | |
| 8070 | for_each_possible_cpu(i) { |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8071 | rq = cpu_rq(i); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8072 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8073 | cfs_rq = kmalloc_node(sizeof(struct cfs_rq), |
| 8074 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8075 | if (!cfs_rq) |
| 8076 | goto err; |
| 8077 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8078 | se = kmalloc_node(sizeof(struct sched_entity), |
| 8079 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8080 | if (!se) |
| 8081 | goto err; |
| 8082 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8083 | parent_se = parent ? parent->se[i] : NULL; |
| 8084 | init_tg_cfs_entry(tg, cfs_rq, se, i, 0, parent_se); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8085 | } |
| 8086 | |
| 8087 | return 1; |
| 8088 | |
| 8089 | err: |
| 8090 | return 0; |
| 8091 | } |
| 8092 | |
| 8093 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 8094 | { |
| 8095 | list_add_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list, |
| 8096 | &cpu_rq(cpu)->leaf_cfs_rq_list); |
| 8097 | } |
| 8098 | |
| 8099 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 8100 | { |
| 8101 | list_del_rcu(&tg->cfs_rq[cpu]->leaf_cfs_rq_list); |
| 8102 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8103 | #else /* !CONFG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8104 | static inline void free_fair_sched_group(struct task_group *tg) |
| 8105 | { |
| 8106 | } |
| 8107 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8108 | static inline |
| 8109 | int alloc_fair_sched_group(struct task_group *tg, struct task_group *parent) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8110 | { |
| 8111 | return 1; |
| 8112 | } |
| 8113 | |
| 8114 | static inline void register_fair_sched_group(struct task_group *tg, int cpu) |
| 8115 | { |
| 8116 | } |
| 8117 | |
| 8118 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 8119 | { |
| 8120 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8121 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8122 | |
| 8123 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8124 | static void free_rt_sched_group(struct task_group *tg) |
| 8125 | { |
| 8126 | int i; |
| 8127 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8128 | destroy_rt_bandwidth(&tg->rt_bandwidth); |
| 8129 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8130 | for_each_possible_cpu(i) { |
| 8131 | if (tg->rt_rq) |
| 8132 | kfree(tg->rt_rq[i]); |
| 8133 | if (tg->rt_se) |
| 8134 | kfree(tg->rt_se[i]); |
| 8135 | } |
| 8136 | |
| 8137 | kfree(tg->rt_rq); |
| 8138 | kfree(tg->rt_se); |
| 8139 | } |
| 8140 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8141 | static |
| 8142 | int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8143 | { |
| 8144 | struct rt_rq *rt_rq; |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8145 | struct sched_rt_entity *rt_se, *parent_se; |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8146 | struct rq *rq; |
| 8147 | int i; |
| 8148 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8149 | tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8150 | if (!tg->rt_rq) |
| 8151 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8152 | tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8153 | if (!tg->rt_se) |
| 8154 | goto err; |
| 8155 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8156 | init_rt_bandwidth(&tg->rt_bandwidth, |
| 8157 | ktime_to_ns(def_rt_bandwidth.rt_period), 0); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8158 | |
| 8159 | for_each_possible_cpu(i) { |
| 8160 | rq = cpu_rq(i); |
| 8161 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8162 | rt_rq = kmalloc_node(sizeof(struct rt_rq), |
| 8163 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 8164 | if (!rt_rq) |
| 8165 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8166 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8167 | rt_se = kmalloc_node(sizeof(struct sched_rt_entity), |
| 8168 | GFP_KERNEL|__GFP_ZERO, cpu_to_node(i)); |
| 8169 | if (!rt_se) |
| 8170 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8171 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8172 | parent_se = parent ? parent->rt_se[i] : NULL; |
| 8173 | init_tg_rt_entry(tg, rt_rq, rt_se, i, 0, parent_se); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8174 | } |
| 8175 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8176 | return 1; |
| 8177 | |
| 8178 | err: |
| 8179 | return 0; |
| 8180 | } |
| 8181 | |
| 8182 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 8183 | { |
| 8184 | list_add_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list, |
| 8185 | &cpu_rq(cpu)->leaf_rt_rq_list); |
| 8186 | } |
| 8187 | |
| 8188 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 8189 | { |
| 8190 | list_del_rcu(&tg->rt_rq[cpu]->leaf_rt_rq_list); |
| 8191 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8192 | #else /* !CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8193 | static inline void free_rt_sched_group(struct task_group *tg) |
| 8194 | { |
| 8195 | } |
| 8196 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8197 | static inline |
| 8198 | int alloc_rt_sched_group(struct task_group *tg, struct task_group *parent) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8199 | { |
| 8200 | return 1; |
| 8201 | } |
| 8202 | |
| 8203 | static inline void register_rt_sched_group(struct task_group *tg, int cpu) |
| 8204 | { |
| 8205 | } |
| 8206 | |
| 8207 | static inline void unregister_rt_sched_group(struct task_group *tg, int cpu) |
| 8208 | { |
| 8209 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8210 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8211 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8212 | #ifdef CONFIG_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8213 | static void free_sched_group(struct task_group *tg) |
| 8214 | { |
| 8215 | free_fair_sched_group(tg); |
| 8216 | free_rt_sched_group(tg); |
| 8217 | kfree(tg); |
| 8218 | } |
| 8219 | |
| 8220 | /* allocate runqueue etc for a new task group */ |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8221 | struct task_group *sched_create_group(struct task_group *parent) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8222 | { |
| 8223 | struct task_group *tg; |
| 8224 | unsigned long flags; |
| 8225 | int i; |
| 8226 | |
| 8227 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 8228 | if (!tg) |
| 8229 | return ERR_PTR(-ENOMEM); |
| 8230 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8231 | if (!alloc_fair_sched_group(tg, parent)) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8232 | goto err; |
| 8233 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8234 | if (!alloc_rt_sched_group(tg, parent)) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8235 | goto err; |
| 8236 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8237 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8238 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8239 | register_fair_sched_group(tg, i); |
| 8240 | register_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8241 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8242 | list_add_rcu(&tg->list, &task_groups); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8243 | |
| 8244 | WARN_ON(!parent); /* root should already exist */ |
| 8245 | |
| 8246 | tg->parent = parent; |
| 8247 | list_add_rcu(&tg->siblings, &parent->children); |
| 8248 | INIT_LIST_HEAD(&tg->children); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8249 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8250 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8251 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8252 | |
| 8253 | err: |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8254 | free_sched_group(tg); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8255 | return ERR_PTR(-ENOMEM); |
| 8256 | } |
| 8257 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8258 | /* rcu callback to free various structures associated with a task group */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8259 | static void free_sched_group_rcu(struct rcu_head *rhp) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8260 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8261 | /* now it should be safe to free those cfs_rqs */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8262 | free_sched_group(container_of(rhp, struct task_group, rcu)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8263 | } |
| 8264 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8265 | /* Destroy runqueue etc associated with a task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8266 | void sched_destroy_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8267 | { |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8268 | unsigned long flags; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8269 | int i; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8270 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8271 | spin_lock_irqsave(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8272 | for_each_possible_cpu(i) { |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8273 | unregister_fair_sched_group(tg, i); |
| 8274 | unregister_rt_sched_group(tg, i); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8275 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8276 | list_del_rcu(&tg->list); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8277 | list_del_rcu(&tg->siblings); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8278 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8279 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8280 | /* wait for possible concurrent references to cfs_rqs complete */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8281 | call_rcu(&tg->rcu, free_sched_group_rcu); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8282 | } |
| 8283 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8284 | /* change task's runqueue when it moves between groups. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 8285 | * The caller of this function should have put the task in its new group |
| 8286 | * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to |
| 8287 | * reflect its new group. |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8288 | */ |
| 8289 | void sched_move_task(struct task_struct *tsk) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8290 | { |
| 8291 | int on_rq, running; |
| 8292 | unsigned long flags; |
| 8293 | struct rq *rq; |
| 8294 | |
| 8295 | rq = task_rq_lock(tsk, &flags); |
| 8296 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8297 | update_rq_clock(rq); |
| 8298 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 8299 | running = task_current(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8300 | on_rq = tsk->se.on_rq; |
| 8301 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8302 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8303 | dequeue_task(rq, tsk, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8304 | if (unlikely(running)) |
| 8305 | tsk->sched_class->put_prev_task(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8306 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8307 | set_task_rq(tsk, task_cpu(tsk)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8308 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 8309 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 8310 | if (tsk->sched_class->moved_group) |
| 8311 | tsk->sched_class->moved_group(tsk); |
| 8312 | #endif |
| 8313 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8314 | if (unlikely(running)) |
| 8315 | tsk->sched_class->set_curr_task(rq); |
| 8316 | if (on_rq) |
Dmitry Adamushko | 7074bad | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8317 | enqueue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8318 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8319 | task_rq_unlock(rq, &flags); |
| 8320 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8321 | #endif /* CONFIG_GROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8322 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8323 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 8324 | static void set_se_shares(struct sched_entity *se, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8325 | { |
| 8326 | struct cfs_rq *cfs_rq = se->cfs_rq; |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 8327 | struct rq *rq = cfs_rq->rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8328 | int on_rq; |
| 8329 | |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 8330 | spin_lock_irq(&rq->lock); |
| 8331 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8332 | on_rq = se->on_rq; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8333 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8334 | dequeue_entity(cfs_rq, se, 0); |
| 8335 | |
| 8336 | se->load.weight = shares; |
Peter Zijlstra | e05510d | 2008-05-05 23:56:17 +0200 | [diff] [blame] | 8337 | se->load.inv_weight = 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8338 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8339 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8340 | enqueue_entity(cfs_rq, se, 0); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8341 | |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 8342 | spin_unlock_irq(&rq->lock); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8343 | } |
| 8344 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8345 | static DEFINE_MUTEX(shares_mutex); |
| 8346 | |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8347 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8348 | { |
| 8349 | int i; |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8350 | unsigned long flags; |
Ingo Molnar | c61935f | 2008-01-22 11:24:58 +0100 | [diff] [blame] | 8351 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8352 | /* |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8353 | * We can't change the weight of the root cgroup. |
| 8354 | */ |
| 8355 | if (!tg->se[0]) |
| 8356 | return -EINVAL; |
| 8357 | |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8358 | if (shares < MIN_SHARES) |
| 8359 | shares = MIN_SHARES; |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 8360 | else if (shares > MAX_SHARES) |
| 8361 | shares = MAX_SHARES; |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8362 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8363 | mutex_lock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8364 | if (tg->shares == shares) |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8365 | goto done; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8366 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8367 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8368 | for_each_possible_cpu(i) |
| 8369 | unregister_fair_sched_group(tg, i); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8370 | list_del_rcu(&tg->siblings); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8371 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 8372 | |
| 8373 | /* wait for any ongoing reference to this group to finish */ |
| 8374 | synchronize_sched(); |
| 8375 | |
| 8376 | /* |
| 8377 | * Now we are free to modify the group's share on each cpu |
| 8378 | * w/o tripping rebalance_share or load_balance_fair. |
| 8379 | */ |
| 8380 | tg->shares = shares; |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 8381 | for_each_possible_cpu(i) |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 8382 | set_se_shares(tg->se[i], shares); |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 8383 | |
| 8384 | /* |
| 8385 | * Enable load balance activity on this group, by inserting it back on |
| 8386 | * each cpu's rq->leaf_cfs_rq_list. |
| 8387 | */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8388 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8389 | for_each_possible_cpu(i) |
| 8390 | register_fair_sched_group(tg, i); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8391 | list_add_rcu(&tg->siblings, &tg->parent->children); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8392 | spin_unlock_irqrestore(&task_group_lock, flags); |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8393 | done: |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8394 | mutex_unlock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8395 | return 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8396 | } |
| 8397 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8398 | unsigned long sched_group_shares(struct task_group *tg) |
| 8399 | { |
| 8400 | return tg->shares; |
| 8401 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8402 | #endif |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8403 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8404 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8405 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8406 | * Ensure that the real time constraints are schedulable. |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8407 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8408 | static DEFINE_MUTEX(rt_constraints_mutex); |
| 8409 | |
| 8410 | static unsigned long to_ratio(u64 period, u64 runtime) |
| 8411 | { |
| 8412 | if (runtime == RUNTIME_INF) |
| 8413 | return 1ULL << 16; |
| 8414 | |
Roman Zippel | 6f6d6a1 | 2008-05-01 04:34:28 -0700 | [diff] [blame] | 8415 | return div64_u64(runtime << 16, period); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8416 | } |
| 8417 | |
Peter Zijlstra | b40b2e8 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8418 | #ifdef CONFIG_CGROUP_SCHED |
| 8419 | static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) |
| 8420 | { |
| 8421 | struct task_group *tgi, *parent = tg->parent; |
| 8422 | unsigned long total = 0; |
| 8423 | |
| 8424 | if (!parent) { |
| 8425 | if (global_rt_period() < period) |
| 8426 | return 0; |
| 8427 | |
| 8428 | return to_ratio(period, runtime) < |
| 8429 | to_ratio(global_rt_period(), global_rt_runtime()); |
| 8430 | } |
| 8431 | |
| 8432 | if (ktime_to_ns(parent->rt_bandwidth.rt_period) < period) |
| 8433 | return 0; |
| 8434 | |
| 8435 | rcu_read_lock(); |
| 8436 | list_for_each_entry_rcu(tgi, &parent->children, siblings) { |
| 8437 | if (tgi == tg) |
| 8438 | continue; |
| 8439 | |
| 8440 | total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period), |
| 8441 | tgi->rt_bandwidth.rt_runtime); |
| 8442 | } |
| 8443 | rcu_read_unlock(); |
| 8444 | |
| 8445 | return total + to_ratio(period, runtime) < |
| 8446 | to_ratio(ktime_to_ns(parent->rt_bandwidth.rt_period), |
| 8447 | parent->rt_bandwidth.rt_runtime); |
| 8448 | } |
| 8449 | #elif defined CONFIG_USER_SCHED |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8450 | static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8451 | { |
| 8452 | struct task_group *tgi; |
| 8453 | unsigned long total = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8454 | unsigned long global_ratio = |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8455 | to_ratio(global_rt_period(), global_rt_runtime()); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8456 | |
| 8457 | rcu_read_lock(); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8458 | list_for_each_entry_rcu(tgi, &task_groups, list) { |
| 8459 | if (tgi == tg) |
| 8460 | continue; |
| 8461 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8462 | total += to_ratio(ktime_to_ns(tgi->rt_bandwidth.rt_period), |
| 8463 | tgi->rt_bandwidth.rt_runtime); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8464 | } |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8465 | rcu_read_unlock(); |
| 8466 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8467 | return total + to_ratio(period, runtime) < global_ratio; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8468 | } |
Peter Zijlstra | b40b2e8 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8469 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8470 | |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8471 | /* Must be called with tasklist_lock held */ |
| 8472 | static inline int tg_has_rt_tasks(struct task_group *tg) |
| 8473 | { |
| 8474 | struct task_struct *g, *p; |
| 8475 | do_each_thread(g, p) { |
| 8476 | if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg) |
| 8477 | return 1; |
| 8478 | } while_each_thread(g, p); |
| 8479 | return 0; |
| 8480 | } |
| 8481 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8482 | static int tg_set_bandwidth(struct task_group *tg, |
| 8483 | u64 rt_period, u64 rt_runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8484 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8485 | int i, err = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8486 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8487 | mutex_lock(&rt_constraints_mutex); |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8488 | read_lock(&tasklist_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8489 | if (rt_runtime == 0 && tg_has_rt_tasks(tg)) { |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8490 | err = -EBUSY; |
| 8491 | goto unlock; |
| 8492 | } |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8493 | if (!__rt_schedulable(tg, rt_period, rt_runtime)) { |
| 8494 | err = -EINVAL; |
| 8495 | goto unlock; |
| 8496 | } |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8497 | |
| 8498 | spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8499 | tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period); |
| 8500 | tg->rt_bandwidth.rt_runtime = rt_runtime; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8501 | |
| 8502 | for_each_possible_cpu(i) { |
| 8503 | struct rt_rq *rt_rq = tg->rt_rq[i]; |
| 8504 | |
| 8505 | spin_lock(&rt_rq->rt_runtime_lock); |
| 8506 | rt_rq->rt_runtime = rt_runtime; |
| 8507 | spin_unlock(&rt_rq->rt_runtime_lock); |
| 8508 | } |
| 8509 | spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8510 | unlock: |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8511 | read_unlock(&tasklist_lock); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8512 | mutex_unlock(&rt_constraints_mutex); |
| 8513 | |
| 8514 | return err; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8515 | } |
| 8516 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8517 | int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us) |
| 8518 | { |
| 8519 | u64 rt_runtime, rt_period; |
| 8520 | |
| 8521 | rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8522 | rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC; |
| 8523 | if (rt_runtime_us < 0) |
| 8524 | rt_runtime = RUNTIME_INF; |
| 8525 | |
| 8526 | return tg_set_bandwidth(tg, rt_period, rt_runtime); |
| 8527 | } |
| 8528 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8529 | long sched_group_rt_runtime(struct task_group *tg) |
| 8530 | { |
| 8531 | u64 rt_runtime_us; |
| 8532 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8533 | if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF) |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8534 | return -1; |
| 8535 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8536 | rt_runtime_us = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8537 | do_div(rt_runtime_us, NSEC_PER_USEC); |
| 8538 | return rt_runtime_us; |
| 8539 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8540 | |
| 8541 | int sched_group_set_rt_period(struct task_group *tg, long rt_period_us) |
| 8542 | { |
| 8543 | u64 rt_runtime, rt_period; |
| 8544 | |
| 8545 | rt_period = (u64)rt_period_us * NSEC_PER_USEC; |
| 8546 | rt_runtime = tg->rt_bandwidth.rt_runtime; |
| 8547 | |
| 8548 | return tg_set_bandwidth(tg, rt_period, rt_runtime); |
| 8549 | } |
| 8550 | |
| 8551 | long sched_group_rt_period(struct task_group *tg) |
| 8552 | { |
| 8553 | u64 rt_period_us; |
| 8554 | |
| 8555 | rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8556 | do_div(rt_period_us, NSEC_PER_USEC); |
| 8557 | return rt_period_us; |
| 8558 | } |
| 8559 | |
| 8560 | static int sched_rt_global_constraints(void) |
| 8561 | { |
| 8562 | int ret = 0; |
| 8563 | |
| 8564 | mutex_lock(&rt_constraints_mutex); |
| 8565 | if (!__rt_schedulable(NULL, 1, 0)) |
| 8566 | ret = -EINVAL; |
| 8567 | mutex_unlock(&rt_constraints_mutex); |
| 8568 | |
| 8569 | return ret; |
| 8570 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8571 | #else /* !CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8572 | static int sched_rt_global_constraints(void) |
| 8573 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8574 | unsigned long flags; |
| 8575 | int i; |
| 8576 | |
| 8577 | spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags); |
| 8578 | for_each_possible_cpu(i) { |
| 8579 | struct rt_rq *rt_rq = &cpu_rq(i)->rt; |
| 8580 | |
| 8581 | spin_lock(&rt_rq->rt_runtime_lock); |
| 8582 | rt_rq->rt_runtime = global_rt_runtime(); |
| 8583 | spin_unlock(&rt_rq->rt_runtime_lock); |
| 8584 | } |
| 8585 | spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags); |
| 8586 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8587 | return 0; |
| 8588 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8589 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8590 | |
| 8591 | int sched_rt_handler(struct ctl_table *table, int write, |
| 8592 | struct file *filp, void __user *buffer, size_t *lenp, |
| 8593 | loff_t *ppos) |
| 8594 | { |
| 8595 | int ret; |
| 8596 | int old_period, old_runtime; |
| 8597 | static DEFINE_MUTEX(mutex); |
| 8598 | |
| 8599 | mutex_lock(&mutex); |
| 8600 | old_period = sysctl_sched_rt_period; |
| 8601 | old_runtime = sysctl_sched_rt_runtime; |
| 8602 | |
| 8603 | ret = proc_dointvec(table, write, filp, buffer, lenp, ppos); |
| 8604 | |
| 8605 | if (!ret && write) { |
| 8606 | ret = sched_rt_global_constraints(); |
| 8607 | if (ret) { |
| 8608 | sysctl_sched_rt_period = old_period; |
| 8609 | sysctl_sched_rt_runtime = old_runtime; |
| 8610 | } else { |
| 8611 | def_rt_bandwidth.rt_runtime = global_rt_runtime(); |
| 8612 | def_rt_bandwidth.rt_period = |
| 8613 | ns_to_ktime(global_rt_period()); |
| 8614 | } |
| 8615 | } |
| 8616 | mutex_unlock(&mutex); |
| 8617 | |
| 8618 | return ret; |
| 8619 | } |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8620 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8621 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8622 | |
| 8623 | /* return corresponding task_group object of a cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8624 | static inline struct task_group *cgroup_tg(struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8625 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8626 | return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id), |
| 8627 | struct task_group, css); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8628 | } |
| 8629 | |
| 8630 | static struct cgroup_subsys_state * |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8631 | cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8632 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8633 | struct task_group *tg, *parent; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8634 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8635 | if (!cgrp->parent) { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8636 | /* This is early initialization for the top cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8637 | init_task_group.css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8638 | return &init_task_group.css; |
| 8639 | } |
| 8640 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8641 | parent = cgroup_tg(cgrp->parent); |
| 8642 | tg = sched_create_group(parent); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8643 | if (IS_ERR(tg)) |
| 8644 | return ERR_PTR(-ENOMEM); |
| 8645 | |
| 8646 | /* Bind the cgroup to task_group object we just created */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8647 | tg->css.cgroup = cgrp; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8648 | |
| 8649 | return &tg->css; |
| 8650 | } |
| 8651 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8652 | static void |
| 8653 | cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8654 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8655 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8656 | |
| 8657 | sched_destroy_group(tg); |
| 8658 | } |
| 8659 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8660 | static int |
| 8661 | cpu_cgroup_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
| 8662 | struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8663 | { |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8664 | #ifdef CONFIG_RT_GROUP_SCHED |
| 8665 | /* 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] | 8666 | if (rt_task(tsk) && cgroup_tg(cgrp)->rt_bandwidth.rt_runtime == 0) |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8667 | return -EINVAL; |
| 8668 | #else |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8669 | /* We don't support RT-tasks being in separate groups */ |
| 8670 | if (tsk->sched_class != &fair_sched_class) |
| 8671 | return -EINVAL; |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8672 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8673 | |
| 8674 | return 0; |
| 8675 | } |
| 8676 | |
| 8677 | static void |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8678 | cpu_cgroup_attach(struct cgroup_subsys *ss, struct cgroup *cgrp, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8679 | struct cgroup *old_cont, struct task_struct *tsk) |
| 8680 | { |
| 8681 | sched_move_task(tsk); |
| 8682 | } |
| 8683 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8684 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 8685 | static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype, |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8686 | u64 shareval) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8687 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8688 | return sched_group_set_shares(cgroup_tg(cgrp), shareval); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8689 | } |
| 8690 | |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 8691 | static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8692 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8693 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8694 | |
| 8695 | return (u64) tg->shares; |
| 8696 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8697 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8698 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8699 | #ifdef CONFIG_RT_GROUP_SCHED |
Mirco Tischler | 0c70814 | 2008-05-14 16:05:46 -0700 | [diff] [blame] | 8700 | static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 8701 | s64 val) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8702 | { |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 8703 | return sched_group_set_rt_runtime(cgroup_tg(cgrp), val); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8704 | } |
| 8705 | |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 8706 | static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8707 | { |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 8708 | return sched_group_rt_runtime(cgroup_tg(cgrp)); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8709 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8710 | |
| 8711 | static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 8712 | u64 rt_period_us) |
| 8713 | { |
| 8714 | return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us); |
| 8715 | } |
| 8716 | |
| 8717 | static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft) |
| 8718 | { |
| 8719 | return sched_group_rt_period(cgroup_tg(cgrp)); |
| 8720 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8721 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8722 | |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8723 | static struct cftype cpu_files[] = { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8724 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8725 | { |
| 8726 | .name = "shares", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 8727 | .read_u64 = cpu_shares_read_u64, |
| 8728 | .write_u64 = cpu_shares_write_u64, |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8729 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8730 | #endif |
| 8731 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8732 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8733 | .name = "rt_runtime_us", |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 8734 | .read_s64 = cpu_rt_runtime_read, |
| 8735 | .write_s64 = cpu_rt_runtime_write, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8736 | }, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8737 | { |
| 8738 | .name = "rt_period_us", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 8739 | .read_u64 = cpu_rt_period_read_uint, |
| 8740 | .write_u64 = cpu_rt_period_write_uint, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8741 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8742 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8743 | }; |
| 8744 | |
| 8745 | static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 8746 | { |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8747 | return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8748 | } |
| 8749 | |
| 8750 | struct cgroup_subsys cpu_cgroup_subsys = { |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 8751 | .name = "cpu", |
| 8752 | .create = cpu_cgroup_create, |
| 8753 | .destroy = cpu_cgroup_destroy, |
| 8754 | .can_attach = cpu_cgroup_can_attach, |
| 8755 | .attach = cpu_cgroup_attach, |
| 8756 | .populate = cpu_cgroup_populate, |
| 8757 | .subsys_id = cpu_cgroup_subsys_id, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8758 | .early_init = 1, |
| 8759 | }; |
| 8760 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8761 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8762 | |
| 8763 | #ifdef CONFIG_CGROUP_CPUACCT |
| 8764 | |
| 8765 | /* |
| 8766 | * CPU accounting code for task groups. |
| 8767 | * |
| 8768 | * Based on the work by Paul Menage (menage@google.com) and Balbir Singh |
| 8769 | * (balbir@in.ibm.com). |
| 8770 | */ |
| 8771 | |
| 8772 | /* track cpu usage of a group of tasks */ |
| 8773 | struct cpuacct { |
| 8774 | struct cgroup_subsys_state css; |
| 8775 | /* cpuusage holds pointer to a u64-type object on every cpu */ |
| 8776 | u64 *cpuusage; |
| 8777 | }; |
| 8778 | |
| 8779 | struct cgroup_subsys cpuacct_subsys; |
| 8780 | |
| 8781 | /* return cpu accounting group corresponding to this container */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8782 | static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8783 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8784 | return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id), |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8785 | struct cpuacct, css); |
| 8786 | } |
| 8787 | |
| 8788 | /* return cpu accounting group to which this task belongs */ |
| 8789 | static inline struct cpuacct *task_ca(struct task_struct *tsk) |
| 8790 | { |
| 8791 | return container_of(task_subsys_state(tsk, cpuacct_subsys_id), |
| 8792 | struct cpuacct, css); |
| 8793 | } |
| 8794 | |
| 8795 | /* create a new cpu accounting group */ |
| 8796 | static struct cgroup_subsys_state *cpuacct_create( |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8797 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8798 | { |
| 8799 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); |
| 8800 | |
| 8801 | if (!ca) |
| 8802 | return ERR_PTR(-ENOMEM); |
| 8803 | |
| 8804 | ca->cpuusage = alloc_percpu(u64); |
| 8805 | if (!ca->cpuusage) { |
| 8806 | kfree(ca); |
| 8807 | return ERR_PTR(-ENOMEM); |
| 8808 | } |
| 8809 | |
| 8810 | return &ca->css; |
| 8811 | } |
| 8812 | |
| 8813 | /* destroy an existing cpu accounting group */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8814 | static void |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8815 | cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8816 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8817 | struct cpuacct *ca = cgroup_ca(cgrp); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8818 | |
| 8819 | free_percpu(ca->cpuusage); |
| 8820 | kfree(ca); |
| 8821 | } |
| 8822 | |
| 8823 | /* return total cpu usage (in nanoseconds) of a group */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8824 | static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8825 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8826 | struct cpuacct *ca = cgroup_ca(cgrp); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8827 | u64 totalcpuusage = 0; |
| 8828 | int i; |
| 8829 | |
| 8830 | for_each_possible_cpu(i) { |
| 8831 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8832 | |
| 8833 | /* |
| 8834 | * Take rq->lock to make 64-bit addition safe on 32-bit |
| 8835 | * platforms. |
| 8836 | */ |
| 8837 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8838 | totalcpuusage += *cpuusage; |
| 8839 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8840 | } |
| 8841 | |
| 8842 | return totalcpuusage; |
| 8843 | } |
| 8844 | |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 8845 | static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype, |
| 8846 | u64 reset) |
| 8847 | { |
| 8848 | struct cpuacct *ca = cgroup_ca(cgrp); |
| 8849 | int err = 0; |
| 8850 | int i; |
| 8851 | |
| 8852 | if (reset) { |
| 8853 | err = -EINVAL; |
| 8854 | goto out; |
| 8855 | } |
| 8856 | |
| 8857 | for_each_possible_cpu(i) { |
| 8858 | u64 *cpuusage = percpu_ptr(ca->cpuusage, i); |
| 8859 | |
| 8860 | spin_lock_irq(&cpu_rq(i)->lock); |
| 8861 | *cpuusage = 0; |
| 8862 | spin_unlock_irq(&cpu_rq(i)->lock); |
| 8863 | } |
| 8864 | out: |
| 8865 | return err; |
| 8866 | } |
| 8867 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8868 | static struct cftype files[] = { |
| 8869 | { |
| 8870 | .name = "usage", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 8871 | .read_u64 = cpuusage_read, |
| 8872 | .write_u64 = cpuusage_write, |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8873 | }, |
| 8874 | }; |
| 8875 | |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8876 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8877 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 8878 | return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files)); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 8879 | } |
| 8880 | |
| 8881 | /* |
| 8882 | * charge this task's execution time to its accounting group. |
| 8883 | * |
| 8884 | * called with rq->lock held. |
| 8885 | */ |
| 8886 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime) |
| 8887 | { |
| 8888 | struct cpuacct *ca; |
| 8889 | |
| 8890 | if (!cpuacct_subsys.active) |
| 8891 | return; |
| 8892 | |
| 8893 | ca = task_ca(tsk); |
| 8894 | if (ca) { |
| 8895 | u64 *cpuusage = percpu_ptr(ca->cpuusage, task_cpu(tsk)); |
| 8896 | |
| 8897 | *cpuusage += cputime; |
| 8898 | } |
| 8899 | } |
| 8900 | |
| 8901 | struct cgroup_subsys cpuacct_subsys = { |
| 8902 | .name = "cpuacct", |
| 8903 | .create = cpuacct_create, |
| 8904 | .destroy = cpuacct_destroy, |
| 8905 | .populate = cpuacct_populate, |
| 8906 | .subsys_id = cpuacct_subsys_id, |
| 8907 | }; |
| 8908 | #endif /* CONFIG_CGROUP_CPUACCT */ |