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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <asm/mmu_context.h> |
| 36 | #include <linux/interrupt.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 37 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/completion.h> |
| 39 | #include <linux/kernel_stat.h> |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 40 | #include <linux/debug_locks.h> |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 41 | #include <linux/perf_event.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> |
Alexey Dobriyan | b5aadf7 | 2008-10-06 13:23:43 +0400 | [diff] [blame] | 57 | #include <linux/proc_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | #include <linux/seq_file.h> |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 59 | #include <linux/stop_machine.h> |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 60 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <linux/syscalls.h> |
| 62 | #include <linux/times.h> |
Jay Lan | 8f0ab51 | 2006-09-30 23:28:59 -0700 | [diff] [blame] | 63 | #include <linux/tsacct_kern.h> |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 64 | #include <linux/kprobes.h> |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 65 | #include <linux/delayacct.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> |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 70 | #include <linux/debugfs.h> |
| 71 | #include <linux/ctype.h> |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 72 | #include <linux/ftrace.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 73 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Eric Dumazet | 5517d86 | 2007-05-08 00:32:57 -0700 | [diff] [blame] | 75 | #include <asm/tlb.h> |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 76 | #include <asm/irq_regs.h> |
Gerald Schaefer | 335d7af | 2010-11-22 15:47:36 +0100 | [diff] [blame] | 77 | #include <asm/mutex.h> |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 78 | #ifdef CONFIG_PARAVIRT |
| 79 | #include <asm/paravirt.h> |
| 80 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 82 | #include "sched_cpupri.h" |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 83 | #include "workqueue_sched.h" |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 84 | #include "sched_autogroup.h" |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 85 | |
Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 86 | #define CREATE_TRACE_POINTS |
Steven Rostedt | ad8d75f | 2009-04-14 19:39:12 -0400 | [diff] [blame] | 87 | #include <trace/events/sched.h> |
Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* |
| 90 | * Convert user-nice values [ -20 ... 0 ... 19 ] |
| 91 | * to static priority [ MAX_RT_PRIO..MAX_PRIO-1 ], |
| 92 | * and back. |
| 93 | */ |
| 94 | #define NICE_TO_PRIO(nice) (MAX_RT_PRIO + (nice) + 20) |
| 95 | #define PRIO_TO_NICE(prio) ((prio) - MAX_RT_PRIO - 20) |
| 96 | #define TASK_NICE(p) PRIO_TO_NICE((p)->static_prio) |
| 97 | |
| 98 | /* |
| 99 | * 'User priority' is the nice value converted to something we |
| 100 | * can work with better when scaling various scheduler parameters, |
| 101 | * it's a [ 0 ... 39 ] range. |
| 102 | */ |
| 103 | #define USER_PRIO(p) ((p)-MAX_RT_PRIO) |
| 104 | #define TASK_USER_PRIO(p) USER_PRIO((p)->static_prio) |
| 105 | #define MAX_USER_PRIO (USER_PRIO(MAX_PRIO)) |
| 106 | |
| 107 | /* |
Ingo Molnar | d7876a0 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 108 | * Helpers for converting nanosecond timing to jiffy resolution |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | */ |
Eric Dumazet | d6322fa | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 110 | #define NS_TO_JIFFIES(TIME) ((unsigned long)(TIME) / (NSEC_PER_SEC / HZ)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 112 | #define NICE_0_LOAD SCHED_LOAD_SCALE |
| 113 | #define NICE_0_SHIFT SCHED_LOAD_SHIFT |
| 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | /* |
| 116 | * These are the 'tuning knobs' of the scheduler: |
| 117 | * |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 118 | * default timeslice is 100 msecs (used only for SCHED_RR tasks). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | * Timeslices get refilled after they expire. |
| 120 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #define DEF_TIMESLICE (100 * HZ / 1000) |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 122 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 123 | /* |
| 124 | * single value that denotes runtime == period, ie unlimited time. |
| 125 | */ |
| 126 | #define RUNTIME_INF ((u64)~0ULL) |
| 127 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 128 | static inline int rt_policy(int policy) |
| 129 | { |
Steven Rostedt | 63f0124 | 2010-12-06 14:48:10 -0500 | [diff] [blame] | 130 | if (policy == SCHED_FIFO || policy == SCHED_RR) |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 131 | return 1; |
| 132 | return 0; |
| 133 | } |
| 134 | |
| 135 | static inline int task_has_rt_policy(struct task_struct *p) |
| 136 | { |
| 137 | return rt_policy(p->policy); |
| 138 | } |
| 139 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | /* |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 141 | * This is the priority-queue data structure of the RT scheduling class: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | */ |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 143 | struct rt_prio_array { |
| 144 | DECLARE_BITMAP(bitmap, MAX_RT_PRIO+1); /* include 1 bit for delimiter */ |
| 145 | struct list_head queue[MAX_RT_PRIO]; |
| 146 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 148 | struct rt_bandwidth { |
Ingo Molnar | ea736ed | 2008-03-25 13:51:45 +0100 | [diff] [blame] | 149 | /* nests inside the rq lock: */ |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 150 | raw_spinlock_t rt_runtime_lock; |
Ingo Molnar | ea736ed | 2008-03-25 13:51:45 +0100 | [diff] [blame] | 151 | ktime_t rt_period; |
| 152 | u64 rt_runtime; |
| 153 | struct hrtimer rt_period_timer; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | static struct rt_bandwidth def_rt_bandwidth; |
| 157 | |
| 158 | static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun); |
| 159 | |
| 160 | static enum hrtimer_restart sched_rt_period_timer(struct hrtimer *timer) |
| 161 | { |
| 162 | struct rt_bandwidth *rt_b = |
| 163 | container_of(timer, struct rt_bandwidth, rt_period_timer); |
| 164 | ktime_t now; |
| 165 | int overrun; |
| 166 | int idle = 0; |
| 167 | |
| 168 | for (;;) { |
| 169 | now = hrtimer_cb_get_time(timer); |
| 170 | overrun = hrtimer_forward(timer, now, rt_b->rt_period); |
| 171 | |
| 172 | if (!overrun) |
| 173 | break; |
| 174 | |
| 175 | idle = do_sched_rt_period_timer(rt_b, overrun); |
| 176 | } |
| 177 | |
| 178 | return idle ? HRTIMER_NORESTART : HRTIMER_RESTART; |
| 179 | } |
| 180 | |
| 181 | static |
| 182 | void init_rt_bandwidth(struct rt_bandwidth *rt_b, u64 period, u64 runtime) |
| 183 | { |
| 184 | rt_b->rt_period = ns_to_ktime(period); |
| 185 | rt_b->rt_runtime = runtime; |
| 186 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 187 | raw_spin_lock_init(&rt_b->rt_runtime_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 188 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 189 | hrtimer_init(&rt_b->rt_period_timer, |
| 190 | CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 191 | rt_b->rt_period_timer.function = sched_rt_period_timer; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 192 | } |
| 193 | |
Krzysztof Helt | c8bfff6 | 2008-09-05 23:46:19 +0200 | [diff] [blame] | 194 | static inline int rt_bandwidth_enabled(void) |
| 195 | { |
| 196 | return sysctl_sched_rt_runtime >= 0; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 197 | } |
| 198 | |
| 199 | static void start_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 200 | { |
| 201 | ktime_t now; |
| 202 | |
Hiroshi Shimamoto | cac64d0 | 2009-02-25 09:59:26 -0800 | [diff] [blame] | 203 | if (!rt_bandwidth_enabled() || rt_b->rt_runtime == RUNTIME_INF) |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 204 | return; |
| 205 | |
| 206 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 207 | return; |
| 208 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 209 | raw_spin_lock(&rt_b->rt_runtime_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 210 | for (;;) { |
Peter Zijlstra | 7f1e2ca | 2009-03-13 12:21:27 +0100 | [diff] [blame] | 211 | unsigned long delta; |
| 212 | ktime_t soft, hard; |
| 213 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 214 | if (hrtimer_active(&rt_b->rt_period_timer)) |
| 215 | break; |
| 216 | |
| 217 | now = hrtimer_cb_get_time(&rt_b->rt_period_timer); |
| 218 | hrtimer_forward(&rt_b->rt_period_timer, now, rt_b->rt_period); |
Peter Zijlstra | 7f1e2ca | 2009-03-13 12:21:27 +0100 | [diff] [blame] | 219 | |
| 220 | soft = hrtimer_get_softexpires(&rt_b->rt_period_timer); |
| 221 | hard = hrtimer_get_expires(&rt_b->rt_period_timer); |
| 222 | delta = ktime_to_ns(ktime_sub(hard, soft)); |
| 223 | __hrtimer_start_range_ns(&rt_b->rt_period_timer, soft, delta, |
Arun R Bharadwaj | 5c33386 | 2009-04-16 12:14:37 +0530 | [diff] [blame] | 224 | HRTIMER_MODE_ABS_PINNED, 0); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 225 | } |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 226 | raw_spin_unlock(&rt_b->rt_runtime_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | #ifdef CONFIG_RT_GROUP_SCHED |
| 230 | static void destroy_rt_bandwidth(struct rt_bandwidth *rt_b) |
| 231 | { |
| 232 | hrtimer_cancel(&rt_b->rt_period_timer); |
| 233 | } |
| 234 | #endif |
| 235 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 236 | /* |
Peter Zijlstra | c4a8849 | 2011-04-07 14:09:42 +0200 | [diff] [blame] | 237 | * sched_domains_mutex serializes calls to init_sched_domains, |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 238 | * detach_destroy_domains and partition_sched_domains. |
| 239 | */ |
| 240 | static DEFINE_MUTEX(sched_domains_mutex); |
| 241 | |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 242 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 243 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 244 | #include <linux/cgroup.h> |
| 245 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 246 | struct cfs_rq; |
| 247 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 248 | static LIST_HEAD(task_groups); |
| 249 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 250 | struct cfs_bandwidth { |
| 251 | #ifdef CONFIG_CFS_BANDWIDTH |
| 252 | raw_spinlock_t lock; |
| 253 | ktime_t period; |
| 254 | u64 quota; |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 255 | s64 hierarchal_quota; |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 256 | #endif |
| 257 | }; |
| 258 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 259 | /* task group related information */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 260 | struct task_group { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 261 | struct cgroup_subsys_state css; |
Arun R Bharadwaj | 6c415b9 | 2008-12-01 20:49:05 +0530 | [diff] [blame] | 262 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 263 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 264 | /* schedulable entities of this group on each cpu */ |
| 265 | struct sched_entity **se; |
| 266 | /* runqueue "owned" by this group on each cpu */ |
| 267 | struct cfs_rq **cfs_rq; |
| 268 | unsigned long shares; |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 269 | |
| 270 | atomic_t load_weight; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 271 | #endif |
| 272 | |
| 273 | #ifdef CONFIG_RT_GROUP_SCHED |
| 274 | struct sched_rt_entity **rt_se; |
| 275 | struct rt_rq **rt_rq; |
| 276 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 277 | struct rt_bandwidth rt_bandwidth; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 278 | #endif |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 279 | |
Srivatsa Vaddagiri | ae8393e | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 280 | struct rcu_head rcu; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 281 | struct list_head list; |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 282 | |
| 283 | struct task_group *parent; |
| 284 | struct list_head siblings; |
| 285 | struct list_head children; |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 286 | |
| 287 | #ifdef CONFIG_SCHED_AUTOGROUP |
| 288 | struct autogroup *autogroup; |
| 289 | #endif |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 290 | |
| 291 | struct cfs_bandwidth cfs_bandwidth; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 292 | }; |
| 293 | |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 294 | /* task_group_lock serializes the addition/removal of task groups */ |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 295 | static DEFINE_SPINLOCK(task_group_lock); |
Srivatsa Vaddagiri | ec2c507 | 2008-01-25 21:07:59 +0100 | [diff] [blame] | 296 | |
Cyrill Gorcunov | e9036b3 | 2009-10-26 22:24:14 +0300 | [diff] [blame] | 297 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 298 | |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 299 | # define ROOT_TASK_GROUP_LOAD NICE_0_LOAD |
Srivatsa Vaddagiri | 24e377a | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 300 | |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 301 | /* |
Lai Jiangshan | 2e08478 | 2008-06-12 16:42:58 +0800 | [diff] [blame] | 302 | * A weight of 0 or 1 can cause arithmetics problems. |
| 303 | * A weight of a cfs_rq is the sum of weights of which entities |
| 304 | * are queued on this cfs_rq, so a weight of a entity should not be |
| 305 | * too large, so as the shares value of a task group. |
Miao Xie | cb4ad1f | 2008-04-28 12:54:56 +0800 | [diff] [blame] | 306 | * (The default weight is 1024 - so there's no practical |
| 307 | * limitation from this.) |
| 308 | */ |
Mike Galbraith | cd62287 | 2011-06-04 15:03:20 +0200 | [diff] [blame] | 309 | #define MIN_SHARES (1UL << 1) |
| 310 | #define MAX_SHARES (1UL << 18) |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 311 | |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 312 | static int root_task_group_load = ROOT_TASK_GROUP_LOAD; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 313 | #endif |
| 314 | |
| 315 | /* Default task group. |
| 316 | * Every task in system belong to this group at bootup. |
| 317 | */ |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 318 | struct task_group root_task_group; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 319 | |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 320 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 321 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 322 | /* CFS-related fields in a runqueue */ |
| 323 | struct cfs_rq { |
| 324 | struct load_weight load; |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 325 | unsigned long nr_running, h_nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 326 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 327 | u64 exec_clock; |
Ingo Molnar | e9acbff | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 328 | u64 min_vruntime; |
Peter Zijlstra | 3fe1698 | 2011-04-05 17:23:48 +0200 | [diff] [blame] | 329 | #ifndef CONFIG_64BIT |
| 330 | u64 min_vruntime_copy; |
| 331 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 332 | |
| 333 | struct rb_root tasks_timeline; |
| 334 | struct rb_node *rb_leftmost; |
Peter Zijlstra | 4a55bd5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 335 | |
| 336 | struct list_head tasks; |
| 337 | struct list_head *balance_iterator; |
| 338 | |
| 339 | /* |
| 340 | * 'curr' points to currently running entity on this cfs_rq. |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 341 | * It is set to NULL otherwise (i.e when none are currently running). |
| 342 | */ |
Rik van Riel | ac53db5 | 2011-02-01 09:51:03 -0500 | [diff] [blame] | 343 | struct sched_entity *curr, *next, *last, *skip; |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 344 | |
Rakib Mullick | 4934a4d | 2011-05-04 22:53:46 +0600 | [diff] [blame] | 345 | #ifdef CONFIG_SCHED_DEBUG |
Peter Zijlstra | 5ac5c4d | 2008-11-10 10:46:32 +0100 | [diff] [blame] | 346 | unsigned int nr_spread_over; |
Rakib Mullick | 4934a4d | 2011-05-04 22:53:46 +0600 | [diff] [blame] | 347 | #endif |
Peter Zijlstra | ddc9729 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 348 | |
Ingo Molnar | 62160e3 | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 349 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 350 | struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |
| 351 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 352 | /* |
| 353 | * leaf cfs_rqs are those that hold tasks (lowest schedulable entity in |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 354 | * a hierarchy). Non-leaf lrqs hold other higher schedulable entities |
| 355 | * (like users, containers etc.) |
| 356 | * |
| 357 | * leaf_cfs_rq_list ties together list of leaf cfs_rq's in a cpu. This |
| 358 | * list is used during load balance. |
| 359 | */ |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 360 | int on_list; |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 361 | struct list_head leaf_cfs_rq_list; |
| 362 | struct task_group *tg; /* group that "owns" this runqueue */ |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 363 | |
| 364 | #ifdef CONFIG_SMP |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 365 | /* |
Peter Zijlstra | c8cba85 | 2008-06-27 13:41:23 +0200 | [diff] [blame] | 366 | * the part of load.weight contributed by tasks |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 367 | */ |
Peter Zijlstra | c8cba85 | 2008-06-27 13:41:23 +0200 | [diff] [blame] | 368 | unsigned long task_weight; |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 369 | |
Peter Zijlstra | c8cba85 | 2008-06-27 13:41:23 +0200 | [diff] [blame] | 370 | /* |
| 371 | * h_load = weight * f(tg) |
| 372 | * |
| 373 | * Where f(tg) is the recursive weight fraction assigned to |
| 374 | * this group. |
| 375 | */ |
| 376 | unsigned long h_load; |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 377 | |
Peter Zijlstra | c8cba85 | 2008-06-27 13:41:23 +0200 | [diff] [blame] | 378 | /* |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 379 | * Maintaining per-cpu shares distribution for group scheduling |
| 380 | * |
| 381 | * load_stamp is the last time we updated the load average |
| 382 | * load_last is the last time we updated the load average and saw load |
| 383 | * load_unacc_exec_time is currently unaccounted execution time |
Peter Zijlstra | c8cba85 | 2008-06-27 13:41:23 +0200 | [diff] [blame] | 384 | */ |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 385 | u64 load_avg; |
| 386 | u64 load_period; |
Paul Turner | 3b3d190 | 2010-11-15 15:47:08 -0800 | [diff] [blame] | 387 | u64 load_stamp, load_last, load_unacc_exec_time; |
Peter Zijlstra | f1d239f | 2008-06-27 13:41:38 +0200 | [diff] [blame] | 388 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 389 | unsigned long load_contribution; |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 390 | #endif |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 391 | #ifdef CONFIG_CFS_BANDWIDTH |
| 392 | int runtime_enabled; |
| 393 | s64 runtime_remaining; |
| 394 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 395 | #endif |
| 396 | }; |
| 397 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 398 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 399 | #ifdef CONFIG_CFS_BANDWIDTH |
| 400 | static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg) |
| 401 | { |
| 402 | return &tg->cfs_bandwidth; |
| 403 | } |
| 404 | |
| 405 | static inline u64 default_cfs_period(void); |
| 406 | |
| 407 | static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) |
| 408 | { |
| 409 | raw_spin_lock_init(&cfs_b->lock); |
| 410 | cfs_b->quota = RUNTIME_INF; |
| 411 | cfs_b->period = ns_to_ktime(default_cfs_period()); |
| 412 | } |
| 413 | |
| 414 | static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) |
| 415 | { |
| 416 | cfs_rq->runtime_enabled = 0; |
| 417 | } |
| 418 | |
| 419 | static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) |
| 420 | {} |
| 421 | #else |
| 422 | static void init_cfs_rq_runtime(struct cfs_rq *cfs_rq) {} |
| 423 | static void init_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {} |
| 424 | static void destroy_cfs_bandwidth(struct cfs_bandwidth *cfs_b) {} |
| 425 | |
| 426 | static inline struct cfs_bandwidth *tg_cfs_bandwidth(struct task_group *tg) |
| 427 | { |
| 428 | return NULL; |
| 429 | } |
| 430 | #endif /* CONFIG_CFS_BANDWIDTH */ |
| 431 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 432 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 433 | /* Real-Time classes' related field in a runqueue: */ |
| 434 | struct rt_rq { |
| 435 | struct rt_prio_array active; |
Steven Rostedt | 63489e4 | 2008-01-25 21:08:03 +0100 | [diff] [blame] | 436 | unsigned long rt_nr_running; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 437 | #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED |
Gregory Haskins | e864c49 | 2008-12-29 09:39:49 -0500 | [diff] [blame] | 438 | struct { |
| 439 | int curr; /* highest queued rt task prio */ |
Gregory Haskins | 398a153 | 2009-01-14 09:10:04 -0500 | [diff] [blame] | 440 | #ifdef CONFIG_SMP |
Gregory Haskins | e864c49 | 2008-12-29 09:39:49 -0500 | [diff] [blame] | 441 | int next; /* next highest */ |
Gregory Haskins | 398a153 | 2009-01-14 09:10:04 -0500 | [diff] [blame] | 442 | #endif |
Gregory Haskins | e864c49 | 2008-12-29 09:39:49 -0500 | [diff] [blame] | 443 | } highest_prio; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 444 | #endif |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 445 | #ifdef CONFIG_SMP |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 446 | unsigned long rt_nr_migratory; |
Peter Zijlstra | a1ba4d8 | 2009-04-01 18:40:15 +0200 | [diff] [blame] | 447 | unsigned long rt_nr_total; |
Gregory Haskins | a22d7fc | 2008-01-25 21:08:12 +0100 | [diff] [blame] | 448 | int overloaded; |
Gregory Haskins | 917b627 | 2008-12-29 09:39:53 -0500 | [diff] [blame] | 449 | struct plist_head pushable_tasks; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 450 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 451 | int rt_throttled; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 452 | u64 rt_time; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 453 | u64 rt_runtime; |
Ingo Molnar | ea736ed | 2008-03-25 13:51:45 +0100 | [diff] [blame] | 454 | /* Nests inside the rq lock: */ |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 455 | raw_spinlock_t rt_runtime_lock; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 456 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 457 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 23b0fdf | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 458 | unsigned long rt_nr_boosted; |
| 459 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 460 | struct rq *rq; |
| 461 | struct list_head leaf_rt_rq_list; |
| 462 | struct task_group *tg; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 463 | #endif |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 464 | }; |
| 465 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 466 | #ifdef CONFIG_SMP |
| 467 | |
| 468 | /* |
| 469 | * 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] | 470 | * variables. Each exclusive cpuset essentially defines an island domain by |
| 471 | * fully partitioning the member cpus from any other cpuset. Whenever a new |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 472 | * exclusive cpuset is created, we also create and attach a new root-domain |
| 473 | * object. |
| 474 | * |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 475 | */ |
| 476 | struct root_domain { |
| 477 | atomic_t refcount; |
Richard Kennedy | 26a148e | 2011-07-15 11:41:31 +0100 | [diff] [blame] | 478 | atomic_t rto_count; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 479 | struct rcu_head rcu; |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 480 | cpumask_var_t span; |
| 481 | cpumask_var_t online; |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 482 | |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 483 | /* |
Gregory Haskins | 637f508 | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 484 | * The "RT overload" flag: it gets set if a CPU has more than |
| 485 | * one runnable RT task. |
| 486 | */ |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 487 | cpumask_var_t rto_mask; |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 488 | struct cpupri cpupri; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 489 | }; |
| 490 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 491 | /* |
| 492 | * By default the system creates a single root-domain with all cpus as |
| 493 | * members (mimicking the global state we have today). |
| 494 | */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 495 | static struct root_domain def_root_domain; |
| 496 | |
Christian Dietrich | ed2d372 | 2010-09-06 16:37:05 +0200 | [diff] [blame] | 497 | #endif /* CONFIG_SMP */ |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 498 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 499 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | * This is the main, per-CPU runqueue data structure. |
| 501 | * |
| 502 | * Locking rule: those places that want to lock multiple runqueues |
| 503 | * (such as the load balancing or the thread migration code), lock |
| 504 | * acquire operations must be ordered by ascending &runqueue. |
| 505 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 506 | struct rq { |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 507 | /* runqueue lock: */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 508 | raw_spinlock_t lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | |
| 510 | /* |
| 511 | * nr_running and cpu_load should be in the same cacheline because |
| 512 | * remote CPUs use both these fields when doing load calculation. |
| 513 | */ |
| 514 | unsigned long nr_running; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 515 | #define CPU_LOAD_IDX_MAX 5 |
| 516 | unsigned long cpu_load[CPU_LOAD_IDX_MAX]; |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 517 | unsigned long last_load_update_tick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 518 | #ifdef CONFIG_NO_HZ |
Mike Galbraith | 39c0cbe | 2010-03-11 17:17:13 +0100 | [diff] [blame] | 519 | u64 nohz_stamp; |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 520 | unsigned char nohz_balance_kick; |
Siddha, Suresh B | 46cb4b7 | 2007-05-08 00:32:51 -0700 | [diff] [blame] | 521 | #endif |
Mike Galbraith | 61eadef | 2011-04-29 08:36:50 +0200 | [diff] [blame] | 522 | int skip_clock_update; |
Mike Galbraith | a64692a | 2010-03-11 17:16:20 +0100 | [diff] [blame] | 523 | |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 524 | /* capture load from *all* tasks on this cpu: */ |
| 525 | struct load_weight load; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 526 | unsigned long nr_load_updates; |
| 527 | u64 nr_switches; |
| 528 | |
| 529 | struct cfs_rq cfs; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 530 | struct rt_rq rt; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 531 | |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 532 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 533 | /* list of leaf cfs_rq on this cpu: */ |
| 534 | struct list_head leaf_cfs_rq_list; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 535 | #endif |
| 536 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 537 | struct list_head leaf_rt_rq_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 539 | |
| 540 | /* |
| 541 | * This is part of a global counter where only the total sum |
| 542 | * over all CPUs matters. A task can increase this counter on |
| 543 | * one CPU and if it got migrated afterwards it may decrease |
| 544 | * it on another CPU. Always updated under the runqueue lock: |
| 545 | */ |
| 546 | unsigned long nr_uninterruptible; |
| 547 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 548 | struct task_struct *curr, *idle, *stop; |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 549 | unsigned long next_balance; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | struct mm_struct *prev_mm; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 551 | |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 552 | u64 clock; |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 553 | u64 clock_task; |
Ingo Molnar | 6aa645e | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | atomic_t nr_iowait; |
| 556 | |
| 557 | #ifdef CONFIG_SMP |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 558 | struct root_domain *rd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | struct sched_domain *sd; |
| 560 | |
Peter Zijlstra | e51fd5e | 2010-05-31 12:37:30 +0200 | [diff] [blame] | 561 | unsigned long cpu_power; |
| 562 | |
Henrik Austad | a0a522c | 2009-02-13 20:35:45 +0100 | [diff] [blame] | 563 | unsigned char idle_at_tick; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | /* For active balancing */ |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 565 | int post_schedule; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | int active_balance; |
| 567 | int push_cpu; |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 568 | struct cpu_stop_work active_balance_work; |
Ingo Molnar | d801649 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 569 | /* cpu of this runqueue: */ |
| 570 | int cpu; |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 571 | int online; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Peter Zijlstra | e9e9250 | 2009-09-01 10:34:37 +0200 | [diff] [blame] | 573 | u64 rt_avg; |
| 574 | u64 age_stamp; |
Mike Galbraith | 1b9508f | 2009-11-04 17:53:50 +0100 | [diff] [blame] | 575 | u64 idle_stamp; |
| 576 | u64 avg_idle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | #endif |
| 578 | |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 579 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
| 580 | u64 prev_irq_time; |
| 581 | #endif |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 582 | #ifdef CONFIG_PARAVIRT |
| 583 | u64 prev_steal_time; |
| 584 | #endif |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 585 | #ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING |
| 586 | u64 prev_steal_time_rq; |
| 587 | #endif |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 588 | |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 589 | /* calc_load related fields */ |
| 590 | unsigned long calc_load_update; |
| 591 | long calc_load_active; |
| 592 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 593 | #ifdef CONFIG_SCHED_HRTICK |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 594 | #ifdef CONFIG_SMP |
| 595 | int hrtick_csd_pending; |
| 596 | struct call_single_data hrtick_csd; |
| 597 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 598 | struct hrtimer hrtick_timer; |
| 599 | #endif |
| 600 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | #ifdef CONFIG_SCHEDSTATS |
| 602 | /* latency stats */ |
| 603 | struct sched_info rq_sched_info; |
Ken Chen | 9c2c480 | 2008-12-16 23:41:22 -0800 | [diff] [blame] | 604 | unsigned long long rq_cpu_time; |
| 605 | /* could above be rq->cfs_rq.exec_clock + rq->rt_rq.rt_runtime ? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | |
| 607 | /* sys_sched_yield() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 608 | unsigned int yld_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
| 610 | /* schedule() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 611 | unsigned int sched_switch; |
| 612 | unsigned int sched_count; |
| 613 | unsigned int sched_goidle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | /* try_to_wake_up() stats */ |
Ken Chen | 480b943 | 2007-10-18 21:32:56 +0200 | [diff] [blame] | 616 | unsigned int ttwu_count; |
| 617 | unsigned int ttwu_local; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 618 | #endif |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 619 | |
| 620 | #ifdef CONFIG_SMP |
| 621 | struct task_struct *wake_list; |
| 622 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | }; |
| 624 | |
Fenghua Yu | f34e3b6 | 2007-07-19 01:48:13 -0700 | [diff] [blame] | 625 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct rq, runqueues); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | |
Mike Galbraith | a64692a | 2010-03-11 17:16:20 +0100 | [diff] [blame] | 627 | |
Peter Zijlstra | 1e5a740 | 2010-10-31 12:37:04 +0100 | [diff] [blame] | 628 | static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 629 | |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 630 | static inline int cpu_of(struct rq *rq) |
| 631 | { |
| 632 | #ifdef CONFIG_SMP |
| 633 | return rq->cpu; |
| 634 | #else |
| 635 | return 0; |
| 636 | #endif |
| 637 | } |
| 638 | |
Paul E. McKenney | 497f0ab | 2010-02-22 17:04:51 -0800 | [diff] [blame] | 639 | #define rcu_dereference_check_sched_domain(p) \ |
Paul E. McKenney | d11c563 | 2010-02-22 17:04:50 -0800 | [diff] [blame] | 640 | rcu_dereference_check((p), \ |
Paul E. McKenney | d11c563 | 2010-02-22 17:04:50 -0800 | [diff] [blame] | 641 | lockdep_is_held(&sched_domains_mutex)) |
| 642 | |
Ingo Molnar | 20d315d | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 643 | /* |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 644 | * 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] | 645 | * See detach_destroy_domains: synchronize_sched for details. |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 646 | * |
| 647 | * The domain tree of any CPU may only be accessed from within |
| 648 | * preempt-disabled sections. |
| 649 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 650 | #define for_each_domain(cpu, __sd) \ |
Paul E. McKenney | 497f0ab | 2010-02-22 17:04:51 -0800 | [diff] [blame] | 651 | for (__sd = rcu_dereference_check_sched_domain(cpu_rq(cpu)->sd); __sd; __sd = __sd->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | |
| 653 | #define cpu_rq(cpu) (&per_cpu(runqueues, (cpu))) |
| 654 | #define this_rq() (&__get_cpu_var(runqueues)) |
| 655 | #define task_rq(p) cpu_rq(task_cpu(p)) |
| 656 | #define cpu_curr(cpu) (cpu_rq(cpu)->curr) |
Hitoshi Mitake | 54d35f2 | 2009-06-29 14:44:57 +0900 | [diff] [blame] | 657 | #define raw_rq() (&__raw_get_cpu_var(runqueues)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 659 | #ifdef CONFIG_CGROUP_SCHED |
| 660 | |
| 661 | /* |
| 662 | * Return the group to which this tasks belongs. |
| 663 | * |
Peter Zijlstra | 6c6c54e | 2011-06-03 17:37:07 +0200 | [diff] [blame] | 664 | * We use task_subsys_state_check() and extend the RCU verification with |
| 665 | * pi->lock and rq->lock because cpu_cgroup_attach() holds those locks for each |
| 666 | * task it moves into the cgroup. Therefore by holding either of those locks, |
| 667 | * we pin the task to the current cgroup. |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 668 | */ |
| 669 | static inline struct task_group *task_group(struct task_struct *p) |
| 670 | { |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 671 | struct task_group *tg; |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 672 | struct cgroup_subsys_state *css; |
| 673 | |
| 674 | css = task_subsys_state_check(p, cpu_cgroup_subsys_id, |
Peter Zijlstra | 6c6c54e | 2011-06-03 17:37:07 +0200 | [diff] [blame] | 675 | lockdep_is_held(&p->pi_lock) || |
| 676 | lockdep_is_held(&task_rq(p)->lock)); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 677 | tg = container_of(css, struct task_group, css); |
| 678 | |
| 679 | return autogroup_task_group(p, tg); |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | /* Change a task's cfs_rq and parent entity if it moves across CPUs/groups */ |
| 683 | static inline void set_task_rq(struct task_struct *p, unsigned int cpu) |
| 684 | { |
| 685 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 686 | p->se.cfs_rq = task_group(p)->cfs_rq[cpu]; |
| 687 | p->se.parent = task_group(p)->se[cpu]; |
| 688 | #endif |
| 689 | |
| 690 | #ifdef CONFIG_RT_GROUP_SCHED |
| 691 | p->rt.rt_rq = task_group(p)->rt_rq[cpu]; |
| 692 | p->rt.parent = task_group(p)->rt_se[cpu]; |
| 693 | #endif |
| 694 | } |
| 695 | |
| 696 | #else /* CONFIG_CGROUP_SCHED */ |
| 697 | |
| 698 | static inline void set_task_rq(struct task_struct *p, unsigned int cpu) { } |
| 699 | static inline struct task_group *task_group(struct task_struct *p) |
| 700 | { |
| 701 | return NULL; |
| 702 | } |
| 703 | |
| 704 | #endif /* CONFIG_CGROUP_SCHED */ |
| 705 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 706 | static void update_rq_clock_task(struct rq *rq, s64 delta); |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 707 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 708 | static void update_rq_clock(struct rq *rq) |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 709 | { |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 710 | s64 delta; |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 711 | |
Mike Galbraith | 61eadef | 2011-04-29 08:36:50 +0200 | [diff] [blame] | 712 | if (rq->skip_clock_update > 0) |
Mike Galbraith | f26f9af | 2010-12-08 11:05:42 +0100 | [diff] [blame] | 713 | return; |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 714 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 715 | delta = sched_clock_cpu(cpu_of(rq)) - rq->clock; |
| 716 | rq->clock += delta; |
| 717 | update_rq_clock_task(rq, delta); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 718 | } |
| 719 | |
Ingo Molnar | e436d80 | 2007-07-19 21:28:35 +0200 | [diff] [blame] | 720 | /* |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 721 | * Tunables that become constants when CONFIG_SCHED_DEBUG is off: |
| 722 | */ |
| 723 | #ifdef CONFIG_SCHED_DEBUG |
| 724 | # define const_debug __read_mostly |
| 725 | #else |
| 726 | # define const_debug static const |
| 727 | #endif |
| 728 | |
Ingo Molnar | 017730c | 2008-05-12 21:20:52 +0200 | [diff] [blame] | 729 | /** |
Randy Dunlap | 1fd06bb | 2011-03-15 16:12:30 -0700 | [diff] [blame] | 730 | * runqueue_is_locked - Returns true if the current cpu runqueue is locked |
Randy Dunlap | e17b38b | 2009-10-11 19:12:00 -0700 | [diff] [blame] | 731 | * @cpu: the processor in question. |
Ingo Molnar | 017730c | 2008-05-12 21:20:52 +0200 | [diff] [blame] | 732 | * |
Ingo Molnar | 017730c | 2008-05-12 21:20:52 +0200 | [diff] [blame] | 733 | * This interface allows printk to be called with the runqueue lock |
| 734 | * held and know whether or not it is OK to wake up the klogd. |
| 735 | */ |
Andrew Morton | 89f19f0 | 2009-09-19 11:55:44 -0700 | [diff] [blame] | 736 | int runqueue_is_locked(int cpu) |
Ingo Molnar | 017730c | 2008-05-12 21:20:52 +0200 | [diff] [blame] | 737 | { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 738 | return raw_spin_is_locked(&cpu_rq(cpu)->lock); |
Ingo Molnar | 017730c | 2008-05-12 21:20:52 +0200 | [diff] [blame] | 739 | } |
| 740 | |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 741 | /* |
| 742 | * Debugging: various feature bits |
| 743 | */ |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 744 | |
| 745 | #define SCHED_FEAT(name, enabled) \ |
| 746 | __SCHED_FEAT_##name , |
| 747 | |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 748 | enum { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 749 | #include "sched_features.h" |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 750 | }; |
| 751 | |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 752 | #undef SCHED_FEAT |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 753 | |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 754 | #define SCHED_FEAT(name, enabled) \ |
| 755 | (1UL << __SCHED_FEAT_##name) * enabled | |
| 756 | |
| 757 | const_debug unsigned int sysctl_sched_features = |
| 758 | #include "sched_features.h" |
| 759 | 0; |
| 760 | |
| 761 | #undef SCHED_FEAT |
| 762 | |
| 763 | #ifdef CONFIG_SCHED_DEBUG |
| 764 | #define SCHED_FEAT(name, enabled) \ |
| 765 | #name , |
| 766 | |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 767 | static __read_mostly char *sched_feat_names[] = { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 768 | #include "sched_features.h" |
| 769 | NULL |
| 770 | }; |
| 771 | |
| 772 | #undef SCHED_FEAT |
| 773 | |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 774 | static int sched_feat_show(struct seq_file *m, void *v) |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 775 | { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 776 | int i; |
| 777 | |
| 778 | for (i = 0; sched_feat_names[i]; i++) { |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 779 | if (!(sysctl_sched_features & (1UL << i))) |
| 780 | seq_puts(m, "NO_"); |
| 781 | seq_printf(m, "%s ", sched_feat_names[i]); |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 782 | } |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 783 | seq_puts(m, "\n"); |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 784 | |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 785 | return 0; |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 786 | } |
| 787 | |
| 788 | static ssize_t |
| 789 | sched_feat_write(struct file *filp, const char __user *ubuf, |
| 790 | size_t cnt, loff_t *ppos) |
| 791 | { |
| 792 | char buf[64]; |
Mathieu Desnoyers | 7740191 | 2010-09-13 17:47:00 -0400 | [diff] [blame] | 793 | char *cmp; |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 794 | int neg = 0; |
| 795 | int i; |
| 796 | |
| 797 | if (cnt > 63) |
| 798 | cnt = 63; |
| 799 | |
| 800 | if (copy_from_user(&buf, ubuf, cnt)) |
| 801 | return -EFAULT; |
| 802 | |
| 803 | buf[cnt] = 0; |
Mathieu Desnoyers | 7740191 | 2010-09-13 17:47:00 -0400 | [diff] [blame] | 804 | cmp = strstrip(buf); |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 805 | |
Hillf Danton | 524429c | 2011-01-06 20:58:12 +0800 | [diff] [blame] | 806 | if (strncmp(cmp, "NO_", 3) == 0) { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 807 | neg = 1; |
| 808 | cmp += 3; |
| 809 | } |
| 810 | |
| 811 | for (i = 0; sched_feat_names[i]; i++) { |
Mathieu Desnoyers | 7740191 | 2010-09-13 17:47:00 -0400 | [diff] [blame] | 812 | if (strcmp(cmp, sched_feat_names[i]) == 0) { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 813 | if (neg) |
| 814 | sysctl_sched_features &= ~(1UL << i); |
| 815 | else |
| 816 | sysctl_sched_features |= (1UL << i); |
| 817 | break; |
| 818 | } |
| 819 | } |
| 820 | |
| 821 | if (!sched_feat_names[i]) |
| 822 | return -EINVAL; |
| 823 | |
Jan Blunck | 4299472 | 2009-11-20 17:40:37 +0100 | [diff] [blame] | 824 | *ppos += cnt; |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 825 | |
| 826 | return cnt; |
| 827 | } |
| 828 | |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 829 | static int sched_feat_open(struct inode *inode, struct file *filp) |
| 830 | { |
| 831 | return single_open(filp, sched_feat_show, NULL); |
| 832 | } |
| 833 | |
Alexey Dobriyan | 828c095 | 2009-10-01 15:43:56 -0700 | [diff] [blame] | 834 | static const struct file_operations sched_feat_fops = { |
Li Zefan | 34f3a81 | 2008-10-30 15:23:32 +0800 | [diff] [blame] | 835 | .open = sched_feat_open, |
| 836 | .write = sched_feat_write, |
| 837 | .read = seq_read, |
| 838 | .llseek = seq_lseek, |
| 839 | .release = single_release, |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 840 | }; |
| 841 | |
| 842 | static __init int sched_init_debug(void) |
| 843 | { |
Peter Zijlstra | f00b45c | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 844 | debugfs_create_file("sched_features", 0644, NULL, NULL, |
| 845 | &sched_feat_fops); |
| 846 | |
| 847 | return 0; |
| 848 | } |
| 849 | late_initcall(sched_init_debug); |
| 850 | |
| 851 | #endif |
| 852 | |
| 853 | #define sched_feat(x) (sysctl_sched_features & (1UL << __SCHED_FEAT_##x)) |
Ingo Molnar | bf5c91b | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 854 | |
| 855 | /* |
Peter Zijlstra | b82d9fd | 2007-11-09 22:39:39 +0100 | [diff] [blame] | 856 | * Number of tasks to iterate in a single balance run. |
| 857 | * Limited because this is done with IRQs disabled. |
| 858 | */ |
| 859 | const_debug unsigned int sysctl_sched_nr_migrate = 32; |
| 860 | |
| 861 | /* |
Peter Zijlstra | e9e9250 | 2009-09-01 10:34:37 +0200 | [diff] [blame] | 862 | * period over which we average the RT time consumption, measured |
| 863 | * in ms. |
| 864 | * |
| 865 | * default: 1s |
| 866 | */ |
| 867 | const_debug unsigned int sysctl_sched_time_avg = MSEC_PER_SEC; |
| 868 | |
| 869 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 870 | * period over which we measure -rt task cpu usage in us. |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 871 | * default: 1s |
| 872 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 873 | unsigned int sysctl_sched_rt_period = 1000000; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 874 | |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 875 | static __read_mostly int scheduler_running; |
| 876 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 877 | /* |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 878 | * part of the period that we allow rt tasks to run in us. |
| 879 | * default: 0.95s |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 880 | */ |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 881 | int sysctl_sched_rt_runtime = 950000; |
| 882 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 883 | static inline u64 global_rt_period(void) |
| 884 | { |
| 885 | return (u64)sysctl_sched_rt_period * NSEC_PER_USEC; |
| 886 | } |
| 887 | |
| 888 | static inline u64 global_rt_runtime(void) |
| 889 | { |
roel kluin | e26873b | 2008-07-22 16:51:15 -0400 | [diff] [blame] | 890 | if (sysctl_sched_rt_runtime < 0) |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 891 | return RUNTIME_INF; |
| 892 | |
| 893 | return (u64)sysctl_sched_rt_runtime * NSEC_PER_USEC; |
| 894 | } |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 896 | #ifndef prepare_arch_switch |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 897 | # define prepare_arch_switch(next) do { } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 899 | #ifndef finish_arch_switch |
| 900 | # define finish_arch_switch(prev) do { } while (0) |
| 901 | #endif |
| 902 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 903 | static inline int task_current(struct rq *rq, struct task_struct *p) |
| 904 | { |
| 905 | return rq->curr == p; |
| 906 | } |
| 907 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 908 | static inline int task_running(struct rq *rq, struct task_struct *p) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 909 | { |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 910 | #ifdef CONFIG_SMP |
| 911 | return p->on_cpu; |
| 912 | #else |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 913 | return task_current(rq, p); |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 914 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 915 | } |
| 916 | |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 917 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 918 | 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] | 919 | { |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 920 | #ifdef CONFIG_SMP |
| 921 | /* |
| 922 | * We can optimise this out completely for !SMP, because the |
| 923 | * SMP rebalancing from interrupt is the only thing that cares |
| 924 | * here. |
| 925 | */ |
| 926 | next->on_cpu = 1; |
| 927 | #endif |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 928 | } |
| 929 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 930 | 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] | 931 | { |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 932 | #ifdef CONFIG_SMP |
| 933 | /* |
| 934 | * After ->on_cpu is cleared, the task can be moved to a different CPU. |
| 935 | * We must ensure this doesn't happen until the switch is completely |
| 936 | * finished. |
| 937 | */ |
| 938 | smp_wmb(); |
| 939 | prev->on_cpu = 0; |
| 940 | #endif |
Ingo Molnar | da04c03 | 2005-09-13 11:17:59 +0200 | [diff] [blame] | 941 | #ifdef CONFIG_DEBUG_SPINLOCK |
| 942 | /* this is a valid case when another task releases the spinlock */ |
| 943 | rq->lock.owner = current; |
| 944 | #endif |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 945 | /* |
| 946 | * If we are tracking spinlock dependencies then we have to |
| 947 | * fix up the runqueue lock - which gets 'carried over' from |
| 948 | * prev into current: |
| 949 | */ |
| 950 | spin_acquire(&rq->lock.dep_map, 0, 0, _THIS_IP_); |
| 951 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 952 | raw_spin_unlock_irq(&rq->lock); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 953 | } |
| 954 | |
| 955 | #else /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 956 | 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] | 957 | { |
| 958 | #ifdef CONFIG_SMP |
| 959 | /* |
| 960 | * We can optimise this out completely for !SMP, because the |
| 961 | * SMP rebalancing from interrupt is the only thing that cares |
| 962 | * here. |
| 963 | */ |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 964 | next->on_cpu = 1; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 965 | #endif |
| 966 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 967 | raw_spin_unlock_irq(&rq->lock); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 968 | #else |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 969 | raw_spin_unlock(&rq->lock); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 970 | #endif |
| 971 | } |
| 972 | |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 973 | 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] | 974 | { |
| 975 | #ifdef CONFIG_SMP |
| 976 | /* |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 977 | * After ->on_cpu is cleared, the task can be moved to a different CPU. |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 978 | * We must ensure this doesn't happen until the switch is completely |
| 979 | * finished. |
| 980 | */ |
| 981 | smp_wmb(); |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 982 | prev->on_cpu = 0; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 983 | #endif |
| 984 | #ifndef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 985 | local_irq_enable(); |
| 986 | #endif |
| 987 | } |
| 988 | #endif /* __ARCH_WANT_UNLOCKED_CTXSW */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | |
| 990 | /* |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 991 | * __task_rq_lock - lock the rq @p resides on. |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 992 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 993 | static inline struct rq *__task_rq_lock(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 994 | __acquires(rq->lock) |
| 995 | { |
Peter Zijlstra | 0970d29 | 2010-02-15 14:45:54 +0100 | [diff] [blame] | 996 | struct rq *rq; |
| 997 | |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 998 | lockdep_assert_held(&p->pi_lock); |
| 999 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1000 | for (;;) { |
Peter Zijlstra | 0970d29 | 2010-02-15 14:45:54 +0100 | [diff] [blame] | 1001 | rq = task_rq(p); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1002 | raw_spin_lock(&rq->lock); |
Peter Zijlstra | 65cc8e4 | 2010-03-25 21:05:16 +0100 | [diff] [blame] | 1003 | if (likely(rq == task_rq(p))) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1004 | return rq; |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1005 | raw_spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1006 | } |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
| 1009 | /* |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1010 | * task_rq_lock - lock p->pi_lock and lock the rq @p resides on. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1011 | */ |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1012 | static struct rq *task_rq_lock(struct task_struct *p, unsigned long *flags) |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1013 | __acquires(p->pi_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | __acquires(rq->lock) |
| 1015 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1016 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1018 | for (;;) { |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1019 | raw_spin_lock_irqsave(&p->pi_lock, *flags); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1020 | rq = task_rq(p); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1021 | raw_spin_lock(&rq->lock); |
Peter Zijlstra | 65cc8e4 | 2010-03-25 21:05:16 +0100 | [diff] [blame] | 1022 | if (likely(rq == task_rq(p))) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 1023 | return rq; |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1024 | raw_spin_unlock(&rq->lock); |
| 1025 | raw_spin_unlock_irqrestore(&p->pi_lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1026 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | } |
| 1028 | |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1029 | static void __task_rq_unlock(struct rq *rq) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1030 | __releases(rq->lock) |
| 1031 | { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1032 | raw_spin_unlock(&rq->lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 1033 | } |
| 1034 | |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1035 | static inline void |
| 1036 | task_rq_unlock(struct rq *rq, struct task_struct *p, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | __releases(rq->lock) |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1038 | __releases(p->pi_lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1039 | { |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 1040 | raw_spin_unlock(&rq->lock); |
| 1041 | raw_spin_unlock_irqrestore(&p->pi_lock, *flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | } |
| 1043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | /* |
Robert P. J. Day | cc2a73b | 2006-12-10 02:20:00 -0800 | [diff] [blame] | 1045 | * this_rq_lock - lock this runqueue and disable interrupts. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1046 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 1047 | static struct rq *this_rq_lock(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1048 | __acquires(rq->lock) |
| 1049 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 1050 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | |
| 1052 | local_irq_disable(); |
| 1053 | rq = this_rq(); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1054 | raw_spin_lock(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | |
| 1056 | return rq; |
| 1057 | } |
| 1058 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1059 | #ifdef CONFIG_SCHED_HRTICK |
| 1060 | /* |
| 1061 | * Use HR-timers to deliver accurate preemption points. |
| 1062 | * |
| 1063 | * Its all a bit involved since we cannot program an hrt while holding the |
| 1064 | * rq->lock. So what we do is store a state in in rq->hrtick_* and ask for a |
| 1065 | * reschedule event. |
| 1066 | * |
| 1067 | * When we get rescheduled we reprogram the hrtick_timer outside of the |
| 1068 | * rq->lock. |
| 1069 | */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1070 | |
| 1071 | /* |
| 1072 | * Use hrtick when: |
| 1073 | * - enabled by features |
| 1074 | * - hrtimer is actually high res |
| 1075 | */ |
| 1076 | static inline int hrtick_enabled(struct rq *rq) |
| 1077 | { |
| 1078 | if (!sched_feat(HRTICK)) |
| 1079 | return 0; |
Ingo Molnar | ba42059 | 2008-07-20 11:02:06 +0200 | [diff] [blame] | 1080 | if (!cpu_active(cpu_of(rq))) |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1081 | return 0; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1082 | return hrtimer_is_hres_active(&rq->hrtick_timer); |
| 1083 | } |
| 1084 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1085 | static void hrtick_clear(struct rq *rq) |
| 1086 | { |
| 1087 | if (hrtimer_active(&rq->hrtick_timer)) |
| 1088 | hrtimer_cancel(&rq->hrtick_timer); |
| 1089 | } |
| 1090 | |
| 1091 | /* |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1092 | * High-resolution timer tick. |
| 1093 | * Runs from hardirq context with interrupts disabled. |
| 1094 | */ |
| 1095 | static enum hrtimer_restart hrtick(struct hrtimer *timer) |
| 1096 | { |
| 1097 | struct rq *rq = container_of(timer, struct rq, hrtick_timer); |
| 1098 | |
| 1099 | WARN_ON_ONCE(cpu_of(rq) != smp_processor_id()); |
| 1100 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1101 | raw_spin_lock(&rq->lock); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 1102 | update_rq_clock(rq); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1103 | rq->curr->sched_class->task_tick(rq, rq->curr, 1); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1104 | raw_spin_unlock(&rq->lock); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1105 | |
| 1106 | return HRTIMER_NORESTART; |
| 1107 | } |
| 1108 | |
Rabin Vincent | 95e904c | 2008-05-11 05:55:33 +0530 | [diff] [blame] | 1109 | #ifdef CONFIG_SMP |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1110 | /* |
| 1111 | * called from hardirq (IPI) context |
| 1112 | */ |
| 1113 | static void __hrtick_start(void *arg) |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1114 | { |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1115 | struct rq *rq = arg; |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1116 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1117 | raw_spin_lock(&rq->lock); |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1118 | hrtimer_restart(&rq->hrtick_timer); |
| 1119 | rq->hrtick_csd_pending = 0; |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1120 | raw_spin_unlock(&rq->lock); |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1121 | } |
| 1122 | |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1123 | /* |
| 1124 | * Called to set the hrtick timer state. |
| 1125 | * |
| 1126 | * called with rq->lock held and irqs disabled |
| 1127 | */ |
| 1128 | static void hrtick_start(struct rq *rq, u64 delay) |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1129 | { |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1130 | struct hrtimer *timer = &rq->hrtick_timer; |
| 1131 | ktime_t time = ktime_add_ns(timer->base->get_time(), delay); |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1132 | |
Arjan van de Ven | cc584b2 | 2008-09-01 15:02:30 -0700 | [diff] [blame] | 1133 | hrtimer_set_expires(timer, time); |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1134 | |
| 1135 | if (rq == this_rq()) { |
| 1136 | hrtimer_restart(timer); |
| 1137 | } else if (!rq->hrtick_csd_pending) { |
Peter Zijlstra | 6e27563 | 2009-02-25 13:59:48 +0100 | [diff] [blame] | 1138 | __smp_call_function_single(cpu_of(rq), &rq->hrtick_csd, 0); |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1139 | rq->hrtick_csd_pending = 1; |
| 1140 | } |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1141 | } |
| 1142 | |
| 1143 | static int |
| 1144 | hotplug_hrtick(struct notifier_block *nfb, unsigned long action, void *hcpu) |
| 1145 | { |
| 1146 | int cpu = (int)(long)hcpu; |
| 1147 | |
| 1148 | switch (action) { |
| 1149 | case CPU_UP_CANCELED: |
| 1150 | case CPU_UP_CANCELED_FROZEN: |
| 1151 | case CPU_DOWN_PREPARE: |
| 1152 | case CPU_DOWN_PREPARE_FROZEN: |
| 1153 | case CPU_DEAD: |
| 1154 | case CPU_DEAD_FROZEN: |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1155 | hrtick_clear(cpu_rq(cpu)); |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1156 | return NOTIFY_OK; |
| 1157 | } |
| 1158 | |
| 1159 | return NOTIFY_DONE; |
| 1160 | } |
| 1161 | |
Rakib Mullick | fa74820 | 2008-09-22 14:55:45 -0700 | [diff] [blame] | 1162 | static __init void init_hrtick(void) |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1163 | { |
| 1164 | hotcpu_notifier(hotplug_hrtick, 0); |
| 1165 | } |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1166 | #else |
| 1167 | /* |
| 1168 | * Called to set the hrtick timer state. |
| 1169 | * |
| 1170 | * called with rq->lock held and irqs disabled |
| 1171 | */ |
| 1172 | static void hrtick_start(struct rq *rq, u64 delay) |
| 1173 | { |
Peter Zijlstra | 7f1e2ca | 2009-03-13 12:21:27 +0100 | [diff] [blame] | 1174 | __hrtimer_start_range_ns(&rq->hrtick_timer, ns_to_ktime(delay), 0, |
Arun R Bharadwaj | 5c33386 | 2009-04-16 12:14:37 +0530 | [diff] [blame] | 1175 | HRTIMER_MODE_REL_PINNED, 0); |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1176 | } |
| 1177 | |
Andrew Morton | 006c75f | 2008-09-22 14:55:46 -0700 | [diff] [blame] | 1178 | static inline void init_hrtick(void) |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1179 | { |
| 1180 | } |
Rabin Vincent | 95e904c | 2008-05-11 05:55:33 +0530 | [diff] [blame] | 1181 | #endif /* CONFIG_SMP */ |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1182 | |
| 1183 | static void init_rq_hrtick(struct rq *rq) |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1184 | { |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1185 | #ifdef CONFIG_SMP |
| 1186 | rq->hrtick_csd_pending = 0; |
| 1187 | |
| 1188 | rq->hrtick_csd.flags = 0; |
| 1189 | rq->hrtick_csd.func = __hrtick_start; |
| 1190 | rq->hrtick_csd.info = rq; |
| 1191 | #endif |
| 1192 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1193 | hrtimer_init(&rq->hrtick_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 1194 | rq->hrtick_timer.function = hrtick; |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1195 | } |
Andrew Morton | 006c75f | 2008-09-22 14:55:46 -0700 | [diff] [blame] | 1196 | #else /* CONFIG_SCHED_HRTICK */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1197 | static inline void hrtick_clear(struct rq *rq) |
| 1198 | { |
| 1199 | } |
| 1200 | |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1201 | static inline void init_rq_hrtick(struct rq *rq) |
| 1202 | { |
| 1203 | } |
| 1204 | |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 1205 | static inline void init_hrtick(void) |
| 1206 | { |
| 1207 | } |
Andrew Morton | 006c75f | 2008-09-22 14:55:46 -0700 | [diff] [blame] | 1208 | #endif /* CONFIG_SCHED_HRTICK */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 1209 | |
Ingo Molnar | 1b9f19c | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1210 | /* |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1211 | * resched_task - mark a task 'to be rescheduled now'. |
| 1212 | * |
| 1213 | * On UP this means the setting of the need_resched flag, on SMP it |
| 1214 | * might also involve a cross-CPU call to trigger the scheduler on |
| 1215 | * the target CPU. |
| 1216 | */ |
| 1217 | #ifdef CONFIG_SMP |
| 1218 | |
| 1219 | #ifndef tsk_is_polling |
| 1220 | #define tsk_is_polling(t) test_tsk_thread_flag(t, TIF_POLLING_NRFLAG) |
| 1221 | #endif |
| 1222 | |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1223 | static void resched_task(struct task_struct *p) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1224 | { |
| 1225 | int cpu; |
| 1226 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1227 | assert_raw_spin_locked(&task_rq(p)->lock); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1228 | |
Lai Jiangshan | 5ed0cec | 2009-03-06 19:40:20 +0800 | [diff] [blame] | 1229 | if (test_tsk_need_resched(p)) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1230 | return; |
| 1231 | |
Lai Jiangshan | 5ed0cec | 2009-03-06 19:40:20 +0800 | [diff] [blame] | 1232 | set_tsk_need_resched(p); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1233 | |
| 1234 | cpu = task_cpu(p); |
| 1235 | if (cpu == smp_processor_id()) |
| 1236 | return; |
| 1237 | |
| 1238 | /* NEED_RESCHED must be visible before we test polling */ |
| 1239 | smp_mb(); |
| 1240 | if (!tsk_is_polling(p)) |
| 1241 | smp_send_reschedule(cpu); |
| 1242 | } |
| 1243 | |
| 1244 | static void resched_cpu(int cpu) |
| 1245 | { |
| 1246 | struct rq *rq = cpu_rq(cpu); |
| 1247 | unsigned long flags; |
| 1248 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1249 | if (!raw_spin_trylock_irqsave(&rq->lock, flags)) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1250 | return; |
| 1251 | resched_task(cpu_curr(cpu)); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1252 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1253 | } |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1254 | |
| 1255 | #ifdef CONFIG_NO_HZ |
| 1256 | /* |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 1257 | * In the semi idle case, use the nearest busy cpu for migrating timers |
| 1258 | * from an idle cpu. This is good for power-savings. |
| 1259 | * |
| 1260 | * We don't do similar optimization for completely idle system, as |
| 1261 | * selecting an idle cpu will add more delays to the timers than intended |
| 1262 | * (as that cpu's timer base may not be uptodate wrt jiffies etc). |
| 1263 | */ |
| 1264 | int get_nohz_timer_target(void) |
| 1265 | { |
| 1266 | int cpu = smp_processor_id(); |
| 1267 | int i; |
| 1268 | struct sched_domain *sd; |
| 1269 | |
Peter Zijlstra | 057f3fa | 2011-04-18 11:24:34 +0200 | [diff] [blame] | 1270 | rcu_read_lock(); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 1271 | for_each_domain(cpu, sd) { |
Peter Zijlstra | 057f3fa | 2011-04-18 11:24:34 +0200 | [diff] [blame] | 1272 | for_each_cpu(i, sched_domain_span(sd)) { |
| 1273 | if (!idle_cpu(i)) { |
| 1274 | cpu = i; |
| 1275 | goto unlock; |
| 1276 | } |
| 1277 | } |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 1278 | } |
Peter Zijlstra | 057f3fa | 2011-04-18 11:24:34 +0200 | [diff] [blame] | 1279 | unlock: |
| 1280 | rcu_read_unlock(); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 1281 | return cpu; |
| 1282 | } |
| 1283 | /* |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1284 | * When add_timer_on() enqueues a timer into the timer wheel of an |
| 1285 | * idle CPU then this timer might expire before the next timer event |
| 1286 | * which is scheduled to wake up that CPU. In case of a completely |
| 1287 | * idle system the next event might even be infinite time into the |
| 1288 | * future. wake_up_idle_cpu() ensures that the CPU is woken up and |
| 1289 | * leaves the inner idle loop so the newly added timer is taken into |
| 1290 | * account when the CPU goes back to idle and evaluates the timer |
| 1291 | * wheel for the next timer event. |
| 1292 | */ |
| 1293 | void wake_up_idle_cpu(int cpu) |
| 1294 | { |
| 1295 | struct rq *rq = cpu_rq(cpu); |
| 1296 | |
| 1297 | if (cpu == smp_processor_id()) |
| 1298 | return; |
| 1299 | |
| 1300 | /* |
| 1301 | * This is safe, as this function is called with the timer |
| 1302 | * wheel base lock of (cpu) held. When the CPU is on the way |
| 1303 | * to idle and has not yet set rq->curr to idle then it will |
| 1304 | * be serialized on the timer wheel base lock and take the new |
| 1305 | * timer into account automatically. |
| 1306 | */ |
| 1307 | if (rq->curr != rq->idle) |
| 1308 | return; |
| 1309 | |
| 1310 | /* |
| 1311 | * We can set TIF_RESCHED on the idle task of the other CPU |
| 1312 | * lockless. The worst case is that the other CPU runs the |
| 1313 | * idle task through an additional NOOP schedule() |
| 1314 | */ |
Lai Jiangshan | 5ed0cec | 2009-03-06 19:40:20 +0800 | [diff] [blame] | 1315 | set_tsk_need_resched(rq->idle); |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1316 | |
| 1317 | /* NEED_RESCHED must be visible before we test polling */ |
| 1318 | smp_mb(); |
| 1319 | if (!tsk_is_polling(rq->idle)) |
| 1320 | smp_send_reschedule(cpu); |
| 1321 | } |
Mike Galbraith | 39c0cbe | 2010-03-11 17:17:13 +0100 | [diff] [blame] | 1322 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1323 | #endif /* CONFIG_NO_HZ */ |
Thomas Gleixner | 06d8308 | 2008-03-22 09:20:24 +0100 | [diff] [blame] | 1324 | |
Peter Zijlstra | e9e9250 | 2009-09-01 10:34:37 +0200 | [diff] [blame] | 1325 | static u64 sched_avg_period(void) |
| 1326 | { |
| 1327 | return (u64)sysctl_sched_time_avg * NSEC_PER_MSEC / 2; |
| 1328 | } |
| 1329 | |
| 1330 | static void sched_avg_update(struct rq *rq) |
| 1331 | { |
| 1332 | s64 period = sched_avg_period(); |
| 1333 | |
| 1334 | while ((s64)(rq->clock - rq->age_stamp) > period) { |
Will Deacon | 0d98bb2 | 2010-05-24 12:11:43 -0700 | [diff] [blame] | 1335 | /* |
| 1336 | * Inline assembly required to prevent the compiler |
| 1337 | * optimising this loop into a divmod call. |
| 1338 | * See __iter_div_u64_rem() for another example of this. |
| 1339 | */ |
| 1340 | asm("" : "+rm" (rq->age_stamp)); |
Peter Zijlstra | e9e9250 | 2009-09-01 10:34:37 +0200 | [diff] [blame] | 1341 | rq->age_stamp += period; |
| 1342 | rq->rt_avg /= 2; |
| 1343 | } |
| 1344 | } |
| 1345 | |
| 1346 | static void sched_rt_avg_update(struct rq *rq, u64 rt_delta) |
| 1347 | { |
| 1348 | rq->rt_avg += rt_delta; |
| 1349 | sched_avg_update(rq); |
| 1350 | } |
| 1351 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1352 | #else /* !CONFIG_SMP */ |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1353 | static void resched_task(struct task_struct *p) |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1354 | { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1355 | assert_raw_spin_locked(&task_rq(p)->lock); |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 1356 | set_tsk_need_resched(p); |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1357 | } |
Peter Zijlstra | e9e9250 | 2009-09-01 10:34:37 +0200 | [diff] [blame] | 1358 | |
| 1359 | static void sched_rt_avg_update(struct rq *rq, u64 rt_delta) |
| 1360 | { |
| 1361 | } |
Suresh Siddha | da2b71e | 2010-08-23 13:42:51 -0700 | [diff] [blame] | 1362 | |
| 1363 | static void sched_avg_update(struct rq *rq) |
| 1364 | { |
| 1365 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 1366 | #endif /* CONFIG_SMP */ |
Ingo Molnar | c24d20d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1367 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1368 | #if BITS_PER_LONG == 32 |
| 1369 | # define WMULT_CONST (~0UL) |
| 1370 | #else |
| 1371 | # define WMULT_CONST (1UL << 32) |
| 1372 | #endif |
| 1373 | |
| 1374 | #define WMULT_SHIFT 32 |
| 1375 | |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1376 | /* |
| 1377 | * Shift right and round: |
| 1378 | */ |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1379 | #define SRR(x, y) (((x) + (1UL << ((y) - 1))) >> (y)) |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1380 | |
Peter Zijlstra | a7be37a | 2008-06-27 13:41:11 +0200 | [diff] [blame] | 1381 | /* |
| 1382 | * delta *= weight / lw |
| 1383 | */ |
Ingo Molnar | cb1c4fc | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1384 | static unsigned long |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1385 | calc_delta_mine(unsigned long delta_exec, unsigned long weight, |
| 1386 | struct load_weight *lw) |
| 1387 | { |
| 1388 | u64 tmp; |
| 1389 | |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1390 | /* |
| 1391 | * weight can be less than 2^SCHED_LOAD_RESOLUTION for task group sched |
| 1392 | * entities since MIN_SHARES = 2. Treat weight as 1 if less than |
| 1393 | * 2^SCHED_LOAD_RESOLUTION. |
| 1394 | */ |
| 1395 | if (likely(weight > (1UL << SCHED_LOAD_RESOLUTION))) |
| 1396 | tmp = (u64)delta_exec * scale_load_down(weight); |
| 1397 | else |
| 1398 | tmp = (u64)delta_exec; |
Stephan Baerwolf | db670da | 2011-05-11 18:03:29 +0200 | [diff] [blame] | 1399 | |
Lai Jiangshan | 7a232e0 | 2008-06-12 16:43:07 +0800 | [diff] [blame] | 1400 | if (!lw->inv_weight) { |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1401 | unsigned long w = scale_load_down(lw->weight); |
| 1402 | |
| 1403 | if (BITS_PER_LONG > 32 && unlikely(w >= WMULT_CONST)) |
Lai Jiangshan | 7a232e0 | 2008-06-12 16:43:07 +0800 | [diff] [blame] | 1404 | lw->inv_weight = 1; |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1405 | else if (unlikely(!w)) |
| 1406 | lw->inv_weight = WMULT_CONST; |
Lai Jiangshan | 7a232e0 | 2008-06-12 16:43:07 +0800 | [diff] [blame] | 1407 | else |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1408 | lw->inv_weight = WMULT_CONST / w; |
Lai Jiangshan | 7a232e0 | 2008-06-12 16:43:07 +0800 | [diff] [blame] | 1409 | } |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1410 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1411 | /* |
| 1412 | * Check whether we'd overflow the 64-bit multiplication: |
| 1413 | */ |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1414 | if (unlikely(tmp > WMULT_CONST)) |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1415 | tmp = SRR(SRR(tmp, WMULT_SHIFT/2) * lw->inv_weight, |
Ingo Molnar | 194081e | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1416 | WMULT_SHIFT/2); |
| 1417 | else |
Ingo Molnar | cf2ab46 | 2007-09-05 14:32:49 +0200 | [diff] [blame] | 1418 | tmp = SRR(tmp * lw->inv_weight, WMULT_SHIFT); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1419 | |
Ingo Molnar | ecf691d | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1420 | return (unsigned long)min(tmp, (u64)(unsigned long)LONG_MAX); |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1421 | } |
| 1422 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1423 | 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] | 1424 | { |
| 1425 | lw->weight += inc; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1426 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1427 | } |
| 1428 | |
Ingo Molnar | 1091985 | 2007-10-15 17:00:04 +0200 | [diff] [blame] | 1429 | 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] | 1430 | { |
| 1431 | lw->weight -= dec; |
Ingo Molnar | e89996a | 2008-03-14 23:48:28 +0100 | [diff] [blame] | 1432 | lw->inv_weight = 0; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1433 | } |
| 1434 | |
Peter Zijlstra | 2069dd7 | 2010-11-15 15:47:00 -0800 | [diff] [blame] | 1435 | static inline void update_load_set(struct load_weight *lw, unsigned long w) |
| 1436 | { |
| 1437 | lw->weight = w; |
| 1438 | lw->inv_weight = 0; |
| 1439 | } |
| 1440 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | /* |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1442 | * To aid in avoiding the subversion of "niceness" due to uneven distribution |
| 1443 | * of tasks with abnormal "nice" values across CPUs the contribution that |
| 1444 | * 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] | 1445 | * 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] | 1446 | * scaled version of the new time slice allocation that they receive on time |
| 1447 | * slice expiry etc. |
| 1448 | */ |
| 1449 | |
Peter Zijlstra | cce7ade | 2009-01-15 14:53:37 +0100 | [diff] [blame] | 1450 | #define WEIGHT_IDLEPRIO 3 |
| 1451 | #define WMULT_IDLEPRIO 1431655765 |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1452 | |
| 1453 | /* |
| 1454 | * Nice levels are multiplicative, with a gentle 10% change for every |
| 1455 | * nice level changed. I.e. when a CPU-bound task goes from nice 0 to |
| 1456 | * nice 1, it will get ~10% less CPU time than another CPU-bound task |
| 1457 | * that remained on nice 0. |
| 1458 | * |
| 1459 | * The "10% effect" is relative and cumulative: from _any_ nice level, |
| 1460 | * 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] | 1461 | * it's +10% CPU usage. (to achieve that we use a multiplier of 1.25. |
| 1462 | * If a task goes up by ~10% and another task goes down by ~10% then |
| 1463 | * the relative distance between them is ~25%.) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1464 | */ |
| 1465 | static const int prio_to_weight[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1466 | /* -20 */ 88761, 71755, 56483, 46273, 36291, |
| 1467 | /* -15 */ 29154, 23254, 18705, 14949, 11916, |
| 1468 | /* -10 */ 9548, 7620, 6100, 4904, 3906, |
| 1469 | /* -5 */ 3121, 2501, 1991, 1586, 1277, |
| 1470 | /* 0 */ 1024, 820, 655, 526, 423, |
| 1471 | /* 5 */ 335, 272, 215, 172, 137, |
| 1472 | /* 10 */ 110, 87, 70, 56, 45, |
| 1473 | /* 15 */ 36, 29, 23, 18, 15, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1474 | }; |
| 1475 | |
Ingo Molnar | 5714d2d | 2007-07-16 09:46:31 +0200 | [diff] [blame] | 1476 | /* |
| 1477 | * Inverse (2^32/x) values of the prio_to_weight[] array, precalculated. |
| 1478 | * |
| 1479 | * In cases where the weight does not change often, we can use the |
| 1480 | * precalculated inverse to speed up arithmetics by turning divisions |
| 1481 | * into multiplications: |
| 1482 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1483 | static const u32 prio_to_wmult[40] = { |
Ingo Molnar | 254753d | 2007-08-09 11:16:51 +0200 | [diff] [blame] | 1484 | /* -20 */ 48388, 59856, 76040, 92818, 118348, |
| 1485 | /* -15 */ 147320, 184698, 229616, 287308, 360437, |
| 1486 | /* -10 */ 449829, 563644, 704093, 875809, 1099582, |
| 1487 | /* -5 */ 1376151, 1717300, 2157191, 2708050, 3363326, |
| 1488 | /* 0 */ 4194304, 5237765, 6557202, 8165337, 10153587, |
| 1489 | /* 5 */ 12820798, 15790321, 19976592, 24970740, 31350126, |
| 1490 | /* 10 */ 39045157, 49367440, 61356676, 76695844, 95443717, |
| 1491 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1492 | }; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 1493 | |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 1494 | /* Time spent by the tasks of the cpu accounting group executing in ... */ |
| 1495 | enum cpuacct_stat_index { |
| 1496 | CPUACCT_STAT_USER, /* ... user mode */ |
| 1497 | CPUACCT_STAT_SYSTEM, /* ... kernel mode */ |
| 1498 | |
| 1499 | CPUACCT_STAT_NSTATS, |
| 1500 | }; |
| 1501 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1502 | #ifdef CONFIG_CGROUP_CPUACCT |
| 1503 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 1504 | static void cpuacct_update_stats(struct task_struct *tsk, |
| 1505 | enum cpuacct_stat_index idx, cputime_t val); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1506 | #else |
| 1507 | static inline void cpuacct_charge(struct task_struct *tsk, u64 cputime) {} |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 1508 | static inline void cpuacct_update_stats(struct task_struct *tsk, |
| 1509 | enum cpuacct_stat_index idx, cputime_t val) {} |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 1510 | #endif |
| 1511 | |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1512 | static inline void inc_cpu_load(struct rq *rq, unsigned long load) |
| 1513 | { |
| 1514 | update_load_add(&rq->load, load); |
| 1515 | } |
| 1516 | |
| 1517 | static inline void dec_cpu_load(struct rq *rq, unsigned long load) |
| 1518 | { |
| 1519 | update_load_sub(&rq->load, load); |
| 1520 | } |
| 1521 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 1522 | #if defined(CONFIG_RT_GROUP_SCHED) || (defined(CONFIG_FAIR_GROUP_SCHED) && \ |
| 1523 | (defined(CONFIG_SMP) || defined(CONFIG_CFS_BANDWIDTH))) |
Peter Zijlstra | eb75580 | 2008-08-19 12:33:05 +0200 | [diff] [blame] | 1524 | typedef int (*tg_visitor)(struct task_group *, void *); |
| 1525 | |
| 1526 | /* |
| 1527 | * Iterate the full tree, calling @down when first entering a node and @up when |
| 1528 | * leaving it for the final time. |
| 1529 | */ |
| 1530 | static int walk_tg_tree(tg_visitor down, tg_visitor up, void *data) |
| 1531 | { |
| 1532 | struct task_group *parent, *child; |
| 1533 | int ret; |
| 1534 | |
| 1535 | rcu_read_lock(); |
| 1536 | parent = &root_task_group; |
| 1537 | down: |
| 1538 | ret = (*down)(parent, data); |
| 1539 | if (ret) |
| 1540 | goto out_unlock; |
| 1541 | list_for_each_entry_rcu(child, &parent->children, siblings) { |
| 1542 | parent = child; |
| 1543 | goto down; |
| 1544 | |
| 1545 | up: |
| 1546 | continue; |
| 1547 | } |
| 1548 | ret = (*up)(parent, data); |
| 1549 | if (ret) |
| 1550 | goto out_unlock; |
| 1551 | |
| 1552 | child = parent; |
| 1553 | parent = parent->parent; |
| 1554 | if (parent) |
| 1555 | goto up; |
| 1556 | out_unlock: |
| 1557 | rcu_read_unlock(); |
| 1558 | |
| 1559 | return ret; |
| 1560 | } |
| 1561 | |
| 1562 | static int tg_nop(struct task_group *tg, void *data) |
| 1563 | { |
| 1564 | return 0; |
| 1565 | } |
| 1566 | #endif |
| 1567 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1568 | #ifdef CONFIG_SMP |
Peter Zijlstra | f5f08f3 | 2009-09-10 13:35:28 +0200 | [diff] [blame] | 1569 | /* Used instead of source_load when we know the type == 0 */ |
| 1570 | static unsigned long weighted_cpuload(const int cpu) |
| 1571 | { |
| 1572 | return cpu_rq(cpu)->load.weight; |
| 1573 | } |
| 1574 | |
| 1575 | /* |
| 1576 | * Return a low guess at the load of a migration-source cpu weighted |
| 1577 | * according to the scheduling class and "nice" value. |
| 1578 | * |
| 1579 | * We want to under-estimate the load of migration sources, to |
| 1580 | * balance conservatively. |
| 1581 | */ |
| 1582 | static unsigned long source_load(int cpu, int type) |
| 1583 | { |
| 1584 | struct rq *rq = cpu_rq(cpu); |
| 1585 | unsigned long total = weighted_cpuload(cpu); |
| 1586 | |
| 1587 | if (type == 0 || !sched_feat(LB_BIAS)) |
| 1588 | return total; |
| 1589 | |
| 1590 | return min(rq->cpu_load[type-1], total); |
| 1591 | } |
| 1592 | |
| 1593 | /* |
| 1594 | * Return a high guess at the load of a migration-target cpu weighted |
| 1595 | * according to the scheduling class and "nice" value. |
| 1596 | */ |
| 1597 | static unsigned long target_load(int cpu, int type) |
| 1598 | { |
| 1599 | struct rq *rq = cpu_rq(cpu); |
| 1600 | unsigned long total = weighted_cpuload(cpu); |
| 1601 | |
| 1602 | if (type == 0 || !sched_feat(LB_BIAS)) |
| 1603 | return total; |
| 1604 | |
| 1605 | return max(rq->cpu_load[type-1], total); |
| 1606 | } |
| 1607 | |
Peter Zijlstra | ae154be | 2009-09-10 14:40:57 +0200 | [diff] [blame] | 1608 | static unsigned long power_of(int cpu) |
| 1609 | { |
Peter Zijlstra | e51fd5e | 2010-05-31 12:37:30 +0200 | [diff] [blame] | 1610 | return cpu_rq(cpu)->cpu_power; |
Peter Zijlstra | ae154be | 2009-09-10 14:40:57 +0200 | [diff] [blame] | 1611 | } |
| 1612 | |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 1613 | static int task_hot(struct task_struct *p, u64 now, struct sched_domain *sd); |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 1614 | |
Peter Zijlstra | a8a51d5 | 2008-06-27 13:41:26 +0200 | [diff] [blame] | 1615 | static unsigned long cpu_avg_load_per_task(int cpu) |
| 1616 | { |
| 1617 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | af6d596 | 2008-11-29 20:45:15 +0100 | [diff] [blame] | 1618 | unsigned long nr_running = ACCESS_ONCE(rq->nr_running); |
Peter Zijlstra | a8a51d5 | 2008-06-27 13:41:26 +0200 | [diff] [blame] | 1619 | |
Steven Rostedt | 4cd4262 | 2008-11-26 21:04:24 -0500 | [diff] [blame] | 1620 | if (nr_running) |
Jan H. Schönherr | e2b245f | 2011-08-01 11:03:28 +0200 | [diff] [blame] | 1621 | return rq->load.weight / nr_running; |
Peter Zijlstra | a8a51d5 | 2008-06-27 13:41:26 +0200 | [diff] [blame] | 1622 | |
Jan H. Schönherr | e2b245f | 2011-08-01 11:03:28 +0200 | [diff] [blame] | 1623 | return 0; |
Peter Zijlstra | a8a51d5 | 2008-06-27 13:41:26 +0200 | [diff] [blame] | 1624 | } |
| 1625 | |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1626 | #ifdef CONFIG_PREEMPT |
| 1627 | |
Peter Zijlstra | b78bb86 | 2009-09-15 14:23:18 +0200 | [diff] [blame] | 1628 | static void double_rq_lock(struct rq *rq1, struct rq *rq2); |
| 1629 | |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1630 | /* |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1631 | * fair double_lock_balance: Safely acquires both rq->locks in a fair |
| 1632 | * way at the expense of forcing extra atomic operations in all |
| 1633 | * invocations. This assures that the double_lock is acquired using the |
| 1634 | * same underlying policy as the spinlock_t on this architecture, which |
| 1635 | * reduces latency compared to the unfair variant below. However, it |
| 1636 | * also adds more overhead and therefore may reduce throughput. |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1637 | */ |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1638 | static inline int _double_lock_balance(struct rq *this_rq, struct rq *busiest) |
| 1639 | __releases(this_rq->lock) |
| 1640 | __acquires(busiest->lock) |
| 1641 | __acquires(this_rq->lock) |
| 1642 | { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1643 | raw_spin_unlock(&this_rq->lock); |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1644 | double_rq_lock(this_rq, busiest); |
| 1645 | |
| 1646 | return 1; |
| 1647 | } |
| 1648 | |
| 1649 | #else |
| 1650 | /* |
| 1651 | * Unfair double_lock_balance: Optimizes throughput at the expense of |
| 1652 | * latency by eliminating extra atomic operations when the locks are |
| 1653 | * already in proper order on entry. This favors lower cpu-ids and will |
| 1654 | * grant the double lock to lower cpus over higher ids under contention, |
| 1655 | * regardless of entry order into the function. |
| 1656 | */ |
| 1657 | static int _double_lock_balance(struct rq *this_rq, struct rq *busiest) |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1658 | __releases(this_rq->lock) |
| 1659 | __acquires(busiest->lock) |
| 1660 | __acquires(this_rq->lock) |
| 1661 | { |
| 1662 | int ret = 0; |
| 1663 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1664 | if (unlikely(!raw_spin_trylock(&busiest->lock))) { |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1665 | if (busiest < this_rq) { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1666 | raw_spin_unlock(&this_rq->lock); |
| 1667 | raw_spin_lock(&busiest->lock); |
| 1668 | raw_spin_lock_nested(&this_rq->lock, |
| 1669 | SINGLE_DEPTH_NESTING); |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1670 | ret = 1; |
| 1671 | } else |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1672 | raw_spin_lock_nested(&busiest->lock, |
| 1673 | SINGLE_DEPTH_NESTING); |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1674 | } |
| 1675 | return ret; |
| 1676 | } |
| 1677 | |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1678 | #endif /* CONFIG_PREEMPT */ |
| 1679 | |
| 1680 | /* |
| 1681 | * double_lock_balance - lock the busiest runqueue, this_rq is locked already. |
| 1682 | */ |
| 1683 | static int double_lock_balance(struct rq *this_rq, struct rq *busiest) |
| 1684 | { |
| 1685 | if (unlikely(!irqs_disabled())) { |
| 1686 | /* printk() doesn't work good under rq->lock */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1687 | raw_spin_unlock(&this_rq->lock); |
Gregory Haskins | 8f45e2b | 2008-12-29 09:39:51 -0500 | [diff] [blame] | 1688 | BUG_ON(1); |
| 1689 | } |
| 1690 | |
| 1691 | return _double_lock_balance(this_rq, busiest); |
| 1692 | } |
| 1693 | |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1694 | static inline void double_unlock_balance(struct rq *this_rq, struct rq *busiest) |
| 1695 | __releases(busiest->lock) |
| 1696 | { |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 1697 | raw_spin_unlock(&busiest->lock); |
Alexey Dobriyan | 70574a9 | 2008-11-28 22:08:00 +0300 | [diff] [blame] | 1698 | lock_set_subclass(&this_rq->lock.dep_map, 0, _RET_IP_); |
| 1699 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1700 | |
| 1701 | /* |
| 1702 | * double_rq_lock - safely lock two runqueues |
| 1703 | * |
| 1704 | * Note this does not disable interrupts like task_rq_lock, |
| 1705 | * you need to do so manually before calling. |
| 1706 | */ |
| 1707 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
| 1708 | __acquires(rq1->lock) |
| 1709 | __acquires(rq2->lock) |
| 1710 | { |
| 1711 | BUG_ON(!irqs_disabled()); |
| 1712 | if (rq1 == rq2) { |
| 1713 | raw_spin_lock(&rq1->lock); |
| 1714 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 1715 | } else { |
| 1716 | if (rq1 < rq2) { |
| 1717 | raw_spin_lock(&rq1->lock); |
| 1718 | raw_spin_lock_nested(&rq2->lock, SINGLE_DEPTH_NESTING); |
| 1719 | } else { |
| 1720 | raw_spin_lock(&rq2->lock); |
| 1721 | raw_spin_lock_nested(&rq1->lock, SINGLE_DEPTH_NESTING); |
| 1722 | } |
| 1723 | } |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1724 | } |
| 1725 | |
| 1726 | /* |
| 1727 | * double_rq_unlock - safely unlock two runqueues |
| 1728 | * |
| 1729 | * Note this does not restore interrupts like task_rq_unlock, |
| 1730 | * you need to do so manually after calling. |
| 1731 | */ |
| 1732 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
| 1733 | __releases(rq1->lock) |
| 1734 | __releases(rq2->lock) |
| 1735 | { |
| 1736 | raw_spin_unlock(&rq1->lock); |
| 1737 | if (rq1 != rq2) |
| 1738 | raw_spin_unlock(&rq2->lock); |
| 1739 | else |
| 1740 | __release(rq2->lock); |
| 1741 | } |
| 1742 | |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 1743 | #else /* CONFIG_SMP */ |
| 1744 | |
| 1745 | /* |
| 1746 | * double_rq_lock - safely lock two runqueues |
| 1747 | * |
| 1748 | * Note this does not disable interrupts like task_rq_lock, |
| 1749 | * you need to do so manually before calling. |
| 1750 | */ |
| 1751 | static void double_rq_lock(struct rq *rq1, struct rq *rq2) |
| 1752 | __acquires(rq1->lock) |
| 1753 | __acquires(rq2->lock) |
| 1754 | { |
| 1755 | BUG_ON(!irqs_disabled()); |
| 1756 | BUG_ON(rq1 != rq2); |
| 1757 | raw_spin_lock(&rq1->lock); |
| 1758 | __acquire(rq2->lock); /* Fake it out ;) */ |
| 1759 | } |
| 1760 | |
| 1761 | /* |
| 1762 | * double_rq_unlock - safely unlock two runqueues |
| 1763 | * |
| 1764 | * Note this does not restore interrupts like task_rq_unlock, |
| 1765 | * you need to do so manually after calling. |
| 1766 | */ |
| 1767 | static void double_rq_unlock(struct rq *rq1, struct rq *rq2) |
| 1768 | __releases(rq1->lock) |
| 1769 | __releases(rq2->lock) |
| 1770 | { |
| 1771 | BUG_ON(rq1 != rq2); |
| 1772 | raw_spin_unlock(&rq1->lock); |
| 1773 | __release(rq2->lock); |
| 1774 | } |
| 1775 | |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1776 | #endif |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1777 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 1778 | static void calc_load_account_idle(struct rq *this_rq); |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 1779 | static void update_sysctl(void); |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 1780 | static int get_update_sysctl_factor(void); |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 1781 | static void update_cpu_load(struct rq *this_rq); |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 1782 | |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 1783 | static inline void __set_task_cpu(struct task_struct *p, unsigned int cpu) |
| 1784 | { |
| 1785 | set_task_rq(p, cpu); |
| 1786 | #ifdef CONFIG_SMP |
| 1787 | /* |
| 1788 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
| 1789 | * successfuly executed on another CPU. We must ensure that updates of |
| 1790 | * per-task data have been completed by this moment. |
| 1791 | */ |
| 1792 | smp_wmb(); |
| 1793 | task_thread_info(p)->cpu = cpu; |
| 1794 | #endif |
| 1795 | } |
Peter Zijlstra | 18d95a2 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 1796 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1797 | static const struct sched_class rt_sched_class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1798 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 1799 | #define sched_class_highest (&stop_sched_class) |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 1800 | #define for_each_class(class) \ |
| 1801 | for (class = sched_class_highest; class; class = class->next) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1802 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1803 | #include "sched_stats.h" |
| 1804 | |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 1805 | static void inc_nr_running(struct rq *rq) |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1806 | { |
| 1807 | rq->nr_running++; |
Ingo Molnar | 6363ca5 | 2008-05-29 11:28:57 +0200 | [diff] [blame] | 1808 | } |
| 1809 | |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 1810 | static void dec_nr_running(struct rq *rq) |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1811 | { |
| 1812 | rq->nr_running--; |
Ingo Molnar | 9c21724 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 1813 | } |
| 1814 | |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1815 | static void set_load_weight(struct task_struct *p) |
| 1816 | { |
Nikhil Rao | f05998d | 2011-05-18 10:09:38 -0700 | [diff] [blame] | 1817 | int prio = p->static_prio - MAX_RT_PRIO; |
| 1818 | struct load_weight *load = &p->se.load; |
| 1819 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1820 | /* |
| 1821 | * SCHED_IDLE tasks get minimal weight: |
| 1822 | */ |
| 1823 | if (p->policy == SCHED_IDLE) { |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1824 | load->weight = scale_load(WEIGHT_IDLEPRIO); |
Nikhil Rao | f05998d | 2011-05-18 10:09:38 -0700 | [diff] [blame] | 1825 | load->inv_weight = WMULT_IDLEPRIO; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1826 | return; |
| 1827 | } |
| 1828 | |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 1829 | load->weight = scale_load(prio_to_weight[prio]); |
Nikhil Rao | f05998d | 2011-05-18 10:09:38 -0700 | [diff] [blame] | 1830 | load->inv_weight = prio_to_wmult[prio]; |
Ingo Molnar | 45bf76d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1831 | } |
| 1832 | |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1833 | static void enqueue_task(struct rq *rq, struct task_struct *p, int flags) |
Gregory Haskins | 2087a1a | 2008-06-27 14:30:00 -0600 | [diff] [blame] | 1834 | { |
Mike Galbraith | a64692a | 2010-03-11 17:16:20 +0100 | [diff] [blame] | 1835 | update_rq_clock(rq); |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1836 | sched_info_queued(p); |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1837 | p->sched_class->enqueue_task(rq, p, flags); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1838 | } |
| 1839 | |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1840 | static void dequeue_task(struct rq *rq, struct task_struct *p, int flags) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1841 | { |
Mike Galbraith | a64692a | 2010-03-11 17:16:20 +0100 | [diff] [blame] | 1842 | update_rq_clock(rq); |
Ankita Garg | 46ac22b | 2008-07-01 14:30:06 +0530 | [diff] [blame] | 1843 | sched_info_dequeued(p); |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1844 | p->sched_class->dequeue_task(rq, p, flags); |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 1845 | } |
| 1846 | |
| 1847 | /* |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1848 | * activate_task - move a task to the runqueue. |
| 1849 | */ |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1850 | static void activate_task(struct rq *rq, struct task_struct *p, int flags) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1851 | { |
| 1852 | if (task_contributes_to_load(p)) |
| 1853 | rq->nr_uninterruptible--; |
| 1854 | |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1855 | enqueue_task(rq, p, flags); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1856 | } |
| 1857 | |
| 1858 | /* |
| 1859 | * deactivate_task - remove a task from the runqueue. |
| 1860 | */ |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1861 | static void deactivate_task(struct rq *rq, struct task_struct *p, int flags) |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1862 | { |
| 1863 | if (task_contributes_to_load(p)) |
| 1864 | rq->nr_uninterruptible++; |
| 1865 | |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 1866 | dequeue_task(rq, p, flags); |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 1867 | } |
| 1868 | |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1869 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
| 1870 | |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 1871 | /* |
| 1872 | * There are no locks covering percpu hardirq/softirq time. |
| 1873 | * They are only modified in account_system_vtime, on corresponding CPU |
| 1874 | * with interrupts disabled. So, writes are safe. |
| 1875 | * They are read and saved off onto struct rq in update_rq_clock(). |
| 1876 | * This may result in other CPU reading this CPU's irq time and can |
| 1877 | * race with irq/account_system_vtime on this CPU. We would either get old |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1878 | * or new value with a side effect of accounting a slice of irq time to wrong |
| 1879 | * task when irq is in progress while we read rq->clock. That is a worthy |
| 1880 | * compromise in place of having locks on each irq in account_system_time. |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 1881 | */ |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1882 | static DEFINE_PER_CPU(u64, cpu_hardirq_time); |
| 1883 | static DEFINE_PER_CPU(u64, cpu_softirq_time); |
| 1884 | |
| 1885 | static DEFINE_PER_CPU(u64, irq_start_time); |
| 1886 | static int sched_clock_irqtime; |
| 1887 | |
| 1888 | void enable_sched_clock_irqtime(void) |
| 1889 | { |
| 1890 | sched_clock_irqtime = 1; |
| 1891 | } |
| 1892 | |
| 1893 | void disable_sched_clock_irqtime(void) |
| 1894 | { |
| 1895 | sched_clock_irqtime = 0; |
| 1896 | } |
| 1897 | |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1898 | #ifndef CONFIG_64BIT |
| 1899 | static DEFINE_PER_CPU(seqcount_t, irq_time_seq); |
| 1900 | |
| 1901 | static inline void irq_time_write_begin(void) |
| 1902 | { |
| 1903 | __this_cpu_inc(irq_time_seq.sequence); |
| 1904 | smp_wmb(); |
| 1905 | } |
| 1906 | |
| 1907 | static inline void irq_time_write_end(void) |
| 1908 | { |
| 1909 | smp_wmb(); |
| 1910 | __this_cpu_inc(irq_time_seq.sequence); |
| 1911 | } |
| 1912 | |
| 1913 | static inline u64 irq_time_read(int cpu) |
| 1914 | { |
| 1915 | u64 irq_time; |
| 1916 | unsigned seq; |
| 1917 | |
| 1918 | do { |
| 1919 | seq = read_seqcount_begin(&per_cpu(irq_time_seq, cpu)); |
| 1920 | irq_time = per_cpu(cpu_softirq_time, cpu) + |
| 1921 | per_cpu(cpu_hardirq_time, cpu); |
| 1922 | } while (read_seqcount_retry(&per_cpu(irq_time_seq, cpu), seq)); |
| 1923 | |
| 1924 | return irq_time; |
| 1925 | } |
| 1926 | #else /* CONFIG_64BIT */ |
| 1927 | static inline void irq_time_write_begin(void) |
| 1928 | { |
| 1929 | } |
| 1930 | |
| 1931 | static inline void irq_time_write_end(void) |
| 1932 | { |
| 1933 | } |
| 1934 | |
| 1935 | static inline u64 irq_time_read(int cpu) |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 1936 | { |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 1937 | return per_cpu(cpu_softirq_time, cpu) + per_cpu(cpu_hardirq_time, cpu); |
| 1938 | } |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1939 | #endif /* CONFIG_64BIT */ |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 1940 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1941 | /* |
| 1942 | * Called before incrementing preempt_count on {soft,}irq_enter |
| 1943 | * and before decrementing preempt_count on {soft,}irq_exit. |
| 1944 | */ |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1945 | void account_system_vtime(struct task_struct *curr) |
| 1946 | { |
| 1947 | unsigned long flags; |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1948 | s64 delta; |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1949 | int cpu; |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1950 | |
| 1951 | if (!sched_clock_irqtime) |
| 1952 | return; |
| 1953 | |
| 1954 | local_irq_save(flags); |
| 1955 | |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1956 | cpu = smp_processor_id(); |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1957 | delta = sched_clock_cpu(cpu) - __this_cpu_read(irq_start_time); |
| 1958 | __this_cpu_add(irq_start_time, delta); |
| 1959 | |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1960 | irq_time_write_begin(); |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1961 | /* |
| 1962 | * We do not account for softirq time from ksoftirqd here. |
| 1963 | * We want to continue accounting softirq time to ksoftirqd thread |
| 1964 | * in that case, so as not to confuse scheduler with a special task |
| 1965 | * that do not consume any time, but still wants to run. |
| 1966 | */ |
| 1967 | if (hardirq_count()) |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1968 | __this_cpu_add(cpu_hardirq_time, delta); |
Venkatesh Pallipadi | 4dd53d8 | 2010-12-21 17:09:00 -0800 | [diff] [blame] | 1969 | else if (in_serving_softirq() && curr != this_cpu_ksoftirqd()) |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1970 | __this_cpu_add(cpu_softirq_time, delta); |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1971 | |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1972 | irq_time_write_end(); |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1973 | local_irq_restore(flags); |
| 1974 | } |
Ingo Molnar | b7dadc3 | 2010-10-18 20:00:37 +0200 | [diff] [blame] | 1975 | EXPORT_SYMBOL_GPL(account_system_vtime); |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 1976 | |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 1977 | #endif /* CONFIG_IRQ_TIME_ACCOUNTING */ |
| 1978 | |
| 1979 | #ifdef CONFIG_PARAVIRT |
| 1980 | static inline u64 steal_ticks(u64 steal) |
| 1981 | { |
| 1982 | if (unlikely(steal > NSEC_PER_SEC)) |
| 1983 | return div_u64(steal, TICK_NSEC); |
| 1984 | |
| 1985 | return __iter_div_u64_rem(steal, TICK_NSEC, &steal); |
| 1986 | } |
| 1987 | #endif |
| 1988 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1989 | static void update_rq_clock_task(struct rq *rq, s64 delta) |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 1990 | { |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 1991 | /* |
| 1992 | * In theory, the compile should just see 0 here, and optimize out the call |
| 1993 | * to sched_rt_avg_update. But I don't trust it... |
| 1994 | */ |
| 1995 | #if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING) |
| 1996 | s64 steal = 0, irq_delta = 0; |
| 1997 | #endif |
| 1998 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
Peter Zijlstra | 8e92c20 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 1999 | irq_delta = irq_time_read(cpu_of(rq)) - rq->prev_irq_time; |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 2000 | |
| 2001 | /* |
| 2002 | * Since irq_time is only updated on {soft,}irq_exit, we might run into |
| 2003 | * this case when a previous update_rq_clock() happened inside a |
| 2004 | * {soft,}irq region. |
| 2005 | * |
| 2006 | * When this happens, we stop ->clock_task and only update the |
| 2007 | * prev_irq_time stamp to account for the part that fit, so that a next |
| 2008 | * update will consume the rest. This ensures ->clock_task is |
| 2009 | * monotonic. |
| 2010 | * |
| 2011 | * It does however cause some slight miss-attribution of {soft,}irq |
| 2012 | * time, a more accurate solution would be to update the irq_time using |
| 2013 | * the current rq->clock timestamp, except that would require using |
| 2014 | * atomic ops. |
| 2015 | */ |
| 2016 | if (irq_delta > delta) |
| 2017 | irq_delta = delta; |
| 2018 | |
| 2019 | rq->prev_irq_time += irq_delta; |
| 2020 | delta -= irq_delta; |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 2021 | #endif |
| 2022 | #ifdef CONFIG_PARAVIRT_TIME_ACCOUNTING |
| 2023 | if (static_branch((¶virt_steal_rq_enabled))) { |
| 2024 | u64 st; |
| 2025 | |
| 2026 | steal = paravirt_steal_clock(cpu_of(rq)); |
| 2027 | steal -= rq->prev_steal_time_rq; |
| 2028 | |
| 2029 | if (unlikely(steal > delta)) |
| 2030 | steal = delta; |
| 2031 | |
| 2032 | st = steal_ticks(steal); |
| 2033 | steal = st * TICK_NSEC; |
| 2034 | |
| 2035 | rq->prev_steal_time_rq += steal; |
| 2036 | |
| 2037 | delta -= steal; |
| 2038 | } |
| 2039 | #endif |
| 2040 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 2041 | rq->clock_task += delta; |
| 2042 | |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 2043 | #if defined(CONFIG_IRQ_TIME_ACCOUNTING) || defined(CONFIG_PARAVIRT_TIME_ACCOUNTING) |
| 2044 | if ((irq_delta + steal) && sched_feat(NONTASK_POWER)) |
| 2045 | sched_rt_avg_update(rq, irq_delta + steal); |
| 2046 | #endif |
Venkatesh Pallipadi | aa48380 | 2010-10-04 17:03:22 -0700 | [diff] [blame] | 2047 | } |
| 2048 | |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 2049 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 2050 | static int irqtime_account_hi_update(void) |
| 2051 | { |
| 2052 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 2053 | unsigned long flags; |
| 2054 | u64 latest_ns; |
| 2055 | int ret = 0; |
| 2056 | |
| 2057 | local_irq_save(flags); |
| 2058 | latest_ns = this_cpu_read(cpu_hardirq_time); |
| 2059 | if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->irq)) |
| 2060 | ret = 1; |
| 2061 | local_irq_restore(flags); |
| 2062 | return ret; |
| 2063 | } |
| 2064 | |
| 2065 | static int irqtime_account_si_update(void) |
| 2066 | { |
| 2067 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 2068 | unsigned long flags; |
| 2069 | u64 latest_ns; |
| 2070 | int ret = 0; |
| 2071 | |
| 2072 | local_irq_save(flags); |
| 2073 | latest_ns = this_cpu_read(cpu_softirq_time); |
| 2074 | if (cputime64_gt(nsecs_to_cputime64(latest_ns), cpustat->softirq)) |
| 2075 | ret = 1; |
| 2076 | local_irq_restore(flags); |
| 2077 | return ret; |
| 2078 | } |
| 2079 | |
Peter Zijlstra | fe44d62 | 2010-12-09 14:15:34 +0100 | [diff] [blame] | 2080 | #else /* CONFIG_IRQ_TIME_ACCOUNTING */ |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 2081 | |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 2082 | #define sched_clock_irqtime (0) |
| 2083 | |
Glauber Costa | 095c0aa | 2011-07-11 15:28:18 -0400 | [diff] [blame] | 2084 | #endif |
Venkatesh Pallipadi | b52bfee | 2010-10-04 17:03:19 -0700 | [diff] [blame] | 2085 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 2086 | #include "sched_idletask.c" |
| 2087 | #include "sched_fair.c" |
| 2088 | #include "sched_rt.c" |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 2089 | #include "sched_autogroup.c" |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 2090 | #include "sched_stoptask.c" |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 2091 | #ifdef CONFIG_SCHED_DEBUG |
| 2092 | # include "sched_debug.c" |
| 2093 | #endif |
| 2094 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 2095 | void sched_set_stop_task(int cpu, struct task_struct *stop) |
| 2096 | { |
| 2097 | struct sched_param param = { .sched_priority = MAX_RT_PRIO - 1 }; |
| 2098 | struct task_struct *old_stop = cpu_rq(cpu)->stop; |
| 2099 | |
| 2100 | if (stop) { |
| 2101 | /* |
| 2102 | * Make it appear like a SCHED_FIFO task, its something |
| 2103 | * userspace knows about and won't get confused about. |
| 2104 | * |
| 2105 | * Also, it will make PI more or less work without too |
| 2106 | * much confusion -- but then, stop work should not |
| 2107 | * rely on PI working anyway. |
| 2108 | */ |
| 2109 | sched_setscheduler_nocheck(stop, SCHED_FIFO, ¶m); |
| 2110 | |
| 2111 | stop->sched_class = &stop_sched_class; |
| 2112 | } |
| 2113 | |
| 2114 | cpu_rq(cpu)->stop = stop; |
| 2115 | |
| 2116 | if (old_stop) { |
| 2117 | /* |
| 2118 | * Reset it back to a normal scheduling class so that |
| 2119 | * it can die in pieces. |
| 2120 | */ |
| 2121 | old_stop->sched_class = &rt_sched_class; |
| 2122 | } |
| 2123 | } |
| 2124 | |
Peter Zijlstra | 1e3c88b | 2009-12-17 17:00:43 +0100 | [diff] [blame] | 2125 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2126 | * __normal_prio - return the priority that is based on the static prio |
Ingo Molnar | 71f8bd4 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2127 | */ |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2128 | static inline int __normal_prio(struct task_struct *p) |
| 2129 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2130 | return p->static_prio; |
Ingo Molnar | 1453118 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2131 | } |
| 2132 | |
| 2133 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2134 | * Calculate the expected normal priority: i.e. priority |
| 2135 | * without taking RT-inheritance into account. Might be |
| 2136 | * boosted by interactivity modifiers. Changes upon fork, |
| 2137 | * setprio syscalls, and whenever the interactivity |
| 2138 | * estimator recalculates. |
| 2139 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2140 | static inline int normal_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2141 | { |
| 2142 | int prio; |
| 2143 | |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2144 | if (task_has_rt_policy(p)) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2145 | prio = MAX_RT_PRIO-1 - p->rt_priority; |
| 2146 | else |
| 2147 | prio = __normal_prio(p); |
| 2148 | return prio; |
| 2149 | } |
| 2150 | |
| 2151 | /* |
| 2152 | * Calculate the current priority, i.e. the priority |
| 2153 | * taken into account by the scheduler. This value might |
| 2154 | * be boosted by RT tasks, or might be boosted by |
| 2155 | * interactivity modifiers. Will be RT if the task got |
| 2156 | * RT-boosted. If not then it returns p->normal_prio. |
| 2157 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2158 | static int effective_prio(struct task_struct *p) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2159 | { |
| 2160 | p->normal_prio = normal_prio(p); |
| 2161 | /* |
| 2162 | * If we are RT tasks or we were boosted to RT priority, |
| 2163 | * keep the priority unchanged. Otherwise, update priority |
| 2164 | * to the normal priority: |
| 2165 | */ |
| 2166 | if (!rt_prio(p->prio)) |
| 2167 | return p->normal_prio; |
| 2168 | return p->prio; |
| 2169 | } |
| 2170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | /** |
| 2172 | * task_curr - is this task currently executing on a CPU? |
| 2173 | * @p: the task in question. |
| 2174 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2175 | inline int task_curr(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | { |
| 2177 | return cpu_curr(task_cpu(p)) == p; |
| 2178 | } |
| 2179 | |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2180 | static inline void check_class_changed(struct rq *rq, struct task_struct *p, |
| 2181 | const struct sched_class *prev_class, |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 2182 | int oldprio) |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2183 | { |
| 2184 | if (prev_class != p->sched_class) { |
| 2185 | if (prev_class->switched_from) |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 2186 | prev_class->switched_from(rq, p); |
| 2187 | p->sched_class->switched_to(rq, p); |
| 2188 | } else if (oldprio != p->prio) |
| 2189 | p->sched_class->prio_changed(rq, p, oldprio); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2190 | } |
| 2191 | |
Peter Zijlstra | 1e5a740 | 2010-10-31 12:37:04 +0100 | [diff] [blame] | 2192 | static void check_preempt_curr(struct rq *rq, struct task_struct *p, int flags) |
| 2193 | { |
| 2194 | const struct sched_class *class; |
| 2195 | |
| 2196 | if (p->sched_class == rq->curr->sched_class) { |
| 2197 | rq->curr->sched_class->check_preempt_curr(rq, p, flags); |
| 2198 | } else { |
| 2199 | for_each_class(class) { |
| 2200 | if (class == rq->curr->sched_class) |
| 2201 | break; |
| 2202 | if (class == p->sched_class) { |
| 2203 | resched_task(rq->curr); |
| 2204 | break; |
| 2205 | } |
| 2206 | } |
| 2207 | } |
| 2208 | |
| 2209 | /* |
| 2210 | * A queue event has occurred, and we're going to schedule. In |
| 2211 | * this case, we can save a useless back to back clock update. |
| 2212 | */ |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2213 | if (rq->curr->on_rq && test_tsk_need_resched(rq->curr)) |
Peter Zijlstra | 1e5a740 | 2010-10-31 12:37:04 +0100 | [diff] [blame] | 2214 | rq->skip_clock_update = 1; |
| 2215 | } |
| 2216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | #ifdef CONFIG_SMP |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2218 | /* |
| 2219 | * Is this task likely cache-hot: |
| 2220 | */ |
Gregory Haskins | e7693a3 | 2008-01-25 21:08:09 +0100 | [diff] [blame] | 2221 | static int |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2222 | task_hot(struct task_struct *p, u64 now, struct sched_domain *sd) |
| 2223 | { |
| 2224 | s64 delta; |
| 2225 | |
Peter Zijlstra | e6c8fba | 2009-12-16 18:04:33 +0100 | [diff] [blame] | 2226 | if (p->sched_class != &fair_sched_class) |
| 2227 | return 0; |
| 2228 | |
Nikhil Rao | ef8002f | 2010-10-13 12:09:35 -0700 | [diff] [blame] | 2229 | if (unlikely(p->policy == SCHED_IDLE)) |
| 2230 | return 0; |
| 2231 | |
Ingo Molnar | f540a60 | 2008-03-15 17:10:34 +0100 | [diff] [blame] | 2232 | /* |
| 2233 | * Buddy candidates are cache hot: |
| 2234 | */ |
Mike Galbraith | f685cea | 2009-10-23 23:09:22 +0200 | [diff] [blame] | 2235 | if (sched_feat(CACHE_HOT_BUDDY) && this_rq()->nr_running && |
Peter Zijlstra | 4793241 | 2008-11-04 21:25:09 +0100 | [diff] [blame] | 2236 | (&p->se == cfs_rq_of(&p->se)->next || |
| 2237 | &p->se == cfs_rq_of(&p->se)->last)) |
Ingo Molnar | f540a60 | 2008-03-15 17:10:34 +0100 | [diff] [blame] | 2238 | return 1; |
| 2239 | |
Ingo Molnar | 6bc1665 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2240 | if (sysctl_sched_migration_cost == -1) |
| 2241 | return 1; |
| 2242 | if (sysctl_sched_migration_cost == 0) |
| 2243 | return 0; |
| 2244 | |
Ingo Molnar | cc36773 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 2245 | delta = now - p->se.exec_start; |
| 2246 | |
| 2247 | return delta < (s64)sysctl_sched_migration_cost; |
| 2248 | } |
| 2249 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2250 | void set_task_cpu(struct task_struct *p, unsigned int new_cpu) |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2251 | { |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2252 | #ifdef CONFIG_SCHED_DEBUG |
| 2253 | /* |
| 2254 | * We should never call set_task_cpu() on a blocked task, |
| 2255 | * ttwu() will sort out the placement. |
| 2256 | */ |
Peter Zijlstra | 077614e | 2009-12-17 13:16:31 +0100 | [diff] [blame] | 2257 | WARN_ON_ONCE(p->state != TASK_RUNNING && p->state != TASK_WAKING && |
| 2258 | !(task_thread_info(p)->preempt_count & PREEMPT_ACTIVE)); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2259 | |
| 2260 | #ifdef CONFIG_LOCKDEP |
Peter Zijlstra | 6c6c54e | 2011-06-03 17:37:07 +0200 | [diff] [blame] | 2261 | /* |
| 2262 | * The caller should hold either p->pi_lock or rq->lock, when changing |
| 2263 | * a task's CPU. ->pi_lock for waking tasks, rq->lock for runnable tasks. |
| 2264 | * |
| 2265 | * sched_move_task() holds both and thus holding either pins the cgroup, |
| 2266 | * see set_task_rq(). |
| 2267 | * |
| 2268 | * Furthermore, all task_rq users should acquire both locks, see |
| 2269 | * task_rq_lock(). |
| 2270 | */ |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2271 | WARN_ON_ONCE(debug_locks && !(lockdep_is_held(&p->pi_lock) || |
| 2272 | lockdep_is_held(&task_rq(p)->lock))); |
| 2273 | #endif |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2274 | #endif |
| 2275 | |
Mathieu Desnoyers | de1d728 | 2009-05-05 16:49:59 +0800 | [diff] [blame] | 2276 | trace_sched_migrate_task(p, new_cpu); |
Peter Zijlstra | cbc34ed | 2008-12-10 08:08:22 +0100 | [diff] [blame] | 2277 | |
Peter Zijlstra | 0c69774 | 2009-12-22 15:43:19 +0100 | [diff] [blame] | 2278 | if (task_cpu(p) != new_cpu) { |
| 2279 | p->se.nr_migrations++; |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 2280 | perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, NULL, 0); |
Peter Zijlstra | 0c69774 | 2009-12-22 15:43:19 +0100 | [diff] [blame] | 2281 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2282 | |
| 2283 | __set_task_cpu(p, new_cpu); |
Ingo Molnar | c65cc87 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 2284 | } |
| 2285 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 2286 | struct migration_arg { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2287 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2288 | int dest_cpu; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2289 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 2291 | static int migration_cpu_stop(void *data); |
| 2292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2294 | * wait_task_inactive - wait for a thread to unschedule. |
| 2295 | * |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2296 | * If @match_state is nonzero, it's the @p->state value just checked and |
| 2297 | * not expected to change. If it changes, i.e. @p might have woken up, |
| 2298 | * then return zero. When we succeed in waiting for @p to be off its CPU, |
| 2299 | * we return a positive number (its total switch count). If a second call |
| 2300 | * a short while later returns the same number, the caller can be sure that |
| 2301 | * @p has remained unscheduled the whole time. |
| 2302 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | * The caller must ensure that the task *will* unschedule sometime soon, |
| 2304 | * else this function might spin for a *long* time. This function can't |
| 2305 | * be called with interrupts off, or it may introduce deadlock with |
| 2306 | * smp_call_function() if an IPI is sent by the same process we are |
| 2307 | * waiting to become inactive. |
| 2308 | */ |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2309 | unsigned long wait_task_inactive(struct task_struct *p, long match_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | { |
| 2311 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2312 | int running, on_rq; |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2313 | unsigned long ncsw; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 2314 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2315 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2316 | for (;;) { |
| 2317 | /* |
| 2318 | * We do the initial early heuristics without holding |
| 2319 | * any task-queue locks at all. We'll only try to get |
| 2320 | * the runqueue lock when things look like they will |
| 2321 | * work out! |
| 2322 | */ |
| 2323 | rq = task_rq(p); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 2324 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2325 | /* |
| 2326 | * If the task is actively running on another CPU |
| 2327 | * still, just relax and busy-wait without holding |
| 2328 | * any locks. |
| 2329 | * |
| 2330 | * NOTE! Since we don't hold any locks, it's not |
| 2331 | * even sure that "rq" stays as the right runqueue! |
| 2332 | * But we don't care, since "task_running()" will |
| 2333 | * return false if the runqueue has changed and p |
| 2334 | * is actually now running somewhere else! |
| 2335 | */ |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2336 | while (task_running(rq, p)) { |
| 2337 | if (match_state && unlikely(p->state != match_state)) |
| 2338 | return 0; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2339 | cpu_relax(); |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2340 | } |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 2341 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2342 | /* |
| 2343 | * Ok, time to look more closely! We need the rq |
| 2344 | * lock now, to be *sure*. If we're wrong, we'll |
| 2345 | * just go back and repeat. |
| 2346 | */ |
| 2347 | rq = task_rq_lock(p, &flags); |
Peter Zijlstra | 27a9da6 | 2010-05-04 20:36:56 +0200 | [diff] [blame] | 2348 | trace_sched_wait_task(p); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2349 | running = task_running(rq, p); |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2350 | on_rq = p->on_rq; |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2351 | ncsw = 0; |
Oleg Nesterov | f31e11d | 2008-08-20 16:54:44 -0700 | [diff] [blame] | 2352 | if (!match_state || p->state == match_state) |
Oleg Nesterov | 93dcf55 | 2008-08-20 16:54:44 -0700 | [diff] [blame] | 2353 | ncsw = p->nvcsw | LONG_MIN; /* sets MSB */ |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2354 | task_rq_unlock(rq, p, &flags); |
Linus Torvalds | fa490cf | 2007-06-18 09:34:40 -0700 | [diff] [blame] | 2355 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2356 | /* |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2357 | * If it changed from the expected state, bail out now. |
| 2358 | */ |
| 2359 | if (unlikely(!ncsw)) |
| 2360 | break; |
| 2361 | |
| 2362 | /* |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2363 | * Was it really running after all now that we |
| 2364 | * checked with the proper locks actually held? |
| 2365 | * |
| 2366 | * Oops. Go back and try again.. |
| 2367 | */ |
| 2368 | if (unlikely(running)) { |
| 2369 | cpu_relax(); |
| 2370 | continue; |
| 2371 | } |
| 2372 | |
| 2373 | /* |
| 2374 | * It's not enough that it's not actively running, |
| 2375 | * it must be off the runqueue _entirely_, and not |
| 2376 | * preempted! |
| 2377 | * |
Luis Henriques | 80dd99b | 2009-03-16 19:58:09 +0000 | [diff] [blame] | 2378 | * So if it was still runnable (but just not actively |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2379 | * running right now), it's preempted, and we should |
| 2380 | * yield - it could be a while. |
| 2381 | */ |
| 2382 | if (unlikely(on_rq)) { |
Thomas Gleixner | 8eb90c3 | 2011-02-23 23:52:21 +0000 | [diff] [blame] | 2383 | ktime_t to = ktime_set(0, NSEC_PER_SEC/HZ); |
| 2384 | |
| 2385 | set_current_state(TASK_UNINTERRUPTIBLE); |
| 2386 | schedule_hrtimeout(&to, HRTIMER_MODE_REL); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 2387 | continue; |
| 2388 | } |
| 2389 | |
| 2390 | /* |
| 2391 | * Ahh, all good. It wasn't running, and it wasn't |
| 2392 | * runnable, which means that it will never become |
| 2393 | * running in the future either. We're all done! |
| 2394 | */ |
| 2395 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2396 | } |
Roland McGrath | 85ba2d8 | 2008-07-25 19:45:58 -0700 | [diff] [blame] | 2397 | |
| 2398 | return ncsw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2399 | } |
| 2400 | |
| 2401 | /*** |
| 2402 | * kick_process - kick a running thread to enter/exit the kernel |
| 2403 | * @p: the to-be-kicked thread |
| 2404 | * |
| 2405 | * Cause a process which is running on another CPU to enter |
| 2406 | * kernel-mode, without any delay. (to get signals handled.) |
| 2407 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2408 | * NOTE: this function doesn't have to take the runqueue lock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | * because all it wants to ensure is that the remote task enters |
| 2410 | * the kernel. If the IPI races and the task has been migrated |
| 2411 | * to another CPU then no harm is done and the purpose has been |
| 2412 | * achieved as well. |
| 2413 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 2414 | void kick_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2415 | { |
| 2416 | int cpu; |
| 2417 | |
| 2418 | preempt_disable(); |
| 2419 | cpu = task_cpu(p); |
| 2420 | if ((cpu != smp_processor_id()) && task_curr(p)) |
| 2421 | smp_send_reschedule(cpu); |
| 2422 | preempt_enable(); |
| 2423 | } |
Rusty Russell | b43e352 | 2009-06-12 22:27:00 -0600 | [diff] [blame] | 2424 | EXPORT_SYMBOL_GPL(kick_process); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2425 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2426 | |
Peter Zijlstra | 970b13b | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 2427 | #ifdef CONFIG_SMP |
Oleg Nesterov | 30da688 | 2010-03-15 10:10:19 +0100 | [diff] [blame] | 2428 | /* |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 2429 | * ->cpus_allowed is protected by both rq->lock and p->pi_lock |
Oleg Nesterov | 30da688 | 2010-03-15 10:10:19 +0100 | [diff] [blame] | 2430 | */ |
Peter Zijlstra | 5da9a0f | 2009-12-16 18:04:38 +0100 | [diff] [blame] | 2431 | static int select_fallback_rq(int cpu, struct task_struct *p) |
| 2432 | { |
| 2433 | int dest_cpu; |
| 2434 | const struct cpumask *nodemask = cpumask_of_node(cpu_to_node(cpu)); |
| 2435 | |
| 2436 | /* Look for allowed, online CPU in same node. */ |
| 2437 | for_each_cpu_and(dest_cpu, nodemask, cpu_active_mask) |
| 2438 | if (cpumask_test_cpu(dest_cpu, &p->cpus_allowed)) |
| 2439 | return dest_cpu; |
| 2440 | |
| 2441 | /* Any allowed, online CPU? */ |
| 2442 | dest_cpu = cpumask_any_and(&p->cpus_allowed, cpu_active_mask); |
| 2443 | if (dest_cpu < nr_cpu_ids) |
| 2444 | return dest_cpu; |
| 2445 | |
| 2446 | /* No more Mr. Nice Guy. */ |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 2447 | dest_cpu = cpuset_cpus_allowed_fallback(p); |
| 2448 | /* |
| 2449 | * Don't tell them about moving exiting tasks or |
| 2450 | * kernel threads (both mm NULL), since they never |
| 2451 | * leave kernel. |
| 2452 | */ |
| 2453 | if (p->mm && printk_ratelimit()) { |
| 2454 | printk(KERN_INFO "process %d (%s) no longer affine to cpu%d\n", |
| 2455 | task_pid_nr(p), p->comm, cpu); |
Peter Zijlstra | 5da9a0f | 2009-12-16 18:04:38 +0100 | [diff] [blame] | 2456 | } |
| 2457 | |
| 2458 | return dest_cpu; |
| 2459 | } |
| 2460 | |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2461 | /* |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 2462 | * The caller (fork, wakeup) owns p->pi_lock, ->cpus_allowed is stable. |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2463 | */ |
Peter Zijlstra | 970b13b | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 2464 | static inline |
Peter Zijlstra | 7608dec | 2011-04-05 17:23:46 +0200 | [diff] [blame] | 2465 | int select_task_rq(struct task_struct *p, int sd_flags, int wake_flags) |
Peter Zijlstra | 970b13b | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 2466 | { |
Peter Zijlstra | 7608dec | 2011-04-05 17:23:46 +0200 | [diff] [blame] | 2467 | int cpu = p->sched_class->select_task_rq(p, sd_flags, wake_flags); |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2468 | |
| 2469 | /* |
| 2470 | * In order not to call set_task_cpu() on a blocking task we need |
| 2471 | * to rely on ttwu() to place the task on a valid ->cpus_allowed |
| 2472 | * cpu. |
| 2473 | * |
| 2474 | * Since this is common to all placement strategies, this lives here. |
| 2475 | * |
| 2476 | * [ this allows ->select_task() to simply return task_cpu(p) and |
| 2477 | * not worry about this generic constraint ] |
| 2478 | */ |
| 2479 | if (unlikely(!cpumask_test_cpu(cpu, &p->cpus_allowed) || |
Peter Zijlstra | 70f1120 | 2009-12-20 17:36:27 +0100 | [diff] [blame] | 2480 | !cpu_online(cpu))) |
Peter Zijlstra | 5da9a0f | 2009-12-16 18:04:38 +0100 | [diff] [blame] | 2481 | cpu = select_fallback_rq(task_cpu(p), p); |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 2482 | |
| 2483 | return cpu; |
Peter Zijlstra | 970b13b | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 2484 | } |
Mike Galbraith | 09a40af | 2010-04-15 07:29:59 +0200 | [diff] [blame] | 2485 | |
| 2486 | static void update_avg(u64 *avg, u64 sample) |
| 2487 | { |
| 2488 | s64 diff = sample - *avg; |
| 2489 | *avg += diff >> 3; |
| 2490 | } |
Peter Zijlstra | 970b13b | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 2491 | #endif |
| 2492 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2493 | static void |
Peter Zijlstra | b84cb5d | 2011-04-05 17:23:55 +0200 | [diff] [blame] | 2494 | ttwu_stat(struct task_struct *p, int cpu, int wake_flags) |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2495 | { |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2496 | #ifdef CONFIG_SCHEDSTATS |
Peter Zijlstra | b84cb5d | 2011-04-05 17:23:55 +0200 | [diff] [blame] | 2497 | struct rq *rq = this_rq(); |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2498 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2499 | #ifdef CONFIG_SMP |
| 2500 | int this_cpu = smp_processor_id(); |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2501 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2502 | if (cpu == this_cpu) { |
| 2503 | schedstat_inc(rq, ttwu_local); |
| 2504 | schedstat_inc(p, se.statistics.nr_wakeups_local); |
| 2505 | } else { |
| 2506 | struct sched_domain *sd; |
| 2507 | |
| 2508 | schedstat_inc(p, se.statistics.nr_wakeups_remote); |
Peter Zijlstra | 057f3fa | 2011-04-18 11:24:34 +0200 | [diff] [blame] | 2509 | rcu_read_lock(); |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2510 | for_each_domain(this_cpu, sd) { |
| 2511 | if (cpumask_test_cpu(cpu, sched_domain_span(sd))) { |
| 2512 | schedstat_inc(sd, ttwu_wake_remote); |
| 2513 | break; |
| 2514 | } |
| 2515 | } |
Peter Zijlstra | 057f3fa | 2011-04-18 11:24:34 +0200 | [diff] [blame] | 2516 | rcu_read_unlock(); |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2517 | } |
Peter Zijlstra | f339b9d | 2011-05-31 10:49:20 +0200 | [diff] [blame] | 2518 | |
| 2519 | if (wake_flags & WF_MIGRATED) |
| 2520 | schedstat_inc(p, se.statistics.nr_wakeups_migrate); |
| 2521 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2522 | #endif /* CONFIG_SMP */ |
| 2523 | |
| 2524 | schedstat_inc(rq, ttwu_count); |
| 2525 | schedstat_inc(p, se.statistics.nr_wakeups); |
| 2526 | |
| 2527 | if (wake_flags & WF_SYNC) |
| 2528 | schedstat_inc(p, se.statistics.nr_wakeups_sync); |
| 2529 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2530 | #endif /* CONFIG_SCHEDSTATS */ |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2531 | } |
| 2532 | |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2533 | static void ttwu_activate(struct rq *rq, struct task_struct *p, int en_flags) |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2534 | { |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2535 | activate_task(rq, p, en_flags); |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2536 | p->on_rq = 1; |
Peter Zijlstra | c2f7115 | 2011-04-13 13:28:56 +0200 | [diff] [blame] | 2537 | |
| 2538 | /* if a worker is waking up, notify workqueue */ |
| 2539 | if (p->flags & PF_WQ_WORKER) |
| 2540 | wq_worker_waking_up(p, cpu_of(rq)); |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2541 | } |
| 2542 | |
Peter Zijlstra | 23f41ee | 2011-04-05 17:23:56 +0200 | [diff] [blame] | 2543 | /* |
| 2544 | * Mark the task runnable and perform wakeup-preemption. |
| 2545 | */ |
Peter Zijlstra | 8936338 | 2011-04-05 17:23:42 +0200 | [diff] [blame] | 2546 | static void |
Peter Zijlstra | 23f41ee | 2011-04-05 17:23:56 +0200 | [diff] [blame] | 2547 | ttwu_do_wakeup(struct rq *rq, struct task_struct *p, int wake_flags) |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2548 | { |
Peter Zijlstra | 8936338 | 2011-04-05 17:23:42 +0200 | [diff] [blame] | 2549 | trace_sched_wakeup(p, true); |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2550 | check_preempt_curr(rq, p, wake_flags); |
| 2551 | |
| 2552 | p->state = TASK_RUNNING; |
| 2553 | #ifdef CONFIG_SMP |
| 2554 | if (p->sched_class->task_woken) |
| 2555 | p->sched_class->task_woken(rq, p); |
| 2556 | |
Steven Rostedt | e69c634 | 2010-12-06 17:10:31 -0500 | [diff] [blame] | 2557 | if (rq->idle_stamp) { |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2558 | u64 delta = rq->clock - rq->idle_stamp; |
| 2559 | u64 max = 2*sysctl_sched_migration_cost; |
| 2560 | |
| 2561 | if (delta > max) |
| 2562 | rq->avg_idle = max; |
| 2563 | else |
| 2564 | update_avg(&rq->avg_idle, delta); |
| 2565 | rq->idle_stamp = 0; |
| 2566 | } |
| 2567 | #endif |
| 2568 | } |
| 2569 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2570 | static void |
| 2571 | ttwu_do_activate(struct rq *rq, struct task_struct *p, int wake_flags) |
| 2572 | { |
| 2573 | #ifdef CONFIG_SMP |
| 2574 | if (p->sched_contributes_to_load) |
| 2575 | rq->nr_uninterruptible--; |
| 2576 | #endif |
| 2577 | |
| 2578 | ttwu_activate(rq, p, ENQUEUE_WAKEUP | ENQUEUE_WAKING); |
| 2579 | ttwu_do_wakeup(rq, p, wake_flags); |
| 2580 | } |
| 2581 | |
| 2582 | /* |
| 2583 | * Called in case the task @p isn't fully descheduled from its runqueue, |
| 2584 | * in this case we must do a remote wakeup. Its a 'light' wakeup though, |
| 2585 | * since all we need to do is flip p->state to TASK_RUNNING, since |
| 2586 | * the task is still ->on_rq. |
| 2587 | */ |
| 2588 | static int ttwu_remote(struct task_struct *p, int wake_flags) |
| 2589 | { |
| 2590 | struct rq *rq; |
| 2591 | int ret = 0; |
| 2592 | |
| 2593 | rq = __task_rq_lock(p); |
| 2594 | if (p->on_rq) { |
| 2595 | ttwu_do_wakeup(rq, p, wake_flags); |
| 2596 | ret = 1; |
| 2597 | } |
| 2598 | __task_rq_unlock(rq); |
| 2599 | |
| 2600 | return ret; |
| 2601 | } |
| 2602 | |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2603 | #ifdef CONFIG_SMP |
Peter Zijlstra | c5d753a | 2011-07-19 15:07:25 -0700 | [diff] [blame] | 2604 | static void sched_ttwu_do_pending(struct task_struct *list) |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2605 | { |
| 2606 | struct rq *rq = this_rq(); |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2607 | |
| 2608 | raw_spin_lock(&rq->lock); |
| 2609 | |
| 2610 | while (list) { |
| 2611 | struct task_struct *p = list; |
| 2612 | list = list->wake_entry; |
| 2613 | ttwu_do_activate(rq, p, 0); |
| 2614 | } |
| 2615 | |
| 2616 | raw_spin_unlock(&rq->lock); |
| 2617 | } |
| 2618 | |
Peter Zijlstra | c5d753a | 2011-07-19 15:07:25 -0700 | [diff] [blame] | 2619 | #ifdef CONFIG_HOTPLUG_CPU |
| 2620 | |
| 2621 | static void sched_ttwu_pending(void) |
| 2622 | { |
| 2623 | struct rq *rq = this_rq(); |
| 2624 | struct task_struct *list = xchg(&rq->wake_list, NULL); |
| 2625 | |
| 2626 | if (!list) |
| 2627 | return; |
| 2628 | |
| 2629 | sched_ttwu_do_pending(list); |
| 2630 | } |
| 2631 | |
| 2632 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 2633 | |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2634 | void scheduler_ipi(void) |
| 2635 | { |
Peter Zijlstra | c5d753a | 2011-07-19 15:07:25 -0700 | [diff] [blame] | 2636 | struct rq *rq = this_rq(); |
| 2637 | struct task_struct *list = xchg(&rq->wake_list, NULL); |
| 2638 | |
| 2639 | if (!list) |
| 2640 | return; |
| 2641 | |
| 2642 | /* |
| 2643 | * Not all reschedule IPI handlers call irq_enter/irq_exit, since |
| 2644 | * traditionally all their work was done from the interrupt return |
| 2645 | * path. Now that we actually do some work, we need to make sure |
| 2646 | * we do call them. |
| 2647 | * |
| 2648 | * Some archs already do call them, luckily irq_enter/exit nest |
| 2649 | * properly. |
| 2650 | * |
| 2651 | * Arguably we should visit all archs and update all handlers, |
| 2652 | * however a fair share of IPIs are still resched only so this would |
| 2653 | * somewhat pessimize the simple resched case. |
| 2654 | */ |
| 2655 | irq_enter(); |
| 2656 | sched_ttwu_do_pending(list); |
| 2657 | irq_exit(); |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2658 | } |
| 2659 | |
| 2660 | static void ttwu_queue_remote(struct task_struct *p, int cpu) |
| 2661 | { |
| 2662 | struct rq *rq = cpu_rq(cpu); |
| 2663 | struct task_struct *next = rq->wake_list; |
| 2664 | |
| 2665 | for (;;) { |
| 2666 | struct task_struct *old = next; |
| 2667 | |
| 2668 | p->wake_entry = next; |
| 2669 | next = cmpxchg(&rq->wake_list, old, p); |
| 2670 | if (next == old) |
| 2671 | break; |
| 2672 | } |
| 2673 | |
| 2674 | if (!next) |
| 2675 | smp_send_reschedule(cpu); |
| 2676 | } |
Peter Zijlstra | d6aa8f8 | 2011-05-26 14:21:33 +0200 | [diff] [blame] | 2677 | |
| 2678 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 2679 | static int ttwu_activate_remote(struct task_struct *p, int wake_flags) |
| 2680 | { |
| 2681 | struct rq *rq; |
| 2682 | int ret = 0; |
| 2683 | |
| 2684 | rq = __task_rq_lock(p); |
| 2685 | if (p->on_cpu) { |
| 2686 | ttwu_activate(rq, p, ENQUEUE_WAKEUP); |
| 2687 | ttwu_do_wakeup(rq, p, wake_flags); |
| 2688 | ret = 1; |
| 2689 | } |
| 2690 | __task_rq_unlock(rq); |
| 2691 | |
| 2692 | return ret; |
| 2693 | |
| 2694 | } |
| 2695 | #endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */ |
| 2696 | #endif /* CONFIG_SMP */ |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2697 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2698 | static void ttwu_queue(struct task_struct *p, int cpu) |
| 2699 | { |
| 2700 | struct rq *rq = cpu_rq(cpu); |
| 2701 | |
Daniel Hellstrom | 17d9f31 | 2011-05-20 04:01:10 +0000 | [diff] [blame] | 2702 | #if defined(CONFIG_SMP) |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2703 | if (sched_feat(TTWU_QUEUE) && cpu != smp_processor_id()) { |
Peter Zijlstra | f01114c | 2011-05-31 12:26:55 +0200 | [diff] [blame] | 2704 | sched_clock_cpu(cpu); /* sync clocks x-cpu */ |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 2705 | ttwu_queue_remote(p, cpu); |
| 2706 | return; |
| 2707 | } |
| 2708 | #endif |
| 2709 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2710 | raw_spin_lock(&rq->lock); |
| 2711 | ttwu_do_activate(rq, p, 0); |
| 2712 | raw_spin_unlock(&rq->lock); |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2713 | } |
| 2714 | |
| 2715 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2716 | * try_to_wake_up - wake up a thread |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2717 | * @p: the thread to be awakened |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2718 | * @state: the mask of task states that can be woken |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2719 | * @wake_flags: wake modifier flags (WF_*) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | * |
| 2721 | * Put it on the run-queue if it's not already there. The "current" |
| 2722 | * thread is always on the run-queue (except when the actual |
| 2723 | * re-schedule is in progress), and as such you're allowed to do |
| 2724 | * the simpler "current->state = TASK_RUNNING" to mark yourself |
| 2725 | * runnable without the overhead of this. |
| 2726 | * |
Tejun Heo | 9ed3811 | 2009-12-03 15:08:03 +0900 | [diff] [blame] | 2727 | * Returns %true if @p was woken up, %false if it was already running |
| 2728 | * or @state didn't match @p's state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2729 | */ |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2730 | static int |
| 2731 | try_to_wake_up(struct task_struct *p, unsigned int state, int wake_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2732 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2733 | unsigned long flags; |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2734 | int cpu, success = 0; |
Peter Zijlstra | 2398f2c | 2008-06-27 13:41:35 +0200 | [diff] [blame] | 2735 | |
Linus Torvalds | 04e2f17 | 2008-02-23 18:05:03 -0800 | [diff] [blame] | 2736 | smp_wmb(); |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 2737 | raw_spin_lock_irqsave(&p->pi_lock, flags); |
Peter Zijlstra | e9c8431 | 2009-09-15 14:43:03 +0200 | [diff] [blame] | 2738 | if (!(p->state & state)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2739 | goto out; |
| 2740 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2741 | success = 1; /* we're going to change ->state */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | cpu = task_cpu(p); |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2743 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2744 | if (p->on_rq && ttwu_remote(p, wake_flags)) |
| 2745 | goto stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2746 | |
| 2747 | #ifdef CONFIG_SMP |
Peter Zijlstra | e9c8431 | 2009-09-15 14:43:03 +0200 | [diff] [blame] | 2748 | /* |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2749 | * If the owning (remote) cpu is still in the middle of schedule() with |
| 2750 | * this task as prev, wait until its done referencing the task. |
Peter Zijlstra | e9c8431 | 2009-09-15 14:43:03 +0200 | [diff] [blame] | 2751 | */ |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2752 | while (p->on_cpu) { |
| 2753 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 2754 | /* |
Peter Zijlstra | d6aa8f8 | 2011-05-26 14:21:33 +0200 | [diff] [blame] | 2755 | * In case the architecture enables interrupts in |
| 2756 | * context_switch(), we cannot busy wait, since that |
| 2757 | * would lead to deadlocks when an interrupt hits and |
| 2758 | * tries to wake up @prev. So bail and do a complete |
| 2759 | * remote wakeup. |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2760 | */ |
Peter Zijlstra | d6aa8f8 | 2011-05-26 14:21:33 +0200 | [diff] [blame] | 2761 | if (ttwu_activate_remote(p, wake_flags)) |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2762 | goto stat; |
Peter Zijlstra | d6aa8f8 | 2011-05-26 14:21:33 +0200 | [diff] [blame] | 2763 | #else |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2764 | cpu_relax(); |
Peter Zijlstra | d6aa8f8 | 2011-05-26 14:21:33 +0200 | [diff] [blame] | 2765 | #endif |
Peter Zijlstra | cc87f76 | 2010-03-26 12:22:14 +0100 | [diff] [blame] | 2766 | } |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2767 | /* |
| 2768 | * Pairs with the smp_wmb() in finish_lock_switch(). |
| 2769 | */ |
| 2770 | smp_rmb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | |
Peter Zijlstra | a8e4f2e | 2011-04-05 17:23:49 +0200 | [diff] [blame] | 2772 | p->sched_contributes_to_load = !!task_contributes_to_load(p); |
Peter Zijlstra | e9c8431 | 2009-09-15 14:43:03 +0200 | [diff] [blame] | 2773 | p->state = TASK_WAKING; |
Peter Zijlstra | efbbd05 | 2009-12-16 18:04:40 +0100 | [diff] [blame] | 2774 | |
Peter Zijlstra | e4a52bc | 2011-04-05 17:23:54 +0200 | [diff] [blame] | 2775 | if (p->sched_class->task_waking) |
Peter Zijlstra | 74f8e4b | 2011-04-05 17:23:47 +0200 | [diff] [blame] | 2776 | p->sched_class->task_waking(p); |
Peter Zijlstra | ab19cb2 | 2009-11-27 15:44:43 +0100 | [diff] [blame] | 2777 | |
Peter Zijlstra | 7608dec | 2011-04-05 17:23:46 +0200 | [diff] [blame] | 2778 | cpu = select_task_rq(p, SD_BALANCE_WAKE, wake_flags); |
Peter Zijlstra | f339b9d | 2011-05-31 10:49:20 +0200 | [diff] [blame] | 2779 | if (task_cpu(p) != cpu) { |
| 2780 | wake_flags |= WF_MIGRATED; |
Mike Galbraith | f5dc375 | 2009-10-09 08:35:03 +0200 | [diff] [blame] | 2781 | set_task_cpu(p, cpu); |
Peter Zijlstra | f339b9d | 2011-05-31 10:49:20 +0200 | [diff] [blame] | 2782 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2783 | #endif /* CONFIG_SMP */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2784 | |
Peter Zijlstra | c05fbaf | 2011-04-05 17:23:57 +0200 | [diff] [blame] | 2785 | ttwu_queue(p, cpu); |
| 2786 | stat: |
Peter Zijlstra | b84cb5d | 2011-04-05 17:23:55 +0200 | [diff] [blame] | 2787 | ttwu_stat(p, cpu, wake_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2788 | out: |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 2789 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | |
| 2791 | return success; |
| 2792 | } |
| 2793 | |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 2794 | /** |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2795 | * try_to_wake_up_local - try to wake up a local task with rq lock held |
| 2796 | * @p: the thread to be awakened |
| 2797 | * |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2798 | * Put @p on the run-queue if it's not already there. The caller must |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2799 | * ensure that this_rq() is locked, @p is bound to this_rq() and not |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2800 | * the current task. |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2801 | */ |
| 2802 | static void try_to_wake_up_local(struct task_struct *p) |
| 2803 | { |
| 2804 | struct rq *rq = task_rq(p); |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2805 | |
| 2806 | BUG_ON(rq != this_rq()); |
| 2807 | BUG_ON(p == current); |
| 2808 | lockdep_assert_held(&rq->lock); |
| 2809 | |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2810 | if (!raw_spin_trylock(&p->pi_lock)) { |
| 2811 | raw_spin_unlock(&rq->lock); |
| 2812 | raw_spin_lock(&p->pi_lock); |
| 2813 | raw_spin_lock(&rq->lock); |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2814 | } |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2815 | |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2816 | if (!(p->state & TASK_NORMAL)) |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2817 | goto out; |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2818 | |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2819 | if (!p->on_rq) |
Peter Zijlstra | d7c01d2 | 2011-04-05 17:23:43 +0200 | [diff] [blame] | 2820 | ttwu_activate(rq, p, ENQUEUE_WAKEUP); |
| 2821 | |
Peter Zijlstra | 23f41ee | 2011-04-05 17:23:56 +0200 | [diff] [blame] | 2822 | ttwu_do_wakeup(rq, p, 0); |
Peter Zijlstra | b84cb5d | 2011-04-05 17:23:55 +0200 | [diff] [blame] | 2823 | ttwu_stat(p, smp_processor_id(), 0); |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 2824 | out: |
| 2825 | raw_spin_unlock(&p->pi_lock); |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 2826 | } |
| 2827 | |
| 2828 | /** |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 2829 | * wake_up_process - Wake up a specific process |
| 2830 | * @p: The process to be woken up. |
| 2831 | * |
| 2832 | * Attempt to wake up the nominated process and move it to the set of runnable |
| 2833 | * processes. Returns 1 if the process was woken up, 0 if it was already |
| 2834 | * running. |
| 2835 | * |
| 2836 | * It may be assumed that this function implies a write memory barrier before |
| 2837 | * changing the task state if and only if any tasks are woken up. |
| 2838 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2839 | int wake_up_process(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | { |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 2841 | return try_to_wake_up(p, TASK_ALL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | EXPORT_SYMBOL(wake_up_process); |
| 2844 | |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 2845 | int wake_up_state(struct task_struct *p, unsigned int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | { |
| 2847 | return try_to_wake_up(p, state, 0); |
| 2848 | } |
| 2849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2850 | /* |
| 2851 | * Perform scheduler related setup for a newly forked process p. |
| 2852 | * p is forked by current. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2853 | * |
| 2854 | * __sched_fork() is basic setup used by init_idle() too: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2856 | static void __sched_fork(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2857 | { |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2858 | p->on_rq = 0; |
| 2859 | |
| 2860 | p->se.on_rq = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2861 | p->se.exec_start = 0; |
| 2862 | p->se.sum_exec_runtime = 0; |
Ingo Molnar | f6cf891 | 2007-08-28 12:53:24 +0200 | [diff] [blame] | 2863 | p->se.prev_sum_exec_runtime = 0; |
Ingo Molnar | 6c594c2 | 2008-12-14 12:34:15 +0100 | [diff] [blame] | 2864 | p->se.nr_migrations = 0; |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 2865 | p->se.vruntime = 0; |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2866 | INIT_LIST_HEAD(&p->se.group_node); |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2867 | |
| 2868 | #ifdef CONFIG_SCHEDSTATS |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 2869 | memset(&p->se.statistics, 0, sizeof(p->se.statistics)); |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 2870 | #endif |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2871 | |
Peter Zijlstra | fa71706 | 2008-01-25 21:08:27 +0100 | [diff] [blame] | 2872 | INIT_LIST_HEAD(&p->rt.run_list); |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2873 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2874 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2875 | INIT_HLIST_HEAD(&p->preempt_notifiers); |
| 2876 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2877 | } |
| 2878 | |
| 2879 | /* |
| 2880 | * fork()/clone()-time setup: |
| 2881 | */ |
Samir Bellabes | 3e51e3e | 2011-05-11 18:18:05 +0200 | [diff] [blame] | 2882 | void sched_fork(struct task_struct *p) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2883 | { |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2884 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2885 | int cpu = get_cpu(); |
| 2886 | |
| 2887 | __sched_fork(p); |
Peter Zijlstra | 06b83b5 | 2009-12-16 18:04:35 +0100 | [diff] [blame] | 2888 | /* |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 2889 | * We mark the process as running here. This guarantees that |
Peter Zijlstra | 06b83b5 | 2009-12-16 18:04:35 +0100 | [diff] [blame] | 2890 | * nobody will actually run it, and a signal or other external |
| 2891 | * event cannot wake it up and insert it on the runqueue either. |
| 2892 | */ |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 2893 | p->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2894 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2895 | /* |
Mike Galbraith | c350a04 | 2011-07-27 17:14:55 +0200 | [diff] [blame] | 2896 | * Make sure we do not leak PI boosting priority to the child. |
| 2897 | */ |
| 2898 | p->prio = current->normal_prio; |
| 2899 | |
| 2900 | /* |
Mike Galbraith | b9dc29e | 2009-06-17 10:46:01 +0200 | [diff] [blame] | 2901 | * Revert to default priority/policy on fork if requested. |
| 2902 | */ |
| 2903 | if (unlikely(p->sched_reset_on_fork)) { |
Mike Galbraith | c350a04 | 2011-07-27 17:14:55 +0200 | [diff] [blame] | 2904 | if (task_has_rt_policy(p)) { |
Mike Galbraith | b9dc29e | 2009-06-17 10:46:01 +0200 | [diff] [blame] | 2905 | p->policy = SCHED_NORMAL; |
Mike Galbraith | 6c697bd | 2009-06-17 10:48:02 +0200 | [diff] [blame] | 2906 | p->static_prio = NICE_TO_PRIO(0); |
Mike Galbraith | c350a04 | 2011-07-27 17:14:55 +0200 | [diff] [blame] | 2907 | p->rt_priority = 0; |
| 2908 | } else if (PRIO_TO_NICE(p->static_prio) < 0) |
| 2909 | p->static_prio = NICE_TO_PRIO(0); |
| 2910 | |
| 2911 | p->prio = p->normal_prio = __normal_prio(p); |
| 2912 | set_load_weight(p); |
Mike Galbraith | 6c697bd | 2009-06-17 10:48:02 +0200 | [diff] [blame] | 2913 | |
Mike Galbraith | b9dc29e | 2009-06-17 10:46:01 +0200 | [diff] [blame] | 2914 | /* |
| 2915 | * We don't need the reset flag anymore after the fork. It has |
| 2916 | * fulfilled its duty: |
| 2917 | */ |
| 2918 | p->sched_reset_on_fork = 0; |
| 2919 | } |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 2920 | |
Hiroshi Shimamoto | 2ddbf95 | 2007-10-15 17:00:11 +0200 | [diff] [blame] | 2921 | if (!rt_prio(p->prio)) |
| 2922 | p->sched_class = &fair_sched_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 2923 | |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 2924 | if (p->sched_class->task_fork) |
| 2925 | p->sched_class->task_fork(p); |
| 2926 | |
Peter Zijlstra | 8695159 | 2010-06-22 11:44:53 +0200 | [diff] [blame] | 2927 | /* |
| 2928 | * The child is not yet in the pid-hash so no cgroup attach races, |
| 2929 | * and the cgroup is pinned to this child due to cgroup_fork() |
| 2930 | * is ran before sched_fork(). |
| 2931 | * |
| 2932 | * Silence PROVE_RCU. |
| 2933 | */ |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2934 | raw_spin_lock_irqsave(&p->pi_lock, flags); |
Peter Zijlstra | 5f3edc1 | 2009-09-10 13:42:00 +0200 | [diff] [blame] | 2935 | set_task_cpu(p, cpu); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2936 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
Peter Zijlstra | 5f3edc1 | 2009-09-10 13:42:00 +0200 | [diff] [blame] | 2937 | |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2938 | #if defined(CONFIG_SCHEDSTATS) || defined(CONFIG_TASK_DELAY_ACCT) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2939 | if (likely(sched_info_on())) |
Chandra Seetharaman | 52f17b6 | 2006-07-14 00:24:38 -0700 | [diff] [blame] | 2940 | memset(&p->sched_info, 0, sizeof(p->sched_info)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | #endif |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 2942 | #if defined(CONFIG_SMP) |
| 2943 | p->on_cpu = 0; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2944 | #endif |
Frederic Weisbecker | bdd4e85 | 2011-06-08 01:13:27 +0200 | [diff] [blame] | 2945 | #ifdef CONFIG_PREEMPT_COUNT |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 2946 | /* Want to start with kernel preemption disabled. */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 2947 | task_thread_info(p)->preempt_count = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2948 | #endif |
Dario Faggioli | 806c09a | 2010-11-30 19:51:33 +0100 | [diff] [blame] | 2949 | #ifdef CONFIG_SMP |
Gregory Haskins | 917b627 | 2008-12-29 09:39:53 -0500 | [diff] [blame] | 2950 | plist_node_init(&p->pushable_tasks, MAX_PRIO); |
Dario Faggioli | 806c09a | 2010-11-30 19:51:33 +0100 | [diff] [blame] | 2951 | #endif |
Gregory Haskins | 917b627 | 2008-12-29 09:39:53 -0500 | [diff] [blame] | 2952 | |
Nick Piggin | 476d139 | 2005-06-25 14:57:29 -0700 | [diff] [blame] | 2953 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2954 | } |
| 2955 | |
| 2956 | /* |
| 2957 | * wake_up_new_task - wake up a newly created task for the first time. |
| 2958 | * |
| 2959 | * This function will do some initial scheduler statistics housekeeping |
| 2960 | * that must be done for every newly created context, then puts the task |
| 2961 | * on the runqueue and wakes it. |
| 2962 | */ |
Samir Bellabes | 3e51e3e | 2011-05-11 18:18:05 +0200 | [diff] [blame] | 2963 | void wake_up_new_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2964 | { |
| 2965 | unsigned long flags; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 2966 | struct rq *rq; |
Peter Zijlstra | fabf318 | 2010-01-21 21:04:57 +0100 | [diff] [blame] | 2967 | |
Peter Zijlstra | ab2515c | 2011-04-05 17:23:52 +0200 | [diff] [blame] | 2968 | raw_spin_lock_irqsave(&p->pi_lock, flags); |
Peter Zijlstra | fabf318 | 2010-01-21 21:04:57 +0100 | [diff] [blame] | 2969 | #ifdef CONFIG_SMP |
| 2970 | /* |
| 2971 | * Fork balancing, do it here and not earlier because: |
| 2972 | * - cpus_allowed can change in the fork path |
| 2973 | * - any previously selected cpu might disappear through hotplug |
Peter Zijlstra | fabf318 | 2010-01-21 21:04:57 +0100 | [diff] [blame] | 2974 | */ |
Peter Zijlstra | ab2515c | 2011-04-05 17:23:52 +0200 | [diff] [blame] | 2975 | set_task_cpu(p, select_task_rq(p, SD_BALANCE_FORK, 0)); |
Peter Zijlstra | fabf318 | 2010-01-21 21:04:57 +0100 | [diff] [blame] | 2976 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2977 | |
Peter Zijlstra | ab2515c | 2011-04-05 17:23:52 +0200 | [diff] [blame] | 2978 | rq = __task_rq_lock(p); |
Peter Zijlstra | cd29fe6 | 2009-11-27 17:32:46 +0100 | [diff] [blame] | 2979 | activate_task(rq, p, 0); |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 2980 | p->on_rq = 1; |
Peter Zijlstra | 8936338 | 2011-04-05 17:23:42 +0200 | [diff] [blame] | 2981 | trace_sched_wakeup_new(p, true); |
Peter Zijlstra | a7558e0 | 2009-09-14 20:02:34 +0200 | [diff] [blame] | 2982 | check_preempt_curr(rq, p, WF_FORK); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2983 | #ifdef CONFIG_SMP |
Peter Zijlstra | efbbd05 | 2009-12-16 18:04:40 +0100 | [diff] [blame] | 2984 | if (p->sched_class->task_woken) |
| 2985 | p->sched_class->task_woken(rq, p); |
Steven Rostedt | 9a897c5 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 2986 | #endif |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 2987 | task_rq_unlock(rq, p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | } |
| 2989 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2990 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 2991 | |
| 2992 | /** |
Luis Henriques | 80dd99b | 2009-03-16 19:58:09 +0000 | [diff] [blame] | 2993 | * preempt_notifier_register - tell me when current is being preempted & rescheduled |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 2994 | * @notifier: notifier struct to register |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 2995 | */ |
| 2996 | void preempt_notifier_register(struct preempt_notifier *notifier) |
| 2997 | { |
| 2998 | hlist_add_head(¬ifier->link, ¤t->preempt_notifiers); |
| 2999 | } |
| 3000 | EXPORT_SYMBOL_GPL(preempt_notifier_register); |
| 3001 | |
| 3002 | /** |
| 3003 | * preempt_notifier_unregister - no longer interested in preemption notifications |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 3004 | * @notifier: notifier struct to unregister |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3005 | * |
| 3006 | * This is safe to call from within a preemption notifier. |
| 3007 | */ |
| 3008 | void preempt_notifier_unregister(struct preempt_notifier *notifier) |
| 3009 | { |
| 3010 | hlist_del(¬ifier->link); |
| 3011 | } |
| 3012 | EXPORT_SYMBOL_GPL(preempt_notifier_unregister); |
| 3013 | |
| 3014 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 3015 | { |
| 3016 | struct preempt_notifier *notifier; |
| 3017 | struct hlist_node *node; |
| 3018 | |
| 3019 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 3020 | notifier->ops->sched_in(notifier, raw_smp_processor_id()); |
| 3021 | } |
| 3022 | |
| 3023 | static void |
| 3024 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 3025 | struct task_struct *next) |
| 3026 | { |
| 3027 | struct preempt_notifier *notifier; |
| 3028 | struct hlist_node *node; |
| 3029 | |
| 3030 | hlist_for_each_entry(notifier, node, &curr->preempt_notifiers, link) |
| 3031 | notifier->ops->sched_out(notifier, next); |
| 3032 | } |
| 3033 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 3034 | #else /* !CONFIG_PREEMPT_NOTIFIERS */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3035 | |
| 3036 | static void fire_sched_in_preempt_notifiers(struct task_struct *curr) |
| 3037 | { |
| 3038 | } |
| 3039 | |
| 3040 | static void |
| 3041 | fire_sched_out_preempt_notifiers(struct task_struct *curr, |
| 3042 | struct task_struct *next) |
| 3043 | { |
| 3044 | } |
| 3045 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 3046 | #endif /* CONFIG_PREEMPT_NOTIFIERS */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3047 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3048 | /** |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3049 | * prepare_task_switch - prepare to switch tasks |
| 3050 | * @rq: the runqueue preparing to switch |
Randy Dunlap | 421cee2 | 2007-07-31 00:37:50 -0700 | [diff] [blame] | 3051 | * @prev: the current task that is being switched out |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3052 | * @next: the task we are going to switch to. |
| 3053 | * |
| 3054 | * This is called with the rq lock held and interrupts off. It must |
| 3055 | * be paired with a subsequent finish_task_switch after the context |
| 3056 | * switch. |
| 3057 | * |
| 3058 | * prepare_task_switch sets up locking and calls architecture specific |
| 3059 | * hooks. |
| 3060 | */ |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3061 | static inline void |
| 3062 | prepare_task_switch(struct rq *rq, struct task_struct *prev, |
| 3063 | struct task_struct *next) |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3064 | { |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3065 | sched_info_switch(prev, next); |
| 3066 | perf_event_task_sched_out(prev, next); |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3067 | fire_sched_out_preempt_notifiers(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3068 | prepare_lock_switch(rq, next); |
| 3069 | prepare_arch_switch(next); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3070 | trace_sched_switch(prev, next); |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3071 | } |
| 3072 | |
| 3073 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | * finish_task_switch - clean up after a task-switch |
Jeff Garzik | 344baba | 2005-09-07 01:15:17 -0400 | [diff] [blame] | 3075 | * @rq: runqueue associated with task-switch |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | * @prev: the thread we just switched away from. |
| 3077 | * |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3078 | * finish_task_switch must be called after the context switch, paired |
| 3079 | * with a prepare_task_switch call before the context switch. |
| 3080 | * finish_task_switch will reconcile locking set up by prepare_task_switch, |
| 3081 | * and do any other architecture-specific cleanup actions. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3082 | * |
| 3083 | * 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] | 3084 | * so, we finish that here outside of the runqueue lock. (Doing it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3085 | * with the lock held can cause deadlocks; see schedule() for |
| 3086 | * details.) |
| 3087 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 3088 | static void finish_task_switch(struct rq *rq, struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | __releases(rq->lock) |
| 3090 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | struct mm_struct *mm = rq->prev_mm; |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 3092 | long prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3093 | |
| 3094 | rq->prev_mm = NULL; |
| 3095 | |
| 3096 | /* |
| 3097 | * A task struct has one reference for the use as "current". |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 3098 | * 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] | 3099 | * schedule one last time. The schedule call will never return, and |
| 3100 | * the scheduled task must drop that reference. |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 3101 | * The test for TASK_DEAD must occur while the runqueue locks are |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3102 | * still held, otherwise prev could be scheduled on another cpu, die |
| 3103 | * there before we look at prev->state, and then the reference would |
| 3104 | * be dropped twice. |
| 3105 | * Manfred Spraul <manfred@colorfullife.com> |
| 3106 | */ |
Oleg Nesterov | 55a101f | 2006-09-29 02:01:10 -0700 | [diff] [blame] | 3107 | prev_state = prev->state; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3108 | finish_arch_switch(prev); |
Jamie Iles | 8381f65 | 2010-01-08 15:27:33 +0000 | [diff] [blame] | 3109 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 3110 | local_irq_disable(); |
| 3111 | #endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */ |
Peter Zijlstra | 49f4743 | 2009-12-27 11:51:52 +0100 | [diff] [blame] | 3112 | perf_event_task_sched_in(current); |
Jamie Iles | 8381f65 | 2010-01-08 15:27:33 +0000 | [diff] [blame] | 3113 | #ifdef __ARCH_WANT_INTERRUPTS_ON_CTXSW |
| 3114 | local_irq_enable(); |
| 3115 | #endif /* __ARCH_WANT_INTERRUPTS_ON_CTXSW */ |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3116 | finish_lock_switch(rq, prev); |
Steven Rostedt | e8fa136 | 2008-01-25 21:08:05 +0100 | [diff] [blame] | 3117 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3118 | fire_sched_in_preempt_notifiers(current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3119 | if (mm) |
| 3120 | mmdrop(mm); |
Oleg Nesterov | c394cc9 | 2006-09-29 02:01:11 -0700 | [diff] [blame] | 3121 | if (unlikely(prev_state == TASK_DEAD)) { |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 3122 | /* |
| 3123 | * Remove function-return probe instances associated with this |
| 3124 | * task and put them back on the free list. |
Ingo Molnar | 9761eea | 2007-07-09 18:52:00 +0200 | [diff] [blame] | 3125 | */ |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 3126 | kprobe_flush_task(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 | put_task_struct(prev); |
bibo mao | c6fd91f | 2006-03-26 01:38:20 -0800 | [diff] [blame] | 3128 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3129 | } |
| 3130 | |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 3131 | #ifdef CONFIG_SMP |
| 3132 | |
| 3133 | /* assumes rq->lock is held */ |
| 3134 | static inline void pre_schedule(struct rq *rq, struct task_struct *prev) |
| 3135 | { |
| 3136 | if (prev->sched_class->pre_schedule) |
| 3137 | prev->sched_class->pre_schedule(rq, prev); |
| 3138 | } |
| 3139 | |
| 3140 | /* rq->lock is NOT held, but preemption is disabled */ |
| 3141 | static inline void post_schedule(struct rq *rq) |
| 3142 | { |
| 3143 | if (rq->post_schedule) { |
| 3144 | unsigned long flags; |
| 3145 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 3146 | raw_spin_lock_irqsave(&rq->lock, flags); |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 3147 | if (rq->curr->sched_class->post_schedule) |
| 3148 | rq->curr->sched_class->post_schedule(rq); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 3149 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 3150 | |
| 3151 | rq->post_schedule = 0; |
| 3152 | } |
| 3153 | } |
| 3154 | |
| 3155 | #else |
| 3156 | |
| 3157 | static inline void pre_schedule(struct rq *rq, struct task_struct *p) |
| 3158 | { |
| 3159 | } |
| 3160 | |
| 3161 | static inline void post_schedule(struct rq *rq) |
| 3162 | { |
| 3163 | } |
| 3164 | |
| 3165 | #endif |
| 3166 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3167 | /** |
| 3168 | * schedule_tail - first thing a freshly forked thread must call. |
| 3169 | * @prev: the thread we just switched away from. |
| 3170 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 3171 | asmlinkage void schedule_tail(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3172 | __releases(rq->lock) |
| 3173 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3174 | struct rq *rq = this_rq(); |
| 3175 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3176 | finish_task_switch(rq, prev); |
Steven Rostedt | da19ab5 | 2009-07-29 00:21:22 -0400 | [diff] [blame] | 3177 | |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 3178 | /* |
| 3179 | * FIXME: do we need to worry about rq being invalidated by the |
| 3180 | * task_switch? |
| 3181 | */ |
| 3182 | post_schedule(rq); |
Steven Rostedt | da19ab5 | 2009-07-29 00:21:22 -0400 | [diff] [blame] | 3183 | |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 3184 | #ifdef __ARCH_WANT_UNLOCKED_CTXSW |
| 3185 | /* In this case, finish_task_switch does not reenable preemption */ |
| 3186 | preempt_enable(); |
| 3187 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3188 | if (current->set_child_tid) |
Pavel Emelyanov | b488893 | 2007-10-18 23:40:14 -0700 | [diff] [blame] | 3189 | put_user(task_pid_vnr(current), current->set_child_tid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } |
| 3191 | |
| 3192 | /* |
| 3193 | * context_switch - switch to the new MM and the new |
| 3194 | * thread's register state. |
| 3195 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3196 | static inline void |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 3197 | context_switch(struct rq *rq, struct task_struct *prev, |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 3198 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3200 | struct mm_struct *mm, *oldmm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3201 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 3202 | prepare_task_switch(rq, prev, next); |
Peter Zijlstra | fe4b04f | 2011-02-02 13:19:09 +0100 | [diff] [blame] | 3203 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3204 | mm = next->mm; |
| 3205 | oldmm = prev->active_mm; |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 3206 | /* |
| 3207 | * For paravirt, this is coupled with an exit in switch_to to |
| 3208 | * combine the page table reload and the switch backend into |
| 3209 | * one hypercall. |
| 3210 | */ |
Jeremy Fitzhardinge | 224101e | 2009-02-18 11:18:57 -0800 | [diff] [blame] | 3211 | arch_start_context_switch(prev); |
Zachary Amsden | 9226d12 | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 3212 | |
Heiko Carstens | 31915ab | 2010-09-16 14:42:25 +0200 | [diff] [blame] | 3213 | if (!mm) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3214 | next->active_mm = oldmm; |
| 3215 | atomic_inc(&oldmm->mm_count); |
| 3216 | enter_lazy_tlb(oldmm, next); |
| 3217 | } else |
| 3218 | switch_mm(oldmm, mm, next); |
| 3219 | |
Heiko Carstens | 31915ab | 2010-09-16 14:42:25 +0200 | [diff] [blame] | 3220 | if (!prev->mm) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3221 | prev->active_mm = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3222 | rq->prev_mm = oldmm; |
| 3223 | } |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 3224 | /* |
| 3225 | * Since the runqueue lock will be released by the next |
| 3226 | * task (which is an invalid locking op but in the case |
| 3227 | * of the scheduler it's an obvious special-case), so we |
| 3228 | * do an early lockdep release here: |
| 3229 | */ |
| 3230 | #ifndef __ARCH_WANT_UNLOCKED_CTXSW |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 3231 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Ingo Molnar | 3a5f5e4 | 2006-07-14 00:24:27 -0700 | [diff] [blame] | 3232 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3233 | |
| 3234 | /* Here we just switch the register state and the stack. */ |
| 3235 | switch_to(prev, next, prev); |
| 3236 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3237 | barrier(); |
| 3238 | /* |
| 3239 | * this_rq must be evaluated again because prev may have moved |
| 3240 | * CPUs since it called schedule(), thus the 'rq' on its stack |
| 3241 | * frame will be invalid. |
| 3242 | */ |
| 3243 | finish_task_switch(this_rq(), prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | } |
| 3245 | |
| 3246 | /* |
| 3247 | * nr_running, nr_uninterruptible and nr_context_switches: |
| 3248 | * |
| 3249 | * externally visible scheduler statistics: current number of runnable |
| 3250 | * threads, current number of uninterruptible-sleeping threads, total |
| 3251 | * number of context switches performed since bootup. |
| 3252 | */ |
| 3253 | unsigned long nr_running(void) |
| 3254 | { |
| 3255 | unsigned long i, sum = 0; |
| 3256 | |
| 3257 | for_each_online_cpu(i) |
| 3258 | sum += cpu_rq(i)->nr_running; |
| 3259 | |
| 3260 | return sum; |
| 3261 | } |
| 3262 | |
| 3263 | unsigned long nr_uninterruptible(void) |
| 3264 | { |
| 3265 | unsigned long i, sum = 0; |
| 3266 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 3267 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | sum += cpu_rq(i)->nr_uninterruptible; |
| 3269 | |
| 3270 | /* |
| 3271 | * Since we read the counters lockless, it might be slightly |
| 3272 | * inaccurate. Do not allow it to go below zero though: |
| 3273 | */ |
| 3274 | if (unlikely((long)sum < 0)) |
| 3275 | sum = 0; |
| 3276 | |
| 3277 | return sum; |
| 3278 | } |
| 3279 | |
| 3280 | unsigned long long nr_context_switches(void) |
| 3281 | { |
Steven Rostedt | cc94abf | 2006-06-27 02:54:31 -0700 | [diff] [blame] | 3282 | int i; |
| 3283 | unsigned long long sum = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3284 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 3285 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3286 | sum += cpu_rq(i)->nr_switches; |
| 3287 | |
| 3288 | return sum; |
| 3289 | } |
| 3290 | |
| 3291 | unsigned long nr_iowait(void) |
| 3292 | { |
| 3293 | unsigned long i, sum = 0; |
| 3294 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 3295 | for_each_possible_cpu(i) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | sum += atomic_read(&cpu_rq(i)->nr_iowait); |
| 3297 | |
| 3298 | return sum; |
| 3299 | } |
| 3300 | |
Peter Zijlstra | 8c215bd | 2010-07-01 09:07:17 +0200 | [diff] [blame] | 3301 | unsigned long nr_iowait_cpu(int cpu) |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 3302 | { |
Peter Zijlstra | 8c215bd | 2010-07-01 09:07:17 +0200 | [diff] [blame] | 3303 | struct rq *this = cpu_rq(cpu); |
Arjan van de Ven | 69d2587 | 2009-09-21 17:04:08 -0700 | [diff] [blame] | 3304 | return atomic_read(&this->nr_iowait); |
| 3305 | } |
| 3306 | |
| 3307 | unsigned long this_cpu_load(void) |
| 3308 | { |
| 3309 | struct rq *this = this_rq(); |
| 3310 | return this->cpu_load[0]; |
| 3311 | } |
| 3312 | |
| 3313 | |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3314 | /* Variables and functions for calc_load */ |
| 3315 | static atomic_long_t calc_load_tasks; |
| 3316 | static unsigned long calc_load_update; |
| 3317 | unsigned long avenrun[3]; |
| 3318 | EXPORT_SYMBOL(avenrun); |
| 3319 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3320 | static long calc_load_fold_active(struct rq *this_rq) |
| 3321 | { |
| 3322 | long nr_active, delta = 0; |
| 3323 | |
| 3324 | nr_active = this_rq->nr_running; |
| 3325 | nr_active += (long) this_rq->nr_uninterruptible; |
| 3326 | |
| 3327 | if (nr_active != this_rq->calc_load_active) { |
| 3328 | delta = nr_active - this_rq->calc_load_active; |
| 3329 | this_rq->calc_load_active = nr_active; |
| 3330 | } |
| 3331 | |
| 3332 | return delta; |
| 3333 | } |
| 3334 | |
Peter Zijlstra | 0f004f5 | 2010-11-30 19:48:45 +0100 | [diff] [blame] | 3335 | static unsigned long |
| 3336 | calc_load(unsigned long load, unsigned long exp, unsigned long active) |
| 3337 | { |
| 3338 | load *= exp; |
| 3339 | load += active * (FIXED_1 - exp); |
| 3340 | load += 1UL << (FSHIFT - 1); |
| 3341 | return load >> FSHIFT; |
| 3342 | } |
| 3343 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3344 | #ifdef CONFIG_NO_HZ |
| 3345 | /* |
| 3346 | * For NO_HZ we delay the active fold to the next LOAD_FREQ update. |
| 3347 | * |
| 3348 | * When making the ILB scale, we should try to pull this in as well. |
| 3349 | */ |
| 3350 | static atomic_long_t calc_load_tasks_idle; |
| 3351 | |
| 3352 | static void calc_load_account_idle(struct rq *this_rq) |
| 3353 | { |
| 3354 | long delta; |
| 3355 | |
| 3356 | delta = calc_load_fold_active(this_rq); |
| 3357 | if (delta) |
| 3358 | atomic_long_add(delta, &calc_load_tasks_idle); |
| 3359 | } |
| 3360 | |
| 3361 | static long calc_load_fold_idle(void) |
| 3362 | { |
| 3363 | long delta = 0; |
| 3364 | |
| 3365 | /* |
| 3366 | * Its got a race, we don't care... |
| 3367 | */ |
| 3368 | if (atomic_long_read(&calc_load_tasks_idle)) |
| 3369 | delta = atomic_long_xchg(&calc_load_tasks_idle, 0); |
| 3370 | |
| 3371 | return delta; |
| 3372 | } |
Peter Zijlstra | 0f004f5 | 2010-11-30 19:48:45 +0100 | [diff] [blame] | 3373 | |
| 3374 | /** |
| 3375 | * fixed_power_int - compute: x^n, in O(log n) time |
| 3376 | * |
| 3377 | * @x: base of the power |
| 3378 | * @frac_bits: fractional bits of @x |
| 3379 | * @n: power to raise @x to. |
| 3380 | * |
| 3381 | * By exploiting the relation between the definition of the natural power |
| 3382 | * function: x^n := x*x*...*x (x multiplied by itself for n times), and |
| 3383 | * the binary encoding of numbers used by computers: n := \Sum n_i * 2^i, |
| 3384 | * (where: n_i \elem {0, 1}, the binary vector representing n), |
| 3385 | * we find: x^n := x^(\Sum n_i * 2^i) := \Prod x^(n_i * 2^i), which is |
| 3386 | * of course trivially computable in O(log_2 n), the length of our binary |
| 3387 | * vector. |
| 3388 | */ |
| 3389 | static unsigned long |
| 3390 | fixed_power_int(unsigned long x, unsigned int frac_bits, unsigned int n) |
| 3391 | { |
| 3392 | unsigned long result = 1UL << frac_bits; |
| 3393 | |
| 3394 | if (n) for (;;) { |
| 3395 | if (n & 1) { |
| 3396 | result *= x; |
| 3397 | result += 1UL << (frac_bits - 1); |
| 3398 | result >>= frac_bits; |
| 3399 | } |
| 3400 | n >>= 1; |
| 3401 | if (!n) |
| 3402 | break; |
| 3403 | x *= x; |
| 3404 | x += 1UL << (frac_bits - 1); |
| 3405 | x >>= frac_bits; |
| 3406 | } |
| 3407 | |
| 3408 | return result; |
| 3409 | } |
| 3410 | |
| 3411 | /* |
| 3412 | * a1 = a0 * e + a * (1 - e) |
| 3413 | * |
| 3414 | * a2 = a1 * e + a * (1 - e) |
| 3415 | * = (a0 * e + a * (1 - e)) * e + a * (1 - e) |
| 3416 | * = a0 * e^2 + a * (1 - e) * (1 + e) |
| 3417 | * |
| 3418 | * a3 = a2 * e + a * (1 - e) |
| 3419 | * = (a0 * e^2 + a * (1 - e) * (1 + e)) * e + a * (1 - e) |
| 3420 | * = a0 * e^3 + a * (1 - e) * (1 + e + e^2) |
| 3421 | * |
| 3422 | * ... |
| 3423 | * |
| 3424 | * an = a0 * e^n + a * (1 - e) * (1 + e + ... + e^n-1) [1] |
| 3425 | * = a0 * e^n + a * (1 - e) * (1 - e^n)/(1 - e) |
| 3426 | * = a0 * e^n + a * (1 - e^n) |
| 3427 | * |
| 3428 | * [1] application of the geometric series: |
| 3429 | * |
| 3430 | * n 1 - x^(n+1) |
| 3431 | * S_n := \Sum x^i = ------------- |
| 3432 | * i=0 1 - x |
| 3433 | */ |
| 3434 | static unsigned long |
| 3435 | calc_load_n(unsigned long load, unsigned long exp, |
| 3436 | unsigned long active, unsigned int n) |
| 3437 | { |
| 3438 | |
| 3439 | return calc_load(load, fixed_power_int(exp, FSHIFT, n), active); |
| 3440 | } |
| 3441 | |
| 3442 | /* |
| 3443 | * NO_HZ can leave us missing all per-cpu ticks calling |
| 3444 | * calc_load_account_active(), but since an idle CPU folds its delta into |
| 3445 | * calc_load_tasks_idle per calc_load_account_idle(), all we need to do is fold |
| 3446 | * in the pending idle delta if our idle period crossed a load cycle boundary. |
| 3447 | * |
| 3448 | * Once we've updated the global active value, we need to apply the exponential |
| 3449 | * weights adjusted to the number of cycles missed. |
| 3450 | */ |
| 3451 | static void calc_global_nohz(unsigned long ticks) |
| 3452 | { |
| 3453 | long delta, active, n; |
| 3454 | |
| 3455 | if (time_before(jiffies, calc_load_update)) |
| 3456 | return; |
| 3457 | |
| 3458 | /* |
| 3459 | * If we crossed a calc_load_update boundary, make sure to fold |
| 3460 | * any pending idle changes, the respective CPUs might have |
| 3461 | * missed the tick driven calc_load_account_active() update |
| 3462 | * due to NO_HZ. |
| 3463 | */ |
| 3464 | delta = calc_load_fold_idle(); |
| 3465 | if (delta) |
| 3466 | atomic_long_add(delta, &calc_load_tasks); |
| 3467 | |
| 3468 | /* |
| 3469 | * If we were idle for multiple load cycles, apply them. |
| 3470 | */ |
| 3471 | if (ticks >= LOAD_FREQ) { |
| 3472 | n = ticks / LOAD_FREQ; |
| 3473 | |
| 3474 | active = atomic_long_read(&calc_load_tasks); |
| 3475 | active = active > 0 ? active * FIXED_1 : 0; |
| 3476 | |
| 3477 | avenrun[0] = calc_load_n(avenrun[0], EXP_1, active, n); |
| 3478 | avenrun[1] = calc_load_n(avenrun[1], EXP_5, active, n); |
| 3479 | avenrun[2] = calc_load_n(avenrun[2], EXP_15, active, n); |
| 3480 | |
| 3481 | calc_load_update += n * LOAD_FREQ; |
| 3482 | } |
| 3483 | |
| 3484 | /* |
| 3485 | * Its possible the remainder of the above division also crosses |
| 3486 | * a LOAD_FREQ period, the regular check in calc_global_load() |
| 3487 | * which comes after this will take care of that. |
| 3488 | * |
| 3489 | * Consider us being 11 ticks before a cycle completion, and us |
| 3490 | * sleeping for 4*LOAD_FREQ + 22 ticks, then the above code will |
| 3491 | * age us 4 cycles, and the test in calc_global_load() will |
| 3492 | * pick up the final one. |
| 3493 | */ |
| 3494 | } |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3495 | #else |
| 3496 | static void calc_load_account_idle(struct rq *this_rq) |
| 3497 | { |
| 3498 | } |
| 3499 | |
| 3500 | static inline long calc_load_fold_idle(void) |
| 3501 | { |
| 3502 | return 0; |
| 3503 | } |
Peter Zijlstra | 0f004f5 | 2010-11-30 19:48:45 +0100 | [diff] [blame] | 3504 | |
| 3505 | static void calc_global_nohz(unsigned long ticks) |
| 3506 | { |
| 3507 | } |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3508 | #endif |
| 3509 | |
Thomas Gleixner | 2d02494 | 2009-05-02 20:08:52 +0200 | [diff] [blame] | 3510 | /** |
| 3511 | * get_avenrun - get the load average array |
| 3512 | * @loads: pointer to dest load array |
| 3513 | * @offset: offset to add |
| 3514 | * @shift: shift count to shift the result left |
| 3515 | * |
| 3516 | * These values are estimates at best, so no need for locking. |
| 3517 | */ |
| 3518 | void get_avenrun(unsigned long *loads, unsigned long offset, int shift) |
| 3519 | { |
| 3520 | loads[0] = (avenrun[0] + offset) << shift; |
| 3521 | loads[1] = (avenrun[1] + offset) << shift; |
| 3522 | loads[2] = (avenrun[2] + offset) << shift; |
| 3523 | } |
| 3524 | |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3525 | /* |
| 3526 | * calc_load - update the avenrun load estimates 10 ticks after the |
| 3527 | * CPUs have updated calc_load_tasks. |
| 3528 | */ |
Peter Zijlstra | 0f004f5 | 2010-11-30 19:48:45 +0100 | [diff] [blame] | 3529 | void calc_global_load(unsigned long ticks) |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3530 | { |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3531 | long active; |
| 3532 | |
Peter Zijlstra | 0f004f5 | 2010-11-30 19:48:45 +0100 | [diff] [blame] | 3533 | calc_global_nohz(ticks); |
| 3534 | |
| 3535 | if (time_before(jiffies, calc_load_update + 10)) |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3536 | return; |
| 3537 | |
| 3538 | active = atomic_long_read(&calc_load_tasks); |
| 3539 | active = active > 0 ? active * FIXED_1 : 0; |
| 3540 | |
| 3541 | avenrun[0] = calc_load(avenrun[0], EXP_1, active); |
| 3542 | avenrun[1] = calc_load(avenrun[1], EXP_5, active); |
| 3543 | avenrun[2] = calc_load(avenrun[2], EXP_15, active); |
| 3544 | |
| 3545 | calc_load_update += LOAD_FREQ; |
| 3546 | } |
| 3547 | |
| 3548 | /* |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3549 | * Called from update_cpu_load() to periodically update this CPU's |
| 3550 | * active count. |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3551 | */ |
| 3552 | static void calc_load_account_active(struct rq *this_rq) |
| 3553 | { |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3554 | long delta; |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3555 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3556 | if (time_before(jiffies, this_rq->calc_load_update)) |
| 3557 | return; |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3558 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3559 | delta = calc_load_fold_active(this_rq); |
| 3560 | delta += calc_load_fold_idle(); |
| 3561 | if (delta) |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3562 | atomic_long_add(delta, &calc_load_tasks); |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3563 | |
| 3564 | this_rq->calc_load_update += LOAD_FREQ; |
Jack Steiner | db1b1fe | 2006-03-31 02:31:21 -0800 | [diff] [blame] | 3565 | } |
| 3566 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3567 | /* |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3568 | * The exact cpuload at various idx values, calculated at every tick would be |
| 3569 | * load = (2^idx - 1) / 2^idx * load + 1 / 2^idx * cur_load |
| 3570 | * |
| 3571 | * If a cpu misses updates for n-1 ticks (as it was idle) and update gets called |
| 3572 | * on nth tick when cpu may be busy, then we have: |
| 3573 | * load = ((2^idx - 1) / 2^idx)^(n-1) * load |
| 3574 | * load = (2^idx - 1) / 2^idx) * load + 1 / 2^idx * cur_load |
| 3575 | * |
| 3576 | * decay_load_missed() below does efficient calculation of |
| 3577 | * load = ((2^idx - 1) / 2^idx)^(n-1) * load |
| 3578 | * avoiding 0..n-1 loop doing load = ((2^idx - 1) / 2^idx) * load |
| 3579 | * |
| 3580 | * The calculation is approximated on a 128 point scale. |
| 3581 | * degrade_zero_ticks is the number of ticks after which load at any |
| 3582 | * particular idx is approximated to be zero. |
| 3583 | * degrade_factor is a precomputed table, a row for each load idx. |
| 3584 | * Each column corresponds to degradation factor for a power of two ticks, |
| 3585 | * based on 128 point scale. |
| 3586 | * Example: |
| 3587 | * row 2, col 3 (=12) says that the degradation at load idx 2 after |
| 3588 | * 8 ticks is 12/128 (which is an approximation of exact factor 3^8/4^8). |
| 3589 | * |
| 3590 | * With this power of 2 load factors, we can degrade the load n times |
| 3591 | * by looking at 1 bits in n and doing as many mult/shift instead of |
| 3592 | * n mult/shifts needed by the exact degradation. |
| 3593 | */ |
| 3594 | #define DEGRADE_SHIFT 7 |
| 3595 | static const unsigned char |
| 3596 | degrade_zero_ticks[CPU_LOAD_IDX_MAX] = {0, 8, 32, 64, 128}; |
| 3597 | static const unsigned char |
| 3598 | degrade_factor[CPU_LOAD_IDX_MAX][DEGRADE_SHIFT + 1] = { |
| 3599 | {0, 0, 0, 0, 0, 0, 0, 0}, |
| 3600 | {64, 32, 8, 0, 0, 0, 0, 0}, |
| 3601 | {96, 72, 40, 12, 1, 0, 0}, |
| 3602 | {112, 98, 75, 43, 15, 1, 0}, |
| 3603 | {120, 112, 98, 76, 45, 16, 2} }; |
| 3604 | |
| 3605 | /* |
| 3606 | * Update cpu_load for any missed ticks, due to tickless idle. The backlog |
| 3607 | * would be when CPU is idle and so we just decay the old load without |
| 3608 | * adding any new load. |
| 3609 | */ |
| 3610 | static unsigned long |
| 3611 | decay_load_missed(unsigned long load, unsigned long missed_updates, int idx) |
| 3612 | { |
| 3613 | int j = 0; |
| 3614 | |
| 3615 | if (!missed_updates) |
| 3616 | return load; |
| 3617 | |
| 3618 | if (missed_updates >= degrade_zero_ticks[idx]) |
| 3619 | return 0; |
| 3620 | |
| 3621 | if (idx == 1) |
| 3622 | return load >> missed_updates; |
| 3623 | |
| 3624 | while (missed_updates) { |
| 3625 | if (missed_updates % 2) |
| 3626 | load = (load * degrade_factor[idx][j]) >> DEGRADE_SHIFT; |
| 3627 | |
| 3628 | missed_updates >>= 1; |
| 3629 | j++; |
| 3630 | } |
| 3631 | return load; |
| 3632 | } |
| 3633 | |
| 3634 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3635 | * Update rq->cpu_load[] statistics. This function is usually called every |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3636 | * scheduler tick (TICK_NSEC). With tickless idle this will not be called |
| 3637 | * every tick. We fix it up based on jiffies. |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3638 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3639 | static void update_cpu_load(struct rq *this_rq) |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3640 | { |
Dmitry Adamushko | 495eca4 | 2007-10-15 17:00:06 +0200 | [diff] [blame] | 3641 | unsigned long this_load = this_rq->load.weight; |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3642 | unsigned long curr_jiffies = jiffies; |
| 3643 | unsigned long pending_updates; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3644 | int i, scale; |
| 3645 | |
| 3646 | this_rq->nr_load_updates++; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3647 | |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3648 | /* Avoid repeated calls on same jiffy, when moving in and out of idle */ |
| 3649 | if (curr_jiffies == this_rq->last_load_update_tick) |
| 3650 | return; |
| 3651 | |
| 3652 | pending_updates = curr_jiffies - this_rq->last_load_update_tick; |
| 3653 | this_rq->last_load_update_tick = curr_jiffies; |
| 3654 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3655 | /* Update our load: */ |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3656 | this_rq->cpu_load[0] = this_load; /* Fasttrack for idx 0 */ |
| 3657 | for (i = 1, scale = 2; i < CPU_LOAD_IDX_MAX; i++, scale += scale) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3658 | unsigned long old_load, new_load; |
| 3659 | |
| 3660 | /* scale is effectively 1 << i now, and >> i divides by scale */ |
| 3661 | |
| 3662 | old_load = this_rq->cpu_load[i]; |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3663 | old_load = decay_load_missed(old_load, pending_updates - 1, i); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3664 | new_load = this_load; |
Ingo Molnar | a25707f | 2007-10-15 17:00:03 +0200 | [diff] [blame] | 3665 | /* |
| 3666 | * Round up the averaging division if load is increasing. This |
| 3667 | * prevents us from getting stuck on 9 if the load is 10, for |
| 3668 | * example. |
| 3669 | */ |
| 3670 | if (new_load > old_load) |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3671 | new_load += scale - 1; |
| 3672 | |
| 3673 | this_rq->cpu_load[i] = (old_load * (scale - 1) + new_load) >> i; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3674 | } |
Suresh Siddha | da2b71e | 2010-08-23 13:42:51 -0700 | [diff] [blame] | 3675 | |
| 3676 | sched_avg_update(this_rq); |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 3677 | } |
| 3678 | |
| 3679 | static void update_cpu_load_active(struct rq *this_rq) |
| 3680 | { |
| 3681 | update_cpu_load(this_rq); |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 3682 | |
Peter Zijlstra | 74f5187 | 2010-04-22 21:50:19 +0200 | [diff] [blame] | 3683 | calc_load_account_active(this_rq); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3684 | } |
| 3685 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 3686 | #ifdef CONFIG_SMP |
| 3687 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3688 | /* |
Peter Zijlstra | 3802290 | 2009-12-16 18:04:37 +0100 | [diff] [blame] | 3689 | * sched_exec - execve() is a valuable balancing opportunity, because at |
| 3690 | * this point the task has the smallest effective memory and cache footprint. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3691 | */ |
Peter Zijlstra | 3802290 | 2009-12-16 18:04:37 +0100 | [diff] [blame] | 3692 | void sched_exec(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3693 | { |
Peter Zijlstra | 3802290 | 2009-12-16 18:04:37 +0100 | [diff] [blame] | 3694 | struct task_struct *p = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3695 | unsigned long flags; |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 3696 | int dest_cpu; |
Peter Zijlstra | 3802290 | 2009-12-16 18:04:37 +0100 | [diff] [blame] | 3697 | |
Peter Zijlstra | 8f42ced | 2011-04-05 17:23:53 +0200 | [diff] [blame] | 3698 | raw_spin_lock_irqsave(&p->pi_lock, flags); |
Peter Zijlstra | 7608dec | 2011-04-05 17:23:46 +0200 | [diff] [blame] | 3699 | dest_cpu = p->sched_class->select_task_rq(p, SD_BALANCE_EXEC, 0); |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 3700 | if (dest_cpu == smp_processor_id()) |
| 3701 | goto unlock; |
Peter Zijlstra | 3802290 | 2009-12-16 18:04:37 +0100 | [diff] [blame] | 3702 | |
Peter Zijlstra | 8f42ced | 2011-04-05 17:23:53 +0200 | [diff] [blame] | 3703 | if (likely(cpu_active(dest_cpu))) { |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 3704 | struct migration_arg arg = { p, dest_cpu }; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 3705 | |
Peter Zijlstra | 8f42ced | 2011-04-05 17:23:53 +0200 | [diff] [blame] | 3706 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
| 3707 | stop_one_cpu(task_cpu(p), migration_cpu_stop, &arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3708 | return; |
| 3709 | } |
Peter Zijlstra | 0017d73 | 2010-03-24 18:34:10 +0100 | [diff] [blame] | 3710 | unlock: |
Peter Zijlstra | 8f42ced | 2011-04-05 17:23:53 +0200 | [diff] [blame] | 3711 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3712 | } |
| 3713 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3714 | #endif |
| 3715 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3716 | DEFINE_PER_CPU(struct kernel_stat, kstat); |
| 3717 | |
| 3718 | EXPORT_PER_CPU_SYMBOL(kstat); |
| 3719 | |
| 3720 | /* |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3721 | * Return any ns on the sched_clock that have not yet been accounted in |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3722 | * @p in case that task is currently running. |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3723 | * |
| 3724 | * Called with task_rq_lock() held on @rq. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3725 | */ |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3726 | static u64 do_task_delta_exec(struct task_struct *p, struct rq *rq) |
| 3727 | { |
| 3728 | u64 ns = 0; |
| 3729 | |
| 3730 | if (task_current(rq, p)) { |
| 3731 | update_rq_clock(rq); |
Venkatesh Pallipadi | 305e683 | 2010-10-04 17:03:21 -0700 | [diff] [blame] | 3732 | ns = rq->clock_task - p->se.exec_start; |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3733 | if ((s64)ns < 0) |
| 3734 | ns = 0; |
| 3735 | } |
| 3736 | |
| 3737 | return ns; |
| 3738 | } |
| 3739 | |
Frank Mayhar | bb34d92 | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3740 | unsigned long long task_delta_exec(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3741 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3742 | unsigned long flags; |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3743 | struct rq *rq; |
Frank Mayhar | bb34d92 | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3744 | u64 ns = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3745 | |
Ingo Molnar | 41b86e9 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 3746 | rq = task_rq_lock(p, &flags); |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3747 | ns = do_task_delta_exec(p, rq); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 3748 | task_rq_unlock(rq, p, &flags); |
Ingo Molnar | 1508487 | 2008-09-30 08:28:17 +0200 | [diff] [blame] | 3749 | |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3750 | return ns; |
| 3751 | } |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3752 | |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3753 | /* |
| 3754 | * Return accounted runtime for the task. |
| 3755 | * In case the task is currently running, return the runtime plus current's |
| 3756 | * pending runtime that have not been accounted yet. |
| 3757 | */ |
| 3758 | unsigned long long task_sched_runtime(struct task_struct *p) |
| 3759 | { |
| 3760 | unsigned long flags; |
| 3761 | struct rq *rq; |
| 3762 | u64 ns = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 3763 | |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3764 | rq = task_rq_lock(p, &flags); |
| 3765 | ns = p->se.sum_exec_runtime + do_task_delta_exec(p, rq); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 3766 | task_rq_unlock(rq, p, &flags); |
Hidetoshi Seto | c5f8d99 | 2009-03-31 16:56:03 +0900 | [diff] [blame] | 3767 | |
| 3768 | return ns; |
| 3769 | } |
| 3770 | |
| 3771 | /* |
| 3772 | * Return sum_exec_runtime for the thread group. |
| 3773 | * In case the task is currently running, return the sum plus current's |
| 3774 | * pending runtime that have not been accounted yet. |
| 3775 | * |
| 3776 | * Note that the thread group might have other running tasks as well, |
| 3777 | * so the return value not includes other pending runtime that other |
| 3778 | * running tasks might have. |
| 3779 | */ |
| 3780 | unsigned long long thread_group_sched_runtime(struct task_struct *p) |
| 3781 | { |
| 3782 | struct task_cputime totals; |
| 3783 | unsigned long flags; |
| 3784 | struct rq *rq; |
| 3785 | u64 ns; |
| 3786 | |
| 3787 | rq = task_rq_lock(p, &flags); |
| 3788 | thread_group_cputime(p, &totals); |
| 3789 | ns = totals.sum_exec_runtime + do_task_delta_exec(p, rq); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 3790 | task_rq_unlock(rq, p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3791 | |
| 3792 | return ns; |
| 3793 | } |
| 3794 | |
| 3795 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3796 | * Account user cpu time to a process. |
| 3797 | * @p: the process that the cpu time gets accounted to |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3798 | * @cputime: the cpu time spent in user space since the last update |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3799 | * @cputime_scaled: cputime scaled by cpu frequency |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3800 | */ |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3801 | void account_user_time(struct task_struct *p, cputime_t cputime, |
| 3802 | cputime_t cputime_scaled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3803 | { |
| 3804 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3805 | cputime64_t tmp; |
| 3806 | |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3807 | /* Add user time to process. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3808 | p->utime = cputime_add(p->utime, cputime); |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3809 | p->utimescaled = cputime_add(p->utimescaled, cputime_scaled); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3810 | account_group_user_time(p, cputime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3811 | |
| 3812 | /* Add user time to cpustat. */ |
| 3813 | tmp = cputime_to_cputime64(cputime); |
| 3814 | if (TASK_NICE(p) > 0) |
| 3815 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3816 | else |
| 3817 | cpustat->user = cputime64_add(cpustat->user, tmp); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 3818 | |
| 3819 | cpuacct_update_stats(p, CPUACCT_STAT_USER, cputime); |
Jonathan Lim | 49b5cf3 | 2008-07-25 01:48:40 -0700 | [diff] [blame] | 3820 | /* Account for user time used */ |
| 3821 | acct_update_integrals(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3822 | } |
| 3823 | |
| 3824 | /* |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3825 | * Account guest cpu time to a process. |
| 3826 | * @p: the process that the cpu time gets accounted to |
| 3827 | * @cputime: the cpu time spent in virtual machine since the last update |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3828 | * @cputime_scaled: cputime scaled by cpu frequency |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3829 | */ |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3830 | static void account_guest_time(struct task_struct *p, cputime_t cputime, |
| 3831 | cputime_t cputime_scaled) |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3832 | { |
| 3833 | cputime64_t tmp; |
| 3834 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3835 | |
| 3836 | tmp = cputime_to_cputime64(cputime); |
| 3837 | |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3838 | /* Add guest time to process. */ |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3839 | p->utime = cputime_add(p->utime, cputime); |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3840 | p->utimescaled = cputime_add(p->utimescaled, cputime_scaled); |
Frank Mayhar | f06febc | 2008-09-12 09:54:39 -0700 | [diff] [blame] | 3841 | account_group_user_time(p, cputime); |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3842 | p->gtime = cputime_add(p->gtime, cputime); |
| 3843 | |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3844 | /* Add guest time to cpustat. */ |
Ryota Ozaki | ce0e7b2 | 2009-10-24 01:20:10 +0900 | [diff] [blame] | 3845 | if (TASK_NICE(p) > 0) { |
| 3846 | cpustat->nice = cputime64_add(cpustat->nice, tmp); |
| 3847 | cpustat->guest_nice = cputime64_add(cpustat->guest_nice, tmp); |
| 3848 | } else { |
| 3849 | cpustat->user = cputime64_add(cpustat->user, tmp); |
| 3850 | cpustat->guest = cputime64_add(cpustat->guest, tmp); |
| 3851 | } |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3852 | } |
| 3853 | |
| 3854 | /* |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3855 | * Account system cpu time to a process and desired cpustat field |
| 3856 | * @p: the process that the cpu time gets accounted to |
| 3857 | * @cputime: the cpu time spent in kernel space since the last update |
| 3858 | * @cputime_scaled: cputime scaled by cpu frequency |
| 3859 | * @target_cputime64: pointer to cpustat field that has to be updated |
| 3860 | */ |
| 3861 | static inline |
| 3862 | void __account_system_time(struct task_struct *p, cputime_t cputime, |
| 3863 | cputime_t cputime_scaled, cputime64_t *target_cputime64) |
| 3864 | { |
| 3865 | cputime64_t tmp = cputime_to_cputime64(cputime); |
| 3866 | |
| 3867 | /* Add system time to process. */ |
| 3868 | p->stime = cputime_add(p->stime, cputime); |
| 3869 | p->stimescaled = cputime_add(p->stimescaled, cputime_scaled); |
| 3870 | account_group_system_time(p, cputime); |
| 3871 | |
| 3872 | /* Add system time to cpustat. */ |
| 3873 | *target_cputime64 = cputime64_add(*target_cputime64, tmp); |
| 3874 | cpuacct_update_stats(p, CPUACCT_STAT_SYSTEM, cputime); |
| 3875 | |
| 3876 | /* Account for system time used */ |
| 3877 | acct_update_integrals(p); |
| 3878 | } |
| 3879 | |
| 3880 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3881 | * Account system cpu time to a process. |
| 3882 | * @p: the process that the cpu time gets accounted to |
| 3883 | * @hardirq_offset: the offset to subtract from hardirq_count() |
| 3884 | * @cputime: the cpu time spent in kernel space since the last update |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3885 | * @cputime_scaled: cputime scaled by cpu frequency |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3886 | */ |
| 3887 | void account_system_time(struct task_struct *p, int hardirq_offset, |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3888 | cputime_t cputime, cputime_t cputime_scaled) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3889 | { |
| 3890 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3891 | cputime64_t *target_cputime64; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3892 | |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 3893 | if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) { |
Martin Schwidefsky | 457533a | 2008-12-31 15:11:37 +0100 | [diff] [blame] | 3894 | account_guest_time(p, cputime, cputime_scaled); |
Harvey Harrison | 983ed7a | 2008-04-24 18:17:55 -0700 | [diff] [blame] | 3895 | return; |
| 3896 | } |
Laurent Vivier | 94886b8 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 3897 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3898 | if (hardirq_count() - hardirq_offset) |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3899 | target_cputime64 = &cpustat->irq; |
Venkatesh Pallipadi | 75e1056 | 2010-10-04 17:03:16 -0700 | [diff] [blame] | 3900 | else if (in_serving_softirq()) |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3901 | target_cputime64 = &cpustat->softirq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3902 | else |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3903 | target_cputime64 = &cpustat->system; |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3904 | |
Venkatesh Pallipadi | 70a89a6 | 2010-12-21 17:09:02 -0800 | [diff] [blame] | 3905 | __account_system_time(p, cputime, cputime_scaled, target_cputime64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3906 | } |
| 3907 | |
| 3908 | /* |
| 3909 | * Account for involuntary wait time. |
Venkatesh Pallipadi | 544b4a1 | 2011-02-25 15:13:16 -0800 | [diff] [blame] | 3910 | * @cputime: the cpu time spent in involuntary wait |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3911 | */ |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3912 | void account_steal_time(cputime_t cputime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3913 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3914 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3915 | cputime64_t cputime64 = cputime_to_cputime64(cputime); |
| 3916 | |
| 3917 | cpustat->steal = cputime64_add(cpustat->steal, cputime64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3918 | } |
| 3919 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3920 | /* |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3921 | * Account for idle time. |
| 3922 | * @cputime: the cpu time spent in idle wait |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3923 | */ |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3924 | void account_idle_time(cputime_t cputime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3925 | { |
| 3926 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3927 | cputime64_t cputime64 = cputime_to_cputime64(cputime); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3928 | struct rq *rq = this_rq(); |
| 3929 | |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3930 | if (atomic_read(&rq->nr_iowait) > 0) |
| 3931 | cpustat->iowait = cputime64_add(cpustat->iowait, cputime64); |
| 3932 | else |
| 3933 | cpustat->idle = cputime64_add(cpustat->idle, cputime64); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 3934 | } |
| 3935 | |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 3936 | static __always_inline bool steal_account_process_tick(void) |
| 3937 | { |
| 3938 | #ifdef CONFIG_PARAVIRT |
| 3939 | if (static_branch(¶virt_steal_enabled)) { |
| 3940 | u64 steal, st = 0; |
| 3941 | |
| 3942 | steal = paravirt_steal_clock(smp_processor_id()); |
| 3943 | steal -= this_rq()->prev_steal_time; |
| 3944 | |
| 3945 | st = steal_ticks(steal); |
| 3946 | this_rq()->prev_steal_time += st * TICK_NSEC; |
| 3947 | |
| 3948 | account_steal_time(st); |
| 3949 | return st; |
| 3950 | } |
| 3951 | #endif |
| 3952 | return false; |
| 3953 | } |
| 3954 | |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 3955 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING |
| 3956 | |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 3957 | #ifdef CONFIG_IRQ_TIME_ACCOUNTING |
| 3958 | /* |
| 3959 | * Account a tick to a process and cpustat |
| 3960 | * @p: the process that the cpu time gets accounted to |
| 3961 | * @user_tick: is the tick from userspace |
| 3962 | * @rq: the pointer to rq |
| 3963 | * |
| 3964 | * Tick demultiplexing follows the order |
| 3965 | * - pending hardirq update |
| 3966 | * - pending softirq update |
| 3967 | * - user_time |
| 3968 | * - idle_time |
| 3969 | * - system time |
| 3970 | * - check for guest_time |
| 3971 | * - else account as system_time |
| 3972 | * |
| 3973 | * Check for hardirq is done both for system and user time as there is |
| 3974 | * no timer going off while we are on hardirq and hence we may never get an |
| 3975 | * opportunity to update it solely in system time. |
| 3976 | * p->stime and friends are only updated on system time and not on irq |
| 3977 | * softirq as those do not count in task exec_runtime any more. |
| 3978 | */ |
| 3979 | static void irqtime_account_process_tick(struct task_struct *p, int user_tick, |
| 3980 | struct rq *rq) |
| 3981 | { |
| 3982 | cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy); |
| 3983 | cputime64_t tmp = cputime_to_cputime64(cputime_one_jiffy); |
| 3984 | struct cpu_usage_stat *cpustat = &kstat_this_cpu.cpustat; |
| 3985 | |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 3986 | if (steal_account_process_tick()) |
| 3987 | return; |
| 3988 | |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 3989 | if (irqtime_account_hi_update()) { |
| 3990 | cpustat->irq = cputime64_add(cpustat->irq, tmp); |
| 3991 | } else if (irqtime_account_si_update()) { |
| 3992 | cpustat->softirq = cputime64_add(cpustat->softirq, tmp); |
Venkatesh Pallipadi | 414bee9 | 2010-12-21 17:09:04 -0800 | [diff] [blame] | 3993 | } else if (this_cpu_ksoftirqd() == p) { |
| 3994 | /* |
| 3995 | * ksoftirqd time do not get accounted in cpu_softirq_time. |
| 3996 | * So, we have to handle it separately here. |
| 3997 | * Also, p->stime needs to be updated for ksoftirqd. |
| 3998 | */ |
| 3999 | __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled, |
| 4000 | &cpustat->softirq); |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 4001 | } else if (user_tick) { |
| 4002 | account_user_time(p, cputime_one_jiffy, one_jiffy_scaled); |
| 4003 | } else if (p == rq->idle) { |
| 4004 | account_idle_time(cputime_one_jiffy); |
| 4005 | } else if (p->flags & PF_VCPU) { /* System time or guest time */ |
| 4006 | account_guest_time(p, cputime_one_jiffy, one_jiffy_scaled); |
| 4007 | } else { |
| 4008 | __account_system_time(p, cputime_one_jiffy, one_jiffy_scaled, |
| 4009 | &cpustat->system); |
| 4010 | } |
| 4011 | } |
| 4012 | |
| 4013 | static void irqtime_account_idle_ticks(int ticks) |
| 4014 | { |
| 4015 | int i; |
| 4016 | struct rq *rq = this_rq(); |
| 4017 | |
| 4018 | for (i = 0; i < ticks; i++) |
| 4019 | irqtime_account_process_tick(current, 0, rq); |
| 4020 | } |
Venkatesh Pallipadi | 544b4a1 | 2011-02-25 15:13:16 -0800 | [diff] [blame] | 4021 | #else /* CONFIG_IRQ_TIME_ACCOUNTING */ |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 4022 | static void irqtime_account_idle_ticks(int ticks) {} |
| 4023 | static void irqtime_account_process_tick(struct task_struct *p, int user_tick, |
| 4024 | struct rq *rq) {} |
Venkatesh Pallipadi | 544b4a1 | 2011-02-25 15:13:16 -0800 | [diff] [blame] | 4025 | #endif /* CONFIG_IRQ_TIME_ACCOUNTING */ |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4026 | |
| 4027 | /* |
| 4028 | * Account a single tick of cpu time. |
| 4029 | * @p: the process that the cpu time gets accounted to |
| 4030 | * @user_tick: indicates if the tick is a user or a system tick |
| 4031 | */ |
| 4032 | void account_process_tick(struct task_struct *p, int user_tick) |
| 4033 | { |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 4034 | cputime_t one_jiffy_scaled = cputime_to_scaled(cputime_one_jiffy); |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4035 | struct rq *rq = this_rq(); |
| 4036 | |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 4037 | if (sched_clock_irqtime) { |
| 4038 | irqtime_account_process_tick(p, user_tick, rq); |
| 4039 | return; |
| 4040 | } |
| 4041 | |
Glauber Costa | e6e6685 | 2011-07-11 15:28:17 -0400 | [diff] [blame] | 4042 | if (steal_account_process_tick()) |
| 4043 | return; |
| 4044 | |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4045 | if (user_tick) |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 4046 | account_user_time(p, cputime_one_jiffy, one_jiffy_scaled); |
Eric Dumazet | f5f293a | 2009-04-29 14:44:49 +0200 | [diff] [blame] | 4047 | else if ((p != rq->idle) || (irq_count() != HARDIRQ_OFFSET)) |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 4048 | account_system_time(p, HARDIRQ_OFFSET, cputime_one_jiffy, |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4049 | one_jiffy_scaled); |
| 4050 | else |
Stanislaw Gruszka | a42548a | 2009-07-29 12:15:29 +0200 | [diff] [blame] | 4051 | account_idle_time(cputime_one_jiffy); |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4052 | } |
| 4053 | |
| 4054 | /* |
| 4055 | * Account multiple ticks of steal time. |
| 4056 | * @p: the process from which the cpu time has been stolen |
| 4057 | * @ticks: number of stolen ticks |
| 4058 | */ |
| 4059 | void account_steal_ticks(unsigned long ticks) |
| 4060 | { |
| 4061 | account_steal_time(jiffies_to_cputime(ticks)); |
| 4062 | } |
| 4063 | |
| 4064 | /* |
| 4065 | * Account multiple ticks of idle time. |
| 4066 | * @ticks: number of stolen ticks |
| 4067 | */ |
| 4068 | void account_idle_ticks(unsigned long ticks) |
| 4069 | { |
Venkatesh Pallipadi | abb74ce | 2010-12-21 17:09:03 -0800 | [diff] [blame] | 4070 | |
| 4071 | if (sched_clock_irqtime) { |
| 4072 | irqtime_account_idle_ticks(ticks); |
| 4073 | return; |
| 4074 | } |
| 4075 | |
Martin Schwidefsky | 79741dd | 2008-12-31 15:11:38 +0100 | [diff] [blame] | 4076 | account_idle_time(jiffies_to_cputime(ticks)); |
| 4077 | } |
| 4078 | |
| 4079 | #endif |
| 4080 | |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4081 | /* |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4082 | * Use precise platform statistics if available: |
| 4083 | */ |
| 4084 | #ifdef CONFIG_VIRT_CPU_ACCOUNTING |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4085 | void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st) |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4086 | { |
Hidetoshi Seto | d99ca3b | 2009-12-02 17:26:47 +0900 | [diff] [blame] | 4087 | *ut = p->utime; |
| 4088 | *st = p->stime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4089 | } |
| 4090 | |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 4091 | void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st) |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4092 | { |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 4093 | struct task_cputime cputime; |
| 4094 | |
| 4095 | thread_group_cputime(p, &cputime); |
| 4096 | |
| 4097 | *ut = cputime.utime; |
| 4098 | *st = cputime.stime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4099 | } |
| 4100 | #else |
Hidetoshi Seto | 761b1d2 | 2009-11-12 13:33:45 +0900 | [diff] [blame] | 4101 | |
| 4102 | #ifndef nsecs_to_cputime |
Hidetoshi Seto | b7b20df9 | 2009-11-26 14:49:27 +0900 | [diff] [blame] | 4103 | # define nsecs_to_cputime(__nsecs) nsecs_to_jiffies(__nsecs) |
Hidetoshi Seto | 761b1d2 | 2009-11-12 13:33:45 +0900 | [diff] [blame] | 4104 | #endif |
| 4105 | |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4106 | void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st) |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4107 | { |
Hidetoshi Seto | d99ca3b | 2009-12-02 17:26:47 +0900 | [diff] [blame] | 4108 | cputime_t rtime, utime = p->utime, total = cputime_add(utime, p->stime); |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4109 | |
| 4110 | /* |
| 4111 | * Use CFS's precise accounting: |
| 4112 | */ |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4113 | rtime = nsecs_to_cputime(p->se.sum_exec_runtime); |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4114 | |
| 4115 | if (total) { |
Stanislaw Gruszka | e75e863 | 2010-09-14 16:35:14 +0200 | [diff] [blame] | 4116 | u64 temp = rtime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4117 | |
Stanislaw Gruszka | e75e863 | 2010-09-14 16:35:14 +0200 | [diff] [blame] | 4118 | temp *= utime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4119 | do_div(temp, total); |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4120 | utime = (cputime_t)temp; |
| 4121 | } else |
| 4122 | utime = rtime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4123 | |
| 4124 | /* |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4125 | * Compare with previous values, to keep monotonicity: |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4126 | */ |
Hidetoshi Seto | 761b1d2 | 2009-11-12 13:33:45 +0900 | [diff] [blame] | 4127 | p->prev_utime = max(p->prev_utime, utime); |
Hidetoshi Seto | d99ca3b | 2009-12-02 17:26:47 +0900 | [diff] [blame] | 4128 | p->prev_stime = max(p->prev_stime, cputime_sub(rtime, p->prev_utime)); |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4129 | |
Hidetoshi Seto | d99ca3b | 2009-12-02 17:26:47 +0900 | [diff] [blame] | 4130 | *ut = p->prev_utime; |
| 4131 | *st = p->prev_stime; |
Hidetoshi Seto | d180c5b | 2009-11-26 14:48:30 +0900 | [diff] [blame] | 4132 | } |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4133 | |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 4134 | /* |
| 4135 | * Must be called with siglock held. |
| 4136 | */ |
| 4137 | void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st) |
| 4138 | { |
| 4139 | struct signal_struct *sig = p->signal; |
| 4140 | struct task_cputime cputime; |
| 4141 | cputime_t rtime, utime, total; |
| 4142 | |
| 4143 | thread_group_cputime(p, &cputime); |
| 4144 | |
| 4145 | total = cputime_add(cputime.utime, cputime.stime); |
| 4146 | rtime = nsecs_to_cputime(cputime.sum_exec_runtime); |
| 4147 | |
| 4148 | if (total) { |
Stanislaw Gruszka | e75e863 | 2010-09-14 16:35:14 +0200 | [diff] [blame] | 4149 | u64 temp = rtime; |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 4150 | |
Stanislaw Gruszka | e75e863 | 2010-09-14 16:35:14 +0200 | [diff] [blame] | 4151 | temp *= cputime.utime; |
Hidetoshi Seto | 0cf55e1 | 2009-12-02 17:28:07 +0900 | [diff] [blame] | 4152 | do_div(temp, total); |
| 4153 | utime = (cputime_t)temp; |
| 4154 | } else |
| 4155 | utime = rtime; |
| 4156 | |
| 4157 | sig->prev_utime = max(sig->prev_utime, utime); |
| 4158 | sig->prev_stime = max(sig->prev_stime, |
| 4159 | cputime_sub(rtime, sig->prev_utime)); |
| 4160 | |
| 4161 | *ut = sig->prev_utime; |
| 4162 | *st = sig->prev_stime; |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4163 | } |
| 4164 | #endif |
| 4165 | |
Balbir Singh | 4904862 | 2008-09-05 18:12:23 +0200 | [diff] [blame] | 4166 | /* |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4167 | * This function gets called by the timer code, with HZ frequency. |
| 4168 | * We call it with interrupts disabled. |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4169 | */ |
| 4170 | void scheduler_tick(void) |
| 4171 | { |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4172 | int cpu = smp_processor_id(); |
| 4173 | struct rq *rq = cpu_rq(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4174 | struct task_struct *curr = rq->curr; |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 4175 | |
| 4176 | sched_clock_tick(); |
Christoph Lameter | 7835b98 | 2006-12-10 02:20:22 -0800 | [diff] [blame] | 4177 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 4178 | raw_spin_lock(&rq->lock); |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 4179 | update_rq_clock(rq); |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 4180 | update_cpu_load_active(rq); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4181 | curr->sched_class->task_tick(rq, curr, 0); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 4182 | raw_spin_unlock(&rq->lock); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4183 | |
Peter Zijlstra | e9d2b06 | 2010-09-17 11:28:50 +0200 | [diff] [blame] | 4184 | perf_event_task_tick(); |
Peter Zijlstra | e220d2d | 2009-05-23 18:28:55 +0200 | [diff] [blame] | 4185 | |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 4186 | #ifdef CONFIG_SMP |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4187 | rq->idle_at_tick = idle_cpu(cpu); |
| 4188 | trigger_load_balance(rq, cpu); |
Christoph Lameter | e418e1c | 2006-12-10 02:20:23 -0800 | [diff] [blame] | 4189 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | } |
| 4191 | |
Lai Jiangshan | 132380a | 2009-04-02 14:18:25 +0800 | [diff] [blame] | 4192 | notrace unsigned long get_parent_ip(unsigned long addr) |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4193 | { |
| 4194 | if (in_lock_functions(addr)) { |
| 4195 | addr = CALLER_ADDR2; |
| 4196 | if (in_lock_functions(addr)) |
| 4197 | addr = CALLER_ADDR3; |
| 4198 | } |
| 4199 | return addr; |
| 4200 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4201 | |
Steven Rostedt | 7e49fcc | 2009-01-22 19:01:40 -0500 | [diff] [blame] | 4202 | #if defined(CONFIG_PREEMPT) && (defined(CONFIG_DEBUG_PREEMPT) || \ |
| 4203 | defined(CONFIG_PREEMPT_TRACER)) |
| 4204 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 4205 | void __kprobes add_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4206 | { |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4207 | #ifdef CONFIG_DEBUG_PREEMPT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4208 | /* |
| 4209 | * Underflow? |
| 4210 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4211 | if (DEBUG_LOCKS_WARN_ON((preempt_count() < 0))) |
| 4212 | return; |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4213 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4214 | preempt_count() += val; |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4215 | #ifdef CONFIG_DEBUG_PREEMPT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4216 | /* |
| 4217 | * Spinlock count overflowing soon? |
| 4218 | */ |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 4219 | DEBUG_LOCKS_WARN_ON((preempt_count() & PREEMPT_MASK) >= |
| 4220 | PREEMPT_MASK - 10); |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4221 | #endif |
| 4222 | if (preempt_count() == val) |
| 4223 | trace_preempt_off(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4224 | } |
| 4225 | EXPORT_SYMBOL(add_preempt_count); |
| 4226 | |
Srinivasa Ds | 4362758 | 2008-02-23 15:24:04 -0800 | [diff] [blame] | 4227 | void __kprobes sub_preempt_count(int val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4228 | { |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4229 | #ifdef CONFIG_DEBUG_PREEMPT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4230 | /* |
| 4231 | * Underflow? |
| 4232 | */ |
Ingo Molnar | 01e3eb8 | 2009-01-12 13:00:50 +0100 | [diff] [blame] | 4233 | if (DEBUG_LOCKS_WARN_ON(val > preempt_count())) |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4234 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4235 | /* |
| 4236 | * Is the spinlock portion underflowing? |
| 4237 | */ |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4238 | if (DEBUG_LOCKS_WARN_ON((val < PREEMPT_MASK) && |
| 4239 | !(preempt_count() & PREEMPT_MASK))) |
| 4240 | return; |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4241 | #endif |
Ingo Molnar | 9a11b49a | 2006-07-03 00:24:33 -0700 | [diff] [blame] | 4242 | |
Steven Rostedt | 6cd8a4b | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 4243 | if (preempt_count() == val) |
| 4244 | trace_preempt_on(CALLER_ADDR0, get_parent_ip(CALLER_ADDR1)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4245 | preempt_count() -= val; |
| 4246 | } |
| 4247 | EXPORT_SYMBOL(sub_preempt_count); |
| 4248 | |
| 4249 | #endif |
| 4250 | |
| 4251 | /* |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4252 | * Print scheduling while atomic bug: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4253 | */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4254 | static noinline void __schedule_bug(struct task_struct *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4255 | { |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 4256 | struct pt_regs *regs = get_irq_regs(); |
| 4257 | |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 4258 | printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n", |
| 4259 | prev->comm, prev->pid, preempt_count()); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 4260 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4261 | debug_show_held_locks(prev); |
Arjan van de Ven | e21f5b1 | 2008-05-23 09:05:58 -0700 | [diff] [blame] | 4262 | print_modules(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4263 | if (irqs_disabled()) |
| 4264 | print_irqtrace_events(prev); |
Satyam Sharma | 838225b | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 4265 | |
| 4266 | if (regs) |
| 4267 | show_regs(regs); |
| 4268 | else |
| 4269 | dump_stack(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4270 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4271 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4272 | /* |
| 4273 | * Various schedule()-time debugging checks and statistics: |
| 4274 | */ |
| 4275 | static inline void schedule_debug(struct task_struct *prev) |
| 4276 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4277 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4278 | * Test if we are atomic. Since do_exit() needs to call into |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | * schedule() atomically, we ignore that path for now. |
| 4280 | * Otherwise, whine if we are scheduling when we should not be. |
| 4281 | */ |
Roel Kluin | 3f33a7c | 2008-05-13 23:44:11 +0200 | [diff] [blame] | 4282 | if (unlikely(in_atomic_preempt_off() && !prev->exit_state)) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4283 | __schedule_bug(prev); |
| 4284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4285 | profile_hit(SCHED_PROFILING, __builtin_return_address(0)); |
| 4286 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4287 | schedstat_inc(this_rq(), sched_count); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4288 | } |
| 4289 | |
Peter Zijlstra | 6cecd08 | 2009-11-30 13:00:37 +0100 | [diff] [blame] | 4290 | static void put_prev_task(struct rq *rq, struct task_struct *prev) |
Mike Galbraith | df1c99d | 2009-03-10 19:08:11 +0100 | [diff] [blame] | 4291 | { |
Mike Galbraith | 61eadef | 2011-04-29 08:36:50 +0200 | [diff] [blame] | 4292 | if (prev->on_rq || rq->skip_clock_update < 0) |
Mike Galbraith | a64692a | 2010-03-11 17:16:20 +0100 | [diff] [blame] | 4293 | update_rq_clock(rq); |
Peter Zijlstra | 6cecd08 | 2009-11-30 13:00:37 +0100 | [diff] [blame] | 4294 | prev->sched_class->put_prev_task(rq, prev); |
Mike Galbraith | df1c99d | 2009-03-10 19:08:11 +0100 | [diff] [blame] | 4295 | } |
| 4296 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4297 | /* |
| 4298 | * Pick up the highest-prio task: |
| 4299 | */ |
| 4300 | static inline struct task_struct * |
Wang Chen | b67802e | 2009-03-02 13:55:26 +0800 | [diff] [blame] | 4301 | pick_next_task(struct rq *rq) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4302 | { |
Ingo Molnar | 5522d5d | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 4303 | const struct sched_class *class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4304 | struct task_struct *p; |
| 4305 | |
| 4306 | /* |
| 4307 | * Optimization: we know that if all tasks are in |
| 4308 | * the fair class we can call that function directly: |
| 4309 | */ |
Paul Turner | 953bfcd | 2011-07-21 09:43:27 -0700 | [diff] [blame] | 4310 | if (likely(rq->nr_running == rq->cfs.h_nr_running)) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4311 | p = fair_sched_class.pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4312 | if (likely(p)) |
| 4313 | return p; |
| 4314 | } |
| 4315 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 4316 | for_each_class(class) { |
Ingo Molnar | fb8d472 | 2007-08-09 11:16:48 +0200 | [diff] [blame] | 4317 | p = class->pick_next_task(rq); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4318 | if (p) |
| 4319 | return p; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4320 | } |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 4321 | |
| 4322 | BUG(); /* the idle class will always have a runnable task */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4323 | } |
| 4324 | |
| 4325 | /* |
| 4326 | * schedule() is the main scheduler function. |
| 4327 | */ |
Peter Zijlstra | ff74334 | 2009-03-13 12:21:26 +0100 | [diff] [blame] | 4328 | asmlinkage void __sched schedule(void) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4329 | { |
| 4330 | struct task_struct *prev, *next; |
Harvey Harrison | 67ca7bd | 2008-02-15 09:56:36 -0800 | [diff] [blame] | 4331 | unsigned long *switch_count; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4332 | struct rq *rq; |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 4333 | int cpu; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4334 | |
Peter Zijlstra | ff74334 | 2009-03-13 12:21:26 +0100 | [diff] [blame] | 4335 | need_resched: |
| 4336 | preempt_disable(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4337 | cpu = smp_processor_id(); |
| 4338 | rq = cpu_rq(cpu); |
Paul E. McKenney | 25502a6 | 2010-04-01 17:37:01 -0700 | [diff] [blame] | 4339 | rcu_note_context_switch(cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4340 | prev = rq->curr; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4341 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4342 | schedule_debug(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4343 | |
Peter Zijlstra | 3165651 | 2008-07-18 18:01:23 +0200 | [diff] [blame] | 4344 | if (sched_feat(HRTICK)) |
Mike Galbraith | f333fdc | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 4345 | hrtick_clear(rq); |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4346 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 4347 | raw_spin_lock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4348 | |
Oleg Nesterov | 246d86b | 2010-05-19 14:57:11 +0200 | [diff] [blame] | 4349 | switch_count = &prev->nivcsw; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4350 | if (prev->state && !(preempt_count() & PREEMPT_ACTIVE)) { |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 4351 | if (unlikely(signal_pending_state(prev->state, prev))) { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4352 | prev->state = TASK_RUNNING; |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 4353 | } else { |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 4354 | deactivate_task(rq, prev, DEQUEUE_SLEEP); |
| 4355 | prev->on_rq = 0; |
| 4356 | |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 4357 | /* |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 4358 | * If a worker went to sleep, notify and ask workqueue |
| 4359 | * whether it wants to wake up a task to maintain |
| 4360 | * concurrency. |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 4361 | */ |
| 4362 | if (prev->flags & PF_WQ_WORKER) { |
| 4363 | struct task_struct *to_wakeup; |
| 4364 | |
| 4365 | to_wakeup = wq_worker_sleeping(prev, cpu); |
| 4366 | if (to_wakeup) |
| 4367 | try_to_wake_up_local(to_wakeup); |
| 4368 | } |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 4369 | |
Linus Torvalds | 6631e63 | 2011-04-13 08:08:20 -0700 | [diff] [blame] | 4370 | /* |
Peter Zijlstra | 2acca55 | 2011-04-05 17:23:50 +0200 | [diff] [blame] | 4371 | * If we are going to sleep and we have plugged IO |
| 4372 | * queued, make sure to submit it to avoid deadlocks. |
Linus Torvalds | 6631e63 | 2011-04-13 08:08:20 -0700 | [diff] [blame] | 4373 | */ |
| 4374 | if (blk_needs_flush_plug(prev)) { |
| 4375 | raw_spin_unlock(&rq->lock); |
Jens Axboe | a237c1c | 2011-04-16 13:27:55 +0200 | [diff] [blame] | 4376 | blk_schedule_flush_plug(prev); |
Linus Torvalds | 6631e63 | 2011-04-13 08:08:20 -0700 | [diff] [blame] | 4377 | raw_spin_lock(&rq->lock); |
| 4378 | } |
Tejun Heo | 21aa9af | 2010-06-08 21:40:37 +0200 | [diff] [blame] | 4379 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4380 | switch_count = &prev->nvcsw; |
| 4381 | } |
| 4382 | |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 4383 | pre_schedule(rq, prev); |
Steven Rostedt | f65eda4 | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 4384 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4385 | if (unlikely(!rq->nr_running)) |
| 4386 | idle_balance(cpu, rq); |
| 4387 | |
Mike Galbraith | df1c99d | 2009-03-10 19:08:11 +0100 | [diff] [blame] | 4388 | put_prev_task(rq, prev); |
Wang Chen | b67802e | 2009-03-02 13:55:26 +0800 | [diff] [blame] | 4389 | next = pick_next_task(rq); |
Mike Galbraith | f26f9af | 2010-12-08 11:05:42 +0100 | [diff] [blame] | 4390 | clear_tsk_need_resched(prev); |
| 4391 | rq->skip_clock_update = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4393 | if (likely(prev != next)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4394 | rq->nr_switches++; |
| 4395 | rq->curr = next; |
| 4396 | ++*switch_count; |
| 4397 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4398 | context_switch(rq, prev, next); /* unlocks the rq */ |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4399 | /* |
Oleg Nesterov | 246d86b | 2010-05-19 14:57:11 +0200 | [diff] [blame] | 4400 | * The context switch have flipped the stack from under us |
| 4401 | * and restored the local variables which were saved when |
| 4402 | * this task called schedule() in the past. prev == current |
| 4403 | * is still correct, but it can be moved to another cpu/rq. |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 4404 | */ |
| 4405 | cpu = smp_processor_id(); |
| 4406 | rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4407 | } else |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 4408 | raw_spin_unlock_irq(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4409 | |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 4410 | post_schedule(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4411 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | preempt_enable_no_resched(); |
Peter Zijlstra | ff74334 | 2009-03-13 12:21:26 +0100 | [diff] [blame] | 4413 | if (need_resched()) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | goto need_resched; |
| 4415 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4416 | EXPORT_SYMBOL(schedule); |
| 4417 | |
Frederic Weisbecker | c08f782 | 2009-12-02 20:49:17 +0100 | [diff] [blame] | 4418 | #ifdef CONFIG_MUTEX_SPIN_ON_OWNER |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4419 | |
| 4420 | static inline bool owner_running(struct mutex *lock, struct task_struct *owner) |
| 4421 | { |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4422 | if (lock->owner != owner) |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4423 | return false; |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4424 | |
| 4425 | /* |
| 4426 | * Ensure we emit the owner->on_cpu, dereference _after_ checking |
| 4427 | * lock->owner still matches owner, if that fails, owner might |
| 4428 | * point to free()d memory, if it still matches, the rcu_read_lock() |
| 4429 | * ensures the memory stays valid. |
| 4430 | */ |
| 4431 | barrier(); |
| 4432 | |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4433 | return owner->on_cpu; |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4434 | } |
| 4435 | |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4436 | /* |
| 4437 | * Look out! "owner" is an entirely speculative pointer |
| 4438 | * access and not reliable. |
| 4439 | */ |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4440 | int mutex_spin_on_owner(struct mutex *lock, struct task_struct *owner) |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4441 | { |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4442 | if (!sched_feat(OWNER_SPIN)) |
| 4443 | return 0; |
| 4444 | |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4445 | rcu_read_lock(); |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4446 | while (owner_running(lock, owner)) { |
| 4447 | if (need_resched()) |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4448 | break; |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4449 | |
Gerald Schaefer | 335d7af | 2010-11-22 15:47:36 +0100 | [diff] [blame] | 4450 | arch_mutex_cpu_relax(); |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4451 | } |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4452 | rcu_read_unlock(); |
Benjamin Herrenschmidt | 4b40221 | 2010-04-16 23:20:00 +0200 | [diff] [blame] | 4453 | |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4454 | /* |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4455 | * We break out the loop above on need_resched() and when the |
| 4456 | * owner changed, which is a sign for heavy contention. Return |
| 4457 | * success only when lock->owner is NULL. |
Peter Zijlstra | c6eb3dd | 2011-04-05 17:23:41 +0200 | [diff] [blame] | 4458 | */ |
Thomas Gleixner | 307bf98 | 2011-06-10 15:08:55 +0200 | [diff] [blame] | 4459 | return lock->owner == NULL; |
Peter Zijlstra | 0d66bf6 | 2009-01-12 14:01:47 +0100 | [diff] [blame] | 4460 | } |
| 4461 | #endif |
| 4462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4463 | #ifdef CONFIG_PREEMPT |
| 4464 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4465 | * this is the entry point to schedule() from in-kernel preemption |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4466 | * off of preempt_enable. Kernel preemptions off return from interrupt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4467 | * occur there and call schedule directly. |
| 4468 | */ |
Steven Rostedt | d1f74e2 | 2010-06-02 21:52:29 -0400 | [diff] [blame] | 4469 | asmlinkage void __sched notrace preempt_schedule(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4470 | { |
| 4471 | struct thread_info *ti = current_thread_info(); |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4472 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4473 | /* |
| 4474 | * If there is a non-zero preempt_count or interrupts are disabled, |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4475 | * we do not want to preempt the current task. Just return.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4476 | */ |
Nick Piggin | beed33a | 2006-10-11 01:21:52 -0700 | [diff] [blame] | 4477 | if (likely(ti->preempt_count || irqs_disabled())) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4478 | return; |
| 4479 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4480 | do { |
Steven Rostedt | d1f74e2 | 2010-06-02 21:52:29 -0400 | [diff] [blame] | 4481 | add_preempt_count_notrace(PREEMPT_ACTIVE); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4482 | schedule(); |
Steven Rostedt | d1f74e2 | 2010-06-02 21:52:29 -0400 | [diff] [blame] | 4483 | sub_preempt_count_notrace(PREEMPT_ACTIVE); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4484 | |
| 4485 | /* |
| 4486 | * Check again in case we missed a preemption opportunity |
| 4487 | * between schedule and now. |
| 4488 | */ |
| 4489 | barrier(); |
Lai Jiangshan | 5ed0cec | 2009-03-06 19:40:20 +0800 | [diff] [blame] | 4490 | } while (need_resched()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4492 | EXPORT_SYMBOL(preempt_schedule); |
| 4493 | |
| 4494 | /* |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4495 | * this is the entry point to schedule() from kernel preemption |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | * off of irq context. |
| 4497 | * Note, that this is called and return with irqs disabled. This will |
| 4498 | * protect us against recursive calling from irq. |
| 4499 | */ |
| 4500 | asmlinkage void __sched preempt_schedule_irq(void) |
| 4501 | { |
| 4502 | struct thread_info *ti = current_thread_info(); |
Ingo Molnar | 6478d88 | 2008-01-25 21:08:33 +0100 | [diff] [blame] | 4503 | |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 4504 | /* Catch callers which need to be fixed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4505 | BUG_ON(ti->preempt_count || !irqs_disabled()); |
| 4506 | |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4507 | do { |
| 4508 | add_preempt_count(PREEMPT_ACTIVE); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4509 | local_irq_enable(); |
| 4510 | schedule(); |
| 4511 | local_irq_disable(); |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4512 | sub_preempt_count(PREEMPT_ACTIVE); |
| 4513 | |
| 4514 | /* |
| 4515 | * Check again in case we missed a preemption opportunity |
| 4516 | * between schedule and now. |
| 4517 | */ |
| 4518 | barrier(); |
Lai Jiangshan | 5ed0cec | 2009-03-06 19:40:20 +0800 | [diff] [blame] | 4519 | } while (need_resched()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4520 | } |
| 4521 | |
| 4522 | #endif /* CONFIG_PREEMPT */ |
| 4523 | |
Peter Zijlstra | 63859d4 | 2009-09-15 19:14:42 +0200 | [diff] [blame] | 4524 | int default_wake_function(wait_queue_t *curr, unsigned mode, int wake_flags, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4525 | void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4526 | { |
Peter Zijlstra | 63859d4 | 2009-09-15 19:14:42 +0200 | [diff] [blame] | 4527 | return try_to_wake_up(curr->private, mode, wake_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4528 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4529 | EXPORT_SYMBOL(default_wake_function); |
| 4530 | |
| 4531 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4532 | * The core wakeup function. Non-exclusive wakeups (nr_exclusive == 0) just |
| 4533 | * 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] | 4534 | * number) then we wake all the non-exclusive tasks and one exclusive task. |
| 4535 | * |
| 4536 | * 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] | 4537 | * 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] | 4538 | * zero in this (rare) case, and we handle it by continuing to scan the queue. |
| 4539 | */ |
Johannes Weiner | 78ddb08 | 2009-04-14 16:53:05 +0200 | [diff] [blame] | 4540 | static void __wake_up_common(wait_queue_head_t *q, unsigned int mode, |
Peter Zijlstra | 63859d4 | 2009-09-15 19:14:42 +0200 | [diff] [blame] | 4541 | int nr_exclusive, int wake_flags, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4542 | { |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4543 | wait_queue_t *curr, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4544 | |
Matthias Kaehlcke | 2e45874 | 2007-10-15 17:00:02 +0200 | [diff] [blame] | 4545 | list_for_each_entry_safe(curr, next, &q->task_list, task_list) { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4546 | unsigned flags = curr->flags; |
| 4547 | |
Peter Zijlstra | 63859d4 | 2009-09-15 19:14:42 +0200 | [diff] [blame] | 4548 | if (curr->func(curr, mode, wake_flags, key) && |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 4549 | (flags & WQ_FLAG_EXCLUSIVE) && !--nr_exclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4550 | break; |
| 4551 | } |
| 4552 | } |
| 4553 | |
| 4554 | /** |
| 4555 | * __wake_up - wake up threads blocked on a waitqueue. |
| 4556 | * @q: the waitqueue |
| 4557 | * @mode: which threads |
| 4558 | * @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] | 4559 | * @key: is directly passed to the wakeup function |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 4560 | * |
| 4561 | * It may be assumed that this function implies a write memory barrier before |
| 4562 | * changing the task state if and only if any tasks are woken up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4564 | void __wake_up(wait_queue_head_t *q, unsigned int mode, |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4565 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4566 | { |
| 4567 | unsigned long flags; |
| 4568 | |
| 4569 | spin_lock_irqsave(&q->lock, flags); |
| 4570 | __wake_up_common(q, mode, nr_exclusive, 0, key); |
| 4571 | spin_unlock_irqrestore(&q->lock, flags); |
| 4572 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4573 | EXPORT_SYMBOL(__wake_up); |
| 4574 | |
| 4575 | /* |
| 4576 | * Same as __wake_up but called with the spinlock in wait_queue_head_t held. |
| 4577 | */ |
Harvey Harrison | 7ad5b3a | 2008-02-08 04:19:53 -0800 | [diff] [blame] | 4578 | void __wake_up_locked(wait_queue_head_t *q, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | { |
| 4580 | __wake_up_common(q, mode, 1, 0, NULL); |
| 4581 | } |
Michal Nazarewicz | 22c43c8 | 2010-05-05 12:53:11 +0200 | [diff] [blame] | 4582 | EXPORT_SYMBOL_GPL(__wake_up_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4583 | |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4584 | void __wake_up_locked_key(wait_queue_head_t *q, unsigned int mode, void *key) |
| 4585 | { |
| 4586 | __wake_up_common(q, mode, 1, 0, key); |
| 4587 | } |
Trond Myklebust | bf294b4 | 2011-02-21 11:05:41 -0800 | [diff] [blame] | 4588 | EXPORT_SYMBOL_GPL(__wake_up_locked_key); |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4589 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4590 | /** |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4591 | * __wake_up_sync_key - wake up threads blocked on a waitqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | * @q: the waitqueue |
| 4593 | * @mode: which threads |
| 4594 | * @nr_exclusive: how many wake-one or wake-many threads to wake up |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4595 | * @key: opaque value to be passed to wakeup targets |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4596 | * |
| 4597 | * The sync wakeup differs that the waker knows that it will schedule |
| 4598 | * away soon, so while the target thread will be woken up, it will not |
| 4599 | * be migrated to another CPU - ie. the two threads are 'synchronized' |
| 4600 | * with each other. This can prevent needless bouncing between CPUs. |
| 4601 | * |
| 4602 | * On UP it can prevent extra preemption. |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 4603 | * |
| 4604 | * It may be assumed that this function implies a write memory barrier before |
| 4605 | * changing the task state if and only if any tasks are woken up. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4606 | */ |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4607 | void __wake_up_sync_key(wait_queue_head_t *q, unsigned int mode, |
| 4608 | int nr_exclusive, void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4609 | { |
| 4610 | unsigned long flags; |
Peter Zijlstra | 7d47872 | 2009-09-14 19:55:44 +0200 | [diff] [blame] | 4611 | int wake_flags = WF_SYNC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4612 | |
| 4613 | if (unlikely(!q)) |
| 4614 | return; |
| 4615 | |
| 4616 | if (unlikely(!nr_exclusive)) |
Peter Zijlstra | 7d47872 | 2009-09-14 19:55:44 +0200 | [diff] [blame] | 4617 | wake_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | |
| 4619 | spin_lock_irqsave(&q->lock, flags); |
Peter Zijlstra | 7d47872 | 2009-09-14 19:55:44 +0200 | [diff] [blame] | 4620 | __wake_up_common(q, mode, nr_exclusive, wake_flags, key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4621 | spin_unlock_irqrestore(&q->lock, flags); |
| 4622 | } |
Davide Libenzi | 4ede816 | 2009-03-31 15:24:20 -0700 | [diff] [blame] | 4623 | EXPORT_SYMBOL_GPL(__wake_up_sync_key); |
| 4624 | |
| 4625 | /* |
| 4626 | * __wake_up_sync - see __wake_up_sync_key() |
| 4627 | */ |
| 4628 | void __wake_up_sync(wait_queue_head_t *q, unsigned int mode, int nr_exclusive) |
| 4629 | { |
| 4630 | __wake_up_sync_key(q, mode, nr_exclusive, NULL); |
| 4631 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4632 | EXPORT_SYMBOL_GPL(__wake_up_sync); /* For internal use only */ |
| 4633 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4634 | /** |
| 4635 | * complete: - signals a single thread waiting on this completion |
| 4636 | * @x: holds the state of this particular completion |
| 4637 | * |
| 4638 | * This will wake up a single thread waiting on this completion. Threads will be |
| 4639 | * awakened in the same order in which they were queued. |
| 4640 | * |
| 4641 | * See also complete_all(), wait_for_completion() and related routines. |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 4642 | * |
| 4643 | * It may be assumed that this function implies a write memory barrier before |
| 4644 | * changing the task state if and only if any tasks are woken up. |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4645 | */ |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4646 | void complete(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4647 | { |
| 4648 | unsigned long flags; |
| 4649 | |
| 4650 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4651 | x->done++; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4652 | __wake_up_common(&x->wait, TASK_NORMAL, 1, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4653 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4654 | } |
| 4655 | EXPORT_SYMBOL(complete); |
| 4656 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4657 | /** |
| 4658 | * complete_all: - signals all threads waiting on this completion |
| 4659 | * @x: holds the state of this particular completion |
| 4660 | * |
| 4661 | * This will wake up all threads waiting on this particular completion event. |
David Howells | 50fa610 | 2009-04-28 15:01:38 +0100 | [diff] [blame] | 4662 | * |
| 4663 | * It may be assumed that this function implies a write memory barrier before |
| 4664 | * changing the task state if and only if any tasks are woken up. |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4665 | */ |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4666 | void complete_all(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4667 | { |
| 4668 | unsigned long flags; |
| 4669 | |
| 4670 | spin_lock_irqsave(&x->wait.lock, flags); |
| 4671 | x->done += UINT_MAX/2; |
Matthew Wilcox | d9514f6 | 2007-12-06 11:07:07 -0500 | [diff] [blame] | 4672 | __wake_up_common(&x->wait, TASK_NORMAL, 0, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | spin_unlock_irqrestore(&x->wait.lock, flags); |
| 4674 | } |
| 4675 | EXPORT_SYMBOL(complete_all); |
| 4676 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4677 | static inline long __sched |
| 4678 | do_wait_for_common(struct completion *x, long timeout, int state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4679 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4680 | if (!x->done) { |
| 4681 | DECLARE_WAITQUEUE(wait, current); |
| 4682 | |
Changli Gao | a93d2f1 | 2010-05-07 14:33:26 +0800 | [diff] [blame] | 4683 | __add_wait_queue_tail_exclusive(&x->wait, &wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4684 | do { |
Oleg Nesterov | 94d3d82 | 2008-08-20 16:54:41 -0700 | [diff] [blame] | 4685 | if (signal_pending_state(state, current)) { |
Oleg Nesterov | ea71a54 | 2008-06-20 18:32:20 +0400 | [diff] [blame] | 4686 | timeout = -ERESTARTSYS; |
| 4687 | break; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4688 | } |
| 4689 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4690 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4691 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4692 | spin_lock_irq(&x->wait.lock); |
Oleg Nesterov | ea71a54 | 2008-06-20 18:32:20 +0400 | [diff] [blame] | 4693 | } while (!x->done && timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4694 | __remove_wait_queue(&x->wait, &wait); |
Oleg Nesterov | ea71a54 | 2008-06-20 18:32:20 +0400 | [diff] [blame] | 4695 | if (!x->done) |
| 4696 | return timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4697 | } |
| 4698 | x->done--; |
Oleg Nesterov | ea71a54 | 2008-06-20 18:32:20 +0400 | [diff] [blame] | 4699 | return timeout ?: 1; |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4700 | } |
| 4701 | |
| 4702 | static long __sched |
| 4703 | wait_for_common(struct completion *x, long timeout, int state) |
| 4704 | { |
| 4705 | might_sleep(); |
| 4706 | |
| 4707 | spin_lock_irq(&x->wait.lock); |
| 4708 | timeout = do_wait_for_common(x, timeout, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4709 | spin_unlock_irq(&x->wait.lock); |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4710 | return timeout; |
| 4711 | } |
| 4712 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4713 | /** |
| 4714 | * wait_for_completion: - waits for completion of a task |
| 4715 | * @x: holds the state of this particular completion |
| 4716 | * |
| 4717 | * This waits to be signaled for completion of a specific task. It is NOT |
| 4718 | * interruptible and there is no timeout. |
| 4719 | * |
| 4720 | * See also similar routines (i.e. wait_for_completion_timeout()) with timeout |
| 4721 | * and interrupt capability. Also see complete(). |
| 4722 | */ |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4723 | void __sched wait_for_completion(struct completion *x) |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4724 | { |
| 4725 | wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4726 | } |
| 4727 | EXPORT_SYMBOL(wait_for_completion); |
| 4728 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4729 | /** |
| 4730 | * wait_for_completion_timeout: - waits for completion of a task (w/timeout) |
| 4731 | * @x: holds the state of this particular completion |
| 4732 | * @timeout: timeout value in jiffies |
| 4733 | * |
| 4734 | * This waits for either a completion of a specific task to be signaled or for a |
| 4735 | * specified timeout to expire. The timeout is in jiffies. It is not |
| 4736 | * interruptible. |
| 4737 | */ |
Ingo Molnar | b15136e | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 4738 | unsigned long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4739 | wait_for_completion_timeout(struct completion *x, unsigned long timeout) |
| 4740 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4741 | return wait_for_common(x, timeout, TASK_UNINTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4742 | } |
| 4743 | EXPORT_SYMBOL(wait_for_completion_timeout); |
| 4744 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4745 | /** |
| 4746 | * wait_for_completion_interruptible: - waits for completion of a task (w/intr) |
| 4747 | * @x: holds the state of this particular completion |
| 4748 | * |
| 4749 | * This waits for completion of a specific task to be signaled. It is |
| 4750 | * interruptible. |
| 4751 | */ |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4752 | int __sched wait_for_completion_interruptible(struct completion *x) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | { |
Andi Kleen | 51e9799 | 2007-10-18 21:32:55 +0200 | [diff] [blame] | 4754 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_INTERRUPTIBLE); |
| 4755 | if (t == -ERESTARTSYS) |
| 4756 | return t; |
| 4757 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4758 | } |
| 4759 | EXPORT_SYMBOL(wait_for_completion_interruptible); |
| 4760 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4761 | /** |
| 4762 | * wait_for_completion_interruptible_timeout: - waits for completion (w/(to,intr)) |
| 4763 | * @x: holds the state of this particular completion |
| 4764 | * @timeout: timeout value in jiffies |
| 4765 | * |
| 4766 | * This waits for either a completion of a specific task to be signaled or for a |
| 4767 | * specified timeout to expire. It is interruptible. The timeout is in jiffies. |
| 4768 | */ |
NeilBrown | 6bf4123 | 2011-01-05 12:50:16 +1100 | [diff] [blame] | 4769 | long __sched |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4770 | wait_for_completion_interruptible_timeout(struct completion *x, |
| 4771 | unsigned long timeout) |
| 4772 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4773 | return wait_for_common(x, timeout, TASK_INTERRUPTIBLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4774 | } |
| 4775 | EXPORT_SYMBOL(wait_for_completion_interruptible_timeout); |
| 4776 | |
Kevin Diggs | 65eb3dc | 2008-08-26 10:26:54 +0200 | [diff] [blame] | 4777 | /** |
| 4778 | * wait_for_completion_killable: - waits for completion of a task (killable) |
| 4779 | * @x: holds the state of this particular completion |
| 4780 | * |
| 4781 | * This waits to be signaled for completion of a specific task. It can be |
| 4782 | * interrupted by a kill signal. |
| 4783 | */ |
Matthew Wilcox | 009e577 | 2007-12-06 12:29:54 -0500 | [diff] [blame] | 4784 | int __sched wait_for_completion_killable(struct completion *x) |
| 4785 | { |
| 4786 | long t = wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_KILLABLE); |
| 4787 | if (t == -ERESTARTSYS) |
| 4788 | return t; |
| 4789 | return 0; |
| 4790 | } |
| 4791 | EXPORT_SYMBOL(wait_for_completion_killable); |
| 4792 | |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4793 | /** |
Sage Weil | 0aa12fb | 2010-05-29 09:12:30 -0700 | [diff] [blame] | 4794 | * wait_for_completion_killable_timeout: - waits for completion of a task (w/(to,killable)) |
| 4795 | * @x: holds the state of this particular completion |
| 4796 | * @timeout: timeout value in jiffies |
| 4797 | * |
| 4798 | * This waits for either a completion of a specific task to be |
| 4799 | * signaled or for a specified timeout to expire. It can be |
| 4800 | * interrupted by a kill signal. The timeout is in jiffies. |
| 4801 | */ |
NeilBrown | 6bf4123 | 2011-01-05 12:50:16 +1100 | [diff] [blame] | 4802 | long __sched |
Sage Weil | 0aa12fb | 2010-05-29 09:12:30 -0700 | [diff] [blame] | 4803 | wait_for_completion_killable_timeout(struct completion *x, |
| 4804 | unsigned long timeout) |
| 4805 | { |
| 4806 | return wait_for_common(x, timeout, TASK_KILLABLE); |
| 4807 | } |
| 4808 | EXPORT_SYMBOL(wait_for_completion_killable_timeout); |
| 4809 | |
| 4810 | /** |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4811 | * try_wait_for_completion - try to decrement a completion without blocking |
| 4812 | * @x: completion structure |
| 4813 | * |
| 4814 | * Returns: 0 if a decrement cannot be done without blocking |
| 4815 | * 1 if a decrement succeeded. |
| 4816 | * |
| 4817 | * If a completion is being used as a counting completion, |
| 4818 | * attempt to decrement the counter without blocking. This |
| 4819 | * enables us to avoid waiting if the resource the completion |
| 4820 | * is protecting is not available. |
| 4821 | */ |
| 4822 | bool try_wait_for_completion(struct completion *x) |
| 4823 | { |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4824 | unsigned long flags; |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4825 | int ret = 1; |
| 4826 | |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4827 | spin_lock_irqsave(&x->wait.lock, flags); |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4828 | if (!x->done) |
| 4829 | ret = 0; |
| 4830 | else |
| 4831 | x->done--; |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4832 | spin_unlock_irqrestore(&x->wait.lock, flags); |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4833 | return ret; |
| 4834 | } |
| 4835 | EXPORT_SYMBOL(try_wait_for_completion); |
| 4836 | |
| 4837 | /** |
| 4838 | * completion_done - Test to see if a completion has any waiters |
| 4839 | * @x: completion structure |
| 4840 | * |
| 4841 | * Returns: 0 if there are waiters (wait_for_completion() in progress) |
| 4842 | * 1 if there are no waiters. |
| 4843 | * |
| 4844 | */ |
| 4845 | bool completion_done(struct completion *x) |
| 4846 | { |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4847 | unsigned long flags; |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4848 | int ret = 1; |
| 4849 | |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4850 | spin_lock_irqsave(&x->wait.lock, flags); |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4851 | if (!x->done) |
| 4852 | ret = 0; |
Rafael J. Wysocki | 7539a3b | 2009-12-13 00:07:30 +0100 | [diff] [blame] | 4853 | spin_unlock_irqrestore(&x->wait.lock, flags); |
Dave Chinner | be4de35 | 2008-08-15 00:40:44 -0700 | [diff] [blame] | 4854 | return ret; |
| 4855 | } |
| 4856 | EXPORT_SYMBOL(completion_done); |
| 4857 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4858 | static long __sched |
| 4859 | sleep_on_common(wait_queue_head_t *q, int state, long timeout) |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4860 | { |
| 4861 | unsigned long flags; |
| 4862 | wait_queue_t wait; |
| 4863 | |
| 4864 | init_waitqueue_entry(&wait, current); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4865 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4866 | __set_current_state(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4867 | |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4868 | spin_lock_irqsave(&q->lock, flags); |
| 4869 | __add_wait_queue(q, &wait); |
| 4870 | spin_unlock(&q->lock); |
| 4871 | timeout = schedule_timeout(timeout); |
| 4872 | spin_lock_irq(&q->lock); |
| 4873 | __remove_wait_queue(q, &wait); |
| 4874 | spin_unlock_irqrestore(&q->lock, flags); |
| 4875 | |
| 4876 | return timeout; |
| 4877 | } |
| 4878 | |
| 4879 | void __sched interruptible_sleep_on(wait_queue_head_t *q) |
| 4880 | { |
| 4881 | sleep_on_common(q, TASK_INTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4882 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4883 | EXPORT_SYMBOL(interruptible_sleep_on); |
| 4884 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4885 | long __sched |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 4886 | interruptible_sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4887 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4888 | return sleep_on_common(q, TASK_INTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4889 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4890 | EXPORT_SYMBOL(interruptible_sleep_on_timeout); |
| 4891 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4892 | void __sched sleep_on(wait_queue_head_t *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4893 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4894 | sleep_on_common(q, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4895 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4896 | EXPORT_SYMBOL(sleep_on); |
| 4897 | |
Ingo Molnar | 0fec171 | 2007-07-09 18:52:01 +0200 | [diff] [blame] | 4898 | long __sched sleep_on_timeout(wait_queue_head_t *q, long timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4899 | { |
Andi Kleen | 8cbbe86 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 4900 | return sleep_on_common(q, TASK_UNINTERRUPTIBLE, timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4901 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4902 | EXPORT_SYMBOL(sleep_on_timeout); |
| 4903 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4904 | #ifdef CONFIG_RT_MUTEXES |
| 4905 | |
| 4906 | /* |
| 4907 | * rt_mutex_setprio - set the current priority of a task |
| 4908 | * @p: task |
| 4909 | * @prio: prio value (kernel-internal form) |
| 4910 | * |
| 4911 | * This function changes the 'effective' priority of a task. It does |
| 4912 | * not touch ->normal_prio like __setscheduler(). |
| 4913 | * |
| 4914 | * Used by the rt_mutex code to implement priority inheritance logic. |
| 4915 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4916 | void rt_mutex_setprio(struct task_struct *p, int prio) |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4917 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 4918 | int oldprio, on_rq, running; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4919 | struct rq *rq; |
Thomas Gleixner | 83ab0aa | 2010-02-17 09:05:48 +0100 | [diff] [blame] | 4920 | const struct sched_class *prev_class; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4921 | |
| 4922 | BUG_ON(prio < 0 || prio > MAX_PRIO); |
| 4923 | |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 4924 | rq = __task_rq_lock(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4925 | |
Steven Rostedt | a802707 | 2010-09-20 15:13:34 -0400 | [diff] [blame] | 4926 | trace_sched_pi_setprio(p, prio); |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4927 | oldprio = p->prio; |
Thomas Gleixner | 83ab0aa | 2010-02-17 09:05:48 +0100 | [diff] [blame] | 4928 | prev_class = p->sched_class; |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 4929 | on_rq = p->on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 4930 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4931 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4932 | dequeue_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4933 | if (running) |
| 4934 | p->sched_class->put_prev_task(rq, p); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4935 | |
| 4936 | if (rt_prio(prio)) |
| 4937 | p->sched_class = &rt_sched_class; |
| 4938 | else |
| 4939 | p->sched_class = &fair_sched_class; |
| 4940 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4941 | p->prio = prio; |
| 4942 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 4943 | if (running) |
| 4944 | p->sched_class->set_curr_task(rq); |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 4945 | if (on_rq) |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 4946 | enqueue_task(rq, p, oldprio < prio ? ENQUEUE_HEAD : 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 4947 | |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 4948 | check_class_changed(rq, p, prev_class, oldprio); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 4949 | __task_rq_unlock(rq); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4950 | } |
| 4951 | |
| 4952 | #endif |
| 4953 | |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 4954 | void set_user_nice(struct task_struct *p, long nice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4956 | int old_prio, delta, on_rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4957 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 4958 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4959 | |
| 4960 | if (TASK_NICE(p) == nice || nice < -20 || nice > 19) |
| 4961 | return; |
| 4962 | /* |
| 4963 | * We have to be careful, if called from sys_setpriority(), |
| 4964 | * the task might be in the middle of scheduling on another CPU. |
| 4965 | */ |
| 4966 | rq = task_rq_lock(p, &flags); |
| 4967 | /* |
| 4968 | * The RT priorities are set via sched_setscheduler(), but we still |
| 4969 | * allow the 'normal' nice value to be set - but as expected |
| 4970 | * it wont have any effect on scheduling until the task is |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4971 | * SCHED_FIFO/SCHED_RR: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4972 | */ |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4973 | if (task_has_rt_policy(p)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | p->static_prio = NICE_TO_PRIO(nice); |
| 4975 | goto out_unlock; |
| 4976 | } |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 4977 | on_rq = p->on_rq; |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 4978 | if (on_rq) |
Ingo Molnar | 69be72c | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 4979 | dequeue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4981 | p->static_prio = NICE_TO_PRIO(nice); |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 4982 | set_load_weight(p); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 4983 | old_prio = p->prio; |
| 4984 | p->prio = effective_prio(p); |
| 4985 | delta = p->prio - old_prio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4986 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 4987 | if (on_rq) { |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 4988 | enqueue_task(rq, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | /* |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4990 | * If the task increased its priority or is running and |
| 4991 | * lowered its priority, then reschedule its CPU: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4992 | */ |
Andrew Morton | d5f9f94 | 2007-05-08 20:27:06 -0700 | [diff] [blame] | 4993 | if (delta < 0 || (delta > 0 && task_running(rq, p))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4994 | resched_task(rq->curr); |
| 4995 | } |
| 4996 | out_unlock: |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 4997 | task_rq_unlock(rq, p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4998 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4999 | EXPORT_SYMBOL(set_user_nice); |
| 5000 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 5001 | /* |
| 5002 | * can_nice - check if a task can reduce its nice value |
| 5003 | * @p: task |
| 5004 | * @nice: nice value |
| 5005 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5006 | int can_nice(const struct task_struct *p, const int nice) |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 5007 | { |
Matt Mackall | 024f474 | 2005-08-18 11:24:19 -0700 | [diff] [blame] | 5008 | /* convert nice value [19,-20] to rlimit style value [1,40] */ |
| 5009 | int nice_rlim = 20 - nice; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5010 | |
Jiri Slaby | 78d7d40 | 2010-03-05 13:42:54 -0800 | [diff] [blame] | 5011 | return (nice_rlim <= task_rlimit(p, RLIMIT_NICE) || |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 5012 | capable(CAP_SYS_NICE)); |
| 5013 | } |
| 5014 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5015 | #ifdef __ARCH_WANT_SYS_NICE |
| 5016 | |
| 5017 | /* |
| 5018 | * sys_nice - change the priority of the current process. |
| 5019 | * @increment: priority increment |
| 5020 | * |
| 5021 | * sys_setpriority is a more generic, but much slower function that |
| 5022 | * does similar things. |
| 5023 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5024 | SYSCALL_DEFINE1(nice, int, increment) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5025 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 5026 | long nice, retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | |
| 5028 | /* |
| 5029 | * Setpriority might change our priority at the same moment. |
| 5030 | * We don't have to worry. Conceptually one call occurs first |
| 5031 | * and we have a single winner. |
| 5032 | */ |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 5033 | if (increment < -40) |
| 5034 | increment = -40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5035 | if (increment > 40) |
| 5036 | increment = 40; |
| 5037 | |
Américo Wang | 2b8f836 | 2009-02-16 18:54:21 +0800 | [diff] [blame] | 5038 | nice = TASK_NICE(current) + increment; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | if (nice < -20) |
| 5040 | nice = -20; |
| 5041 | if (nice > 19) |
| 5042 | nice = 19; |
| 5043 | |
Matt Mackall | e43379f | 2005-05-01 08:59:00 -0700 | [diff] [blame] | 5044 | if (increment < 0 && !can_nice(current, nice)) |
| 5045 | return -EPERM; |
| 5046 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5047 | retval = security_task_setnice(current, nice); |
| 5048 | if (retval) |
| 5049 | return retval; |
| 5050 | |
| 5051 | set_user_nice(current, nice); |
| 5052 | return 0; |
| 5053 | } |
| 5054 | |
| 5055 | #endif |
| 5056 | |
| 5057 | /** |
| 5058 | * task_prio - return the priority value of a given task. |
| 5059 | * @p: the task in question. |
| 5060 | * |
| 5061 | * This is the priority value as seen by users in /proc. |
| 5062 | * RT tasks are offset by -200. Normal tasks are centered |
| 5063 | * around 0, value goes from -16 to +15. |
| 5064 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5065 | int task_prio(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5066 | { |
| 5067 | return p->prio - MAX_RT_PRIO; |
| 5068 | } |
| 5069 | |
| 5070 | /** |
| 5071 | * task_nice - return the nice value of a given task. |
| 5072 | * @p: the task in question. |
| 5073 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5074 | int task_nice(const struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | { |
| 5076 | return TASK_NICE(p); |
| 5077 | } |
Pavel Roskin | 150d8be | 2008-03-05 16:56:37 -0500 | [diff] [blame] | 5078 | EXPORT_SYMBOL(task_nice); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5079 | |
| 5080 | /** |
| 5081 | * idle_cpu - is a given cpu idle currently? |
| 5082 | * @cpu: the processor in question. |
| 5083 | */ |
| 5084 | int idle_cpu(int cpu) |
| 5085 | { |
| 5086 | return cpu_curr(cpu) == cpu_rq(cpu)->idle; |
| 5087 | } |
| 5088 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5089 | /** |
| 5090 | * idle_task - return the idle task for a given cpu. |
| 5091 | * @cpu: the processor in question. |
| 5092 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5093 | struct task_struct *idle_task(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5094 | { |
| 5095 | return cpu_rq(cpu)->idle; |
| 5096 | } |
| 5097 | |
| 5098 | /** |
| 5099 | * find_process_by_pid - find a process with a matching PID value. |
| 5100 | * @pid: the pid in question. |
| 5101 | */ |
Alexey Dobriyan | a995744 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5102 | static struct task_struct *find_process_by_pid(pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5103 | { |
Pavel Emelyanov | 228ebcb | 2007-10-18 23:40:16 -0700 | [diff] [blame] | 5104 | return pid ? find_task_by_vpid(pid) : current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5105 | } |
| 5106 | |
| 5107 | /* Actually do priority change: must hold rq lock. */ |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5108 | static void |
| 5109 | __setscheduler(struct rq *rq, struct task_struct *p, int policy, int prio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5110 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5111 | p->policy = policy; |
| 5112 | p->rt_priority = prio; |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5113 | p->normal_prio = normal_prio(p); |
| 5114 | /* we are holding p->pi_lock already */ |
| 5115 | p->prio = rt_mutex_getprio(p); |
Peter Zijlstra | ffd44db | 2009-11-10 20:12:01 +0100 | [diff] [blame] | 5116 | if (rt_prio(p->prio)) |
| 5117 | p->sched_class = &rt_sched_class; |
| 5118 | else |
| 5119 | p->sched_class = &fair_sched_class; |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 5120 | set_load_weight(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5121 | } |
| 5122 | |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5123 | /* |
| 5124 | * check the target process has a UID that matches the current process's |
| 5125 | */ |
| 5126 | static bool check_same_owner(struct task_struct *p) |
| 5127 | { |
| 5128 | const struct cred *cred = current_cred(), *pcred; |
| 5129 | bool match; |
| 5130 | |
| 5131 | rcu_read_lock(); |
| 5132 | pcred = __task_cred(p); |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 5133 | if (cred->user->user_ns == pcred->user->user_ns) |
| 5134 | match = (cred->euid == pcred->euid || |
| 5135 | cred->euid == pcred->uid); |
| 5136 | else |
| 5137 | match = false; |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5138 | rcu_read_unlock(); |
| 5139 | return match; |
| 5140 | } |
| 5141 | |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5142 | static int __sched_setscheduler(struct task_struct *p, int policy, |
KOSAKI Motohiro | fe7de49 | 2010-10-20 16:01:12 -0700 | [diff] [blame] | 5143 | const struct sched_param *param, bool user) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5144 | { |
Srivatsa Vaddagiri | 83b699e | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5145 | int retval, oldprio, oldpolicy = -1, on_rq, running; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5146 | unsigned long flags; |
Thomas Gleixner | 83ab0aa | 2010-02-17 09:05:48 +0100 | [diff] [blame] | 5147 | const struct sched_class *prev_class; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5148 | struct rq *rq; |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5149 | int reset_on_fork; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5150 | |
Steven Rostedt | 66e5393 | 2006-06-27 02:54:44 -0700 | [diff] [blame] | 5151 | /* may grab non-irq protected spin_locks */ |
| 5152 | BUG_ON(in_interrupt()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5153 | recheck: |
| 5154 | /* double check policy once rq lock held */ |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5155 | if (policy < 0) { |
| 5156 | reset_on_fork = p->sched_reset_on_fork; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5157 | policy = oldpolicy = p->policy; |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5158 | } else { |
| 5159 | reset_on_fork = !!(policy & SCHED_RESET_ON_FORK); |
| 5160 | policy &= ~SCHED_RESET_ON_FORK; |
| 5161 | |
| 5162 | if (policy != SCHED_FIFO && policy != SCHED_RR && |
| 5163 | policy != SCHED_NORMAL && policy != SCHED_BATCH && |
| 5164 | policy != SCHED_IDLE) |
| 5165 | return -EINVAL; |
| 5166 | } |
| 5167 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | /* |
| 5169 | * Valid priorities for SCHED_FIFO and SCHED_RR are |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5170 | * 1..MAX_USER_RT_PRIO-1, valid priority for SCHED_NORMAL, |
| 5171 | * SCHED_BATCH and SCHED_IDLE is 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5172 | */ |
| 5173 | if (param->sched_priority < 0 || |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5174 | (p->mm && param->sched_priority > MAX_USER_RT_PRIO-1) || |
Steven Rostedt | d46523e | 2005-07-25 16:28:39 -0400 | [diff] [blame] | 5175 | (!p->mm && param->sched_priority > MAX_RT_PRIO-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5176 | return -EINVAL; |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5177 | if (rt_policy(policy) != (param->sched_priority != 0)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5178 | return -EINVAL; |
| 5179 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 5180 | /* |
| 5181 | * Allow unprivileged RT tasks to decrease priority: |
| 5182 | */ |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5183 | if (user && !capable(CAP_SYS_NICE)) { |
Ingo Molnar | e05606d | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5184 | if (rt_policy(policy)) { |
Oleg Nesterov | a44702e | 2010-06-11 01:09:44 +0200 | [diff] [blame] | 5185 | unsigned long rlim_rtprio = |
| 5186 | task_rlimit(p, RLIMIT_RTPRIO); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 5187 | |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 5188 | /* can't set/change the rt policy */ |
| 5189 | if (policy != p->policy && !rlim_rtprio) |
| 5190 | return -EPERM; |
| 5191 | |
| 5192 | /* can't increase priority */ |
| 5193 | if (param->sched_priority > p->rt_priority && |
| 5194 | param->sched_priority > rlim_rtprio) |
| 5195 | return -EPERM; |
| 5196 | } |
Darren Hart | c02aa73 | 2011-02-17 15:37:07 -0800 | [diff] [blame] | 5197 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5198 | /* |
Darren Hart | c02aa73 | 2011-02-17 15:37:07 -0800 | [diff] [blame] | 5199 | * Treat SCHED_IDLE as nice 20. Only allow a switch to |
| 5200 | * SCHED_NORMAL if the RLIMIT_NICE would normally permit it. |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5201 | */ |
Darren Hart | c02aa73 | 2011-02-17 15:37:07 -0800 | [diff] [blame] | 5202 | if (p->policy == SCHED_IDLE && policy != SCHED_IDLE) { |
| 5203 | if (!can_nice(p, TASK_NICE(p))) |
| 5204 | return -EPERM; |
| 5205 | } |
Oleg Nesterov | 8dc3e90 | 2006-09-29 02:00:50 -0700 | [diff] [blame] | 5206 | |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 5207 | /* can't change other user's priorities */ |
David Howells | c69e8d9 | 2008-11-14 10:39:19 +1100 | [diff] [blame] | 5208 | if (!check_same_owner(p)) |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 5209 | return -EPERM; |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5210 | |
| 5211 | /* Normal users shall not reset the sched_reset_on_fork flag */ |
| 5212 | if (p->sched_reset_on_fork && !reset_on_fork) |
| 5213 | return -EPERM; |
Olivier Croquette | 37e4ab3 | 2005-06-25 14:57:32 -0700 | [diff] [blame] | 5214 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5215 | |
Jeremy Fitzhardinge | 725aad2 | 2008-08-03 09:33:03 -0700 | [diff] [blame] | 5216 | if (user) { |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 5217 | retval = security_task_setscheduler(p); |
Jeremy Fitzhardinge | 725aad2 | 2008-08-03 09:33:03 -0700 | [diff] [blame] | 5218 | if (retval) |
| 5219 | return retval; |
| 5220 | } |
| 5221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5222 | /* |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5223 | * make sure no PI-waiters arrive (or leave) while we are |
| 5224 | * changing the priority of the task: |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5225 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 5226 | * To be able to change p->policy safely, the appropriate |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5227 | * runqueue lock must be held. |
| 5228 | */ |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5229 | rq = task_rq_lock(p, &flags); |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 5230 | |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 5231 | /* |
| 5232 | * Changing the policy of the stop threads its a very bad idea |
| 5233 | */ |
| 5234 | if (p == rq->stop) { |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5235 | task_rq_unlock(rq, p, &flags); |
Peter Zijlstra | 34f971f | 2010-09-22 13:53:15 +0200 | [diff] [blame] | 5236 | return -EINVAL; |
| 5237 | } |
| 5238 | |
Dario Faggioli | a51e919 | 2011-03-24 14:00:18 +0100 | [diff] [blame] | 5239 | /* |
| 5240 | * If not changing anything there's no need to proceed further: |
| 5241 | */ |
| 5242 | if (unlikely(policy == p->policy && (!rt_policy(policy) || |
| 5243 | param->sched_priority == p->rt_priority))) { |
| 5244 | |
| 5245 | __task_rq_unlock(rq); |
| 5246 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
| 5247 | return 0; |
| 5248 | } |
| 5249 | |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 5250 | #ifdef CONFIG_RT_GROUP_SCHED |
| 5251 | if (user) { |
| 5252 | /* |
| 5253 | * Do not allow realtime tasks into groups that have no runtime |
| 5254 | * assigned. |
| 5255 | */ |
| 5256 | if (rt_bandwidth_enabled() && rt_policy(policy) && |
Mike Galbraith | f449377 | 2011-01-13 04:54:50 +0100 | [diff] [blame] | 5257 | task_group(p)->rt_bandwidth.rt_runtime == 0 && |
| 5258 | !task_group_is_autogroup(task_group(p))) { |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5259 | task_rq_unlock(rq, p, &flags); |
Peter Zijlstra | dc61b1d | 2010-06-08 11:40:42 +0200 | [diff] [blame] | 5260 | return -EPERM; |
| 5261 | } |
| 5262 | } |
| 5263 | #endif |
| 5264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5265 | /* recheck policy now with rq lock held */ |
| 5266 | if (unlikely(oldpolicy != -1 && oldpolicy != p->policy)) { |
| 5267 | policy = oldpolicy = -1; |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5268 | task_rq_unlock(rq, p, &flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5269 | goto recheck; |
| 5270 | } |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 5271 | on_rq = p->on_rq; |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 5272 | running = task_current(rq, p); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 5273 | if (on_rq) |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 5274 | deactivate_task(rq, p, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 5275 | if (running) |
| 5276 | p->sched_class->put_prev_task(rq, p); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5277 | |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5278 | p->sched_reset_on_fork = reset_on_fork; |
| 5279 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5280 | oldprio = p->prio; |
Thomas Gleixner | 83ab0aa | 2010-02-17 09:05:48 +0100 | [diff] [blame] | 5281 | prev_class = p->sched_class; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5282 | __setscheduler(rq, p, policy, param->sched_priority); |
Dmitry Adamushko | f6b5320 | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5283 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 5284 | if (running) |
| 5285 | p->sched_class->set_curr_task(rq); |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5286 | if (on_rq) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5287 | activate_task(rq, p, 0); |
Steven Rostedt | cb46984 | 2008-01-25 21:08:22 +0100 | [diff] [blame] | 5288 | |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 5289 | check_class_changed(rq, p, prev_class, oldprio); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5290 | task_rq_unlock(rq, p, &flags); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 5291 | |
Thomas Gleixner | 95e02ca | 2006-06-27 02:55:02 -0700 | [diff] [blame] | 5292 | rt_mutex_adjust_pi(p); |
| 5293 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5294 | return 0; |
| 5295 | } |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5296 | |
| 5297 | /** |
| 5298 | * sched_setscheduler - change the scheduling policy and/or RT priority of a thread. |
| 5299 | * @p: the task in question. |
| 5300 | * @policy: new policy. |
| 5301 | * @param: structure containing the new RT priority. |
| 5302 | * |
| 5303 | * NOTE that the task may be already dead. |
| 5304 | */ |
| 5305 | int sched_setscheduler(struct task_struct *p, int policy, |
KOSAKI Motohiro | fe7de49 | 2010-10-20 16:01:12 -0700 | [diff] [blame] | 5306 | const struct sched_param *param) |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5307 | { |
| 5308 | return __sched_setscheduler(p, policy, param, true); |
| 5309 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5310 | EXPORT_SYMBOL_GPL(sched_setscheduler); |
| 5311 | |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5312 | /** |
| 5313 | * sched_setscheduler_nocheck - change the scheduling policy and/or RT priority of a thread from kernelspace. |
| 5314 | * @p: the task in question. |
| 5315 | * @policy: new policy. |
| 5316 | * @param: structure containing the new RT priority. |
| 5317 | * |
| 5318 | * Just like sched_setscheduler, only don't bother checking if the |
| 5319 | * current context has permission. For example, this is needed in |
| 5320 | * stop_machine(): we create temporary high priority worker threads, |
| 5321 | * but our caller might not have that capability. |
| 5322 | */ |
| 5323 | int sched_setscheduler_nocheck(struct task_struct *p, int policy, |
KOSAKI Motohiro | fe7de49 | 2010-10-20 16:01:12 -0700 | [diff] [blame] | 5324 | const struct sched_param *param) |
Rusty Russell | 961ccdd | 2008-06-23 13:55:38 +1000 | [diff] [blame] | 5325 | { |
| 5326 | return __sched_setscheduler(p, policy, param, false); |
| 5327 | } |
| 5328 | |
Ingo Molnar | 95cdf3b | 2005-09-10 00:26:11 -0700 | [diff] [blame] | 5329 | static int |
| 5330 | 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] | 5331 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5332 | struct sched_param lparam; |
| 5333 | struct task_struct *p; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5334 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5335 | |
| 5336 | if (!param || pid < 0) |
| 5337 | return -EINVAL; |
| 5338 | if (copy_from_user(&lparam, param, sizeof(struct sched_param))) |
| 5339 | return -EFAULT; |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 5340 | |
| 5341 | rcu_read_lock(); |
| 5342 | retval = -ESRCH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5343 | p = find_process_by_pid(pid); |
Oleg Nesterov | 5fe1d75 | 2006-09-29 02:00:48 -0700 | [diff] [blame] | 5344 | if (p != NULL) |
| 5345 | retval = sched_setscheduler(p, policy, &lparam); |
| 5346 | rcu_read_unlock(); |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5348 | return retval; |
| 5349 | } |
| 5350 | |
| 5351 | /** |
| 5352 | * sys_sched_setscheduler - set/change the scheduler policy and RT priority |
| 5353 | * @pid: the pid in question. |
| 5354 | * @policy: new policy. |
| 5355 | * @param: structure containing the new RT priority. |
| 5356 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5357 | SYSCALL_DEFINE3(sched_setscheduler, pid_t, pid, int, policy, |
| 5358 | struct sched_param __user *, param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5359 | { |
Jason Baron | c21761f | 2006-01-18 17:43:03 -0800 | [diff] [blame] | 5360 | /* negative values for policy are not valid */ |
| 5361 | if (policy < 0) |
| 5362 | return -EINVAL; |
| 5363 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5364 | return do_sched_setscheduler(pid, policy, param); |
| 5365 | } |
| 5366 | |
| 5367 | /** |
| 5368 | * sys_sched_setparam - set/change the RT priority of a thread |
| 5369 | * @pid: the pid in question. |
| 5370 | * @param: structure containing the new RT priority. |
| 5371 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5372 | SYSCALL_DEFINE2(sched_setparam, pid_t, pid, struct sched_param __user *, param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5373 | { |
| 5374 | return do_sched_setscheduler(pid, -1, param); |
| 5375 | } |
| 5376 | |
| 5377 | /** |
| 5378 | * sys_sched_getscheduler - get the policy (scheduling class) of a thread |
| 5379 | * @pid: the pid in question. |
| 5380 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5381 | SYSCALL_DEFINE1(sched_getscheduler, pid_t, pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5382 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5383 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5384 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5385 | |
| 5386 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5387 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5388 | |
| 5389 | retval = -ESRCH; |
Thomas Gleixner | 5fe85be | 2009-12-09 10:14:58 +0000 | [diff] [blame] | 5390 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5391 | p = find_process_by_pid(pid); |
| 5392 | if (p) { |
| 5393 | retval = security_task_getscheduler(p); |
| 5394 | if (!retval) |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5395 | retval = p->policy |
| 5396 | | (p->sched_reset_on_fork ? SCHED_RESET_ON_FORK : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5397 | } |
Thomas Gleixner | 5fe85be | 2009-12-09 10:14:58 +0000 | [diff] [blame] | 5398 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5399 | return retval; |
| 5400 | } |
| 5401 | |
| 5402 | /** |
Lennart Poettering | ca94c44 | 2009-06-15 17:17:47 +0200 | [diff] [blame] | 5403 | * sys_sched_getparam - get the RT priority of a thread |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5404 | * @pid: the pid in question. |
| 5405 | * @param: structure containing the RT priority. |
| 5406 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5407 | SYSCALL_DEFINE2(sched_getparam, pid_t, pid, struct sched_param __user *, param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5408 | { |
| 5409 | struct sched_param lp; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5410 | struct task_struct *p; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5411 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5412 | |
| 5413 | if (!param || pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5414 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5415 | |
Thomas Gleixner | 5fe85be | 2009-12-09 10:14:58 +0000 | [diff] [blame] | 5416 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5417 | p = find_process_by_pid(pid); |
| 5418 | retval = -ESRCH; |
| 5419 | if (!p) |
| 5420 | goto out_unlock; |
| 5421 | |
| 5422 | retval = security_task_getscheduler(p); |
| 5423 | if (retval) |
| 5424 | goto out_unlock; |
| 5425 | |
| 5426 | lp.sched_priority = p->rt_priority; |
Thomas Gleixner | 5fe85be | 2009-12-09 10:14:58 +0000 | [diff] [blame] | 5427 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5428 | |
| 5429 | /* |
| 5430 | * This one might sleep, we cannot do it with a spinlock held ... |
| 5431 | */ |
| 5432 | retval = copy_to_user(param, &lp, sizeof(*param)) ? -EFAULT : 0; |
| 5433 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5434 | return retval; |
| 5435 | |
| 5436 | out_unlock: |
Thomas Gleixner | 5fe85be | 2009-12-09 10:14:58 +0000 | [diff] [blame] | 5437 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5438 | return retval; |
| 5439 | } |
| 5440 | |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 5441 | long sched_setaffinity(pid_t pid, const struct cpumask *in_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5442 | { |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5443 | cpumask_var_t cpus_allowed, new_mask; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5444 | struct task_struct *p; |
| 5445 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5446 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5447 | get_online_cpus(); |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5448 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5449 | |
| 5450 | p = find_process_by_pid(pid); |
| 5451 | if (!p) { |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5452 | rcu_read_unlock(); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5453 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5454 | return -ESRCH; |
| 5455 | } |
| 5456 | |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5457 | /* Prevent p going away */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5458 | get_task_struct(p); |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5459 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5460 | |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5461 | if (!alloc_cpumask_var(&cpus_allowed, GFP_KERNEL)) { |
| 5462 | retval = -ENOMEM; |
| 5463 | goto out_put_task; |
| 5464 | } |
| 5465 | if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) { |
| 5466 | retval = -ENOMEM; |
| 5467 | goto out_free_cpus_allowed; |
| 5468 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5469 | retval = -EPERM; |
Serge E. Hallyn | b0e7759 | 2011-03-23 16:43:24 -0700 | [diff] [blame] | 5470 | if (!check_same_owner(p) && !task_ns_capable(p, CAP_SYS_NICE)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5471 | goto out_unlock; |
| 5472 | |
KOSAKI Motohiro | b0ae198 | 2010-10-15 04:21:18 +0900 | [diff] [blame] | 5473 | retval = security_task_setscheduler(p); |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 5474 | if (retval) |
| 5475 | goto out_unlock; |
| 5476 | |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5477 | cpuset_cpus_allowed(p, cpus_allowed); |
| 5478 | cpumask_and(new_mask, in_mask, cpus_allowed); |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 5479 | again: |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5480 | retval = set_cpus_allowed_ptr(p, new_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5481 | |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5482 | if (!retval) { |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5483 | cpuset_cpus_allowed(p, cpus_allowed); |
| 5484 | if (!cpumask_subset(new_mask, cpus_allowed)) { |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5485 | /* |
| 5486 | * We must have raced with a concurrent cpuset |
| 5487 | * update. Just reset the cpus_allowed to the |
| 5488 | * cpuset's cpus_allowed |
| 5489 | */ |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5490 | cpumask_copy(new_mask, cpus_allowed); |
Paul Menage | 8707d8b | 2007-10-18 23:40:22 -0700 | [diff] [blame] | 5491 | goto again; |
| 5492 | } |
| 5493 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5494 | out_unlock: |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5495 | free_cpumask_var(new_mask); |
| 5496 | out_free_cpus_allowed: |
| 5497 | free_cpumask_var(cpus_allowed); |
| 5498 | out_put_task: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5499 | put_task_struct(p); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5500 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5501 | return retval; |
| 5502 | } |
| 5503 | |
| 5504 | static int get_user_cpu_mask(unsigned long __user *user_mask_ptr, unsigned len, |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 5505 | struct cpumask *new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5506 | { |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 5507 | if (len < cpumask_size()) |
| 5508 | cpumask_clear(new_mask); |
| 5509 | else if (len > cpumask_size()) |
| 5510 | len = cpumask_size(); |
| 5511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5512 | return copy_from_user(new_mask, user_mask_ptr, len) ? -EFAULT : 0; |
| 5513 | } |
| 5514 | |
| 5515 | /** |
| 5516 | * sys_sched_setaffinity - set the cpu affinity of a process |
| 5517 | * @pid: pid of the process |
| 5518 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 5519 | * @user_mask_ptr: user-space pointer to the new cpu mask |
| 5520 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5521 | SYSCALL_DEFINE3(sched_setaffinity, pid_t, pid, unsigned int, len, |
| 5522 | unsigned long __user *, user_mask_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5523 | { |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5524 | cpumask_var_t new_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5525 | int retval; |
| 5526 | |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5527 | if (!alloc_cpumask_var(&new_mask, GFP_KERNEL)) |
| 5528 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5529 | |
Rusty Russell | 5a16f3d | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5530 | retval = get_user_cpu_mask(user_mask_ptr, len, new_mask); |
| 5531 | if (retval == 0) |
| 5532 | retval = sched_setaffinity(pid, new_mask); |
| 5533 | free_cpumask_var(new_mask); |
| 5534 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5535 | } |
| 5536 | |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 5537 | long sched_getaffinity(pid_t pid, struct cpumask *mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5538 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5539 | struct task_struct *p; |
Thomas Gleixner | 3160568 | 2009-12-08 20:24:16 +0000 | [diff] [blame] | 5540 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5541 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5542 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5543 | get_online_cpus(); |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5544 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5545 | |
| 5546 | retval = -ESRCH; |
| 5547 | p = find_process_by_pid(pid); |
| 5548 | if (!p) |
| 5549 | goto out_unlock; |
| 5550 | |
David Quigley | e7834f8 | 2006-06-23 02:03:59 -0700 | [diff] [blame] | 5551 | retval = security_task_getscheduler(p); |
| 5552 | if (retval) |
| 5553 | goto out_unlock; |
| 5554 | |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 5555 | raw_spin_lock_irqsave(&p->pi_lock, flags); |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 5556 | cpumask_and(mask, &p->cpus_allowed, cpu_online_mask); |
Peter Zijlstra | 013fdb8 | 2011-04-05 17:23:45 +0200 | [diff] [blame] | 5557 | raw_spin_unlock_irqrestore(&p->pi_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5558 | |
| 5559 | out_unlock: |
Thomas Gleixner | 23f5d14 | 2009-12-09 10:15:01 +0000 | [diff] [blame] | 5560 | rcu_read_unlock(); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5561 | put_online_cpus(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5562 | |
Ulrich Drepper | 9531b62 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 5563 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5564 | } |
| 5565 | |
| 5566 | /** |
| 5567 | * sys_sched_getaffinity - get the cpu affinity of a process |
| 5568 | * @pid: pid of the process |
| 5569 | * @len: length in bytes of the bitmask pointed to by user_mask_ptr |
| 5570 | * @user_mask_ptr: user-space pointer to hold the current cpu mask |
| 5571 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5572 | SYSCALL_DEFINE3(sched_getaffinity, pid_t, pid, unsigned int, len, |
| 5573 | unsigned long __user *, user_mask_ptr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5574 | { |
| 5575 | int ret; |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5576 | cpumask_var_t mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5577 | |
Anton Blanchard | 84fba5e | 2010-04-06 17:02:19 +1000 | [diff] [blame] | 5578 | if ((len * BITS_PER_BYTE) < nr_cpu_ids) |
KOSAKI Motohiro | cd3d803 | 2010-03-12 16:15:36 +0900 | [diff] [blame] | 5579 | return -EINVAL; |
| 5580 | if (len & (sizeof(unsigned long)-1)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5581 | return -EINVAL; |
| 5582 | |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5583 | if (!alloc_cpumask_var(&mask, GFP_KERNEL)) |
| 5584 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5585 | |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5586 | ret = sched_getaffinity(pid, mask); |
| 5587 | if (ret == 0) { |
KOSAKI Motohiro | 8bc037f | 2010-03-17 09:36:58 +0900 | [diff] [blame] | 5588 | size_t retlen = min_t(size_t, len, cpumask_size()); |
KOSAKI Motohiro | cd3d803 | 2010-03-12 16:15:36 +0900 | [diff] [blame] | 5589 | |
| 5590 | if (copy_to_user(user_mask_ptr, mask, retlen)) |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5591 | ret = -EFAULT; |
| 5592 | else |
KOSAKI Motohiro | cd3d803 | 2010-03-12 16:15:36 +0900 | [diff] [blame] | 5593 | ret = retlen; |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5594 | } |
| 5595 | free_cpumask_var(mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5596 | |
Rusty Russell | f17c860 | 2008-11-25 02:35:11 +1030 | [diff] [blame] | 5597 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5598 | } |
| 5599 | |
| 5600 | /** |
| 5601 | * sys_sched_yield - yield the current processor to other threads. |
| 5602 | * |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5603 | * This function yields the current CPU to other tasks. If there are no |
| 5604 | * other threads running on this CPU then this function will return. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5605 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5606 | SYSCALL_DEFINE0(sched_yield) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5607 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5608 | struct rq *rq = this_rq_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5609 | |
Ingo Molnar | 2d72376 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 5610 | schedstat_inc(rq, yld_count); |
Dmitry Adamushko | 4530d7a | 2007-10-15 17:00:08 +0200 | [diff] [blame] | 5611 | current->sched_class->yield_task(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5612 | |
| 5613 | /* |
| 5614 | * Since we are going to call schedule() anyway, there's |
| 5615 | * no need to preempt or enable interrupts: |
| 5616 | */ |
| 5617 | __release(rq->lock); |
Ingo Molnar | 8a25d5d | 2006-07-03 00:24:54 -0700 | [diff] [blame] | 5618 | spin_release(&rq->lock.dep_map, 1, _THIS_IP_); |
Thomas Gleixner | 9828ea9 | 2009-12-03 20:55:53 +0100 | [diff] [blame] | 5619 | do_raw_spin_unlock(&rq->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5620 | preempt_enable_no_resched(); |
| 5621 | |
| 5622 | schedule(); |
| 5623 | |
| 5624 | return 0; |
| 5625 | } |
| 5626 | |
Peter Zijlstra | d86ee48 | 2009-07-10 14:57:57 +0200 | [diff] [blame] | 5627 | static inline int should_resched(void) |
| 5628 | { |
| 5629 | return need_resched() && !(preempt_count() & PREEMPT_ACTIVE); |
| 5630 | } |
| 5631 | |
Andrew Morton | e7b3840 | 2006-06-30 01:56:00 -0700 | [diff] [blame] | 5632 | static void __cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5633 | { |
Frederic Weisbecker | e7aaaa6 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5634 | add_preempt_count(PREEMPT_ACTIVE); |
| 5635 | schedule(); |
| 5636 | sub_preempt_count(PREEMPT_ACTIVE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5637 | } |
| 5638 | |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5639 | int __sched _cond_resched(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5640 | { |
Peter Zijlstra | d86ee48 | 2009-07-10 14:57:57 +0200 | [diff] [blame] | 5641 | if (should_resched()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5642 | __cond_resched(); |
| 5643 | return 1; |
| 5644 | } |
| 5645 | return 0; |
| 5646 | } |
Herbert Xu | 02b67cc3 | 2008-01-25 21:08:28 +0100 | [diff] [blame] | 5647 | EXPORT_SYMBOL(_cond_resched); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5648 | |
| 5649 | /* |
Frederic Weisbecker | 613afbf | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5650 | * __cond_resched_lock() - if a reschedule is pending, drop the given lock, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5651 | * call schedule, and on return reacquire the lock. |
| 5652 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5653 | * 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] | 5654 | * operations here to prevent schedule() from being called twice (once via |
| 5655 | * spin_unlock(), once by hand). |
| 5656 | */ |
Frederic Weisbecker | 613afbf | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5657 | int __cond_resched_lock(spinlock_t *lock) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5658 | { |
Peter Zijlstra | d86ee48 | 2009-07-10 14:57:57 +0200 | [diff] [blame] | 5659 | int resched = should_resched(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5660 | int ret = 0; |
| 5661 | |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 5662 | lockdep_assert_held(lock); |
| 5663 | |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5664 | if (spin_needbreak(lock) || resched) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5665 | spin_unlock(lock); |
Peter Zijlstra | d86ee48 | 2009-07-10 14:57:57 +0200 | [diff] [blame] | 5666 | if (resched) |
Nick Piggin | 95c354f | 2008-01-30 13:31:20 +0100 | [diff] [blame] | 5667 | __cond_resched(); |
| 5668 | else |
| 5669 | cpu_relax(); |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5670 | ret = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5671 | spin_lock(lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5672 | } |
Jan Kara | 6df3cec | 2005-06-13 15:52:32 -0700 | [diff] [blame] | 5673 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5674 | } |
Frederic Weisbecker | 613afbf | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5675 | EXPORT_SYMBOL(__cond_resched_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5676 | |
Frederic Weisbecker | 613afbf | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5677 | int __sched __cond_resched_softirq(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5678 | { |
| 5679 | BUG_ON(!in_softirq()); |
| 5680 | |
Peter Zijlstra | d86ee48 | 2009-07-10 14:57:57 +0200 | [diff] [blame] | 5681 | if (should_resched()) { |
Thomas Gleixner | 98d82567 | 2007-05-23 13:58:18 -0700 | [diff] [blame] | 5682 | local_bh_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5683 | __cond_resched(); |
| 5684 | local_bh_disable(); |
| 5685 | return 1; |
| 5686 | } |
| 5687 | return 0; |
| 5688 | } |
Frederic Weisbecker | 613afbf | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 5689 | EXPORT_SYMBOL(__cond_resched_softirq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5690 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5691 | /** |
| 5692 | * yield - yield the current processor to other threads. |
| 5693 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 5694 | * This is a shortcut for kernel-space yielding - it marks the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5695 | * thread runnable and calls sys_sched_yield(). |
| 5696 | */ |
| 5697 | void __sched yield(void) |
| 5698 | { |
| 5699 | set_current_state(TASK_RUNNING); |
| 5700 | sys_sched_yield(); |
| 5701 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5702 | EXPORT_SYMBOL(yield); |
| 5703 | |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 5704 | /** |
| 5705 | * yield_to - yield the current processor to another thread in |
| 5706 | * your thread group, or accelerate that thread toward the |
| 5707 | * processor it's on. |
Randy Dunlap | 16addf9 | 2011-03-18 09:34:53 -0700 | [diff] [blame] | 5708 | * @p: target task |
| 5709 | * @preempt: whether task preemption is allowed or not |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 5710 | * |
| 5711 | * It's the caller's job to ensure that the target task struct |
| 5712 | * can't go away on us before we can do any checks. |
| 5713 | * |
| 5714 | * Returns true if we indeed boosted the target task. |
| 5715 | */ |
| 5716 | bool __sched yield_to(struct task_struct *p, bool preempt) |
| 5717 | { |
| 5718 | struct task_struct *curr = current; |
| 5719 | struct rq *rq, *p_rq; |
| 5720 | unsigned long flags; |
| 5721 | bool yielded = 0; |
| 5722 | |
| 5723 | local_irq_save(flags); |
| 5724 | rq = this_rq(); |
| 5725 | |
| 5726 | again: |
| 5727 | p_rq = task_rq(p); |
| 5728 | double_rq_lock(rq, p_rq); |
| 5729 | while (task_rq(p) != p_rq) { |
| 5730 | double_rq_unlock(rq, p_rq); |
| 5731 | goto again; |
| 5732 | } |
| 5733 | |
| 5734 | if (!curr->sched_class->yield_to_task) |
| 5735 | goto out; |
| 5736 | |
| 5737 | if (curr->sched_class != p->sched_class) |
| 5738 | goto out; |
| 5739 | |
| 5740 | if (task_running(p_rq, p) || p->state) |
| 5741 | goto out; |
| 5742 | |
| 5743 | yielded = curr->sched_class->yield_to_task(rq, p, preempt); |
Venkatesh Pallipadi | 6d1cafd | 2011-03-01 16:28:21 -0800 | [diff] [blame] | 5744 | if (yielded) { |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 5745 | schedstat_inc(rq, yld_count); |
Venkatesh Pallipadi | 6d1cafd | 2011-03-01 16:28:21 -0800 | [diff] [blame] | 5746 | /* |
| 5747 | * Make p's CPU reschedule; pick_next_entity takes care of |
| 5748 | * fairness. |
| 5749 | */ |
| 5750 | if (preempt && rq != p_rq) |
| 5751 | resched_task(p_rq->curr); |
| 5752 | } |
Mike Galbraith | d95f412 | 2011-02-01 09:50:51 -0500 | [diff] [blame] | 5753 | |
| 5754 | out: |
| 5755 | double_rq_unlock(rq, p_rq); |
| 5756 | local_irq_restore(flags); |
| 5757 | |
| 5758 | if (yielded) |
| 5759 | schedule(); |
| 5760 | |
| 5761 | return yielded; |
| 5762 | } |
| 5763 | EXPORT_SYMBOL_GPL(yield_to); |
| 5764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5765 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 5766 | * 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] | 5767 | * that process accounting knows that this is a task in IO wait state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5768 | */ |
| 5769 | void __sched io_schedule(void) |
| 5770 | { |
Hitoshi Mitake | 54d35f2 | 2009-06-29 14:44:57 +0900 | [diff] [blame] | 5771 | struct rq *rq = raw_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5772 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5773 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5774 | atomic_inc(&rq->nr_iowait); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 5775 | blk_flush_plug(current); |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 5776 | current->in_iowait = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5777 | schedule(); |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 5778 | current->in_iowait = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5779 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5780 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5781 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5782 | EXPORT_SYMBOL(io_schedule); |
| 5783 | |
| 5784 | long __sched io_schedule_timeout(long timeout) |
| 5785 | { |
Hitoshi Mitake | 54d35f2 | 2009-06-29 14:44:57 +0900 | [diff] [blame] | 5786 | struct rq *rq = raw_rq(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5787 | long ret; |
| 5788 | |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5789 | delayacct_blkio_start(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5790 | atomic_inc(&rq->nr_iowait); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 5791 | blk_flush_plug(current); |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 5792 | current->in_iowait = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5793 | ret = schedule_timeout(timeout); |
Arjan van de Ven | 8f0dfc3 | 2009-07-20 11:26:58 -0700 | [diff] [blame] | 5794 | current->in_iowait = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5795 | atomic_dec(&rq->nr_iowait); |
Shailabh Nagar | 0ff9224 | 2006-07-14 00:24:37 -0700 | [diff] [blame] | 5796 | delayacct_blkio_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5797 | return ret; |
| 5798 | } |
| 5799 | |
| 5800 | /** |
| 5801 | * sys_sched_get_priority_max - return maximum RT priority. |
| 5802 | * @policy: scheduling class. |
| 5803 | * |
| 5804 | * this syscall returns the maximum rt_priority that can be used |
| 5805 | * by a given scheduling class. |
| 5806 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5807 | SYSCALL_DEFINE1(sched_get_priority_max, int, policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5808 | { |
| 5809 | int ret = -EINVAL; |
| 5810 | |
| 5811 | switch (policy) { |
| 5812 | case SCHED_FIFO: |
| 5813 | case SCHED_RR: |
| 5814 | ret = MAX_USER_RT_PRIO-1; |
| 5815 | break; |
| 5816 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5817 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5818 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5819 | ret = 0; |
| 5820 | break; |
| 5821 | } |
| 5822 | return ret; |
| 5823 | } |
| 5824 | |
| 5825 | /** |
| 5826 | * sys_sched_get_priority_min - return minimum RT priority. |
| 5827 | * @policy: scheduling class. |
| 5828 | * |
| 5829 | * this syscall returns the minimum rt_priority that can be used |
| 5830 | * by a given scheduling class. |
| 5831 | */ |
Heiko Carstens | 5add95d | 2009-01-14 14:14:08 +0100 | [diff] [blame] | 5832 | SYSCALL_DEFINE1(sched_get_priority_min, int, policy) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5833 | { |
| 5834 | int ret = -EINVAL; |
| 5835 | |
| 5836 | switch (policy) { |
| 5837 | case SCHED_FIFO: |
| 5838 | case SCHED_RR: |
| 5839 | ret = 1; |
| 5840 | break; |
| 5841 | case SCHED_NORMAL: |
Ingo Molnar | b0a9499 | 2006-01-14 13:20:41 -0800 | [diff] [blame] | 5842 | case SCHED_BATCH: |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5843 | case SCHED_IDLE: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5844 | ret = 0; |
| 5845 | } |
| 5846 | return ret; |
| 5847 | } |
| 5848 | |
| 5849 | /** |
| 5850 | * sys_sched_rr_get_interval - return the default timeslice of a process. |
| 5851 | * @pid: pid of the process. |
| 5852 | * @interval: userspace pointer to the timeslice value. |
| 5853 | * |
| 5854 | * this syscall writes the default timeslice value of a given process |
| 5855 | * into the user-space timespec buffer. A value of '0' means infinity. |
| 5856 | */ |
Heiko Carstens | 17da2bd | 2009-01-14 14:14:10 +0100 | [diff] [blame] | 5857 | SYSCALL_DEFINE2(sched_rr_get_interval, pid_t, pid, |
Heiko Carstens | 754fe8d | 2009-01-14 14:14:09 +0100 | [diff] [blame] | 5858 | struct timespec __user *, interval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5859 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5860 | struct task_struct *p; |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5861 | unsigned int time_slice; |
Thomas Gleixner | dba091b | 2009-12-09 09:32:03 +0100 | [diff] [blame] | 5862 | unsigned long flags; |
| 5863 | struct rq *rq; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5864 | int retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5865 | struct timespec t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5866 | |
| 5867 | if (pid < 0) |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5868 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5869 | |
| 5870 | retval = -ESRCH; |
Thomas Gleixner | 1a551ae | 2009-12-09 10:15:11 +0000 | [diff] [blame] | 5871 | rcu_read_lock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5872 | p = find_process_by_pid(pid); |
| 5873 | if (!p) |
| 5874 | goto out_unlock; |
| 5875 | |
| 5876 | retval = security_task_getscheduler(p); |
| 5877 | if (retval) |
| 5878 | goto out_unlock; |
| 5879 | |
Thomas Gleixner | dba091b | 2009-12-09 09:32:03 +0100 | [diff] [blame] | 5880 | rq = task_rq_lock(p, &flags); |
| 5881 | time_slice = p->sched_class->get_rr_interval(rq, p); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 5882 | task_rq_unlock(rq, p, &flags); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5883 | |
Thomas Gleixner | 1a551ae | 2009-12-09 10:15:11 +0000 | [diff] [blame] | 5884 | rcu_read_unlock(); |
Dmitry Adamushko | a4ec24b | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 5885 | jiffies_to_timespec(time_slice, &t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5886 | retval = copy_to_user(interval, &t, sizeof(t)) ? -EFAULT : 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5887 | return retval; |
Andi Kleen | 3a5c359 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 5888 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5889 | out_unlock: |
Thomas Gleixner | 1a551ae | 2009-12-09 10:15:11 +0000 | [diff] [blame] | 5890 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5891 | return retval; |
| 5892 | } |
| 5893 | |
Steven Rostedt | 7c731e0 | 2008-05-12 21:20:41 +0200 | [diff] [blame] | 5894 | static const char stat_nam[] = TASK_STATE_TO_CHAR_STR; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5895 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5896 | void sched_show_task(struct task_struct *p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5897 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5898 | unsigned long free = 0; |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5899 | unsigned state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5901 | state = p->state ? __ffs(p->state) + 1 : 0; |
Erik Gilling | 28d0686 | 2010-11-19 18:08:51 -0800 | [diff] [blame] | 5902 | printk(KERN_INFO "%-15.15s %c", p->comm, |
Andreas Mohr | 2ed6e34 | 2006-07-10 04:43:52 -0700 | [diff] [blame] | 5903 | state < sizeof(stat_nam) - 1 ? stat_nam[state] : '?'); |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5904 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5905 | if (state == TASK_RUNNING) |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5906 | printk(KERN_CONT " running "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5907 | else |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5908 | printk(KERN_CONT " %08lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5909 | #else |
| 5910 | if (state == TASK_RUNNING) |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5911 | printk(KERN_CONT " running task "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5912 | else |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5913 | printk(KERN_CONT " %016lx ", thread_saved_pc(p)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5914 | #endif |
| 5915 | #ifdef CONFIG_DEBUG_STACK_USAGE |
Eric Sandeen | 7c9f886 | 2008-04-22 16:38:23 -0500 | [diff] [blame] | 5916 | free = stack_not_used(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5917 | #endif |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5918 | printk(KERN_CONT "%5lu %5d %6d 0x%08lx\n", free, |
David Rientjes | aa47b7e | 2009-05-04 01:38:05 -0700 | [diff] [blame] | 5919 | task_pid_nr(p), task_pid_nr(p->real_parent), |
| 5920 | (unsigned long)task_thread_info(p)->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5921 | |
Nick Piggin | 5fb5e6d | 2008-01-25 21:08:34 +0100 | [diff] [blame] | 5922 | show_stack(p, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5923 | } |
| 5924 | |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5925 | void show_state_filter(unsigned long state_filter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5926 | { |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 5927 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5928 | |
Ingo Molnar | 4bd7732 | 2007-07-11 21:21:47 +0200 | [diff] [blame] | 5929 | #if BITS_PER_LONG == 32 |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5930 | printk(KERN_INFO |
| 5931 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5932 | #else |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 5933 | printk(KERN_INFO |
| 5934 | " task PC stack pid father\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5935 | #endif |
| 5936 | read_lock(&tasklist_lock); |
| 5937 | do_each_thread(g, p) { |
| 5938 | /* |
| 5939 | * reset the NMI-timeout, listing all files on a slow |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 5940 | * console might take a lot of time: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5941 | */ |
| 5942 | touch_nmi_watchdog(); |
Ingo Molnar | 39bc89f | 2007-04-25 20:50:03 -0700 | [diff] [blame] | 5943 | if (!state_filter || (p->state & state_filter)) |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 5944 | sched_show_task(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5945 | } while_each_thread(g, p); |
| 5946 | |
Jeremy Fitzhardinge | 04c9167 | 2007-05-08 00:28:05 -0700 | [diff] [blame] | 5947 | touch_all_softlockup_watchdogs(); |
| 5948 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5949 | #ifdef CONFIG_SCHED_DEBUG |
| 5950 | sysrq_sched_debug_show(); |
| 5951 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5952 | read_unlock(&tasklist_lock); |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5953 | /* |
| 5954 | * Only show locks if all tasks are dumped: |
| 5955 | */ |
Shmulik Ladkani | 93335a2 | 2009-11-25 15:23:41 +0200 | [diff] [blame] | 5956 | if (!state_filter) |
Ingo Molnar | e59e2ae | 2006-12-06 20:35:59 -0800 | [diff] [blame] | 5957 | debug_show_all_locks(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5958 | } |
| 5959 | |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5960 | void __cpuinit init_idle_bootup_task(struct task_struct *idle) |
| 5961 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5962 | idle->sched_class = &idle_sched_class; |
Ingo Molnar | 1df2105 | 2007-07-09 18:51:58 +0200 | [diff] [blame] | 5963 | } |
| 5964 | |
Ingo Molnar | f340c0d | 2005-06-28 16:40:42 +0200 | [diff] [blame] | 5965 | /** |
| 5966 | * init_idle - set up an idle thread for a given CPU |
| 5967 | * @idle: task in question |
| 5968 | * @cpu: cpu the idle task belongs to |
| 5969 | * |
| 5970 | * NOTE: this function does not set the idle thread's NEED_RESCHED |
| 5971 | * flag, to make booting more robust. |
| 5972 | */ |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 5973 | void __cpuinit init_idle(struct task_struct *idle, int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5974 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 5975 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5976 | unsigned long flags; |
| 5977 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 5978 | raw_spin_lock_irqsave(&rq->lock, flags); |
Ingo Molnar | 5cbd54e | 2008-11-12 20:05:50 +0100 | [diff] [blame] | 5979 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5980 | __sched_fork(idle); |
Peter Zijlstra | 06b83b5 | 2009-12-16 18:04:35 +0100 | [diff] [blame] | 5981 | idle->state = TASK_RUNNING; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5982 | idle->se.exec_start = sched_clock(); |
| 5983 | |
KOSAKI Motohiro | 1e1b6c5 | 2011-05-19 15:08:58 +0900 | [diff] [blame] | 5984 | do_set_cpus_allowed(idle, cpumask_of(cpu)); |
Peter Zijlstra | 6506cf6c | 2010-09-16 17:50:31 +0200 | [diff] [blame] | 5985 | /* |
| 5986 | * We're having a chicken and egg problem, even though we are |
| 5987 | * holding rq->lock, the cpu isn't yet set to this cpu so the |
| 5988 | * lockdep check in task_group() will fail. |
| 5989 | * |
| 5990 | * Similar case to sched_fork(). / Alternatively we could |
| 5991 | * use task_rq_lock() here and obtain the other rq->lock. |
| 5992 | * |
| 5993 | * Silence PROVE_RCU |
| 5994 | */ |
| 5995 | rcu_read_lock(); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 5996 | __set_task_cpu(idle, cpu); |
Peter Zijlstra | 6506cf6c | 2010-09-16 17:50:31 +0200 | [diff] [blame] | 5997 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5998 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5999 | rq->curr = rq->idle = idle; |
Peter Zijlstra | 3ca7a44 | 2011-04-05 17:23:40 +0200 | [diff] [blame] | 6000 | #if defined(CONFIG_SMP) |
| 6001 | idle->on_cpu = 1; |
Nick Piggin | 4866cde | 2005-06-25 14:57:23 -0700 | [diff] [blame] | 6002 | #endif |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6003 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6004 | |
| 6005 | /* Set the preempt count _outside_ the spinlocks! */ |
Al Viro | a1261f5 | 2005-11-13 16:06:55 -0800 | [diff] [blame] | 6006 | task_thread_info(idle)->preempt_count = 0; |
Jonathan Corbet | 625f2a3 | 2011-04-22 11:19:10 -0600 | [diff] [blame] | 6007 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6008 | /* |
| 6009 | * The idle tasks have their own, simple scheduling class: |
| 6010 | */ |
| 6011 | idle->sched_class = &idle_sched_class; |
Steven Rostedt | 868baf0 | 2011-02-10 21:26:13 -0500 | [diff] [blame] | 6012 | ftrace_graph_init_idle_task(idle, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6013 | } |
| 6014 | |
| 6015 | /* |
| 6016 | * In a system that switches off the HZ timer nohz_cpu_mask |
| 6017 | * indicates which cpus entered this state. This is used |
| 6018 | * in the rcu update to wait only for active cpus. For system |
| 6019 | * which do not switch off the HZ timer nohz_cpu_mask should |
Rusty Russell | 6a7b3dc | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6020 | * always be CPU_BITS_NONE. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6021 | */ |
Rusty Russell | 6a7b3dc | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6022 | cpumask_var_t nohz_cpu_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6023 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 6024 | /* |
| 6025 | * Increase the granularity value when there are more CPUs, |
| 6026 | * because with more CPUs the 'effective latency' as visible |
| 6027 | * to users decreases. But the relationship is not linear, |
| 6028 | * so pick a second-best guess by going with the log2 of the |
| 6029 | * number of CPUs. |
| 6030 | * |
| 6031 | * This idea comes from the SD scheduler of Con Kolivas: |
| 6032 | */ |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 6033 | static int get_update_sysctl_factor(void) |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 6034 | { |
Mike Galbraith | 4ca3ef7 | 2009-12-10 09:25:53 +0100 | [diff] [blame] | 6035 | unsigned int cpus = min_t(int, num_online_cpus(), 8); |
Christian Ehrhardt | 1983a92 | 2009-11-30 12:16:47 +0100 | [diff] [blame] | 6036 | unsigned int factor; |
| 6037 | |
| 6038 | switch (sysctl_sched_tunable_scaling) { |
| 6039 | case SCHED_TUNABLESCALING_NONE: |
| 6040 | factor = 1; |
| 6041 | break; |
| 6042 | case SCHED_TUNABLESCALING_LINEAR: |
| 6043 | factor = cpus; |
| 6044 | break; |
| 6045 | case SCHED_TUNABLESCALING_LOG: |
| 6046 | default: |
| 6047 | factor = 1 + ilog2(cpus); |
| 6048 | break; |
| 6049 | } |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 6050 | |
Christian Ehrhardt | acb4a84 | 2009-11-30 12:16:48 +0100 | [diff] [blame] | 6051 | return factor; |
| 6052 | } |
| 6053 | |
| 6054 | static void update_sysctl(void) |
| 6055 | { |
| 6056 | unsigned int factor = get_update_sysctl_factor(); |
| 6057 | |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 6058 | #define SET_SYSCTL(name) \ |
| 6059 | (sysctl_##name = (factor) * normalized_sysctl_##name) |
| 6060 | SET_SYSCTL(sched_min_granularity); |
| 6061 | SET_SYSCTL(sched_latency); |
| 6062 | SET_SYSCTL(sched_wakeup_granularity); |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 6063 | #undef SET_SYSCTL |
| 6064 | } |
| 6065 | |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 6066 | static inline void sched_init_granularity(void) |
| 6067 | { |
Christian Ehrhardt | 0bcdcf2 | 2009-11-30 12:16:46 +0100 | [diff] [blame] | 6068 | update_sysctl(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 6069 | } |
| 6070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6071 | #ifdef CONFIG_SMP |
KOSAKI Motohiro | 1e1b6c5 | 2011-05-19 15:08:58 +0900 | [diff] [blame] | 6072 | void do_set_cpus_allowed(struct task_struct *p, const struct cpumask *new_mask) |
| 6073 | { |
| 6074 | if (p->sched_class && p->sched_class->set_cpus_allowed) |
| 6075 | p->sched_class->set_cpus_allowed(p, new_mask); |
| 6076 | else { |
| 6077 | cpumask_copy(&p->cpus_allowed, new_mask); |
| 6078 | p->rt.nr_cpus_allowed = cpumask_weight(new_mask); |
| 6079 | } |
| 6080 | } |
| 6081 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6082 | /* |
| 6083 | * This is how migration works: |
| 6084 | * |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6085 | * 1) we invoke migration_cpu_stop() on the target CPU using |
| 6086 | * stop_one_cpu(). |
| 6087 | * 2) stopper starts to run (implicitly forcing the migrated thread |
| 6088 | * off the CPU) |
| 6089 | * 3) it checks whether the migrated task is still in the wrong runqueue. |
| 6090 | * 4) if it's in the wrong runqueue then the migration thread removes |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6091 | * it and puts it into the right queue. |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6092 | * 5) stopper completes and stop_one_cpu() returns and the migration |
| 6093 | * is done. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6094 | */ |
| 6095 | |
| 6096 | /* |
| 6097 | * Change a given task's CPU affinity. Migrate the thread to a |
| 6098 | * proper CPU and schedule it away if the CPU it's executing on |
| 6099 | * is removed from the allowed bitmask. |
| 6100 | * |
| 6101 | * NOTE: the caller must have a valid reference to the task, the |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6102 | * task must not exit() & deallocate itself prematurely. The |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6103 | * call is not atomic; no spinlocks may be held. |
| 6104 | */ |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 6105 | int set_cpus_allowed_ptr(struct task_struct *p, const struct cpumask *new_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6106 | { |
| 6107 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6108 | struct rq *rq; |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6109 | unsigned int dest_cpu; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6110 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6111 | |
| 6112 | rq = task_rq_lock(p, &flags); |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 6113 | |
Yong Zhang | db44fc0 | 2011-05-09 22:07:05 +0800 | [diff] [blame] | 6114 | if (cpumask_equal(&p->cpus_allowed, new_mask)) |
| 6115 | goto out; |
| 6116 | |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 6117 | if (!cpumask_intersects(new_mask, cpu_active_mask)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6118 | ret = -EINVAL; |
| 6119 | goto out; |
| 6120 | } |
| 6121 | |
Yong Zhang | db44fc0 | 2011-05-09 22:07:05 +0800 | [diff] [blame] | 6122 | if (unlikely((p->flags & PF_THREAD_BOUND) && p != current)) { |
David Rientjes | 9985b0b | 2008-06-05 12:57:11 -0700 | [diff] [blame] | 6123 | ret = -EINVAL; |
| 6124 | goto out; |
| 6125 | } |
| 6126 | |
KOSAKI Motohiro | 1e1b6c5 | 2011-05-19 15:08:58 +0900 | [diff] [blame] | 6127 | do_set_cpus_allowed(p, new_mask); |
Gregory Haskins | 73fe6aa | 2008-01-25 21:08:07 +0100 | [diff] [blame] | 6128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6129 | /* Can the task run on the task's current CPU? If so, we're done */ |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 6130 | if (cpumask_test_cpu(task_cpu(p), new_mask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6131 | goto out; |
| 6132 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6133 | dest_cpu = cpumask_any_and(cpu_active_mask, new_mask); |
Peter Zijlstra | bd8e7dd | 2011-04-05 17:23:59 +0200 | [diff] [blame] | 6134 | if (p->on_rq) { |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6135 | struct migration_arg arg = { p, dest_cpu }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6136 | /* Need help from migration thread: drop lock and wait. */ |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 6137 | task_rq_unlock(rq, p, &flags); |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6138 | stop_one_cpu(cpu_of(rq), migration_cpu_stop, &arg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6139 | tlb_migrate_finish(p->mm); |
| 6140 | return 0; |
| 6141 | } |
| 6142 | out: |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 6143 | task_rq_unlock(rq, p, &flags); |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6144 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6145 | return ret; |
| 6146 | } |
Mike Travis | cd8ba7c | 2008-03-26 14:23:49 -0700 | [diff] [blame] | 6147 | EXPORT_SYMBOL_GPL(set_cpus_allowed_ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6148 | |
| 6149 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6150 | * 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] | 6151 | * this because either it can't run here any more (set_cpus_allowed() |
| 6152 | * away from this CPU, or CPU going down), or because we're |
| 6153 | * attempting to rebalance this task on exec (sched_exec). |
| 6154 | * |
| 6155 | * So we race with normal scheduler movements, but that's OK, as long |
| 6156 | * as the task is no longer on this CPU. |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 6157 | * |
| 6158 | * Returns non-zero if task was successfully migrated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6159 | */ |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 6160 | 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] | 6161 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6162 | struct rq *rq_dest, *rq_src; |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 6163 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6164 | |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 6165 | if (unlikely(!cpu_active(dest_cpu))) |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 6166 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6167 | |
| 6168 | rq_src = cpu_rq(src_cpu); |
| 6169 | rq_dest = cpu_rq(dest_cpu); |
| 6170 | |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 6171 | raw_spin_lock(&p->pi_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6172 | double_rq_lock(rq_src, rq_dest); |
| 6173 | /* Already moved. */ |
| 6174 | if (task_cpu(p) != src_cpu) |
Linus Torvalds | b1e3873 | 2008-07-10 11:25:03 -0700 | [diff] [blame] | 6175 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6176 | /* Affinity changed (again). */ |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 6177 | if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed)) |
Linus Torvalds | b1e3873 | 2008-07-10 11:25:03 -0700 | [diff] [blame] | 6178 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6179 | |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 6180 | /* |
| 6181 | * If we're not on a rq, the next wake-up will ensure we're |
| 6182 | * placed properly. |
| 6183 | */ |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 6184 | if (p->on_rq) { |
Ingo Molnar | 2e1cb74 | 2007-08-09 11:16:49 +0200 | [diff] [blame] | 6185 | deactivate_task(rq_src, p, 0); |
Peter Zijlstra | e291200 | 2009-12-16 18:04:36 +0100 | [diff] [blame] | 6186 | set_task_cpu(p, dest_cpu); |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 6187 | activate_task(rq_dest, p, 0); |
Peter Zijlstra | 15afe09 | 2008-09-20 23:38:02 +0200 | [diff] [blame] | 6188 | check_preempt_curr(rq_dest, p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6189 | } |
Linus Torvalds | b1e3873 | 2008-07-10 11:25:03 -0700 | [diff] [blame] | 6190 | done: |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 6191 | ret = 1; |
Linus Torvalds | b1e3873 | 2008-07-10 11:25:03 -0700 | [diff] [blame] | 6192 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6193 | double_rq_unlock(rq_src, rq_dest); |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 6194 | raw_spin_unlock(&p->pi_lock); |
Kirill Korotaev | efc3081 | 2006-06-27 02:54:32 -0700 | [diff] [blame] | 6195 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6196 | } |
| 6197 | |
| 6198 | /* |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6199 | * migration_cpu_stop - this will be executed by a highprio stopper thread |
| 6200 | * and performs thread migration by bumping thread off CPU then |
| 6201 | * 'pushing' onto another runqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6202 | */ |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6203 | static int migration_cpu_stop(void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6204 | { |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6205 | struct migration_arg *arg = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6206 | |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6207 | /* |
| 6208 | * The original target cpu might have gone down and we might |
| 6209 | * be on another cpu but it doesn't matter. |
| 6210 | */ |
| 6211 | local_irq_disable(); |
| 6212 | __migrate_task(arg->task, raw_smp_processor_id(), arg->dest_cpu); |
| 6213 | local_irq_enable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6214 | return 0; |
| 6215 | } |
| 6216 | |
| 6217 | #ifdef CONFIG_HOTPLUG_CPU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6218 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6219 | /* |
| 6220 | * 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] | 6221 | * offline. |
| 6222 | */ |
| 6223 | void idle_task_exit(void) |
| 6224 | { |
| 6225 | struct mm_struct *mm = current->active_mm; |
| 6226 | |
| 6227 | BUG_ON(cpu_online(smp_processor_id())); |
| 6228 | |
| 6229 | if (mm != &init_mm) |
| 6230 | switch_mm(mm, &init_mm, current); |
| 6231 | mmdrop(mm); |
| 6232 | } |
| 6233 | |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6234 | /* |
| 6235 | * While a dead CPU has no uninterruptible tasks queued at this point, |
| 6236 | * it might still have a nonzero ->nr_uninterruptible counter, because |
| 6237 | * for performance reasons the counter is not stricly tracking tasks to |
| 6238 | * their home CPUs. So we just add the counter to another CPU's counter, |
| 6239 | * to keep the global sum constant after CPU-down: |
| 6240 | */ |
| 6241 | static void migrate_nr_uninterruptible(struct rq *rq_src) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6242 | { |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6243 | struct rq *rq_dest = cpu_rq(cpumask_any(cpu_active_mask)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6244 | |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6245 | rq_dest->nr_uninterruptible += rq_src->nr_uninterruptible; |
| 6246 | rq_src->nr_uninterruptible = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6247 | } |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 6248 | |
| 6249 | /* |
| 6250 | * remove the tasks which were accounted by rq from calc_load_tasks. |
| 6251 | */ |
| 6252 | static void calc_global_load_remove(struct rq *rq) |
| 6253 | { |
| 6254 | atomic_long_sub(rq->calc_load_active, &calc_load_tasks); |
Thomas Gleixner | a468d38 | 2009-07-17 14:15:46 +0200 | [diff] [blame] | 6255 | rq->calc_load_active = 0; |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 6256 | } |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6257 | |
| 6258 | /* |
| 6259 | * Migrate all tasks from the rq, sleeping tasks will be migrated by |
| 6260 | * try_to_wake_up()->select_task_rq(). |
| 6261 | * |
| 6262 | * Called with rq->lock held even though we'er in stop_machine() and |
| 6263 | * there's no concurrency possible, we hold the required locks anyway |
| 6264 | * because of lock validation efforts. |
| 6265 | */ |
| 6266 | static void migrate_tasks(unsigned int dead_cpu) |
| 6267 | { |
| 6268 | struct rq *rq = cpu_rq(dead_cpu); |
| 6269 | struct task_struct *next, *stop = rq->stop; |
| 6270 | int dest_cpu; |
| 6271 | |
| 6272 | /* |
| 6273 | * Fudge the rq selection such that the below task selection loop |
| 6274 | * doesn't get stuck on the currently eligible stop task. |
| 6275 | * |
| 6276 | * We're currently inside stop_machine() and the rq is either stuck |
| 6277 | * in the stop_machine_cpu_stop() loop, or we're executing this code, |
| 6278 | * either way we should never end up calling schedule() until we're |
| 6279 | * done here. |
| 6280 | */ |
| 6281 | rq->stop = NULL; |
| 6282 | |
| 6283 | for ( ; ; ) { |
| 6284 | /* |
| 6285 | * There's this thread running, bail when that's the only |
| 6286 | * remaining thread. |
| 6287 | */ |
| 6288 | if (rq->nr_running == 1) |
| 6289 | break; |
| 6290 | |
| 6291 | next = pick_next_task(rq); |
| 6292 | BUG_ON(!next); |
| 6293 | next->sched_class->put_prev_task(rq, next); |
| 6294 | |
| 6295 | /* Find suitable destination for @next, with force if needed. */ |
| 6296 | dest_cpu = select_fallback_rq(dead_cpu, next); |
| 6297 | raw_spin_unlock(&rq->lock); |
| 6298 | |
| 6299 | __migrate_task(next, dead_cpu, dest_cpu); |
| 6300 | |
| 6301 | raw_spin_lock(&rq->lock); |
| 6302 | } |
| 6303 | |
| 6304 | rq->stop = stop; |
| 6305 | } |
| 6306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6307 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 6308 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6309 | #if defined(CONFIG_SCHED_DEBUG) && defined(CONFIG_SYSCTL) |
| 6310 | |
| 6311 | static struct ctl_table sd_ctl_dir[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6312 | { |
| 6313 | .procname = "sched_domain", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6314 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6315 | }, |
Eric W. Biederman | 5699230 | 2009-11-05 15:38:40 -0800 | [diff] [blame] | 6316 | {} |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6317 | }; |
| 6318 | |
| 6319 | static struct ctl_table sd_ctl_root[] = { |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6320 | { |
| 6321 | .procname = "kernel", |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6322 | .mode = 0555, |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6323 | .child = sd_ctl_dir, |
| 6324 | }, |
Eric W. Biederman | 5699230 | 2009-11-05 15:38:40 -0800 | [diff] [blame] | 6325 | {} |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6326 | }; |
| 6327 | |
| 6328 | static struct ctl_table *sd_alloc_ctl_entry(int n) |
| 6329 | { |
| 6330 | struct ctl_table *entry = |
Milton Miller | 5cf9f06 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6331 | kcalloc(n, sizeof(struct ctl_table), GFP_KERNEL); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6332 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6333 | return entry; |
| 6334 | } |
| 6335 | |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6336 | static void sd_free_ctl_entry(struct ctl_table **tablep) |
| 6337 | { |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 6338 | struct ctl_table *entry; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6339 | |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 6340 | /* |
| 6341 | * In the intermediate directories, both the child directory and |
| 6342 | * procname are dynamically allocated and could fail but the mode |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6343 | * will always be set. In the lowest directory the names are |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 6344 | * static strings and all have proc handlers. |
| 6345 | */ |
| 6346 | for (entry = *tablep; entry->mode; entry++) { |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6347 | if (entry->child) |
| 6348 | sd_free_ctl_entry(&entry->child); |
Milton Miller | cd790076 | 2007-10-17 16:55:11 +0200 | [diff] [blame] | 6349 | if (entry->proc_handler == NULL) |
| 6350 | kfree(entry->procname); |
| 6351 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6352 | |
| 6353 | kfree(*tablep); |
| 6354 | *tablep = NULL; |
| 6355 | } |
| 6356 | |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6357 | static void |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6358 | set_table_entry(struct ctl_table *entry, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6359 | const char *procname, void *data, int maxlen, |
| 6360 | mode_t mode, proc_handler *proc_handler) |
| 6361 | { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6362 | entry->procname = procname; |
| 6363 | entry->data = data; |
| 6364 | entry->maxlen = maxlen; |
| 6365 | entry->mode = mode; |
| 6366 | entry->proc_handler = proc_handler; |
| 6367 | } |
| 6368 | |
| 6369 | static struct ctl_table * |
| 6370 | sd_alloc_ctl_domain_table(struct sched_domain *sd) |
| 6371 | { |
Ingo Molnar | a5d8c34 | 2008-10-09 11:35:51 +0200 | [diff] [blame] | 6372 | struct ctl_table *table = sd_alloc_ctl_entry(13); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6373 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6374 | if (table == NULL) |
| 6375 | return NULL; |
| 6376 | |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6377 | set_table_entry(&table[0], "min_interval", &sd->min_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6378 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6379 | set_table_entry(&table[1], "max_interval", &sd->max_interval, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6380 | sizeof(long), 0644, proc_doulongvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6381 | set_table_entry(&table[2], "busy_idx", &sd->busy_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6382 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6383 | set_table_entry(&table[3], "idle_idx", &sd->idle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6384 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6385 | set_table_entry(&table[4], "newidle_idx", &sd->newidle_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6386 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6387 | set_table_entry(&table[5], "wake_idx", &sd->wake_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6388 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6389 | set_table_entry(&table[6], "forkexec_idx", &sd->forkexec_idx, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6390 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6391 | set_table_entry(&table[7], "busy_factor", &sd->busy_factor, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6392 | sizeof(int), 0644, proc_dointvec_minmax); |
Alexey Dobriyan | e036185 | 2007-08-09 11:16:46 +0200 | [diff] [blame] | 6393 | set_table_entry(&table[8], "imbalance_pct", &sd->imbalance_pct, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6394 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6395 | set_table_entry(&table[9], "cache_nice_tries", |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6396 | &sd->cache_nice_tries, |
| 6397 | sizeof(int), 0644, proc_dointvec_minmax); |
Zou Nan hai | ace8b3d | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 6398 | set_table_entry(&table[10], "flags", &sd->flags, |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6399 | sizeof(int), 0644, proc_dointvec_minmax); |
Ingo Molnar | a5d8c34 | 2008-10-09 11:35:51 +0200 | [diff] [blame] | 6400 | set_table_entry(&table[11], "name", sd->name, |
| 6401 | CORENAME_MAX_SIZE, 0444, proc_dostring); |
| 6402 | /* &table[12] is terminator */ |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6403 | |
| 6404 | return table; |
| 6405 | } |
| 6406 | |
Ingo Molnar | 9a4e715 | 2007-11-28 15:52:56 +0100 | [diff] [blame] | 6407 | static ctl_table *sd_alloc_ctl_cpu_table(int cpu) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6408 | { |
| 6409 | struct ctl_table *entry, *table; |
| 6410 | struct sched_domain *sd; |
| 6411 | int domain_num = 0, i; |
| 6412 | char buf[32]; |
| 6413 | |
| 6414 | for_each_domain(cpu, sd) |
| 6415 | domain_num++; |
| 6416 | entry = table = sd_alloc_ctl_entry(domain_num + 1); |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6417 | if (table == NULL) |
| 6418 | return NULL; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6419 | |
| 6420 | i = 0; |
| 6421 | for_each_domain(cpu, sd) { |
| 6422 | snprintf(buf, 32, "domain%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6423 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6424 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6425 | entry->child = sd_alloc_ctl_domain_table(sd); |
| 6426 | entry++; |
| 6427 | i++; |
| 6428 | } |
| 6429 | return table; |
| 6430 | } |
| 6431 | |
| 6432 | static struct ctl_table_header *sd_sysctl_header; |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6433 | static void register_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6434 | { |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 6435 | int i, cpu_num = num_possible_cpus(); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6436 | struct ctl_table *entry = sd_alloc_ctl_entry(cpu_num + 1); |
| 6437 | char buf[32]; |
| 6438 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6439 | WARN_ON(sd_ctl_dir[0].child); |
| 6440 | sd_ctl_dir[0].child = entry; |
| 6441 | |
Milton Miller | ad1cdc1 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6442 | if (entry == NULL) |
| 6443 | return; |
| 6444 | |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 6445 | for_each_possible_cpu(i) { |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6446 | snprintf(buf, 32, "cpu%d", i); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6447 | entry->procname = kstrdup(buf, GFP_KERNEL); |
Eric W. Biederman | c57baf1 | 2007-08-23 15:18:02 +0200 | [diff] [blame] | 6448 | entry->mode = 0555; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6449 | entry->child = sd_alloc_ctl_cpu_table(i); |
Milton Miller | 97b6ea7 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6450 | entry++; |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6451 | } |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6452 | |
| 6453 | WARN_ON(sd_sysctl_header); |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6454 | sd_sysctl_header = register_sysctl_table(sd_ctl_root); |
| 6455 | } |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6456 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6457 | /* may be called multiple times per register */ |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6458 | static void unregister_sched_domain_sysctl(void) |
| 6459 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6460 | if (sd_sysctl_header) |
| 6461 | unregister_sysctl_table(sd_sysctl_header); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6462 | sd_sysctl_header = NULL; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6463 | if (sd_ctl_dir[0].child) |
| 6464 | sd_free_ctl_entry(&sd_ctl_dir[0].child); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6465 | } |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6466 | #else |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 6467 | static void register_sched_domain_sysctl(void) |
| 6468 | { |
| 6469 | } |
| 6470 | static void unregister_sched_domain_sysctl(void) |
Nick Piggin | e692ab5 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 6471 | { |
| 6472 | } |
| 6473 | #endif |
| 6474 | |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6475 | static void set_rq_online(struct rq *rq) |
| 6476 | { |
| 6477 | if (!rq->online) { |
| 6478 | const struct sched_class *class; |
| 6479 | |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6480 | cpumask_set_cpu(rq->cpu, rq->rd->online); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6481 | rq->online = 1; |
| 6482 | |
| 6483 | for_each_class(class) { |
| 6484 | if (class->rq_online) |
| 6485 | class->rq_online(rq); |
| 6486 | } |
| 6487 | } |
| 6488 | } |
| 6489 | |
| 6490 | static void set_rq_offline(struct rq *rq) |
| 6491 | { |
| 6492 | if (rq->online) { |
| 6493 | const struct sched_class *class; |
| 6494 | |
| 6495 | for_each_class(class) { |
| 6496 | if (class->rq_offline) |
| 6497 | class->rq_offline(rq); |
| 6498 | } |
| 6499 | |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6500 | cpumask_clear_cpu(rq->cpu, rq->rd->online); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6501 | rq->online = 0; |
| 6502 | } |
| 6503 | } |
| 6504 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6505 | /* |
| 6506 | * migration_call - callback that gets triggered when a CPU is added. |
| 6507 | * Here we can start up the necessary migration thread for the new CPU. |
| 6508 | */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6509 | static int __cpuinit |
| 6510 | migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6511 | { |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6512 | int cpu = (long)hcpu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6513 | unsigned long flags; |
Tejun Heo | 969c792 | 2010-05-06 18:49:21 +0200 | [diff] [blame] | 6514 | struct rq *rq = cpu_rq(cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6515 | |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6516 | switch (action & ~CPU_TASKS_FROZEN) { |
Gautham R Shenoy | 5be9361 | 2007-05-09 02:34:04 -0700 | [diff] [blame] | 6517 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6518 | case CPU_UP_PREPARE: |
Thomas Gleixner | a468d38 | 2009-07-17 14:15:46 +0200 | [diff] [blame] | 6519 | rq->calc_load_update = calc_load_update; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6520 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6521 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6522 | case CPU_ONLINE: |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6523 | /* Update our root-domain */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6524 | raw_spin_lock_irqsave(&rq->lock, flags); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6525 | if (rq->rd) { |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6526 | BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span)); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6527 | |
| 6528 | set_rq_online(rq); |
Gregory Haskins | 1f94ef5 | 2008-03-10 16:52:41 -0400 | [diff] [blame] | 6529 | } |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6530 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6531 | break; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6532 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6533 | #ifdef CONFIG_HOTPLUG_CPU |
Gregory Haskins | 08f503b | 2008-03-10 17:59:11 -0400 | [diff] [blame] | 6534 | case CPU_DYING: |
Peter Zijlstra | 317f394 | 2011-04-05 17:23:58 +0200 | [diff] [blame] | 6535 | sched_ttwu_pending(); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6536 | /* Update our root-domain */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6537 | raw_spin_lock_irqsave(&rq->lock, flags); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6538 | if (rq->rd) { |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6539 | BUG_ON(!cpumask_test_cpu(cpu, rq->rd->span)); |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6540 | set_rq_offline(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6541 | } |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6542 | migrate_tasks(cpu); |
| 6543 | BUG_ON(rq->nr_running != 1); /* the migration thread */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6544 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Peter Zijlstra | 48c5cca | 2010-11-13 19:32:29 +0100 | [diff] [blame] | 6545 | |
| 6546 | migrate_nr_uninterruptible(rq); |
| 6547 | calc_global_load_remove(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6548 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6549 | #endif |
| 6550 | } |
Peter Zijlstra | 49c022e | 2011-04-05 10:14:25 +0200 | [diff] [blame] | 6551 | |
| 6552 | update_max_interval(); |
| 6553 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6554 | return NOTIFY_OK; |
| 6555 | } |
| 6556 | |
Paul Mackerras | f38b082 | 2009-06-02 21:05:16 +1000 | [diff] [blame] | 6557 | /* |
| 6558 | * Register at high priority so that task migration (migrate_all_tasks) |
| 6559 | * happens before everything else. This has to be lower priority than |
Ingo Molnar | cdd6c48 | 2009-09-21 12:02:48 +0200 | [diff] [blame] | 6560 | * the notifier in the perf_event subsystem, though. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6561 | */ |
Chandra Seetharaman | 26c2143 | 2006-06-27 02:54:10 -0700 | [diff] [blame] | 6562 | static struct notifier_block __cpuinitdata migration_notifier = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6563 | .notifier_call = migration_call, |
Tejun Heo | 50a323b | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 6564 | .priority = CPU_PRI_MIGRATION, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6565 | }; |
| 6566 | |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 6567 | static int __cpuinit sched_cpu_active(struct notifier_block *nfb, |
| 6568 | unsigned long action, void *hcpu) |
| 6569 | { |
| 6570 | switch (action & ~CPU_TASKS_FROZEN) { |
| 6571 | case CPU_ONLINE: |
| 6572 | case CPU_DOWN_FAILED: |
| 6573 | set_cpu_active((long)hcpu, true); |
| 6574 | return NOTIFY_OK; |
| 6575 | default: |
| 6576 | return NOTIFY_DONE; |
| 6577 | } |
| 6578 | } |
| 6579 | |
| 6580 | static int __cpuinit sched_cpu_inactive(struct notifier_block *nfb, |
| 6581 | unsigned long action, void *hcpu) |
| 6582 | { |
| 6583 | switch (action & ~CPU_TASKS_FROZEN) { |
| 6584 | case CPU_DOWN_PREPARE: |
| 6585 | set_cpu_active((long)hcpu, false); |
| 6586 | return NOTIFY_OK; |
| 6587 | default: |
| 6588 | return NOTIFY_DONE; |
| 6589 | } |
| 6590 | } |
| 6591 | |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 6592 | static int __init migration_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6593 | { |
| 6594 | void *cpu = (void *)(long)smp_processor_id(); |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6595 | int err; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6596 | |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 6597 | /* Initialize migration for the boot CPU */ |
Akinobu Mita | 07dccf3 | 2006-09-29 02:00:22 -0700 | [diff] [blame] | 6598 | err = migration_call(&migration_notifier, CPU_UP_PREPARE, cpu); |
| 6599 | BUG_ON(err == NOTIFY_BAD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6600 | migration_call(&migration_notifier, CPU_ONLINE, cpu); |
| 6601 | register_cpu_notifier(&migration_notifier); |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 6602 | |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 6603 | /* Register cpu active notifiers */ |
| 6604 | cpu_notifier(sched_cpu_active, CPU_PRI_SCHED_ACTIVE); |
| 6605 | cpu_notifier(sched_cpu_inactive, CPU_PRI_SCHED_INACTIVE); |
| 6606 | |
Thomas Gleixner | a004cd4 | 2009-07-21 09:54:05 +0200 | [diff] [blame] | 6607 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6608 | } |
Eduard - Gabriel Munteanu | 7babe8d | 2008-07-25 19:45:11 -0700 | [diff] [blame] | 6609 | early_initcall(migration_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6610 | #endif |
| 6611 | |
| 6612 | #ifdef CONFIG_SMP |
Christoph Lameter | 476f353 | 2007-05-06 14:48:58 -0700 | [diff] [blame] | 6613 | |
Peter Zijlstra | 4cb9883 | 2011-04-07 14:09:58 +0200 | [diff] [blame] | 6614 | static cpumask_var_t sched_domains_tmpmask; /* sched_domains_mutex */ |
| 6615 | |
Ingo Molnar | 3e9830d | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6616 | #ifdef CONFIG_SCHED_DEBUG |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6617 | |
Mike Travis | f663011 | 2009-11-17 18:22:15 -0600 | [diff] [blame] | 6618 | static __read_mostly int sched_domain_debug_enabled; |
| 6619 | |
| 6620 | static int __init sched_domain_debug_setup(char *str) |
| 6621 | { |
| 6622 | sched_domain_debug_enabled = 1; |
| 6623 | |
| 6624 | return 0; |
| 6625 | } |
| 6626 | early_param("sched_debug", sched_domain_debug_setup); |
| 6627 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 6628 | static int sched_domain_debug_one(struct sched_domain *sd, int cpu, int level, |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 6629 | struct cpumask *groupmask) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6630 | { |
| 6631 | struct sched_group *group = sd->groups; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 6632 | char str[256]; |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6633 | |
Rusty Russell | 968ea6d | 2008-12-13 21:55:51 +1030 | [diff] [blame] | 6634 | cpulist_scnprintf(str, sizeof(str), sched_domain_span(sd)); |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 6635 | cpumask_clear(groupmask); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6636 | |
| 6637 | printk(KERN_DEBUG "%*s domain %d: ", level, "", level); |
| 6638 | |
| 6639 | if (!(sd->flags & SD_LOAD_BALANCE)) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6640 | printk("does not load-balance\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6641 | if (sd->parent) |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6642 | printk(KERN_ERR "ERROR: !SD_LOAD_BALANCE domain" |
| 6643 | " has parent"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6644 | return -1; |
| 6645 | } |
| 6646 | |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6647 | printk(KERN_CONT "span %s level %s\n", str, sd->name); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6648 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6649 | if (!cpumask_test_cpu(cpu, sched_domain_span(sd))) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6650 | printk(KERN_ERR "ERROR: domain->span does not contain " |
| 6651 | "CPU%d\n", cpu); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6652 | } |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6653 | if (!cpumask_test_cpu(cpu, sched_group_cpus(group))) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6654 | printk(KERN_ERR "ERROR: domain->groups does not contain" |
| 6655 | " CPU%d\n", cpu); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6656 | } |
| 6657 | |
| 6658 | printk(KERN_DEBUG "%*s groups:", level + 1, ""); |
| 6659 | do { |
| 6660 | if (!group) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6661 | printk("\n"); |
| 6662 | printk(KERN_ERR "ERROR: group is NULL\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6663 | break; |
| 6664 | } |
| 6665 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 6666 | if (!group->sgp->power) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6667 | printk(KERN_CONT "\n"); |
| 6668 | printk(KERN_ERR "ERROR: domain->cpu_power not " |
| 6669 | "set\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6670 | break; |
| 6671 | } |
| 6672 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6673 | if (!cpumask_weight(sched_group_cpus(group))) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6674 | printk(KERN_CONT "\n"); |
| 6675 | printk(KERN_ERR "ERROR: empty group\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6676 | break; |
| 6677 | } |
| 6678 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6679 | if (cpumask_intersects(groupmask, sched_group_cpus(group))) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6680 | printk(KERN_CONT "\n"); |
| 6681 | printk(KERN_ERR "ERROR: repeated CPUs\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6682 | break; |
| 6683 | } |
| 6684 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6685 | cpumask_or(groupmask, groupmask, sched_group_cpus(group)); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6686 | |
Rusty Russell | 968ea6d | 2008-12-13 21:55:51 +1030 | [diff] [blame] | 6687 | cpulist_scnprintf(str, sizeof(str), sched_group_cpus(group)); |
Gautham R Shenoy | 381512c | 2009-04-14 09:09:36 +0530 | [diff] [blame] | 6688 | |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6689 | printk(KERN_CONT " %s", str); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 6690 | if (group->sgp->power != SCHED_POWER_SCALE) { |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6691 | printk(KERN_CONT " (cpu_power = %d)", |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 6692 | group->sgp->power); |
Gautham R Shenoy | 381512c | 2009-04-14 09:09:36 +0530 | [diff] [blame] | 6693 | } |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6694 | |
| 6695 | group = group->next; |
| 6696 | } while (group != sd->groups); |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6697 | printk(KERN_CONT "\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6698 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6699 | if (!cpumask_equal(sched_domain_span(sd), groupmask)) |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6700 | printk(KERN_ERR "ERROR: groups don't span domain->span\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6701 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6702 | if (sd->parent && |
| 6703 | !cpumask_subset(groupmask, sched_domain_span(sd->parent))) |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 6704 | printk(KERN_ERR "ERROR: parent span is not a superset " |
| 6705 | "of domain->span\n"); |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6706 | return 0; |
| 6707 | } |
| 6708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6709 | static void sched_domain_debug(struct sched_domain *sd, int cpu) |
| 6710 | { |
| 6711 | int level = 0; |
| 6712 | |
Mike Travis | f663011 | 2009-11-17 18:22:15 -0600 | [diff] [blame] | 6713 | if (!sched_domain_debug_enabled) |
| 6714 | return; |
| 6715 | |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 6716 | if (!sd) { |
| 6717 | printk(KERN_DEBUG "CPU%d attaching NULL sched-domain.\n", cpu); |
| 6718 | return; |
| 6719 | } |
| 6720 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6721 | printk(KERN_DEBUG "CPU%d attaching sched-domain:\n", cpu); |
| 6722 | |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6723 | for (;;) { |
Peter Zijlstra | 4cb9883 | 2011-04-07 14:09:58 +0200 | [diff] [blame] | 6724 | if (sched_domain_debug_one(sd, cpu, level, sched_domains_tmpmask)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6725 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6726 | level++; |
| 6727 | sd = sd->parent; |
Miguel Ojeda Sandonis | 33859f7 | 2006-12-10 02:20:38 -0800 | [diff] [blame] | 6728 | if (!sd) |
Ingo Molnar | 4dcf6af | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 6729 | break; |
| 6730 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6731 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6732 | #else /* !CONFIG_SCHED_DEBUG */ |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6733 | # define sched_domain_debug(sd, cpu) do { } while (0) |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 6734 | #endif /* CONFIG_SCHED_DEBUG */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6735 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 6736 | static int sd_degenerate(struct sched_domain *sd) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6737 | { |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6738 | if (cpumask_weight(sched_domain_span(sd)) == 1) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6739 | return 1; |
| 6740 | |
| 6741 | /* Following flags need at least 2 groups */ |
| 6742 | if (sd->flags & (SD_LOAD_BALANCE | |
| 6743 | SD_BALANCE_NEWIDLE | |
| 6744 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6745 | SD_BALANCE_EXEC | |
| 6746 | SD_SHARE_CPUPOWER | |
| 6747 | SD_SHARE_PKG_RESOURCES)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6748 | if (sd->groups != sd->groups->next) |
| 6749 | return 0; |
| 6750 | } |
| 6751 | |
| 6752 | /* Following flags don't use groups */ |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 6753 | if (sd->flags & (SD_WAKE_AFFINE)) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6754 | return 0; |
| 6755 | |
| 6756 | return 1; |
| 6757 | } |
| 6758 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 6759 | static int |
| 6760 | sd_parent_degenerate(struct sched_domain *sd, struct sched_domain *parent) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6761 | { |
| 6762 | unsigned long cflags = sd->flags, pflags = parent->flags; |
| 6763 | |
| 6764 | if (sd_degenerate(parent)) |
| 6765 | return 1; |
| 6766 | |
Rusty Russell | 758b2cd | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 6767 | if (!cpumask_equal(sched_domain_span(sd), sched_domain_span(parent))) |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6768 | return 0; |
| 6769 | |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6770 | /* Flags needing groups don't count if only 1 group in parent */ |
| 6771 | if (parent->groups == parent->groups->next) { |
| 6772 | pflags &= ~(SD_LOAD_BALANCE | |
| 6773 | SD_BALANCE_NEWIDLE | |
| 6774 | SD_BALANCE_FORK | |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 6775 | SD_BALANCE_EXEC | |
| 6776 | SD_SHARE_CPUPOWER | |
| 6777 | SD_SHARE_PKG_RESOURCES); |
Ken Chen | 5436499 | 2008-12-07 18:47:37 -0800 | [diff] [blame] | 6778 | if (nr_node_ids == 1) |
| 6779 | pflags &= ~SD_SERIALIZE; |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6780 | } |
| 6781 | if (~cflags & pflags) |
| 6782 | return 0; |
| 6783 | |
| 6784 | return 1; |
| 6785 | } |
| 6786 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6787 | static void free_rootdomain(struct rcu_head *rcu) |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6788 | { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6789 | struct root_domain *rd = container_of(rcu, struct root_domain, rcu); |
Peter Zijlstra | 047106a | 2009-11-16 10:28:09 +0100 | [diff] [blame] | 6790 | |
Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 6791 | cpupri_cleanup(&rd->cpupri); |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6792 | free_cpumask_var(rd->rto_mask); |
| 6793 | free_cpumask_var(rd->online); |
| 6794 | free_cpumask_var(rd->span); |
| 6795 | kfree(rd); |
| 6796 | } |
| 6797 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6798 | static void rq_attach_root(struct rq *rq, struct root_domain *rd) |
| 6799 | { |
Ingo Molnar | a0490fa | 2009-02-12 11:35:40 +0100 | [diff] [blame] | 6800 | struct root_domain *old_rd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6801 | unsigned long flags; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6802 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6803 | raw_spin_lock_irqsave(&rq->lock, flags); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6804 | |
| 6805 | if (rq->rd) { |
Ingo Molnar | a0490fa | 2009-02-12 11:35:40 +0100 | [diff] [blame] | 6806 | old_rd = rq->rd; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6807 | |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6808 | if (cpumask_test_cpu(rq->cpu, old_rd->online)) |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6809 | set_rq_offline(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6810 | |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6811 | cpumask_clear_cpu(rq->cpu, old_rd->span); |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6812 | |
Ingo Molnar | a0490fa | 2009-02-12 11:35:40 +0100 | [diff] [blame] | 6813 | /* |
| 6814 | * If we dont want to free the old_rt yet then |
| 6815 | * set old_rd to NULL to skip the freeing later |
| 6816 | * in this function: |
| 6817 | */ |
| 6818 | if (!atomic_dec_and_test(&old_rd->refcount)) |
| 6819 | old_rd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6820 | } |
| 6821 | |
| 6822 | atomic_inc(&rd->refcount); |
| 6823 | rq->rd = rd; |
| 6824 | |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6825 | cpumask_set_cpu(rq->cpu, rd->span); |
Gregory Haskins | 00aec93 | 2009-07-30 10:57:23 -0400 | [diff] [blame] | 6826 | if (cpumask_test_cpu(rq->cpu, cpu_active_mask)) |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 6827 | set_rq_online(rq); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6828 | |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 6829 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Ingo Molnar | a0490fa | 2009-02-12 11:35:40 +0100 | [diff] [blame] | 6830 | |
| 6831 | if (old_rd) |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6832 | call_rcu_sched(&old_rd->rcu, free_rootdomain); |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6833 | } |
| 6834 | |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6835 | static int init_rootdomain(struct root_domain *rd) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6836 | { |
| 6837 | memset(rd, 0, sizeof(*rd)); |
| 6838 | |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6839 | if (!alloc_cpumask_var(&rd->span, GFP_KERNEL)) |
Li Zefan | 0c910d2 | 2009-01-06 17:39:06 +0800 | [diff] [blame] | 6840 | goto out; |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6841 | if (!alloc_cpumask_var(&rd->online, GFP_KERNEL)) |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6842 | goto free_span; |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6843 | if (!alloc_cpumask_var(&rd->rto_mask, GFP_KERNEL)) |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6844 | goto free_online; |
Gregory Haskins | 6e0534f | 2008-05-12 21:21:01 +0200 | [diff] [blame] | 6845 | |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6846 | if (cpupri_init(&rd->cpupri) != 0) |
Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 6847 | goto free_rto_mask; |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6848 | return 0; |
| 6849 | |
Rusty Russell | 68e7456 | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 6850 | free_rto_mask: |
| 6851 | free_cpumask_var(rd->rto_mask); |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6852 | free_online: |
| 6853 | free_cpumask_var(rd->online); |
| 6854 | free_span: |
| 6855 | free_cpumask_var(rd->span); |
Li Zefan | 0c910d2 | 2009-01-06 17:39:06 +0800 | [diff] [blame] | 6856 | out: |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6857 | return -ENOMEM; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6858 | } |
| 6859 | |
| 6860 | static void init_defrootdomain(void) |
| 6861 | { |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6862 | init_rootdomain(&def_root_domain); |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6863 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6864 | atomic_set(&def_root_domain.refcount, 1); |
| 6865 | } |
| 6866 | |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 6867 | static struct root_domain *alloc_rootdomain(void) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6868 | { |
| 6869 | struct root_domain *rd; |
| 6870 | |
| 6871 | rd = kmalloc(sizeof(*rd), GFP_KERNEL); |
| 6872 | if (!rd) |
| 6873 | return NULL; |
| 6874 | |
Pekka Enberg | 68c38fc | 2010-07-15 23:18:22 +0300 | [diff] [blame] | 6875 | if (init_rootdomain(rd) != 0) { |
Rusty Russell | c6c4927 | 2008-11-25 02:35:05 +1030 | [diff] [blame] | 6876 | kfree(rd); |
| 6877 | return NULL; |
| 6878 | } |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6879 | |
| 6880 | return rd; |
| 6881 | } |
| 6882 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 6883 | static void free_sched_groups(struct sched_group *sg, int free_sgp) |
| 6884 | { |
| 6885 | struct sched_group *tmp, *first; |
| 6886 | |
| 6887 | if (!sg) |
| 6888 | return; |
| 6889 | |
| 6890 | first = sg; |
| 6891 | do { |
| 6892 | tmp = sg->next; |
| 6893 | |
| 6894 | if (free_sgp && atomic_dec_and_test(&sg->sgp->ref)) |
| 6895 | kfree(sg->sgp); |
| 6896 | |
| 6897 | kfree(sg); |
| 6898 | sg = tmp; |
| 6899 | } while (sg != first); |
| 6900 | } |
| 6901 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6902 | static void free_sched_domain(struct rcu_head *rcu) |
| 6903 | { |
| 6904 | struct sched_domain *sd = container_of(rcu, struct sched_domain, rcu); |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 6905 | |
| 6906 | /* |
| 6907 | * If its an overlapping domain it has private groups, iterate and |
| 6908 | * nuke them all. |
| 6909 | */ |
| 6910 | if (sd->flags & SD_OVERLAP) { |
| 6911 | free_sched_groups(sd->groups, 1); |
| 6912 | } else if (atomic_dec_and_test(&sd->groups->ref)) { |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 6913 | kfree(sd->groups->sgp); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6914 | kfree(sd->groups); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 6915 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6916 | kfree(sd); |
| 6917 | } |
| 6918 | |
| 6919 | static void destroy_sched_domain(struct sched_domain *sd, int cpu) |
| 6920 | { |
| 6921 | call_rcu(&sd->rcu, free_sched_domain); |
| 6922 | } |
| 6923 | |
| 6924 | static void destroy_sched_domains(struct sched_domain *sd, int cpu) |
| 6925 | { |
| 6926 | for (; sd; sd = sd->parent) |
| 6927 | destroy_sched_domain(sd, cpu); |
| 6928 | } |
| 6929 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6930 | /* |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6931 | * Attach the domain 'sd' to 'cpu' as its base domain. Callers must |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6932 | * hold the hotplug lock. |
| 6933 | */ |
Ingo Molnar | 0eab914 | 2008-01-25 21:08:19 +0100 | [diff] [blame] | 6934 | static void |
| 6935 | 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] | 6936 | { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 6937 | struct rq *rq = cpu_rq(cpu); |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6938 | struct sched_domain *tmp; |
| 6939 | |
| 6940 | /* Remove the sched domains which do not contribute to scheduling. */ |
Li Zefan | f29c9b1 | 2008-11-06 09:45:16 +0800 | [diff] [blame] | 6941 | for (tmp = sd; tmp; ) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6942 | struct sched_domain *parent = tmp->parent; |
| 6943 | if (!parent) |
| 6944 | break; |
Li Zefan | f29c9b1 | 2008-11-06 09:45:16 +0800 | [diff] [blame] | 6945 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6946 | if (sd_parent_degenerate(tmp, parent)) { |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6947 | tmp->parent = parent->parent; |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6948 | if (parent->parent) |
| 6949 | parent->parent->child = tmp; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6950 | destroy_sched_domain(parent, cpu); |
Li Zefan | f29c9b1 | 2008-11-06 09:45:16 +0800 | [diff] [blame] | 6951 | } else |
| 6952 | tmp = tmp->parent; |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6953 | } |
| 6954 | |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6955 | if (sd && sd_degenerate(sd)) { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6956 | tmp = sd; |
Suresh Siddha | 245af2c | 2005-06-25 14:57:25 -0700 | [diff] [blame] | 6957 | sd = sd->parent; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6958 | destroy_sched_domain(tmp, cpu); |
Siddha, Suresh B | 1a84887 | 2006-10-03 01:14:08 -0700 | [diff] [blame] | 6959 | if (sd) |
| 6960 | sd->child = NULL; |
| 6961 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6962 | |
Peter Zijlstra | 4cb9883 | 2011-04-07 14:09:58 +0200 | [diff] [blame] | 6963 | sched_domain_debug(sd, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6964 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 6965 | rq_attach_root(rq, rd); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6966 | tmp = rq->sd; |
Nick Piggin | 674311d | 2005-06-25 14:57:27 -0700 | [diff] [blame] | 6967 | rcu_assign_pointer(rq->sd, sd); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 6968 | destroy_sched_domains(tmp, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6969 | } |
| 6970 | |
| 6971 | /* cpus with isolated domains */ |
Rusty Russell | dcc30a3 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 6972 | static cpumask_var_t cpu_isolated_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6973 | |
| 6974 | /* Setup the mask of cpus configured for isolated domains */ |
| 6975 | static int __init isolated_cpu_setup(char *str) |
| 6976 | { |
Rusty Russell | bdddd29 | 2009-12-02 14:09:16 +1030 | [diff] [blame] | 6977 | alloc_bootmem_cpumask_var(&cpu_isolated_map); |
Rusty Russell | 968ea6d | 2008-12-13 21:55:51 +1030 | [diff] [blame] | 6978 | cpulist_parse(str, cpu_isolated_map); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6979 | return 1; |
| 6980 | } |
| 6981 | |
Ingo Molnar | 8927f49 | 2007-10-15 17:00:13 +0200 | [diff] [blame] | 6982 | __setup("isolcpus=", isolated_cpu_setup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6983 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6984 | #define SD_NODES_PER_DOMAIN 16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6985 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6986 | #ifdef CONFIG_NUMA |
akpm@osdl.org | 198e2f1 | 2006-01-12 01:05:30 -0800 | [diff] [blame] | 6987 | |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6988 | /** |
| 6989 | * find_next_best_node - find the next node to include in a sched_domain |
| 6990 | * @node: node whose sched_domain we're building |
| 6991 | * @used_nodes: nodes already in the sched_domain |
| 6992 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 6993 | * Find the next node to include in a given scheduling domain. Simply |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6994 | * finds the closest node not already in the @used_nodes map. |
| 6995 | * |
| 6996 | * Should use nodemask_t. |
| 6997 | */ |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 6998 | static int find_next_best_node(int node, nodemask_t *used_nodes) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 6999 | { |
Hillf Danton | 7142d17 | 2011-05-05 20:53:20 +0800 | [diff] [blame] | 7000 | int i, n, val, min_val, best_node = -1; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7001 | |
| 7002 | min_val = INT_MAX; |
| 7003 | |
Mike Travis | 076ac2a | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 7004 | for (i = 0; i < nr_node_ids; i++) { |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7005 | /* Start at @node */ |
Mike Travis | 076ac2a | 2008-05-12 21:21:12 +0200 | [diff] [blame] | 7006 | n = (node + i) % nr_node_ids; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7007 | |
| 7008 | if (!nr_cpus_node(n)) |
| 7009 | continue; |
| 7010 | |
| 7011 | /* Skip already used nodes */ |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7012 | if (node_isset(n, *used_nodes)) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7013 | continue; |
| 7014 | |
| 7015 | /* Simple min distance search */ |
| 7016 | val = node_distance(node, n); |
| 7017 | |
| 7018 | if (val < min_val) { |
| 7019 | min_val = val; |
| 7020 | best_node = n; |
| 7021 | } |
| 7022 | } |
| 7023 | |
Hillf Danton | 7142d17 | 2011-05-05 20:53:20 +0800 | [diff] [blame] | 7024 | if (best_node != -1) |
| 7025 | node_set(best_node, *used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7026 | return best_node; |
| 7027 | } |
| 7028 | |
| 7029 | /** |
| 7030 | * sched_domain_node_span - get a cpumask for a node's sched_domain |
| 7031 | * @node: node whose cpumask we're constructing |
Randy Dunlap | 7348672 | 2008-04-22 10:07:22 -0700 | [diff] [blame] | 7032 | * @span: resulting cpumask |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7033 | * |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7034 | * 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] | 7035 | * should be one that prevents unnecessary balancing, but also spreads tasks |
| 7036 | * out optimally. |
| 7037 | */ |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 7038 | static void sched_domain_node_span(int node, struct cpumask *span) |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7039 | { |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7040 | nodemask_t used_nodes; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7041 | int i; |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7042 | |
Mike Travis | 6ca09df | 2008-12-31 18:08:45 -0800 | [diff] [blame] | 7043 | cpumask_clear(span); |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7044 | nodes_clear(used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7045 | |
Mike Travis | 6ca09df | 2008-12-31 18:08:45 -0800 | [diff] [blame] | 7046 | cpumask_or(span, span, cpumask_of_node(node)); |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7047 | node_set(node, used_nodes); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7048 | |
| 7049 | for (i = 1; i < SD_NODES_PER_DOMAIN; i++) { |
Mike Travis | c5f59f0 | 2008-04-04 18:11:10 -0700 | [diff] [blame] | 7050 | int next_node = find_next_best_node(node, &used_nodes); |
Hillf Danton | 7142d17 | 2011-05-05 20:53:20 +0800 | [diff] [blame] | 7051 | if (next_node < 0) |
| 7052 | break; |
Mike Travis | 6ca09df | 2008-12-31 18:08:45 -0800 | [diff] [blame] | 7053 | cpumask_or(span, span, cpumask_of_node(next_node)); |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7054 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7055 | } |
Peter Zijlstra | d3081f5 | 2011-04-07 14:09:59 +0200 | [diff] [blame] | 7056 | |
| 7057 | static const struct cpumask *cpu_node_mask(int cpu) |
| 7058 | { |
| 7059 | lockdep_assert_held(&sched_domains_mutex); |
| 7060 | |
| 7061 | sched_domain_node_span(cpu_to_node(cpu), sched_domains_tmpmask); |
| 7062 | |
| 7063 | return sched_domains_tmpmask; |
| 7064 | } |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7065 | |
| 7066 | static const struct cpumask *cpu_allnodes_mask(int cpu) |
| 7067 | { |
| 7068 | return cpu_possible_mask; |
| 7069 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7070 | #endif /* CONFIG_NUMA */ |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7071 | |
Peter Zijlstra | d3081f5 | 2011-04-07 14:09:59 +0200 | [diff] [blame] | 7072 | static const struct cpumask *cpu_cpu_mask(int cpu) |
| 7073 | { |
| 7074 | return cpumask_of_node(cpu_to_node(cpu)); |
| 7075 | } |
| 7076 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7077 | int sched_smt_power_savings = 0, sched_mc_power_savings = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7078 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7079 | struct sd_data { |
| 7080 | struct sched_domain **__percpu sd; |
| 7081 | struct sched_group **__percpu sg; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7082 | struct sched_group_power **__percpu sgp; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7083 | }; |
| 7084 | |
Andreas Herrmann | 49a02c5 | 2009-08-18 12:51:52 +0200 | [diff] [blame] | 7085 | struct s_data { |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7086 | struct sched_domain ** __percpu sd; |
Andreas Herrmann | 49a02c5 | 2009-08-18 12:51:52 +0200 | [diff] [blame] | 7087 | struct root_domain *rd; |
| 7088 | }; |
| 7089 | |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7090 | enum s_alloc { |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7091 | sa_rootdomain, |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7092 | sa_sd, |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7093 | sa_sd_storage, |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7094 | sa_none, |
| 7095 | }; |
| 7096 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7097 | struct sched_domain_topology_level; |
| 7098 | |
| 7099 | typedef struct sched_domain *(*sched_domain_init_f)(struct sched_domain_topology_level *tl, int cpu); |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7100 | typedef const struct cpumask *(*sched_domain_mask_f)(int cpu); |
| 7101 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7102 | #define SDTL_OVERLAP 0x01 |
| 7103 | |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7104 | struct sched_domain_topology_level { |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7105 | sched_domain_init_f init; |
| 7106 | sched_domain_mask_f mask; |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7107 | int flags; |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7108 | struct sd_data data; |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7109 | }; |
| 7110 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7111 | static int |
| 7112 | build_overlap_sched_groups(struct sched_domain *sd, int cpu) |
| 7113 | { |
| 7114 | struct sched_group *first = NULL, *last = NULL, *groups = NULL, *sg; |
| 7115 | const struct cpumask *span = sched_domain_span(sd); |
| 7116 | struct cpumask *covered = sched_domains_tmpmask; |
| 7117 | struct sd_data *sdd = sd->private; |
| 7118 | struct sched_domain *child; |
| 7119 | int i; |
| 7120 | |
| 7121 | cpumask_clear(covered); |
| 7122 | |
| 7123 | for_each_cpu(i, span) { |
| 7124 | struct cpumask *sg_span; |
| 7125 | |
| 7126 | if (cpumask_test_cpu(i, covered)) |
| 7127 | continue; |
| 7128 | |
| 7129 | sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(), |
| 7130 | GFP_KERNEL, cpu_to_node(i)); |
| 7131 | |
| 7132 | if (!sg) |
| 7133 | goto fail; |
| 7134 | |
| 7135 | sg_span = sched_group_cpus(sg); |
| 7136 | |
| 7137 | child = *per_cpu_ptr(sdd->sd, i); |
| 7138 | if (child->child) { |
| 7139 | child = child->child; |
| 7140 | cpumask_copy(sg_span, sched_domain_span(child)); |
| 7141 | } else |
| 7142 | cpumask_set_cpu(i, sg_span); |
| 7143 | |
| 7144 | cpumask_or(covered, covered, sg_span); |
| 7145 | |
| 7146 | sg->sgp = *per_cpu_ptr(sdd->sgp, cpumask_first(sg_span)); |
| 7147 | atomic_inc(&sg->sgp->ref); |
| 7148 | |
| 7149 | if (cpumask_test_cpu(cpu, sg_span)) |
| 7150 | groups = sg; |
| 7151 | |
| 7152 | if (!first) |
| 7153 | first = sg; |
| 7154 | if (last) |
| 7155 | last->next = sg; |
| 7156 | last = sg; |
| 7157 | last->next = first; |
| 7158 | } |
| 7159 | sd->groups = groups; |
| 7160 | |
| 7161 | return 0; |
| 7162 | |
| 7163 | fail: |
| 7164 | free_sched_groups(first, 0); |
| 7165 | |
| 7166 | return -ENOMEM; |
| 7167 | } |
| 7168 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7169 | static int get_group(int cpu, struct sd_data *sdd, struct sched_group **sg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7170 | { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7171 | struct sched_domain *sd = *per_cpu_ptr(sdd->sd, cpu); |
| 7172 | struct sched_domain *child = sd->child; |
| 7173 | |
| 7174 | if (child) |
| 7175 | cpu = cpumask_first(sched_domain_span(child)); |
| 7176 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7177 | if (sg) { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7178 | *sg = *per_cpu_ptr(sdd->sg, cpu); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7179 | (*sg)->sgp = *per_cpu_ptr(sdd->sgp, cpu); |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7180 | atomic_set(&(*sg)->sgp->ref, 1); /* for claim_allocations */ |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7181 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7182 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7183 | return cpu; |
| 7184 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7185 | |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7186 | /* |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7187 | * build_sched_groups will build a circular linked list of the groups |
| 7188 | * covered by the given span, and will set each group's ->cpumask correctly, |
| 7189 | * and ->cpu_power to 0. |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7190 | * |
| 7191 | * Assumes the sched_domain tree is fully constructed |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7192 | */ |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7193 | static int |
| 7194 | build_sched_groups(struct sched_domain *sd, int cpu) |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7195 | { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7196 | struct sched_group *first = NULL, *last = NULL; |
| 7197 | struct sd_data *sdd = sd->private; |
| 7198 | const struct cpumask *span = sched_domain_span(sd); |
Peter Zijlstra | f96225f | 2011-04-07 14:09:57 +0200 | [diff] [blame] | 7199 | struct cpumask *covered; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7200 | int i; |
| 7201 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7202 | get_group(cpu, sdd, &sd->groups); |
| 7203 | atomic_inc(&sd->groups->ref); |
| 7204 | |
| 7205 | if (cpu != cpumask_first(sched_domain_span(sd))) |
| 7206 | return 0; |
| 7207 | |
Peter Zijlstra | f96225f | 2011-04-07 14:09:57 +0200 | [diff] [blame] | 7208 | lockdep_assert_held(&sched_domains_mutex); |
| 7209 | covered = sched_domains_tmpmask; |
| 7210 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7211 | cpumask_clear(covered); |
| 7212 | |
| 7213 | for_each_cpu(i, span) { |
| 7214 | struct sched_group *sg; |
| 7215 | int group = get_group(i, sdd, &sg); |
| 7216 | int j; |
| 7217 | |
| 7218 | if (cpumask_test_cpu(i, covered)) |
| 7219 | continue; |
| 7220 | |
| 7221 | cpumask_clear(sched_group_cpus(sg)); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7222 | sg->sgp->power = 0; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7223 | |
| 7224 | for_each_cpu(j, span) { |
| 7225 | if (get_group(j, sdd, NULL) != group) |
| 7226 | continue; |
| 7227 | |
| 7228 | cpumask_set_cpu(j, covered); |
| 7229 | cpumask_set_cpu(j, sched_group_cpus(sg)); |
| 7230 | } |
| 7231 | |
| 7232 | if (!first) |
| 7233 | first = sg; |
| 7234 | if (last) |
| 7235 | last->next = sg; |
| 7236 | last = sg; |
| 7237 | } |
| 7238 | last->next = first; |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7239 | |
| 7240 | return 0; |
Siddha, Suresh B | 1e9f28f | 2006-03-27 01:15:22 -0800 | [diff] [blame] | 7241 | } |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7242 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7243 | /* |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7244 | * Initialize sched groups cpu_power. |
| 7245 | * |
| 7246 | * cpu_power indicates the capacity of sched group, which is used while |
| 7247 | * distributing the load between different sched groups in a sched domain. |
| 7248 | * Typically cpu_power for all the groups in a sched domain will be same unless |
| 7249 | * there are asymmetries in the topology. If there are asymmetries, group |
| 7250 | * having more cpu_power will pickup more load compared to the group having |
| 7251 | * less cpu_power. |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7252 | */ |
| 7253 | static void init_sched_groups_power(int cpu, struct sched_domain *sd) |
| 7254 | { |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7255 | struct sched_group *sg = sd->groups; |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7256 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7257 | WARN_ON(!sd || !sg); |
| 7258 | |
| 7259 | do { |
| 7260 | sg->group_weight = cpumask_weight(sched_group_cpus(sg)); |
| 7261 | sg = sg->next; |
| 7262 | } while (sg != sd->groups); |
| 7263 | |
| 7264 | if (cpu != group_first_cpu(sg)) |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7265 | return; |
| 7266 | |
Peter Zijlstra | d274cb3 | 2011-04-07 14:09:43 +0200 | [diff] [blame] | 7267 | update_group_power(sd, cpu); |
Siddha, Suresh B | 89c4710 | 2006-10-03 01:14:09 -0700 | [diff] [blame] | 7268 | } |
| 7269 | |
| 7270 | /* |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7271 | * Initializers for schedule domains |
| 7272 | * Non-inlined to reduce accumulated stack pressure in build_sched_domains() |
| 7273 | */ |
| 7274 | |
Ingo Molnar | a5d8c34 | 2008-10-09 11:35:51 +0200 | [diff] [blame] | 7275 | #ifdef CONFIG_SCHED_DEBUG |
| 7276 | # define SD_INIT_NAME(sd, type) sd->name = #type |
| 7277 | #else |
| 7278 | # define SD_INIT_NAME(sd, type) do { } while (0) |
| 7279 | #endif |
| 7280 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7281 | #define SD_INIT_FUNC(type) \ |
| 7282 | static noinline struct sched_domain * \ |
| 7283 | sd_init_##type(struct sched_domain_topology_level *tl, int cpu) \ |
| 7284 | { \ |
| 7285 | struct sched_domain *sd = *per_cpu_ptr(tl->data.sd, cpu); \ |
| 7286 | *sd = SD_##type##_INIT; \ |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7287 | SD_INIT_NAME(sd, type); \ |
| 7288 | sd->private = &tl->data; \ |
| 7289 | return sd; \ |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7290 | } |
| 7291 | |
| 7292 | SD_INIT_FUNC(CPU) |
| 7293 | #ifdef CONFIG_NUMA |
| 7294 | SD_INIT_FUNC(ALLNODES) |
| 7295 | SD_INIT_FUNC(NODE) |
| 7296 | #endif |
| 7297 | #ifdef CONFIG_SCHED_SMT |
| 7298 | SD_INIT_FUNC(SIBLING) |
| 7299 | #endif |
| 7300 | #ifdef CONFIG_SCHED_MC |
| 7301 | SD_INIT_FUNC(MC) |
| 7302 | #endif |
Heiko Carstens | 01a0854 | 2010-08-31 10:28:16 +0200 | [diff] [blame] | 7303 | #ifdef CONFIG_SCHED_BOOK |
| 7304 | SD_INIT_FUNC(BOOK) |
| 7305 | #endif |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7306 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7307 | static int default_relax_domain_level = -1; |
Peter Zijlstra | 60495e7 | 2011-04-07 14:10:04 +0200 | [diff] [blame] | 7308 | int sched_domain_level_max; |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7309 | |
| 7310 | static int __init setup_relax_domain_level(char *str) |
| 7311 | { |
Li Zefan | 30e0e17 | 2008-05-13 10:27:17 +0800 | [diff] [blame] | 7312 | unsigned long val; |
| 7313 | |
| 7314 | val = simple_strtoul(str, NULL, 0); |
Peter Zijlstra | 60495e7 | 2011-04-07 14:10:04 +0200 | [diff] [blame] | 7315 | if (val < sched_domain_level_max) |
Li Zefan | 30e0e17 | 2008-05-13 10:27:17 +0800 | [diff] [blame] | 7316 | default_relax_domain_level = val; |
| 7317 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7318 | return 1; |
| 7319 | } |
| 7320 | __setup("relax_domain_level=", setup_relax_domain_level); |
| 7321 | |
| 7322 | static void set_domain_attribute(struct sched_domain *sd, |
| 7323 | struct sched_domain_attr *attr) |
| 7324 | { |
| 7325 | int request; |
| 7326 | |
| 7327 | if (!attr || attr->relax_domain_level < 0) { |
| 7328 | if (default_relax_domain_level < 0) |
| 7329 | return; |
| 7330 | else |
| 7331 | request = default_relax_domain_level; |
| 7332 | } else |
| 7333 | request = attr->relax_domain_level; |
| 7334 | if (request < sd->level) { |
| 7335 | /* turn off idle balance on this domain */ |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 7336 | sd->flags &= ~(SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7337 | } else { |
| 7338 | /* turn on idle balance on this domain */ |
Peter Zijlstra | c88d591 | 2009-09-10 13:50:02 +0200 | [diff] [blame] | 7339 | sd->flags |= (SD_BALANCE_WAKE|SD_BALANCE_NEWIDLE); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7340 | } |
| 7341 | } |
| 7342 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7343 | static void __sdt_free(const struct cpumask *cpu_map); |
| 7344 | static int __sdt_alloc(const struct cpumask *cpu_map); |
| 7345 | |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7346 | static void __free_domain_allocs(struct s_data *d, enum s_alloc what, |
| 7347 | const struct cpumask *cpu_map) |
| 7348 | { |
| 7349 | switch (what) { |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7350 | case sa_rootdomain: |
Peter Zijlstra | 822ff79 | 2011-04-07 14:09:51 +0200 | [diff] [blame] | 7351 | if (!atomic_read(&d->rd->refcount)) |
| 7352 | free_rootdomain(&d->rd->rcu); /* fall through */ |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7353 | case sa_sd: |
| 7354 | free_percpu(d->sd); /* fall through */ |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7355 | case sa_sd_storage: |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7356 | __sdt_free(cpu_map); /* fall through */ |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7357 | case sa_none: |
| 7358 | break; |
| 7359 | } |
| 7360 | } |
| 7361 | |
| 7362 | static enum s_alloc __visit_domain_allocation_hell(struct s_data *d, |
| 7363 | const struct cpumask *cpu_map) |
| 7364 | { |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7365 | memset(d, 0, sizeof(*d)); |
| 7366 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7367 | if (__sdt_alloc(cpu_map)) |
| 7368 | return sa_sd_storage; |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7369 | d->sd = alloc_percpu(struct sched_domain *); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7370 | if (!d->sd) |
| 7371 | return sa_sd_storage; |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7372 | d->rd = alloc_rootdomain(); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7373 | if (!d->rd) |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7374 | return sa_sd; |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7375 | return sa_rootdomain; |
| 7376 | } |
| 7377 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7378 | /* |
| 7379 | * NULL the sd_data elements we've used to build the sched_domain and |
| 7380 | * sched_group structure so that the subsequent __free_domain_allocs() |
| 7381 | * will not free the data we're using. |
| 7382 | */ |
| 7383 | static void claim_allocations(int cpu, struct sched_domain *sd) |
| 7384 | { |
| 7385 | struct sd_data *sdd = sd->private; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7386 | |
| 7387 | WARN_ON_ONCE(*per_cpu_ptr(sdd->sd, cpu) != sd); |
| 7388 | *per_cpu_ptr(sdd->sd, cpu) = NULL; |
| 7389 | |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7390 | if (atomic_read(&(*per_cpu_ptr(sdd->sg, cpu))->ref)) |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7391 | *per_cpu_ptr(sdd->sg, cpu) = NULL; |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7392 | |
| 7393 | if (atomic_read(&(*per_cpu_ptr(sdd->sgp, cpu))->ref)) |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7394 | *per_cpu_ptr(sdd->sgp, cpu) = NULL; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7395 | } |
| 7396 | |
Andreas Herrmann | d817353 | 2009-08-18 12:57:03 +0200 | [diff] [blame] | 7397 | #ifdef CONFIG_SCHED_SMT |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7398 | static const struct cpumask *cpu_smt_mask(int cpu) |
| 7399 | { |
| 7400 | return topology_thread_cpumask(cpu); |
Andreas Herrmann | d817353 | 2009-08-18 12:57:03 +0200 | [diff] [blame] | 7401 | } |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7402 | #endif |
Andreas Herrmann | d817353 | 2009-08-18 12:57:03 +0200 | [diff] [blame] | 7403 | |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7404 | /* |
| 7405 | * Topology list, bottom-up. |
| 7406 | */ |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7407 | static struct sched_domain_topology_level default_topology[] = { |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7408 | #ifdef CONFIG_SCHED_SMT |
| 7409 | { sd_init_SIBLING, cpu_smt_mask, }, |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7410 | #endif |
| 7411 | #ifdef CONFIG_SCHED_MC |
| 7412 | { sd_init_MC, cpu_coregroup_mask, }, |
| 7413 | #endif |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7414 | #ifdef CONFIG_SCHED_BOOK |
| 7415 | { sd_init_BOOK, cpu_book_mask, }, |
| 7416 | #endif |
| 7417 | { sd_init_CPU, cpu_cpu_mask, }, |
| 7418 | #ifdef CONFIG_NUMA |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7419 | { sd_init_NODE, cpu_node_mask, SDTL_OVERLAP, }, |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7420 | { sd_init_ALLNODES, cpu_allnodes_mask, }, |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7421 | #endif |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7422 | { NULL, }, |
| 7423 | }; |
| 7424 | |
| 7425 | static struct sched_domain_topology_level *sched_domain_topology = default_topology; |
| 7426 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7427 | static int __sdt_alloc(const struct cpumask *cpu_map) |
| 7428 | { |
| 7429 | struct sched_domain_topology_level *tl; |
| 7430 | int j; |
| 7431 | |
| 7432 | for (tl = sched_domain_topology; tl->init; tl++) { |
| 7433 | struct sd_data *sdd = &tl->data; |
| 7434 | |
| 7435 | sdd->sd = alloc_percpu(struct sched_domain *); |
| 7436 | if (!sdd->sd) |
| 7437 | return -ENOMEM; |
| 7438 | |
| 7439 | sdd->sg = alloc_percpu(struct sched_group *); |
| 7440 | if (!sdd->sg) |
| 7441 | return -ENOMEM; |
| 7442 | |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7443 | sdd->sgp = alloc_percpu(struct sched_group_power *); |
| 7444 | if (!sdd->sgp) |
| 7445 | return -ENOMEM; |
| 7446 | |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7447 | for_each_cpu(j, cpu_map) { |
| 7448 | struct sched_domain *sd; |
| 7449 | struct sched_group *sg; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7450 | struct sched_group_power *sgp; |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7451 | |
| 7452 | sd = kzalloc_node(sizeof(struct sched_domain) + cpumask_size(), |
| 7453 | GFP_KERNEL, cpu_to_node(j)); |
| 7454 | if (!sd) |
| 7455 | return -ENOMEM; |
| 7456 | |
| 7457 | *per_cpu_ptr(sdd->sd, j) = sd; |
| 7458 | |
| 7459 | sg = kzalloc_node(sizeof(struct sched_group) + cpumask_size(), |
| 7460 | GFP_KERNEL, cpu_to_node(j)); |
| 7461 | if (!sg) |
| 7462 | return -ENOMEM; |
| 7463 | |
| 7464 | *per_cpu_ptr(sdd->sg, j) = sg; |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7465 | |
| 7466 | sgp = kzalloc_node(sizeof(struct sched_group_power), |
| 7467 | GFP_KERNEL, cpu_to_node(j)); |
| 7468 | if (!sgp) |
| 7469 | return -ENOMEM; |
| 7470 | |
| 7471 | *per_cpu_ptr(sdd->sgp, j) = sgp; |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7472 | } |
| 7473 | } |
| 7474 | |
| 7475 | return 0; |
| 7476 | } |
| 7477 | |
| 7478 | static void __sdt_free(const struct cpumask *cpu_map) |
| 7479 | { |
| 7480 | struct sched_domain_topology_level *tl; |
| 7481 | int j; |
| 7482 | |
| 7483 | for (tl = sched_domain_topology; tl->init; tl++) { |
| 7484 | struct sd_data *sdd = &tl->data; |
| 7485 | |
| 7486 | for_each_cpu(j, cpu_map) { |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7487 | struct sched_domain *sd = *per_cpu_ptr(sdd->sd, j); |
| 7488 | if (sd && (sd->flags & SD_OVERLAP)) |
| 7489 | free_sched_groups(sd->groups, 0); |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7490 | kfree(*per_cpu_ptr(sdd->sg, j)); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7491 | kfree(*per_cpu_ptr(sdd->sgp, j)); |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7492 | } |
| 7493 | free_percpu(sdd->sd); |
| 7494 | free_percpu(sdd->sg); |
Peter Zijlstra | 9c3f75c | 2011-07-14 13:00:06 +0200 | [diff] [blame] | 7495 | free_percpu(sdd->sgp); |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7496 | } |
| 7497 | } |
| 7498 | |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7499 | struct sched_domain *build_sched_domain(struct sched_domain_topology_level *tl, |
| 7500 | struct s_data *d, const struct cpumask *cpu_map, |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7501 | struct sched_domain_attr *attr, struct sched_domain *child, |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7502 | int cpu) |
| 7503 | { |
Peter Zijlstra | 54ab4ff | 2011-04-07 14:10:03 +0200 | [diff] [blame] | 7504 | struct sched_domain *sd = tl->init(tl, cpu); |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7505 | if (!sd) |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7506 | return child; |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7507 | |
| 7508 | set_domain_attribute(sd, attr); |
| 7509 | cpumask_and(sched_domain_span(sd), cpu_map, tl->mask(cpu)); |
Peter Zijlstra | 60495e7 | 2011-04-07 14:10:04 +0200 | [diff] [blame] | 7510 | if (child) { |
| 7511 | sd->level = child->level + 1; |
| 7512 | sched_domain_level_max = max(sched_domain_level_max, sd->level); |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7513 | child->parent = sd; |
Peter Zijlstra | 60495e7 | 2011-04-07 14:10:04 +0200 | [diff] [blame] | 7514 | } |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7515 | sd->child = child; |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7516 | |
| 7517 | return sd; |
| 7518 | } |
| 7519 | |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7520 | /* |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7521 | * Build sched domains for a given set of cpus and attach the sched domains |
| 7522 | * to the individual cpus |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7523 | */ |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7524 | static int build_sched_domains(const struct cpumask *cpu_map, |
| 7525 | struct sched_domain_attr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7526 | { |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7527 | enum s_alloc alloc_state = sa_none; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7528 | struct sched_domain *sd; |
Andreas Herrmann | 49a02c5 | 2009-08-18 12:51:52 +0200 | [diff] [blame] | 7529 | struct s_data d; |
Peter Zijlstra | 822ff79 | 2011-04-07 14:09:51 +0200 | [diff] [blame] | 7530 | int i, ret = -ENOMEM; |
Rusty Russell | 3404c8d | 2008-11-25 02:35:03 +1030 | [diff] [blame] | 7531 | |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7532 | alloc_state = __visit_domain_allocation_hell(&d, cpu_map); |
| 7533 | if (alloc_state != sa_rootdomain) |
| 7534 | goto error; |
Mike Travis | 7c16ec5 | 2008-04-04 18:11:11 -0700 | [diff] [blame] | 7535 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7536 | /* Set up domains for cpus specified by the cpu_map. */ |
Rusty Russell | abcd083 | 2008-11-25 02:35:02 +1030 | [diff] [blame] | 7537 | for_each_cpu(i, cpu_map) { |
Peter Zijlstra | eb7a74e6 | 2011-04-07 14:10:00 +0200 | [diff] [blame] | 7538 | struct sched_domain_topology_level *tl; |
| 7539 | |
Peter Zijlstra | 3bd65a8 | 2011-04-07 14:09:54 +0200 | [diff] [blame] | 7540 | sd = NULL; |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7541 | for (tl = sched_domain_topology; tl->init; tl++) { |
Peter Zijlstra | 2c402dc | 2011-04-07 14:10:01 +0200 | [diff] [blame] | 7542 | sd = build_sched_domain(tl, &d, cpu_map, attr, sd, i); |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7543 | if (tl->flags & SDTL_OVERLAP || sched_feat(FORCE_SD_OVERLAP)) |
| 7544 | sd->flags |= SD_OVERLAP; |
Peter Zijlstra | d110235 | 2011-07-20 18:42:57 +0200 | [diff] [blame] | 7545 | if (cpumask_equal(cpu_map, sched_domain_span(sd))) |
| 7546 | break; |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7547 | } |
Peter Zijlstra | d274cb3 | 2011-04-07 14:09:43 +0200 | [diff] [blame] | 7548 | |
Peter Zijlstra | d069b91 | 2011-04-07 14:10:02 +0200 | [diff] [blame] | 7549 | while (sd->child) |
| 7550 | sd = sd->child; |
| 7551 | |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7552 | *per_cpu_ptr(d.sd, i) = sd; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7553 | } |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7554 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7555 | /* Build the groups for the domains */ |
| 7556 | for_each_cpu(i, cpu_map) { |
| 7557 | for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) { |
| 7558 | sd->span_weight = cpumask_weight(sched_domain_span(sd)); |
Peter Zijlstra | e3589f6 | 2011-07-15 10:35:52 +0200 | [diff] [blame] | 7559 | if (sd->flags & SD_OVERLAP) { |
| 7560 | if (build_overlap_sched_groups(sd, i)) |
| 7561 | goto error; |
| 7562 | } else { |
| 7563 | if (build_sched_groups(sd, i)) |
| 7564 | goto error; |
| 7565 | } |
Peter Zijlstra | 1cf51902 | 2011-04-07 14:09:47 +0200 | [diff] [blame] | 7566 | } |
Peter Zijlstra | a06dadb | 2011-04-07 14:09:44 +0200 | [diff] [blame] | 7567 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7568 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7569 | /* Calculate CPU power for physical packages and nodes */ |
Peter Zijlstra | a9c9a9b | 2011-04-07 14:09:49 +0200 | [diff] [blame] | 7570 | for (i = nr_cpumask_bits-1; i >= 0; i--) { |
| 7571 | if (!cpumask_test_cpu(i, cpu_map)) |
| 7572 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7573 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7574 | for (sd = *per_cpu_ptr(d.sd, i); sd; sd = sd->parent) { |
| 7575 | claim_allocations(i, sd); |
Peter Zijlstra | cd4ea6a | 2011-04-07 14:09:45 +0200 | [diff] [blame] | 7576 | init_sched_groups_power(i, sd); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7577 | } |
Siddha, Suresh B | f712c0c | 2006-07-30 03:02:59 -0700 | [diff] [blame] | 7578 | } |
John Hawkes | 9c1cfda | 2005-09-06 15:18:14 -0700 | [diff] [blame] | 7579 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7580 | /* Attach the domains */ |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7581 | rcu_read_lock(); |
Rusty Russell | abcd083 | 2008-11-25 02:35:02 +1030 | [diff] [blame] | 7582 | for_each_cpu(i, cpu_map) { |
Peter Zijlstra | 21d42cc | 2011-04-07 14:09:48 +0200 | [diff] [blame] | 7583 | sd = *per_cpu_ptr(d.sd, i); |
Andreas Herrmann | 49a02c5 | 2009-08-18 12:51:52 +0200 | [diff] [blame] | 7584 | cpu_attach_domain(sd, d.rd, i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7585 | } |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7586 | rcu_read_unlock(); |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7587 | |
Peter Zijlstra | 822ff79 | 2011-04-07 14:09:51 +0200 | [diff] [blame] | 7588 | ret = 0; |
Srivatsa Vaddagiri | 51888ca | 2006-06-27 02:54:38 -0700 | [diff] [blame] | 7589 | error: |
Andreas Herrmann | 2109b99 | 2009-08-18 12:53:00 +0200 | [diff] [blame] | 7590 | __free_domain_allocs(&d, alloc_state, cpu_map); |
Peter Zijlstra | 822ff79 | 2011-04-07 14:09:51 +0200 | [diff] [blame] | 7591 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7592 | } |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7593 | |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7594 | static cpumask_var_t *doms_cur; /* current sched domains */ |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7595 | static int ndoms_cur; /* number of sched domains in 'doms_cur' */ |
Ingo Molnar | 4285f594 | 2008-05-16 17:47:14 +0200 | [diff] [blame] | 7596 | static struct sched_domain_attr *dattr_cur; |
| 7597 | /* attribues of custom domains in 'doms_cur' */ |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7598 | |
| 7599 | /* |
| 7600 | * Special case: If a kmalloc of a doms_cur partition (array of |
Rusty Russell | 4212823 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7601 | * cpumask) fails, then fallback to a single sched domain, |
| 7602 | * as determined by the single cpumask fallback_doms. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7603 | */ |
Rusty Russell | 4212823 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7604 | static cpumask_var_t fallback_doms; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7605 | |
Heiko Carstens | ee79d1b | 2008-12-09 18:49:50 +0100 | [diff] [blame] | 7606 | /* |
| 7607 | * arch_update_cpu_topology lets virtualized architectures update the |
| 7608 | * cpu core maps. It is supposed to return 1 if the topology changed |
| 7609 | * or 0 if it stayed the same. |
| 7610 | */ |
| 7611 | int __attribute__((weak)) arch_update_cpu_topology(void) |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7612 | { |
Heiko Carstens | ee79d1b | 2008-12-09 18:49:50 +0100 | [diff] [blame] | 7613 | return 0; |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7614 | } |
| 7615 | |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7616 | cpumask_var_t *alloc_sched_domains(unsigned int ndoms) |
| 7617 | { |
| 7618 | int i; |
| 7619 | cpumask_var_t *doms; |
| 7620 | |
| 7621 | doms = kmalloc(sizeof(*doms) * ndoms, GFP_KERNEL); |
| 7622 | if (!doms) |
| 7623 | return NULL; |
| 7624 | for (i = 0; i < ndoms; i++) { |
| 7625 | if (!alloc_cpumask_var(&doms[i], GFP_KERNEL)) { |
| 7626 | free_sched_domains(doms, i); |
| 7627 | return NULL; |
| 7628 | } |
| 7629 | } |
| 7630 | return doms; |
| 7631 | } |
| 7632 | |
| 7633 | void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms) |
| 7634 | { |
| 7635 | unsigned int i; |
| 7636 | for (i = 0; i < ndoms; i++) |
| 7637 | free_cpumask_var(doms[i]); |
| 7638 | kfree(doms); |
| 7639 | } |
| 7640 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7641 | /* |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7642 | * Set up scheduler domains and groups. Callers must hold the hotplug lock. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7643 | * For now this just excludes isolated cpus, but could be used to |
| 7644 | * exclude other special cases in the future. |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7645 | */ |
Peter Zijlstra | c4a8849 | 2011-04-07 14:09:42 +0200 | [diff] [blame] | 7646 | static int init_sched_domains(const struct cpumask *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7647 | { |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7648 | int err; |
| 7649 | |
Heiko Carstens | 22e52b0 | 2008-03-12 18:31:59 +0100 | [diff] [blame] | 7650 | arch_update_cpu_topology(); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7651 | ndoms_cur = 1; |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7652 | doms_cur = alloc_sched_domains(ndoms_cur); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7653 | if (!doms_cur) |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7654 | doms_cur = &fallback_doms; |
| 7655 | cpumask_andnot(doms_cur[0], cpu_map, cpu_isolated_map); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7656 | dattr_cur = NULL; |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7657 | err = build_sched_domains(doms_cur[0], NULL); |
Milton Miller | 6382bc9 | 2007-10-15 17:00:19 +0200 | [diff] [blame] | 7658 | register_sched_domain_sysctl(); |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7659 | |
| 7660 | return err; |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7661 | } |
| 7662 | |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7663 | /* |
| 7664 | * Detach sched domains from a group of cpus specified in cpu_map |
| 7665 | * These cpus will now be attached to the NULL domain |
| 7666 | */ |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 7667 | static void detach_destroy_domains(const struct cpumask *cpu_map) |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7668 | { |
| 7669 | int i; |
| 7670 | |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7671 | rcu_read_lock(); |
Rusty Russell | abcd083 | 2008-11-25 02:35:02 +1030 | [diff] [blame] | 7672 | for_each_cpu(i, cpu_map) |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 7673 | cpu_attach_domain(NULL, &def_root_domain, i); |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7674 | rcu_read_unlock(); |
Dinakar Guniguntala | 1a20ff2 | 2005-06-25 14:57:33 -0700 | [diff] [blame] | 7675 | } |
| 7676 | |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7677 | /* handle null as "default" */ |
| 7678 | static int dattrs_equal(struct sched_domain_attr *cur, int idx_cur, |
| 7679 | struct sched_domain_attr *new, int idx_new) |
| 7680 | { |
| 7681 | struct sched_domain_attr tmp; |
| 7682 | |
| 7683 | /* fast path */ |
| 7684 | if (!new && !cur) |
| 7685 | return 1; |
| 7686 | |
| 7687 | tmp = SD_ATTR_INIT; |
| 7688 | return !memcmp(cur ? (cur + idx_cur) : &tmp, |
| 7689 | new ? (new + idx_new) : &tmp, |
| 7690 | sizeof(struct sched_domain_attr)); |
| 7691 | } |
| 7692 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7693 | /* |
| 7694 | * Partition sched domains as specified by the 'ndoms_new' |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7695 | * cpumasks in the array doms_new[] of cpumasks. This compares |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7696 | * doms_new[] to the current sched domain partitioning, doms_cur[]. |
| 7697 | * It destroys each deleted domain and builds each new domain. |
| 7698 | * |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7699 | * 'doms_new' is an array of cpumask_var_t's of length 'ndoms_new'. |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 7700 | * The masks don't intersect (don't overlap.) We should setup one |
| 7701 | * sched domain for each mask. CPUs not in any of the cpumasks will |
| 7702 | * not be load balanced. If the same cpumask appears both in the |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7703 | * current 'doms_cur' domains and in the new 'doms_new', we can leave |
| 7704 | * it as it is. |
| 7705 | * |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7706 | * The passed in 'doms_new' should be allocated using |
| 7707 | * alloc_sched_domains. This routine takes ownership of it and will |
| 7708 | * free_sched_domains it when done with it. If the caller failed the |
| 7709 | * alloc call, then it can pass in doms_new == NULL && ndoms_new == 1, |
| 7710 | * and partition_sched_domains() will fallback to the single partition |
| 7711 | * 'fallback_doms', it also forces the domains to be rebuilt. |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7712 | * |
Rusty Russell | 96f874e | 2008-11-25 02:35:14 +1030 | [diff] [blame] | 7713 | * If doms_new == NULL it will be replaced with cpu_online_mask. |
Li Zefan | 700018e | 2008-11-18 14:02:03 +0800 | [diff] [blame] | 7714 | * ndoms_new == 0 is a special case for destroying existing domains, |
| 7715 | * and it will not create the default domain. |
Max Krasnyansky | dfb512e | 2008-08-29 13:11:41 -0700 | [diff] [blame] | 7716 | * |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7717 | * Call with hotplug lock held |
| 7718 | */ |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7719 | void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[], |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7720 | struct sched_domain_attr *dattr_new) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7721 | { |
Max Krasnyansky | dfb512e | 2008-08-29 13:11:41 -0700 | [diff] [blame] | 7722 | int i, j, n; |
Heiko Carstens | d65bd5e | 2008-12-09 18:49:51 +0100 | [diff] [blame] | 7723 | int new_topology; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7724 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7725 | mutex_lock(&sched_domains_mutex); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7726 | |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7727 | /* always unregister in case we don't destroy any domains */ |
| 7728 | unregister_sched_domain_sysctl(); |
| 7729 | |
Heiko Carstens | d65bd5e | 2008-12-09 18:49:51 +0100 | [diff] [blame] | 7730 | /* Let architecture update cpu core mappings. */ |
| 7731 | new_topology = arch_update_cpu_topology(); |
| 7732 | |
Max Krasnyansky | dfb512e | 2008-08-29 13:11:41 -0700 | [diff] [blame] | 7733 | n = doms_new ? ndoms_new : 0; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7734 | |
| 7735 | /* Destroy deleted domains */ |
| 7736 | for (i = 0; i < ndoms_cur; i++) { |
Heiko Carstens | d65bd5e | 2008-12-09 18:49:51 +0100 | [diff] [blame] | 7737 | for (j = 0; j < n && !new_topology; j++) { |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7738 | if (cpumask_equal(doms_cur[i], doms_new[j]) |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7739 | && dattrs_equal(dattr_cur, i, dattr_new, j)) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7740 | goto match1; |
| 7741 | } |
| 7742 | /* no match - a current sched domain not in new doms_new[] */ |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7743 | detach_destroy_domains(doms_cur[i]); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7744 | match1: |
| 7745 | ; |
| 7746 | } |
| 7747 | |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7748 | if (doms_new == NULL) { |
| 7749 | ndoms_cur = 0; |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7750 | doms_new = &fallback_doms; |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 7751 | cpumask_andnot(doms_new[0], cpu_active_mask, cpu_isolated_map); |
Li Zefan | faa2f98 | 2008-11-04 16:20:23 +0800 | [diff] [blame] | 7752 | WARN_ON_ONCE(dattr_new); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7753 | } |
| 7754 | |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7755 | /* Build new domains */ |
| 7756 | for (i = 0; i < ndoms_new; i++) { |
Heiko Carstens | d65bd5e | 2008-12-09 18:49:51 +0100 | [diff] [blame] | 7757 | for (j = 0; j < ndoms_cur && !new_topology; j++) { |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7758 | if (cpumask_equal(doms_new[i], doms_cur[j]) |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7759 | && dattrs_equal(dattr_new, i, dattr_cur, j)) |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7760 | goto match2; |
| 7761 | } |
| 7762 | /* no match - add a new doms_new */ |
Peter Zijlstra | dce840a | 2011-04-07 14:09:50 +0200 | [diff] [blame] | 7763 | build_sched_domains(doms_new[i], dattr_new ? dattr_new + i : NULL); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7764 | match2: |
| 7765 | ; |
| 7766 | } |
| 7767 | |
| 7768 | /* Remember the new sched domains */ |
Rusty Russell | acc3f5d | 2009-11-03 14:53:40 +1030 | [diff] [blame] | 7769 | if (doms_cur != &fallback_doms) |
| 7770 | free_sched_domains(doms_cur, ndoms_cur); |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7771 | kfree(dattr_cur); /* kfree(NULL) is safe */ |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7772 | doms_cur = doms_new; |
Hidetoshi Seto | 1d3504f | 2008-04-15 14:04:23 +0900 | [diff] [blame] | 7773 | dattr_cur = dattr_new; |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7774 | ndoms_cur = ndoms_new; |
Milton Miller | 7378547 | 2007-10-24 18:23:48 +0200 | [diff] [blame] | 7775 | |
| 7776 | register_sched_domain_sysctl(); |
Srivatsa Vaddagiri | a183561 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 7777 | |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7778 | mutex_unlock(&sched_domains_mutex); |
Paul Jackson | 029190c | 2007-10-18 23:40:20 -0700 | [diff] [blame] | 7779 | } |
| 7780 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7781 | #if defined(CONFIG_SCHED_MC) || defined(CONFIG_SCHED_SMT) |
Peter Zijlstra | c4a8849 | 2011-04-07 14:09:42 +0200 | [diff] [blame] | 7782 | static void reinit_sched_domains(void) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7783 | { |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7784 | get_online_cpus(); |
Max Krasnyansky | dfb512e | 2008-08-29 13:11:41 -0700 | [diff] [blame] | 7785 | |
| 7786 | /* Destroy domains first to force the rebuild */ |
| 7787 | partition_sched_domains(0, NULL, NULL); |
| 7788 | |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7789 | rebuild_sched_domains(); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7790 | put_online_cpus(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7791 | } |
| 7792 | |
| 7793 | static ssize_t sched_power_savings_store(const char *buf, size_t count, int smt) |
| 7794 | { |
Gautham R Shenoy | afb8a9b | 2008-12-18 23:26:09 +0530 | [diff] [blame] | 7795 | unsigned int level = 0; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7796 | |
Gautham R Shenoy | afb8a9b | 2008-12-18 23:26:09 +0530 | [diff] [blame] | 7797 | if (sscanf(buf, "%u", &level) != 1) |
| 7798 | return -EINVAL; |
| 7799 | |
| 7800 | /* |
| 7801 | * level is always be positive so don't check for |
| 7802 | * level < POWERSAVINGS_BALANCE_NONE which is 0 |
| 7803 | * What happens on 0 or 1 byte write, |
| 7804 | * need to check for count as well? |
| 7805 | */ |
| 7806 | |
| 7807 | if (level >= MAX_POWERSAVINGS_BALANCE_LEVELS) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7808 | return -EINVAL; |
| 7809 | |
| 7810 | if (smt) |
Gautham R Shenoy | afb8a9b | 2008-12-18 23:26:09 +0530 | [diff] [blame] | 7811 | sched_smt_power_savings = level; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7812 | else |
Gautham R Shenoy | afb8a9b | 2008-12-18 23:26:09 +0530 | [diff] [blame] | 7813 | sched_mc_power_savings = level; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7814 | |
Peter Zijlstra | c4a8849 | 2011-04-07 14:09:42 +0200 | [diff] [blame] | 7815 | reinit_sched_domains(); |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7816 | |
Li Zefan | c70f22d | 2009-01-05 19:07:50 +0800 | [diff] [blame] | 7817 | return count; |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7818 | } |
| 7819 | |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7820 | #ifdef CONFIG_SCHED_MC |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7821 | static ssize_t sched_mc_power_savings_show(struct sysdev_class *class, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 7822 | struct sysdev_class_attribute *attr, |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7823 | char *page) |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7824 | { |
| 7825 | return sprintf(page, "%u\n", sched_mc_power_savings); |
| 7826 | } |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7827 | static ssize_t sched_mc_power_savings_store(struct sysdev_class *class, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 7828 | struct sysdev_class_attribute *attr, |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7829 | const char *buf, size_t count) |
| 7830 | { |
| 7831 | return sched_power_savings_store(buf, count, 0); |
| 7832 | } |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7833 | static SYSDEV_CLASS_ATTR(sched_mc_power_savings, 0644, |
| 7834 | sched_mc_power_savings_show, |
| 7835 | sched_mc_power_savings_store); |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7836 | #endif |
| 7837 | |
| 7838 | #ifdef CONFIG_SCHED_SMT |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7839 | static ssize_t sched_smt_power_savings_show(struct sysdev_class *dev, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 7840 | struct sysdev_class_attribute *attr, |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7841 | char *page) |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7842 | { |
| 7843 | return sprintf(page, "%u\n", sched_smt_power_savings); |
| 7844 | } |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7845 | static ssize_t sched_smt_power_savings_store(struct sysdev_class *dev, |
Andi Kleen | c9be0a3 | 2010-01-05 12:47:58 +0100 | [diff] [blame] | 7846 | struct sysdev_class_attribute *attr, |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7847 | const char *buf, size_t count) |
| 7848 | { |
| 7849 | return sched_power_savings_store(buf, count, 1); |
| 7850 | } |
Andi Kleen | f718cd4 | 2008-07-29 22:33:52 -0700 | [diff] [blame] | 7851 | static SYSDEV_CLASS_ATTR(sched_smt_power_savings, 0644, |
| 7852 | sched_smt_power_savings_show, |
Adrian Bunk | 6707de00 | 2007-08-12 18:08:19 +0200 | [diff] [blame] | 7853 | sched_smt_power_savings_store); |
| 7854 | #endif |
| 7855 | |
Li Zefan | 39aac64 | 2009-01-05 19:18:02 +0800 | [diff] [blame] | 7856 | int __init sched_create_sysfs_power_savings_entries(struct sysdev_class *cls) |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7857 | { |
| 7858 | int err = 0; |
Ingo Molnar | 48f24c4 | 2006-07-03 00:25:40 -0700 | [diff] [blame] | 7859 | |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7860 | #ifdef CONFIG_SCHED_SMT |
| 7861 | if (smt_capable()) |
| 7862 | err = sysfs_create_file(&cls->kset.kobj, |
| 7863 | &attr_sched_smt_power_savings.attr); |
| 7864 | #endif |
| 7865 | #ifdef CONFIG_SCHED_MC |
| 7866 | if (!err && mc_capable()) |
| 7867 | err = sysfs_create_file(&cls->kset.kobj, |
| 7868 | &attr_sched_mc_power_savings.attr); |
| 7869 | #endif |
| 7870 | return err; |
| 7871 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 7872 | #endif /* CONFIG_SCHED_MC || CONFIG_SCHED_SMT */ |
Siddha, Suresh B | 5c45bf2 | 2006-06-27 02:54:42 -0700 | [diff] [blame] | 7873 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7874 | /* |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7875 | * Update cpusets according to cpu_active mask. If cpusets are |
| 7876 | * disabled, cpuset_update_active_cpus() becomes a simple wrapper |
| 7877 | * around partition_sched_domains(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7878 | */ |
Tejun Heo | 0b2e918 | 2010-06-21 23:53:31 +0200 | [diff] [blame] | 7879 | static int cpuset_cpu_active(struct notifier_block *nfb, unsigned long action, |
| 7880 | void *hcpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7881 | { |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7882 | switch (action & ~CPU_TASKS_FROZEN) { |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7883 | case CPU_ONLINE: |
Peter Zijlstra | 6ad4c18 | 2009-11-25 13:31:39 +0100 | [diff] [blame] | 7884 | case CPU_DOWN_FAILED: |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7885 | cpuset_update_active_cpus(); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7886 | return NOTIFY_OK; |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7887 | default: |
| 7888 | return NOTIFY_DONE; |
| 7889 | } |
| 7890 | } |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7891 | |
Tejun Heo | 0b2e918 | 2010-06-21 23:53:31 +0200 | [diff] [blame] | 7892 | static int cpuset_cpu_inactive(struct notifier_block *nfb, unsigned long action, |
| 7893 | void *hcpu) |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7894 | { |
| 7895 | switch (action & ~CPU_TASKS_FROZEN) { |
| 7896 | case CPU_DOWN_PREPARE: |
| 7897 | cpuset_update_active_cpus(); |
| 7898 | return NOTIFY_OK; |
| 7899 | default: |
| 7900 | return NOTIFY_DONE; |
| 7901 | } |
| 7902 | } |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7903 | |
| 7904 | static int update_runtime(struct notifier_block *nfb, |
| 7905 | unsigned long action, void *hcpu) |
| 7906 | { |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame] | 7907 | int cpu = (int)(long)hcpu; |
| 7908 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7909 | switch (action) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7910 | case CPU_DOWN_PREPARE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7911 | case CPU_DOWN_PREPARE_FROZEN: |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame] | 7912 | disable_runtime(cpu_rq(cpu)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7913 | return NOTIFY_OK; |
| 7914 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7915 | case CPU_DOWN_FAILED: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7916 | case CPU_DOWN_FAILED_FROZEN: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7917 | case CPU_ONLINE: |
Rafael J. Wysocki | 8bb7844 | 2007-05-09 02:35:10 -0700 | [diff] [blame] | 7918 | case CPU_ONLINE_FROZEN: |
Peter Zijlstra | 7def2be | 2008-06-05 14:49:58 +0200 | [diff] [blame] | 7919 | enable_runtime(cpu_rq(cpu)); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7920 | return NOTIFY_OK; |
| 7921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7922 | default: |
| 7923 | return NOTIFY_DONE; |
| 7924 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7925 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7926 | |
| 7927 | void __init sched_init_smp(void) |
| 7928 | { |
Rusty Russell | dcc30a3 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7929 | cpumask_var_t non_isolated_cpus; |
| 7930 | |
| 7931 | alloc_cpumask_var(&non_isolated_cpus, GFP_KERNEL); |
Yong Zhang | cb5fd13 | 2009-09-14 20:20:16 +0800 | [diff] [blame] | 7932 | alloc_cpumask_var(&fallback_doms, GFP_KERNEL); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7933 | |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7934 | get_online_cpus(); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7935 | mutex_lock(&sched_domains_mutex); |
Peter Zijlstra | c4a8849 | 2011-04-07 14:09:42 +0200 | [diff] [blame] | 7936 | init_sched_domains(cpu_active_mask); |
Rusty Russell | dcc30a3 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7937 | cpumask_andnot(non_isolated_cpus, cpu_possible_mask, cpu_isolated_map); |
| 7938 | if (cpumask_empty(non_isolated_cpus)) |
| 7939 | cpumask_set_cpu(smp_processor_id(), non_isolated_cpus); |
Heiko Carstens | 712555e | 2008-04-28 11:33:07 +0200 | [diff] [blame] | 7940 | mutex_unlock(&sched_domains_mutex); |
Gautham R Shenoy | 95402b3 | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 7941 | put_online_cpus(); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7942 | |
Tejun Heo | 3a101d0 | 2010-06-08 21:40:36 +0200 | [diff] [blame] | 7943 | hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE); |
| 7944 | hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE); |
Max Krasnyansky | e761b77 | 2008-07-15 04:43:49 -0700 | [diff] [blame] | 7945 | |
| 7946 | /* RT runtime code needs to handle some hotplug events */ |
| 7947 | hotcpu_notifier(update_runtime, 0); |
| 7948 | |
Peter Zijlstra | b328ca1 | 2008-04-29 10:02:46 +0200 | [diff] [blame] | 7949 | init_hrtick(); |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7950 | |
| 7951 | /* Move init over to a non-isolated CPU */ |
Rusty Russell | dcc30a3 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7952 | if (set_cpus_allowed_ptr(current, non_isolated_cpus) < 0) |
Nick Piggin | 5c1e176 | 2006-10-03 01:14:04 -0700 | [diff] [blame] | 7953 | BUG(); |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7954 | sched_init_granularity(); |
Rusty Russell | dcc30a3 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7955 | free_cpumask_var(non_isolated_cpus); |
Rusty Russell | 4212823 | 2008-11-25 02:35:12 +1030 | [diff] [blame] | 7956 | |
Rusty Russell | 0e3900e | 2008-11-25 02:35:13 +1030 | [diff] [blame] | 7957 | init_sched_rt_class(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7958 | } |
| 7959 | #else |
| 7960 | void __init sched_init_smp(void) |
| 7961 | { |
Ingo Molnar | 19978ca | 2007-11-09 22:39:38 +0100 | [diff] [blame] | 7962 | sched_init_granularity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7963 | } |
| 7964 | #endif /* CONFIG_SMP */ |
| 7965 | |
Arun R Bharadwaj | cd1bb94 | 2009-04-16 12:15:34 +0530 | [diff] [blame] | 7966 | const_debug unsigned int sysctl_timer_migration = 1; |
| 7967 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7968 | int in_sched_functions(unsigned long addr) |
| 7969 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7970 | return in_lock_functions(addr) || |
| 7971 | (addr >= (unsigned long)__sched_text_start |
| 7972 | && addr < (unsigned long)__sched_text_end); |
| 7973 | } |
| 7974 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 7975 | static void init_cfs_rq(struct cfs_rq *cfs_rq) |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7976 | { |
| 7977 | cfs_rq->tasks_timeline = RB_ROOT; |
Peter Zijlstra | 4a55bd5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 7978 | INIT_LIST_HEAD(&cfs_rq->tasks); |
Peter Zijlstra | 67e9fb2 | 2007-10-15 17:00:10 +0200 | [diff] [blame] | 7979 | cfs_rq->min_vruntime = (u64)(-(1LL << 20)); |
Peter Zijlstra | c64be78 | 2011-07-11 16:28:50 +0200 | [diff] [blame] | 7980 | #ifndef CONFIG_64BIT |
| 7981 | cfs_rq->min_vruntime_copy = cfs_rq->min_vruntime; |
| 7982 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 7983 | } |
| 7984 | |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 7985 | static void init_rt_rq(struct rt_rq *rt_rq, struct rq *rq) |
| 7986 | { |
| 7987 | struct rt_prio_array *array; |
| 7988 | int i; |
| 7989 | |
| 7990 | array = &rt_rq->active; |
| 7991 | for (i = 0; i < MAX_RT_PRIO; i++) { |
| 7992 | INIT_LIST_HEAD(array->queue + i); |
| 7993 | __clear_bit(i, array->bitmap); |
| 7994 | } |
| 7995 | /* delimiter for bitsearch: */ |
| 7996 | __set_bit(MAX_RT_PRIO, array->bitmap); |
| 7997 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 7998 | #if defined CONFIG_SMP |
Gregory Haskins | e864c49 | 2008-12-29 09:39:49 -0500 | [diff] [blame] | 7999 | rt_rq->highest_prio.curr = MAX_RT_PRIO; |
| 8000 | rt_rq->highest_prio.next = MAX_RT_PRIO; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8001 | rt_rq->rt_nr_migratory = 0; |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8002 | rt_rq->overloaded = 0; |
Dima Zavin | 732375c | 2011-07-07 17:27:59 -0700 | [diff] [blame] | 8003 | plist_head_init(&rt_rq->pushable_tasks); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8004 | #endif |
| 8005 | |
| 8006 | rt_rq->rt_time = 0; |
| 8007 | rt_rq->rt_throttled = 0; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8008 | rt_rq->rt_runtime = 0; |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8009 | raw_spin_lock_init(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8010 | } |
| 8011 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8012 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8013 | static void init_tg_cfs_entry(struct task_group *tg, struct cfs_rq *cfs_rq, |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8014 | struct sched_entity *se, int cpu, |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8015 | struct sched_entity *parent) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8016 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8017 | struct rq *rq = cpu_rq(cpu); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8018 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8019 | cfs_rq->tg = tg; |
| 8020 | cfs_rq->rq = rq; |
| 8021 | #ifdef CONFIG_SMP |
| 8022 | /* allow initial update_cfs_load() to truncate */ |
| 8023 | cfs_rq->load_stamp = 1; |
| 8024 | #endif |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8025 | init_cfs_rq_runtime(cfs_rq); |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8026 | |
| 8027 | tg->cfs_rq[cpu] = cfs_rq; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8028 | tg->se[cpu] = se; |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8029 | |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8030 | /* se could be NULL for root_task_group */ |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8031 | if (!se) |
| 8032 | return; |
| 8033 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8034 | if (!parent) |
| 8035 | se->cfs_rq = &rq->cfs; |
| 8036 | else |
| 8037 | se->cfs_rq = parent->my_q; |
| 8038 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8039 | se->my_q = cfs_rq; |
Paul Turner | 9437178 | 2010-11-15 15:47:10 -0800 | [diff] [blame] | 8040 | update_load_set(&se->load, 0); |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8041 | se->parent = parent; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8042 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8043 | #endif |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8044 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8045 | #ifdef CONFIG_RT_GROUP_SCHED |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8046 | static void init_tg_rt_entry(struct task_group *tg, struct rt_rq *rt_rq, |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8047 | struct sched_rt_entity *rt_se, int cpu, |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8048 | struct sched_rt_entity *parent) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8049 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8050 | struct rq *rq = cpu_rq(cpu); |
| 8051 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8052 | rt_rq->highest_prio.curr = MAX_RT_PRIO; |
| 8053 | rt_rq->rt_nr_boosted = 0; |
| 8054 | rt_rq->rq = rq; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8055 | rt_rq->tg = tg; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8056 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8057 | tg->rt_rq[cpu] = rt_rq; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8058 | tg->rt_se[cpu] = rt_se; |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8059 | |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8060 | if (!rt_se) |
| 8061 | return; |
| 8062 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8063 | if (!parent) |
| 8064 | rt_se->rt_rq = &rq->rt; |
| 8065 | else |
| 8066 | rt_se->rt_rq = parent->my_q; |
| 8067 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8068 | rt_se->my_q = rt_rq; |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8069 | rt_se->parent = parent; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8070 | INIT_LIST_HEAD(&rt_se->run_list); |
| 8071 | } |
| 8072 | #endif |
| 8073 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8074 | void __init sched_init(void) |
| 8075 | { |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8076 | int i, j; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8077 | unsigned long alloc_size = 0, ptr; |
| 8078 | |
| 8079 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 8080 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 8081 | #endif |
| 8082 | #ifdef CONFIG_RT_GROUP_SCHED |
| 8083 | alloc_size += 2 * nr_cpu_ids * sizeof(void **); |
| 8084 | #endif |
Rusty Russell | df7c8e8 | 2009-03-19 15:22:20 +1030 | [diff] [blame] | 8085 | #ifdef CONFIG_CPUMASK_OFFSTACK |
Rusty Russell | 8c083f0 | 2009-03-19 15:22:20 +1030 | [diff] [blame] | 8086 | alloc_size += num_possible_cpus() * cpumask_size(); |
Rusty Russell | df7c8e8 | 2009-03-19 15:22:20 +1030 | [diff] [blame] | 8087 | #endif |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8088 | if (alloc_size) { |
Pekka Enberg | 36b7b6d | 2009-06-10 23:42:36 +0300 | [diff] [blame] | 8089 | ptr = (unsigned long)kzalloc(alloc_size, GFP_NOWAIT); |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8090 | |
| 8091 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8092 | root_task_group.se = (struct sched_entity **)ptr; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8093 | ptr += nr_cpu_ids * sizeof(void **); |
| 8094 | |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8095 | root_task_group.cfs_rq = (struct cfs_rq **)ptr; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8096 | ptr += nr_cpu_ids * sizeof(void **); |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8097 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8098 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8099 | #ifdef CONFIG_RT_GROUP_SCHED |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8100 | root_task_group.rt_se = (struct sched_rt_entity **)ptr; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8101 | ptr += nr_cpu_ids * sizeof(void **); |
| 8102 | |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8103 | root_task_group.rt_rq = (struct rt_rq **)ptr; |
Peter Zijlstra | eff766a | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8104 | ptr += nr_cpu_ids * sizeof(void **); |
| 8105 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8106 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Rusty Russell | df7c8e8 | 2009-03-19 15:22:20 +1030 | [diff] [blame] | 8107 | #ifdef CONFIG_CPUMASK_OFFSTACK |
| 8108 | for_each_possible_cpu(i) { |
| 8109 | per_cpu(load_balance_tmpmask, i) = (void *)ptr; |
| 8110 | ptr += cpumask_size(); |
| 8111 | } |
| 8112 | #endif /* CONFIG_CPUMASK_OFFSTACK */ |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8113 | } |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8114 | |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 8115 | #ifdef CONFIG_SMP |
| 8116 | init_defrootdomain(); |
| 8117 | #endif |
| 8118 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8119 | init_rt_bandwidth(&def_rt_bandwidth, |
| 8120 | global_rt_period(), global_rt_runtime()); |
| 8121 | |
| 8122 | #ifdef CONFIG_RT_GROUP_SCHED |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8123 | init_rt_bandwidth(&root_task_group.rt_bandwidth, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8124 | global_rt_period(), global_rt_runtime()); |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8125 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8126 | |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 8127 | #ifdef CONFIG_CGROUP_SCHED |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8128 | list_add(&root_task_group.list, &task_groups); |
| 8129 | INIT_LIST_HEAD(&root_task_group.children); |
Mike Galbraith | 5091faa | 2010-11-30 14:18:03 +0100 | [diff] [blame] | 8130 | autogroup_init(&init_task); |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 8131 | #endif /* CONFIG_CGROUP_SCHED */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8132 | |
KAMEZAWA Hiroyuki | 0a94502 | 2006-03-28 01:56:37 -0800 | [diff] [blame] | 8133 | for_each_possible_cpu(i) { |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 8134 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8135 | |
| 8136 | rq = cpu_rq(i); |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 8137 | raw_spin_lock_init(&rq->lock); |
Nick Piggin | 7897986 | 2005-06-25 14:57:13 -0700 | [diff] [blame] | 8138 | rq->nr_running = 0; |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 8139 | rq->calc_load_active = 0; |
| 8140 | rq->calc_load_update = jiffies + LOAD_FREQ; |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8141 | init_cfs_rq(&rq->cfs); |
Peter Zijlstra | fa85ae2 | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8142 | init_rt_rq(&rq->rt, rq); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8143 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8144 | root_task_group.shares = root_task_group_load; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8145 | INIT_LIST_HEAD(&rq->leaf_cfs_rq_list); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8146 | /* |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8147 | * How much cpu bandwidth does root_task_group get? |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8148 | * |
| 8149 | * In case of task-groups formed thr' the cgroup filesystem, it |
| 8150 | * gets 100% of the cpu resources in the system. This overall |
| 8151 | * system cpu resource is divided among the tasks of |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8152 | * root_task_group and its child task-groups in a fair manner, |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8153 | * based on each entity's (task or task-group's) weight |
| 8154 | * (se->load.weight). |
| 8155 | * |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8156 | * In other words, if root_task_group has 10 tasks of weight |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8157 | * 1024) and two child groups A0 and A1 (of weight 1024 each), |
| 8158 | * then A0's share of the cpu resource is: |
| 8159 | * |
Ingo Molnar | 0d905bc | 2009-05-04 19:13:30 +0200 | [diff] [blame] | 8160 | * A0's bandwidth = 1024 / (10*1024 + 1024 + 1024) = 8.33% |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8161 | * |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8162 | * We achieve this by letting root_task_group's tasks sit |
| 8163 | * directly in rq->cfs (i.e root_task_group->se[] = NULL). |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8164 | */ |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8165 | init_cfs_bandwidth(&root_task_group.cfs_bandwidth); |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8166 | init_tg_cfs_entry(&root_task_group, &rq->cfs, NULL, i, NULL); |
Dhaval Giani | 354d60c | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8167 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
| 8168 | |
| 8169 | rq->rt.rt_runtime = def_rt_bandwidth.rt_runtime; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8170 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8171 | INIT_LIST_HEAD(&rq->leaf_rt_rq_list); |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 8172 | init_tg_rt_entry(&root_task_group, &rq->rt, NULL, i, NULL); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8173 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8174 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8175 | for (j = 0; j < CPU_LOAD_IDX_MAX; j++) |
| 8176 | rq->cpu_load[j] = 0; |
Venkatesh Pallipadi | fdf3e95 | 2010-05-17 18:14:43 -0700 | [diff] [blame] | 8177 | |
| 8178 | rq->last_load_update_tick = jiffies; |
| 8179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8180 | #ifdef CONFIG_SMP |
Nick Piggin | 41c7ce9 | 2005-06-25 14:57:24 -0700 | [diff] [blame] | 8181 | rq->sd = NULL; |
Gregory Haskins | 57d885f | 2008-01-25 21:08:18 +0100 | [diff] [blame] | 8182 | rq->rd = NULL; |
Nikhil Rao | 1399fa7 | 2011-05-18 10:09:39 -0700 | [diff] [blame] | 8183 | rq->cpu_power = SCHED_POWER_SCALE; |
Gregory Haskins | 3f029d3 | 2009-07-29 11:08:47 -0400 | [diff] [blame] | 8184 | rq->post_schedule = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8185 | rq->active_balance = 0; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8186 | rq->next_balance = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8187 | rq->push_cpu = 0; |
Christoph Lameter | 0a2966b | 2006-09-25 23:30:51 -0700 | [diff] [blame] | 8188 | rq->cpu = i; |
Gregory Haskins | 1f11eb6 | 2008-06-04 15:04:05 -0400 | [diff] [blame] | 8189 | rq->online = 0; |
Mike Galbraith | eae0c9d | 2009-11-10 03:50:02 +0100 | [diff] [blame] | 8190 | rq->idle_stamp = 0; |
| 8191 | rq->avg_idle = 2*sysctl_sched_migration_cost; |
Gregory Haskins | dc93852 | 2008-01-25 21:08:26 +0100 | [diff] [blame] | 8192 | rq_attach_root(rq, &def_root_domain); |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 8193 | #ifdef CONFIG_NO_HZ |
| 8194 | rq->nohz_balance_kick = 0; |
| 8195 | init_sched_softirq_csd(&per_cpu(remote_sched_softirq_cb, i)); |
| 8196 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8197 | #endif |
Peter Zijlstra | 8f4d37e | 2008-01-25 21:08:29 +0100 | [diff] [blame] | 8198 | init_rq_hrtick(rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8199 | atomic_set(&rq->nr_iowait, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8200 | } |
| 8201 | |
Peter Williams | 2dd73a4 | 2006-06-27 02:54:34 -0700 | [diff] [blame] | 8202 | set_load_weight(&init_task); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 8203 | |
Avi Kivity | e107be3 | 2007-07-26 13:40:43 +0200 | [diff] [blame] | 8204 | #ifdef CONFIG_PREEMPT_NOTIFIERS |
| 8205 | INIT_HLIST_HEAD(&init_task.preempt_notifiers); |
| 8206 | #endif |
| 8207 | |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 8208 | #ifdef CONFIG_SMP |
Carlos R. Mafra | 962cf36 | 2008-05-15 11:15:37 -0300 | [diff] [blame] | 8209 | open_softirq(SCHED_SOFTIRQ, run_rebalance_domains); |
Christoph Lameter | c9819f4 | 2006-12-10 02:20:25 -0800 | [diff] [blame] | 8210 | #endif |
| 8211 | |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 8212 | #ifdef CONFIG_RT_MUTEXES |
Dima Zavin | 732375c | 2011-07-07 17:27:59 -0700 | [diff] [blame] | 8213 | plist_head_init(&init_task.pi_waiters); |
Heiko Carstens | b50f60c | 2006-07-30 03:03:52 -0700 | [diff] [blame] | 8214 | #endif |
| 8215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8216 | /* |
| 8217 | * The boot idle thread does lazy MMU switching as well: |
| 8218 | */ |
| 8219 | atomic_inc(&init_mm.mm_count); |
| 8220 | enter_lazy_tlb(&init_mm, current); |
| 8221 | |
| 8222 | /* |
| 8223 | * Make us the idle thread. Technically, schedule() should not be |
| 8224 | * called from this thread, however somewhere below it might be, |
| 8225 | * but because we are the idle thread, we just pick up running again |
| 8226 | * when this runqueue becomes "idle". |
| 8227 | */ |
| 8228 | init_idle(current, smp_processor_id()); |
Thomas Gleixner | dce48a8 | 2009-04-11 10:43:41 +0200 | [diff] [blame] | 8229 | |
| 8230 | calc_load_update = jiffies + LOAD_FREQ; |
| 8231 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8232 | /* |
| 8233 | * During early bootup we pretend to be a normal task: |
| 8234 | */ |
| 8235 | current->sched_class = &fair_sched_class; |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 8236 | |
Rusty Russell | 6a7b3dc | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 8237 | /* Allocate the nohz_cpu_mask if CONFIG_CPUMASK_OFFSTACK */ |
Rusty Russell | 49557e6 | 2009-11-02 20:37:20 +1030 | [diff] [blame] | 8238 | zalloc_cpumask_var(&nohz_cpu_mask, GFP_NOWAIT); |
Rusty Russell | bf4d83f | 2008-11-25 09:57:51 +1030 | [diff] [blame] | 8239 | #ifdef CONFIG_SMP |
Peter Zijlstra | 4cb9883 | 2011-04-07 14:09:58 +0200 | [diff] [blame] | 8240 | zalloc_cpumask_var(&sched_domains_tmpmask, GFP_NOWAIT); |
Rusty Russell | 7d1e6a9 | 2008-11-25 02:35:09 +1030 | [diff] [blame] | 8241 | #ifdef CONFIG_NO_HZ |
Venkatesh Pallipadi | 83cd4fe | 2010-05-21 17:09:41 -0700 | [diff] [blame] | 8242 | zalloc_cpumask_var(&nohz.idle_cpus_mask, GFP_NOWAIT); |
| 8243 | alloc_cpumask_var(&nohz.grp_idle_mask, GFP_NOWAIT); |
| 8244 | atomic_set(&nohz.load_balancer, nr_cpu_ids); |
| 8245 | atomic_set(&nohz.first_pick_cpu, nr_cpu_ids); |
| 8246 | atomic_set(&nohz.second_pick_cpu, nr_cpu_ids); |
Rusty Russell | 7d1e6a9 | 2008-11-25 02:35:09 +1030 | [diff] [blame] | 8247 | #endif |
Rusty Russell | bdddd29 | 2009-12-02 14:09:16 +1030 | [diff] [blame] | 8248 | /* May be allocated at isolcpus cmdline parse time */ |
| 8249 | if (cpu_isolated_map == NULL) |
| 8250 | zalloc_cpumask_var(&cpu_isolated_map, GFP_NOWAIT); |
Rusty Russell | bf4d83f | 2008-11-25 09:57:51 +1030 | [diff] [blame] | 8251 | #endif /* SMP */ |
Rusty Russell | 6a7b3dc | 2008-11-25 02:35:04 +1030 | [diff] [blame] | 8252 | |
Ingo Molnar | 6892b75 | 2008-02-13 14:02:36 +0100 | [diff] [blame] | 8253 | scheduler_running = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8254 | } |
| 8255 | |
Frederic Weisbecker | d902db1 | 2011-06-08 19:31:56 +0200 | [diff] [blame] | 8256 | #ifdef CONFIG_DEBUG_ATOMIC_SLEEP |
Frederic Weisbecker | e4aafea | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 8257 | static inline int preempt_count_equals(int preempt_offset) |
| 8258 | { |
Frederic Weisbecker | 234da7b | 2009-12-16 20:21:05 +0100 | [diff] [blame] | 8259 | int nested = (preempt_count() & ~PREEMPT_ACTIVE) + rcu_preempt_depth(); |
Frederic Weisbecker | e4aafea | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 8260 | |
Arnd Bergmann | 4ba8216 | 2011-01-25 22:52:22 +0100 | [diff] [blame] | 8261 | return (nested == preempt_offset); |
Frederic Weisbecker | e4aafea | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 8262 | } |
| 8263 | |
Simon Kagstrom | d894837 | 2009-12-23 11:08:18 +0100 | [diff] [blame] | 8264 | void __might_sleep(const char *file, int line, int preempt_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8265 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8266 | static unsigned long prev_jiffy; /* ratelimiting */ |
| 8267 | |
Frederic Weisbecker | e4aafea | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 8268 | if ((preempt_count_equals(preempt_offset) && !irqs_disabled()) || |
| 8269 | system_state != SYSTEM_RUNNING || oops_in_progress) |
Ingo Molnar | aef745f | 2008-08-28 11:34:43 +0200 | [diff] [blame] | 8270 | return; |
| 8271 | if (time_before(jiffies, prev_jiffy + HZ) && prev_jiffy) |
| 8272 | return; |
| 8273 | prev_jiffy = jiffies; |
| 8274 | |
Peter Zijlstra | 3df0fc5 | 2009-12-20 14:23:57 +0100 | [diff] [blame] | 8275 | printk(KERN_ERR |
| 8276 | "BUG: sleeping function called from invalid context at %s:%d\n", |
| 8277 | file, line); |
| 8278 | printk(KERN_ERR |
| 8279 | "in_atomic(): %d, irqs_disabled(): %d, pid: %d, name: %s\n", |
| 8280 | in_atomic(), irqs_disabled(), |
| 8281 | current->pid, current->comm); |
Ingo Molnar | aef745f | 2008-08-28 11:34:43 +0200 | [diff] [blame] | 8282 | |
| 8283 | debug_show_held_locks(current); |
| 8284 | if (irqs_disabled()) |
| 8285 | print_irqtrace_events(current); |
| 8286 | dump_stack(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8287 | } |
| 8288 | EXPORT_SYMBOL(__might_sleep); |
| 8289 | #endif |
| 8290 | |
| 8291 | #ifdef CONFIG_MAGIC_SYSRQ |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 8292 | static void normalize_task(struct rq *rq, struct task_struct *p) |
| 8293 | { |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 8294 | const struct sched_class *prev_class = p->sched_class; |
| 8295 | int old_prio = p->prio; |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 8296 | int on_rq; |
Peter Zijlstra | 3e51f33 | 2008-05-03 18:29:28 +0200 | [diff] [blame] | 8297 | |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 8298 | on_rq = p->on_rq; |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 8299 | if (on_rq) |
| 8300 | deactivate_task(rq, p, 0); |
| 8301 | __setscheduler(rq, p, SCHED_NORMAL, 0); |
| 8302 | if (on_rq) { |
| 8303 | activate_task(rq, p, 0); |
| 8304 | resched_task(rq->curr); |
| 8305 | } |
Peter Zijlstra | da7a735 | 2011-01-17 17:03:27 +0100 | [diff] [blame] | 8306 | |
| 8307 | check_class_changed(rq, p, prev_class, old_prio); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 8308 | } |
| 8309 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8310 | void normalize_rt_tasks(void) |
| 8311 | { |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 8312 | struct task_struct *g, *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8313 | unsigned long flags; |
Ingo Molnar | 70b97a7 | 2006-07-03 00:25:42 -0700 | [diff] [blame] | 8314 | struct rq *rq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8315 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8316 | read_lock_irqsave(&tasklist_lock, flags); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 8317 | do_each_thread(g, p) { |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 8318 | /* |
| 8319 | * Only normalize user tasks: |
| 8320 | */ |
| 8321 | if (!p->mm) |
| 8322 | continue; |
| 8323 | |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8324 | p->se.exec_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 8325 | #ifdef CONFIG_SCHEDSTATS |
Lucas De Marchi | 41acab8 | 2010-03-10 23:37:45 -0300 | [diff] [blame] | 8326 | p->se.statistics.wait_start = 0; |
| 8327 | p->se.statistics.sleep_start = 0; |
| 8328 | p->se.statistics.block_start = 0; |
Ingo Molnar | 6cfb0d5 | 2007-08-02 17:41:40 +0200 | [diff] [blame] | 8329 | #endif |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8330 | |
| 8331 | if (!rt_task(p)) { |
| 8332 | /* |
| 8333 | * Renice negative nice level userspace |
| 8334 | * tasks back to 0: |
| 8335 | */ |
| 8336 | if (TASK_NICE(p) < 0 && p->mm) |
| 8337 | set_user_nice(p, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8338 | continue; |
Ingo Molnar | dd41f59 | 2007-07-09 18:51:59 +0200 | [diff] [blame] | 8339 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8340 | |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 8341 | raw_spin_lock(&p->pi_lock); |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 8342 | rq = __task_rq_lock(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8343 | |
Ingo Molnar | 178be79 | 2007-10-15 17:00:18 +0200 | [diff] [blame] | 8344 | normalize_task(rq, p); |
Andi Kleen | 3a5e4dc | 2007-10-15 17:00:15 +0200 | [diff] [blame] | 8345 | |
Ingo Molnar | b29739f | 2006-06-27 02:54:51 -0700 | [diff] [blame] | 8346 | __task_rq_unlock(rq); |
Thomas Gleixner | 1d61548 | 2009-11-17 14:54:03 +0100 | [diff] [blame] | 8347 | raw_spin_unlock(&p->pi_lock); |
Ingo Molnar | a0f98a1 | 2007-06-17 18:37:45 +0200 | [diff] [blame] | 8348 | } while_each_thread(g, p); |
| 8349 | |
Peter Zijlstra | 4cf5d77 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8350 | read_unlock_irqrestore(&tasklist_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8351 | } |
| 8352 | |
| 8353 | #endif /* CONFIG_MAGIC_SYSRQ */ |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8354 | |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 8355 | #if defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8356 | /* |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 8357 | * These functions are only useful for the IA64 MCA handling, or kdb. |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8358 | * |
| 8359 | * They can only be called when the whole system has been |
| 8360 | * stopped - every CPU needs to be quiescent, and no scheduling |
| 8361 | * activity can take place. Using them for anything else would |
| 8362 | * be a serious bug, and as a result, they aren't even visible |
| 8363 | * under any other configuration. |
| 8364 | */ |
| 8365 | |
| 8366 | /** |
| 8367 | * curr_task - return the current task for a given cpu. |
| 8368 | * @cpu: the processor in question. |
| 8369 | * |
| 8370 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 8371 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 8372 | struct task_struct *curr_task(int cpu) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8373 | { |
| 8374 | return cpu_curr(cpu); |
| 8375 | } |
| 8376 | |
Jason Wessel | 67fc4e0 | 2010-05-20 21:04:21 -0500 | [diff] [blame] | 8377 | #endif /* defined(CONFIG_IA64) || defined(CONFIG_KGDB_KDB) */ |
| 8378 | |
| 8379 | #ifdef CONFIG_IA64 |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8380 | /** |
| 8381 | * set_curr_task - set the current task for a given cpu. |
| 8382 | * @cpu: the processor in question. |
| 8383 | * @p: the task pointer to set. |
| 8384 | * |
| 8385 | * Description: This function must only be used when non-maskable interrupts |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 8386 | * are serviced on a separate stack. It allows the architecture to switch the |
| 8387 | * 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] | 8388 | * must be called with all CPU's synchronized, and interrupts disabled, the |
| 8389 | * and caller must save the original value of the current task (see |
| 8390 | * curr_task() above) and restore that value before reenabling interrupts and |
| 8391 | * re-starting the system. |
| 8392 | * |
| 8393 | * ONLY VALID WHEN THE WHOLE SYSTEM IS STOPPED! |
| 8394 | */ |
Ingo Molnar | 36c8b58 | 2006-07-03 00:25:41 -0700 | [diff] [blame] | 8395 | void set_curr_task(int cpu, struct task_struct *p) |
Linus Torvalds | 1df5c10 | 2005-09-12 07:59:21 -0700 | [diff] [blame] | 8396 | { |
| 8397 | cpu_curr(cpu) = p; |
| 8398 | } |
| 8399 | |
| 8400 | #endif |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8401 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8402 | #ifdef CONFIG_FAIR_GROUP_SCHED |
| 8403 | static void free_fair_sched_group(struct task_group *tg) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8404 | { |
| 8405 | int i; |
| 8406 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8407 | destroy_cfs_bandwidth(tg_cfs_bandwidth(tg)); |
| 8408 | |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8409 | for_each_possible_cpu(i) { |
| 8410 | if (tg->cfs_rq) |
| 8411 | kfree(tg->cfs_rq[i]); |
| 8412 | if (tg->se) |
| 8413 | kfree(tg->se[i]); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8414 | } |
| 8415 | |
| 8416 | kfree(tg->cfs_rq); |
| 8417 | kfree(tg->se); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8418 | } |
| 8419 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8420 | static |
| 8421 | 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] | 8422 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8423 | struct cfs_rq *cfs_rq; |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8424 | struct sched_entity *se; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8425 | int i; |
| 8426 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8427 | tg->cfs_rq = kzalloc(sizeof(cfs_rq) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8428 | if (!tg->cfs_rq) |
| 8429 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8430 | tg->se = kzalloc(sizeof(se) * nr_cpu_ids, GFP_KERNEL); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8431 | if (!tg->se) |
| 8432 | goto err; |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8433 | |
| 8434 | tg->shares = NICE_0_LOAD; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8435 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8436 | init_cfs_bandwidth(tg_cfs_bandwidth(tg)); |
| 8437 | |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8438 | for_each_possible_cpu(i) { |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8439 | cfs_rq = kzalloc_node(sizeof(struct cfs_rq), |
| 8440 | GFP_KERNEL, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8441 | if (!cfs_rq) |
| 8442 | goto err; |
| 8443 | |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8444 | se = kzalloc_node(sizeof(struct sched_entity), |
| 8445 | GFP_KERNEL, cpu_to_node(i)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8446 | if (!se) |
Phil Carmody | dfc12eb | 2009-12-10 14:29:37 +0200 | [diff] [blame] | 8447 | goto err_free_rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8448 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8449 | init_cfs_rq(cfs_rq); |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8450 | init_tg_cfs_entry(tg, cfs_rq, se, i, parent->se[i]); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8451 | } |
| 8452 | |
| 8453 | return 1; |
| 8454 | |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 8455 | err_free_rq: |
Phil Carmody | dfc12eb | 2009-12-10 14:29:37 +0200 | [diff] [blame] | 8456 | kfree(cfs_rq); |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 8457 | err: |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8458 | return 0; |
| 8459 | } |
| 8460 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8461 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 8462 | { |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8463 | struct rq *rq = cpu_rq(cpu); |
| 8464 | unsigned long flags; |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8465 | |
| 8466 | /* |
| 8467 | * Only empty task groups can be destroyed; so we can speculatively |
| 8468 | * check on_list without danger of it being re-added. |
| 8469 | */ |
| 8470 | if (!tg->cfs_rq[cpu]->on_list) |
| 8471 | return; |
| 8472 | |
| 8473 | raw_spin_lock_irqsave(&rq->lock, flags); |
Paul Turner | 822bc18 | 2010-11-29 16:55:40 -0800 | [diff] [blame] | 8474 | list_del_leaf_cfs_rq(tg->cfs_rq[cpu]); |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8475 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8476 | } |
Jan Schoenherr | 5f817d6 | 2011-07-13 20:13:31 +0200 | [diff] [blame] | 8477 | #else /* !CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8478 | static inline void free_fair_sched_group(struct task_group *tg) |
| 8479 | { |
| 8480 | } |
| 8481 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8482 | static inline |
| 8483 | 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] | 8484 | { |
| 8485 | return 1; |
| 8486 | } |
| 8487 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8488 | static inline void unregister_fair_sched_group(struct task_group *tg, int cpu) |
| 8489 | { |
| 8490 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8491 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8492 | |
| 8493 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8494 | static void free_rt_sched_group(struct task_group *tg) |
| 8495 | { |
| 8496 | int i; |
| 8497 | |
Bianca Lutz | 99bc524 | 2011-07-13 20:13:36 +0200 | [diff] [blame] | 8498 | if (tg->rt_se) |
| 8499 | destroy_rt_bandwidth(&tg->rt_bandwidth); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8500 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8501 | for_each_possible_cpu(i) { |
| 8502 | if (tg->rt_rq) |
| 8503 | kfree(tg->rt_rq[i]); |
| 8504 | if (tg->rt_se) |
| 8505 | kfree(tg->rt_se[i]); |
| 8506 | } |
| 8507 | |
| 8508 | kfree(tg->rt_rq); |
| 8509 | kfree(tg->rt_se); |
| 8510 | } |
| 8511 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8512 | static |
| 8513 | 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] | 8514 | { |
| 8515 | struct rt_rq *rt_rq; |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8516 | struct sched_rt_entity *rt_se; |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8517 | int i; |
| 8518 | |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8519 | tg->rt_rq = kzalloc(sizeof(rt_rq) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8520 | if (!tg->rt_rq) |
| 8521 | goto err; |
Mike Travis | 434d53b | 2008-04-04 18:11:04 -0700 | [diff] [blame] | 8522 | tg->rt_se = kzalloc(sizeof(rt_se) * nr_cpu_ids, GFP_KERNEL); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8523 | if (!tg->rt_se) |
| 8524 | goto err; |
| 8525 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8526 | init_rt_bandwidth(&tg->rt_bandwidth, |
| 8527 | ktime_to_ns(def_rt_bandwidth.rt_period), 0); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8528 | |
| 8529 | for_each_possible_cpu(i) { |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8530 | rt_rq = kzalloc_node(sizeof(struct rt_rq), |
| 8531 | GFP_KERNEL, cpu_to_node(i)); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8532 | if (!rt_rq) |
| 8533 | goto err; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8534 | |
Li Zefan | eab1722 | 2008-10-29 17:03:22 +0800 | [diff] [blame] | 8535 | rt_se = kzalloc_node(sizeof(struct sched_rt_entity), |
| 8536 | GFP_KERNEL, cpu_to_node(i)); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8537 | if (!rt_se) |
Phil Carmody | dfc12eb | 2009-12-10 14:29:37 +0200 | [diff] [blame] | 8538 | goto err_free_rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8539 | |
Jan H. Schönherr | acb5a9b | 2011-07-14 18:32:43 +0200 | [diff] [blame] | 8540 | init_rt_rq(rt_rq, cpu_rq(i)); |
| 8541 | rt_rq->rt_runtime = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8542 | init_tg_rt_entry(tg, rt_rq, rt_se, i, parent->rt_se[i]); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8543 | } |
| 8544 | |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8545 | return 1; |
| 8546 | |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 8547 | err_free_rq: |
Phil Carmody | dfc12eb | 2009-12-10 14:29:37 +0200 | [diff] [blame] | 8548 | kfree(rt_rq); |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 8549 | err: |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8550 | return 0; |
| 8551 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8552 | #else /* !CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8553 | static inline void free_rt_sched_group(struct task_group *tg) |
| 8554 | { |
| 8555 | } |
| 8556 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8557 | static inline |
| 8558 | 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] | 8559 | { |
| 8560 | return 1; |
| 8561 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8562 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8563 | |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 8564 | #ifdef CONFIG_CGROUP_SCHED |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8565 | static void free_sched_group(struct task_group *tg) |
| 8566 | { |
| 8567 | free_fair_sched_group(tg); |
| 8568 | free_rt_sched_group(tg); |
Mike Galbraith | e9aa1dd | 2011-01-05 11:11:25 +0100 | [diff] [blame] | 8569 | autogroup_free(tg); |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8570 | kfree(tg); |
| 8571 | } |
| 8572 | |
| 8573 | /* allocate runqueue etc for a new task group */ |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8574 | struct task_group *sched_create_group(struct task_group *parent) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8575 | { |
| 8576 | struct task_group *tg; |
| 8577 | unsigned long flags; |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8578 | |
| 8579 | tg = kzalloc(sizeof(*tg), GFP_KERNEL); |
| 8580 | if (!tg) |
| 8581 | return ERR_PTR(-ENOMEM); |
| 8582 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8583 | if (!alloc_fair_sched_group(tg, parent)) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8584 | goto err; |
| 8585 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8586 | if (!alloc_rt_sched_group(tg, parent)) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8587 | goto err; |
| 8588 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8589 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8590 | list_add_rcu(&tg->list, &task_groups); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8591 | |
| 8592 | WARN_ON(!parent); /* root should already exist */ |
| 8593 | |
| 8594 | tg->parent = parent; |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8595 | INIT_LIST_HEAD(&tg->children); |
Zhang, Yanmin | 09f2724 | 2030-08-14 15:56:40 +0800 | [diff] [blame] | 8596 | list_add_rcu(&tg->siblings, &parent->children); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8597 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8598 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8599 | return tg; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8600 | |
| 8601 | err: |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8602 | free_sched_group(tg); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8603 | return ERR_PTR(-ENOMEM); |
| 8604 | } |
| 8605 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8606 | /* rcu callback to free various structures associated with a task group */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8607 | static void free_sched_group_rcu(struct rcu_head *rhp) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8608 | { |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8609 | /* now it should be safe to free those cfs_rqs */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8610 | free_sched_group(container_of(rhp, struct task_group, rcu)); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8611 | } |
| 8612 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8613 | /* Destroy runqueue etc associated with a task group */ |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8614 | void sched_destroy_group(struct task_group *tg) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8615 | { |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8616 | unsigned long flags; |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8617 | int i; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8618 | |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8619 | /* end participation in shares distribution */ |
| 8620 | for_each_possible_cpu(i) |
Peter Zijlstra | bccbe08 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8621 | unregister_fair_sched_group(tg, i); |
Peter Zijlstra | 3d4b47b | 2010-11-15 15:47:01 -0800 | [diff] [blame] | 8622 | |
| 8623 | spin_lock_irqsave(&task_group_lock, flags); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8624 | list_del_rcu(&tg->list); |
Peter Zijlstra | f473aa5 | 2008-04-19 19:45:00 +0200 | [diff] [blame] | 8625 | list_del_rcu(&tg->siblings); |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8626 | spin_unlock_irqrestore(&task_group_lock, flags); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8627 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8628 | /* wait for possible concurrent references to cfs_rqs complete */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8629 | call_rcu(&tg->rcu, free_sched_group_rcu); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8630 | } |
| 8631 | |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8632 | /* change task's runqueue when it moves between groups. |
Ingo Molnar | 3a25201 | 2007-10-15 17:00:12 +0200 | [diff] [blame] | 8633 | * The caller of this function should have put the task in its new group |
| 8634 | * by now. This function just updates tsk->se.cfs_rq and tsk->se.parent to |
| 8635 | * reflect its new group. |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8636 | */ |
| 8637 | void sched_move_task(struct task_struct *tsk) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8638 | { |
| 8639 | int on_rq, running; |
| 8640 | unsigned long flags; |
| 8641 | struct rq *rq; |
| 8642 | |
| 8643 | rq = task_rq_lock(tsk, &flags); |
| 8644 | |
Dmitry Adamushko | 051a1d1 | 2007-12-18 15:21:13 +0100 | [diff] [blame] | 8645 | running = task_current(rq, tsk); |
Peter Zijlstra | fd2f441 | 2011-04-05 17:23:44 +0200 | [diff] [blame] | 8646 | on_rq = tsk->on_rq; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8647 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8648 | if (on_rq) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8649 | dequeue_task(rq, tsk, 0); |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8650 | if (unlikely(running)) |
| 8651 | tsk->sched_class->put_prev_task(rq, tsk); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8652 | |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 8653 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 8654 | if (tsk->sched_class->task_move_group) |
| 8655 | tsk->sched_class->task_move_group(tsk, on_rq); |
| 8656 | else |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 8657 | #endif |
Peter Zijlstra | b2b5ce0 | 2010-10-15 15:24:15 +0200 | [diff] [blame] | 8658 | set_task_rq(tsk, task_cpu(tsk)); |
Peter Zijlstra | 810b381 | 2008-02-29 15:21:01 -0500 | [diff] [blame] | 8659 | |
Hiroshi Shimamoto | 0e1f348 | 2008-03-10 11:01:20 -0700 | [diff] [blame] | 8660 | if (unlikely(running)) |
| 8661 | tsk->sched_class->set_curr_task(rq); |
| 8662 | if (on_rq) |
Peter Zijlstra | 371fd7e | 2010-03-24 16:38:48 +0100 | [diff] [blame] | 8663 | enqueue_task(rq, tsk, 0); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8664 | |
Peter Zijlstra | 0122ec5 | 2011-04-05 17:23:51 +0200 | [diff] [blame] | 8665 | task_rq_unlock(rq, tsk, &flags); |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8666 | } |
Dhaval Giani | 7c94143 | 2010-01-20 13:26:18 +0100 | [diff] [blame] | 8667 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8668 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8669 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8670 | static DEFINE_MUTEX(shares_mutex); |
| 8671 | |
Ingo Molnar | 4cf86d7 | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8672 | int sched_group_set_shares(struct task_group *tg, unsigned long shares) |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8673 | { |
| 8674 | int i; |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8675 | unsigned long flags; |
Ingo Molnar | c61935f | 2008-01-22 11:24:58 +0100 | [diff] [blame] | 8676 | |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8677 | /* |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8678 | * We can't change the weight of the root cgroup. |
| 8679 | */ |
| 8680 | if (!tg->se[0]) |
| 8681 | return -EINVAL; |
| 8682 | |
Mike Galbraith | cd62287 | 2011-06-04 15:03:20 +0200 | [diff] [blame] | 8683 | shares = clamp(shares, scale_load(MIN_SHARES), scale_load(MAX_SHARES)); |
Peter Zijlstra | 62fb185 | 2008-02-25 17:34:02 +0100 | [diff] [blame] | 8684 | |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8685 | mutex_lock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8686 | if (tg->shares == shares) |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8687 | goto done; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8688 | |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 8689 | tg->shares = shares; |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 8690 | for_each_possible_cpu(i) { |
Paul Turner | 9437178 | 2010-11-15 15:47:10 -0800 | [diff] [blame] | 8691 | struct rq *rq = cpu_rq(i); |
| 8692 | struct sched_entity *se; |
| 8693 | |
| 8694 | se = tg->se[i]; |
| 8695 | /* Propagate contribution to hierarchy */ |
| 8696 | raw_spin_lock_irqsave(&rq->lock, flags); |
| 8697 | for_each_sched_entity(se) |
Paul Turner | 6d5ab29 | 2011-01-21 20:45:01 -0800 | [diff] [blame] | 8698 | update_cfs_shares(group_cfs_rq(se)); |
Paul Turner | 9437178 | 2010-11-15 15:47:10 -0800 | [diff] [blame] | 8699 | raw_spin_unlock_irqrestore(&rq->lock, flags); |
Peter Zijlstra | c09595f | 2008-06-27 13:41:14 +0200 | [diff] [blame] | 8700 | } |
Srivatsa Vaddagiri | 6b2d770 | 2008-01-25 21:08:00 +0100 | [diff] [blame] | 8701 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8702 | done: |
Peter Zijlstra | 8ed3699 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8703 | mutex_unlock(&shares_mutex); |
Srivatsa Vaddagiri | 9b5b775 | 2007-10-15 17:00:09 +0200 | [diff] [blame] | 8704 | return 0; |
Srivatsa Vaddagiri | 29f59db | 2007-10-15 17:00:07 +0200 | [diff] [blame] | 8705 | } |
| 8706 | |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8707 | unsigned long sched_group_shares(struct task_group *tg) |
| 8708 | { |
| 8709 | return tg->shares; |
| 8710 | } |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8711 | #endif |
Dhaval Giani | 5cb350b | 2007-10-15 17:00:14 +0200 | [diff] [blame] | 8712 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 8713 | #if defined(CONFIG_RT_GROUP_SCHED) || defined(CONFIG_CFS_BANDWIDTH) |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8714 | static unsigned long to_ratio(u64 period, u64 runtime) |
| 8715 | { |
| 8716 | if (runtime == RUNTIME_INF) |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8717 | return 1ULL << 20; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8718 | |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8719 | return div64_u64(runtime << 20, period); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8720 | } |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 8721 | #endif |
| 8722 | |
| 8723 | #ifdef CONFIG_RT_GROUP_SCHED |
| 8724 | /* |
| 8725 | * Ensure that the real time constraints are schedulable. |
| 8726 | */ |
| 8727 | static DEFINE_MUTEX(rt_constraints_mutex); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8728 | |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8729 | /* Must be called with tasklist_lock held */ |
| 8730 | static inline int tg_has_rt_tasks(struct task_group *tg) |
| 8731 | { |
| 8732 | struct task_struct *g, *p; |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8733 | |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8734 | do_each_thread(g, p) { |
| 8735 | if (rt_task(p) && rt_rq_of_se(&p->rt)->tg == tg) |
| 8736 | return 1; |
| 8737 | } while_each_thread(g, p); |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8738 | |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8739 | return 0; |
| 8740 | } |
| 8741 | |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8742 | struct rt_schedulable_data { |
| 8743 | struct task_group *tg; |
| 8744 | u64 rt_period; |
| 8745 | u64 rt_runtime; |
| 8746 | }; |
| 8747 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 8748 | static int tg_rt_schedulable(struct task_group *tg, void *data) |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8749 | { |
| 8750 | struct rt_schedulable_data *d = data; |
| 8751 | struct task_group *child; |
| 8752 | unsigned long total, sum = 0; |
| 8753 | u64 period, runtime; |
| 8754 | |
| 8755 | period = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8756 | runtime = tg->rt_bandwidth.rt_runtime; |
| 8757 | |
| 8758 | if (tg == d->tg) { |
| 8759 | period = d->rt_period; |
| 8760 | runtime = d->rt_runtime; |
| 8761 | } |
| 8762 | |
Peter Zijlstra | 4653f80 | 2008-09-23 15:33:44 +0200 | [diff] [blame] | 8763 | /* |
| 8764 | * Cannot have more runtime than the period. |
| 8765 | */ |
| 8766 | if (runtime > period && runtime != RUNTIME_INF) |
| 8767 | return -EINVAL; |
| 8768 | |
| 8769 | /* |
| 8770 | * Ensure we don't starve existing RT tasks. |
| 8771 | */ |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8772 | if (rt_bandwidth_enabled() && !runtime && tg_has_rt_tasks(tg)) |
| 8773 | return -EBUSY; |
| 8774 | |
| 8775 | total = to_ratio(period, runtime); |
| 8776 | |
Peter Zijlstra | 4653f80 | 2008-09-23 15:33:44 +0200 | [diff] [blame] | 8777 | /* |
| 8778 | * Nobody can have more than the global setting allows. |
| 8779 | */ |
| 8780 | if (total > to_ratio(global_rt_period(), global_rt_runtime())) |
| 8781 | return -EINVAL; |
| 8782 | |
| 8783 | /* |
| 8784 | * The sum of our children's runtime should not exceed our own. |
| 8785 | */ |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8786 | list_for_each_entry_rcu(child, &tg->children, siblings) { |
| 8787 | period = ktime_to_ns(child->rt_bandwidth.rt_period); |
| 8788 | runtime = child->rt_bandwidth.rt_runtime; |
| 8789 | |
| 8790 | if (child == d->tg) { |
| 8791 | period = d->rt_period; |
| 8792 | runtime = d->rt_runtime; |
| 8793 | } |
| 8794 | |
| 8795 | sum += to_ratio(period, runtime); |
| 8796 | } |
| 8797 | |
| 8798 | if (sum > total) |
| 8799 | return -EINVAL; |
| 8800 | |
| 8801 | return 0; |
| 8802 | } |
| 8803 | |
| 8804 | static int __rt_schedulable(struct task_group *tg, u64 period, u64 runtime) |
| 8805 | { |
| 8806 | struct rt_schedulable_data data = { |
| 8807 | .tg = tg, |
| 8808 | .rt_period = period, |
| 8809 | .rt_runtime = runtime, |
| 8810 | }; |
| 8811 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 8812 | return walk_tg_tree(tg_rt_schedulable, tg_nop, &data); |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8813 | } |
| 8814 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8815 | static int tg_set_rt_bandwidth(struct task_group *tg, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8816 | u64 rt_period, u64 rt_runtime) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8817 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8818 | int i, err = 0; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8819 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8820 | mutex_lock(&rt_constraints_mutex); |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8821 | read_lock(&tasklist_lock); |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8822 | err = __rt_schedulable(tg, rt_period, rt_runtime); |
| 8823 | if (err) |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8824 | goto unlock; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8825 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8826 | raw_spin_lock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8827 | tg->rt_bandwidth.rt_period = ns_to_ktime(rt_period); |
| 8828 | tg->rt_bandwidth.rt_runtime = rt_runtime; |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8829 | |
| 8830 | for_each_possible_cpu(i) { |
| 8831 | struct rt_rq *rt_rq = tg->rt_rq[i]; |
| 8832 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8833 | raw_spin_lock(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8834 | rt_rq->rt_runtime = rt_runtime; |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8835 | raw_spin_unlock(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8836 | } |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8837 | raw_spin_unlock_irq(&tg->rt_bandwidth.rt_runtime_lock); |
Peter Zijlstra | 4924627 | 2010-10-17 21:46:10 +0200 | [diff] [blame] | 8838 | unlock: |
Dhaval Giani | 521f1a24 | 2008-02-28 15:21:56 +0530 | [diff] [blame] | 8839 | read_unlock(&tasklist_lock); |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8840 | mutex_unlock(&rt_constraints_mutex); |
| 8841 | |
| 8842 | return err; |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 8843 | } |
| 8844 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8845 | int sched_group_set_rt_runtime(struct task_group *tg, long rt_runtime_us) |
| 8846 | { |
| 8847 | u64 rt_runtime, rt_period; |
| 8848 | |
| 8849 | rt_period = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8850 | rt_runtime = (u64)rt_runtime_us * NSEC_PER_USEC; |
| 8851 | if (rt_runtime_us < 0) |
| 8852 | rt_runtime = RUNTIME_INF; |
| 8853 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8854 | return tg_set_rt_bandwidth(tg, rt_period, rt_runtime); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8855 | } |
| 8856 | |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8857 | long sched_group_rt_runtime(struct task_group *tg) |
| 8858 | { |
| 8859 | u64 rt_runtime_us; |
| 8860 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8861 | if (tg->rt_bandwidth.rt_runtime == RUNTIME_INF) |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8862 | return -1; |
| 8863 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8864 | rt_runtime_us = tg->rt_bandwidth.rt_runtime; |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 8865 | do_div(rt_runtime_us, NSEC_PER_USEC); |
| 8866 | return rt_runtime_us; |
| 8867 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8868 | |
| 8869 | int sched_group_set_rt_period(struct task_group *tg, long rt_period_us) |
| 8870 | { |
| 8871 | u64 rt_runtime, rt_period; |
| 8872 | |
| 8873 | rt_period = (u64)rt_period_us * NSEC_PER_USEC; |
| 8874 | rt_runtime = tg->rt_bandwidth.rt_runtime; |
| 8875 | |
Raistlin | 619b048 | 2008-06-26 18:54:09 +0200 | [diff] [blame] | 8876 | if (rt_period == 0) |
| 8877 | return -EINVAL; |
| 8878 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 8879 | return tg_set_rt_bandwidth(tg, rt_period, rt_runtime); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8880 | } |
| 8881 | |
| 8882 | long sched_group_rt_period(struct task_group *tg) |
| 8883 | { |
| 8884 | u64 rt_period_us; |
| 8885 | |
| 8886 | rt_period_us = ktime_to_ns(tg->rt_bandwidth.rt_period); |
| 8887 | do_div(rt_period_us, NSEC_PER_USEC); |
| 8888 | return rt_period_us; |
| 8889 | } |
| 8890 | |
| 8891 | static int sched_rt_global_constraints(void) |
| 8892 | { |
Peter Zijlstra | 4653f80 | 2008-09-23 15:33:44 +0200 | [diff] [blame] | 8893 | u64 runtime, period; |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8894 | int ret = 0; |
| 8895 | |
Hiroshi Shimamoto | ec5d498 | 2008-09-10 17:00:19 -0700 | [diff] [blame] | 8896 | if (sysctl_sched_rt_period <= 0) |
| 8897 | return -EINVAL; |
| 8898 | |
Peter Zijlstra | 4653f80 | 2008-09-23 15:33:44 +0200 | [diff] [blame] | 8899 | runtime = global_rt_runtime(); |
| 8900 | period = global_rt_period(); |
| 8901 | |
| 8902 | /* |
| 8903 | * Sanity check on the sysctl variables. |
| 8904 | */ |
| 8905 | if (runtime > period && runtime != RUNTIME_INF) |
| 8906 | return -EINVAL; |
Peter Zijlstra | 10b612f | 2008-06-19 14:22:27 +0200 | [diff] [blame] | 8907 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8908 | mutex_lock(&rt_constraints_mutex); |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8909 | read_lock(&tasklist_lock); |
Peter Zijlstra | 4653f80 | 2008-09-23 15:33:44 +0200 | [diff] [blame] | 8910 | ret = __rt_schedulable(NULL, 0, 0); |
Peter Zijlstra | 9a7e0b1 | 2008-08-19 12:33:06 +0200 | [diff] [blame] | 8911 | read_unlock(&tasklist_lock); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8912 | mutex_unlock(&rt_constraints_mutex); |
| 8913 | |
| 8914 | return ret; |
| 8915 | } |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 8916 | |
| 8917 | int sched_rt_can_attach(struct task_group *tg, struct task_struct *tsk) |
| 8918 | { |
| 8919 | /* Don't accept realtime tasks when there is no way for them to run */ |
| 8920 | if (rt_task(tsk) && tg->rt_bandwidth.rt_runtime == 0) |
| 8921 | return 0; |
| 8922 | |
| 8923 | return 1; |
| 8924 | } |
| 8925 | |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8926 | #else /* !CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8927 | static int sched_rt_global_constraints(void) |
| 8928 | { |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8929 | unsigned long flags; |
| 8930 | int i; |
| 8931 | |
Hiroshi Shimamoto | ec5d498 | 2008-09-10 17:00:19 -0700 | [diff] [blame] | 8932 | if (sysctl_sched_rt_period <= 0) |
| 8933 | return -EINVAL; |
| 8934 | |
Peter Zijlstra | 60aa605 | 2009-05-05 17:50:21 +0200 | [diff] [blame] | 8935 | /* |
| 8936 | * There's always some RT tasks in the root group |
| 8937 | * -- migration, kstopmachine etc.. |
| 8938 | */ |
| 8939 | if (sysctl_sched_rt_runtime == 0) |
| 8940 | return -EBUSY; |
| 8941 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8942 | raw_spin_lock_irqsave(&def_rt_bandwidth.rt_runtime_lock, flags); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8943 | for_each_possible_cpu(i) { |
| 8944 | struct rt_rq *rt_rq = &cpu_rq(i)->rt; |
| 8945 | |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8946 | raw_spin_lock(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8947 | rt_rq->rt_runtime = global_rt_runtime(); |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8948 | raw_spin_unlock(&rt_rq->rt_runtime_lock); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8949 | } |
Thomas Gleixner | 0986b11 | 2009-11-17 15:32:06 +0100 | [diff] [blame] | 8950 | raw_spin_unlock_irqrestore(&def_rt_bandwidth.rt_runtime_lock, flags); |
Peter Zijlstra | ac086bc | 2008-04-19 19:44:58 +0200 | [diff] [blame] | 8951 | |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8952 | return 0; |
| 8953 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 8954 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8955 | |
| 8956 | int sched_rt_handler(struct ctl_table *table, int write, |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 8957 | void __user *buffer, size_t *lenp, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8958 | loff_t *ppos) |
| 8959 | { |
| 8960 | int ret; |
| 8961 | int old_period, old_runtime; |
| 8962 | static DEFINE_MUTEX(mutex); |
| 8963 | |
| 8964 | mutex_lock(&mutex); |
| 8965 | old_period = sysctl_sched_rt_period; |
| 8966 | old_runtime = sysctl_sched_rt_runtime; |
| 8967 | |
Alexey Dobriyan | 8d65af7 | 2009-09-23 15:57:19 -0700 | [diff] [blame] | 8968 | ret = proc_dointvec(table, write, buffer, lenp, ppos); |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 8969 | |
| 8970 | if (!ret && write) { |
| 8971 | ret = sched_rt_global_constraints(); |
| 8972 | if (ret) { |
| 8973 | sysctl_sched_rt_period = old_period; |
| 8974 | sysctl_sched_rt_runtime = old_runtime; |
| 8975 | } else { |
| 8976 | def_rt_bandwidth.rt_runtime = global_rt_runtime(); |
| 8977 | def_rt_bandwidth.rt_period = |
| 8978 | ns_to_ktime(global_rt_period()); |
| 8979 | } |
| 8980 | } |
| 8981 | mutex_unlock(&mutex); |
| 8982 | |
| 8983 | return ret; |
| 8984 | } |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8985 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 8986 | #ifdef CONFIG_CGROUP_SCHED |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8987 | |
| 8988 | /* return corresponding task_group object of a cgroup */ |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8989 | static inline struct task_group *cgroup_tg(struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8990 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8991 | return container_of(cgroup_subsys_state(cgrp, cpu_cgroup_subsys_id), |
| 8992 | struct task_group, css); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8993 | } |
| 8994 | |
| 8995 | static struct cgroup_subsys_state * |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 8996 | cpu_cgroup_create(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8997 | { |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 8998 | struct task_group *tg, *parent; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 8999 | |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 9000 | if (!cgrp->parent) { |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9001 | /* This is early initialization for the top cgroup */ |
Yong Zhang | 07e06b0 | 2011-01-07 15:17:36 +0800 | [diff] [blame] | 9002 | return &root_task_group.css; |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9003 | } |
| 9004 | |
Dhaval Giani | ec7dc8a | 2008-04-19 19:44:59 +0200 | [diff] [blame] | 9005 | parent = cgroup_tg(cgrp->parent); |
| 9006 | tg = sched_create_group(parent); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9007 | if (IS_ERR(tg)) |
| 9008 | return ERR_PTR(-ENOMEM); |
| 9009 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9010 | return &tg->css; |
| 9011 | } |
| 9012 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 9013 | static void |
| 9014 | cpu_cgroup_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9015 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 9016 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9017 | |
| 9018 | sched_destroy_group(tg); |
| 9019 | } |
| 9020 | |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 9021 | static int |
Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 9022 | cpu_cgroup_can_attach_task(struct cgroup *cgrp, struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9023 | { |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9024 | #ifdef CONFIG_RT_GROUP_SCHED |
Dhaval Giani | 54e9912 | 2009-02-27 15:13:54 +0530 | [diff] [blame] | 9025 | if (!sched_rt_can_attach(cgroup_tg(cgrp), tsk)) |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9026 | return -EINVAL; |
| 9027 | #else |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9028 | /* We don't support RT-tasks being in separate groups */ |
| 9029 | if (tsk->sched_class != &fair_sched_class) |
| 9030 | return -EINVAL; |
Peter Zijlstra | b68aa23 | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9031 | #endif |
Ben Blum | be367d0 | 2009-09-23 15:56:31 -0700 | [diff] [blame] | 9032 | return 0; |
| 9033 | } |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9034 | |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9035 | static void |
Ben Blum | f780bdb | 2011-05-26 16:25:19 -0700 | [diff] [blame] | 9036 | cpu_cgroup_attach_task(struct cgroup *cgrp, struct task_struct *tsk) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9037 | { |
| 9038 | sched_move_task(tsk); |
| 9039 | } |
| 9040 | |
Peter Zijlstra | 068c5cc | 2011-01-19 12:26:11 +0100 | [diff] [blame] | 9041 | static void |
Peter Zijlstra | d41d5a0 | 2011-02-07 17:02:20 +0100 | [diff] [blame] | 9042 | cpu_cgroup_exit(struct cgroup_subsys *ss, struct cgroup *cgrp, |
| 9043 | struct cgroup *old_cgrp, struct task_struct *task) |
Peter Zijlstra | 068c5cc | 2011-01-19 12:26:11 +0100 | [diff] [blame] | 9044 | { |
| 9045 | /* |
| 9046 | * cgroup_exit() is called in the copy_process() failure path. |
| 9047 | * Ignore this case since the task hasn't ran yet, this avoids |
| 9048 | * trying to poke a half freed task state from generic code. |
| 9049 | */ |
| 9050 | if (!(task->flags & PF_EXITING)) |
| 9051 | return; |
| 9052 | |
| 9053 | sched_move_task(task); |
| 9054 | } |
| 9055 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9056 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 9057 | static int cpu_shares_write_u64(struct cgroup *cgrp, struct cftype *cftype, |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 9058 | u64 shareval) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9059 | { |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 9060 | return sched_group_set_shares(cgroup_tg(cgrp), scale_load(shareval)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9061 | } |
| 9062 | |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 9063 | static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9064 | { |
Paul Menage | 2b01dfe | 2007-10-24 18:23:50 +0200 | [diff] [blame] | 9065 | struct task_group *tg = cgroup_tg(cgrp); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9066 | |
Nikhil Rao | c8b2811 | 2011-05-18 14:37:48 -0700 | [diff] [blame] | 9067 | return (u64) scale_load_down(tg->shares); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9068 | } |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9069 | |
| 9070 | #ifdef CONFIG_CFS_BANDWIDTH |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9071 | static DEFINE_MUTEX(cfs_constraints_mutex); |
| 9072 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9073 | const u64 max_cfs_quota_period = 1 * NSEC_PER_SEC; /* 1s */ |
| 9074 | const u64 min_cfs_quota_period = 1 * NSEC_PER_MSEC; /* 1ms */ |
| 9075 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9076 | static int __cfs_schedulable(struct task_group *tg, u64 period, u64 runtime); |
| 9077 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9078 | static int tg_set_cfs_bandwidth(struct task_group *tg, u64 period, u64 quota) |
| 9079 | { |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9080 | int i, ret = 0; |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9081 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg); |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9082 | |
| 9083 | if (tg == &root_task_group) |
| 9084 | return -EINVAL; |
| 9085 | |
| 9086 | /* |
| 9087 | * Ensure we have at some amount of bandwidth every period. This is |
| 9088 | * to prevent reaching a state of large arrears when throttled via |
| 9089 | * entity_tick() resulting in prolonged exit starvation. |
| 9090 | */ |
| 9091 | if (quota < min_cfs_quota_period || period < min_cfs_quota_period) |
| 9092 | return -EINVAL; |
| 9093 | |
| 9094 | /* |
| 9095 | * Likewise, bound things on the otherside by preventing insane quota |
| 9096 | * periods. This also allows us to normalize in computing quota |
| 9097 | * feasibility. |
| 9098 | */ |
| 9099 | if (period > max_cfs_quota_period) |
| 9100 | return -EINVAL; |
| 9101 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9102 | mutex_lock(&cfs_constraints_mutex); |
| 9103 | ret = __cfs_schedulable(tg, period, quota); |
| 9104 | if (ret) |
| 9105 | goto out_unlock; |
| 9106 | |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9107 | raw_spin_lock_irq(&cfs_b->lock); |
| 9108 | cfs_b->period = ns_to_ktime(period); |
| 9109 | cfs_b->quota = quota; |
| 9110 | raw_spin_unlock_irq(&cfs_b->lock); |
| 9111 | |
| 9112 | for_each_possible_cpu(i) { |
| 9113 | struct cfs_rq *cfs_rq = tg->cfs_rq[i]; |
| 9114 | struct rq *rq = rq_of(cfs_rq); |
| 9115 | |
| 9116 | raw_spin_lock_irq(&rq->lock); |
| 9117 | cfs_rq->runtime_enabled = quota != RUNTIME_INF; |
| 9118 | cfs_rq->runtime_remaining = 0; |
| 9119 | raw_spin_unlock_irq(&rq->lock); |
| 9120 | } |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9121 | out_unlock: |
| 9122 | mutex_unlock(&cfs_constraints_mutex); |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9123 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9124 | return ret; |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9125 | } |
| 9126 | |
| 9127 | int tg_set_cfs_quota(struct task_group *tg, long cfs_quota_us) |
| 9128 | { |
| 9129 | u64 quota, period; |
| 9130 | |
| 9131 | period = ktime_to_ns(tg_cfs_bandwidth(tg)->period); |
| 9132 | if (cfs_quota_us < 0) |
| 9133 | quota = RUNTIME_INF; |
| 9134 | else |
| 9135 | quota = (u64)cfs_quota_us * NSEC_PER_USEC; |
| 9136 | |
| 9137 | return tg_set_cfs_bandwidth(tg, period, quota); |
| 9138 | } |
| 9139 | |
| 9140 | long tg_get_cfs_quota(struct task_group *tg) |
| 9141 | { |
| 9142 | u64 quota_us; |
| 9143 | |
| 9144 | if (tg_cfs_bandwidth(tg)->quota == RUNTIME_INF) |
| 9145 | return -1; |
| 9146 | |
| 9147 | quota_us = tg_cfs_bandwidth(tg)->quota; |
| 9148 | do_div(quota_us, NSEC_PER_USEC); |
| 9149 | |
| 9150 | return quota_us; |
| 9151 | } |
| 9152 | |
| 9153 | int tg_set_cfs_period(struct task_group *tg, long cfs_period_us) |
| 9154 | { |
| 9155 | u64 quota, period; |
| 9156 | |
| 9157 | period = (u64)cfs_period_us * NSEC_PER_USEC; |
| 9158 | quota = tg_cfs_bandwidth(tg)->quota; |
| 9159 | |
| 9160 | if (period <= 0) |
| 9161 | return -EINVAL; |
| 9162 | |
| 9163 | return tg_set_cfs_bandwidth(tg, period, quota); |
| 9164 | } |
| 9165 | |
| 9166 | long tg_get_cfs_period(struct task_group *tg) |
| 9167 | { |
| 9168 | u64 cfs_period_us; |
| 9169 | |
| 9170 | cfs_period_us = ktime_to_ns(tg_cfs_bandwidth(tg)->period); |
| 9171 | do_div(cfs_period_us, NSEC_PER_USEC); |
| 9172 | |
| 9173 | return cfs_period_us; |
| 9174 | } |
| 9175 | |
| 9176 | static s64 cpu_cfs_quota_read_s64(struct cgroup *cgrp, struct cftype *cft) |
| 9177 | { |
| 9178 | return tg_get_cfs_quota(cgroup_tg(cgrp)); |
| 9179 | } |
| 9180 | |
| 9181 | static int cpu_cfs_quota_write_s64(struct cgroup *cgrp, struct cftype *cftype, |
| 9182 | s64 cfs_quota_us) |
| 9183 | { |
| 9184 | return tg_set_cfs_quota(cgroup_tg(cgrp), cfs_quota_us); |
| 9185 | } |
| 9186 | |
| 9187 | static u64 cpu_cfs_period_read_u64(struct cgroup *cgrp, struct cftype *cft) |
| 9188 | { |
| 9189 | return tg_get_cfs_period(cgroup_tg(cgrp)); |
| 9190 | } |
| 9191 | |
| 9192 | static int cpu_cfs_period_write_u64(struct cgroup *cgrp, struct cftype *cftype, |
| 9193 | u64 cfs_period_us) |
| 9194 | { |
| 9195 | return tg_set_cfs_period(cgroup_tg(cgrp), cfs_period_us); |
| 9196 | } |
| 9197 | |
Paul Turner | a790de9 | 2011-07-21 09:43:29 -0700 | [diff] [blame^] | 9198 | struct cfs_schedulable_data { |
| 9199 | struct task_group *tg; |
| 9200 | u64 period, quota; |
| 9201 | }; |
| 9202 | |
| 9203 | /* |
| 9204 | * normalize group quota/period to be quota/max_period |
| 9205 | * note: units are usecs |
| 9206 | */ |
| 9207 | static u64 normalize_cfs_quota(struct task_group *tg, |
| 9208 | struct cfs_schedulable_data *d) |
| 9209 | { |
| 9210 | u64 quota, period; |
| 9211 | |
| 9212 | if (tg == d->tg) { |
| 9213 | period = d->period; |
| 9214 | quota = d->quota; |
| 9215 | } else { |
| 9216 | period = tg_get_cfs_period(tg); |
| 9217 | quota = tg_get_cfs_quota(tg); |
| 9218 | } |
| 9219 | |
| 9220 | /* note: these should typically be equivalent */ |
| 9221 | if (quota == RUNTIME_INF || quota == -1) |
| 9222 | return RUNTIME_INF; |
| 9223 | |
| 9224 | return to_ratio(period, quota); |
| 9225 | } |
| 9226 | |
| 9227 | static int tg_cfs_schedulable_down(struct task_group *tg, void *data) |
| 9228 | { |
| 9229 | struct cfs_schedulable_data *d = data; |
| 9230 | struct cfs_bandwidth *cfs_b = tg_cfs_bandwidth(tg); |
| 9231 | s64 quota = 0, parent_quota = -1; |
| 9232 | |
| 9233 | if (!tg->parent) { |
| 9234 | quota = RUNTIME_INF; |
| 9235 | } else { |
| 9236 | struct cfs_bandwidth *parent_b = tg_cfs_bandwidth(tg->parent); |
| 9237 | |
| 9238 | quota = normalize_cfs_quota(tg, d); |
| 9239 | parent_quota = parent_b->hierarchal_quota; |
| 9240 | |
| 9241 | /* |
| 9242 | * ensure max(child_quota) <= parent_quota, inherit when no |
| 9243 | * limit is set |
| 9244 | */ |
| 9245 | if (quota == RUNTIME_INF) |
| 9246 | quota = parent_quota; |
| 9247 | else if (parent_quota != RUNTIME_INF && quota > parent_quota) |
| 9248 | return -EINVAL; |
| 9249 | } |
| 9250 | cfs_b->hierarchal_quota = quota; |
| 9251 | |
| 9252 | return 0; |
| 9253 | } |
| 9254 | |
| 9255 | static int __cfs_schedulable(struct task_group *tg, u64 period, u64 quota) |
| 9256 | { |
| 9257 | struct cfs_schedulable_data data = { |
| 9258 | .tg = tg, |
| 9259 | .period = period, |
| 9260 | .quota = quota, |
| 9261 | }; |
| 9262 | |
| 9263 | if (quota != RUNTIME_INF) { |
| 9264 | do_div(data.period, NSEC_PER_USEC); |
| 9265 | do_div(data.quota, NSEC_PER_USEC); |
| 9266 | } |
| 9267 | |
| 9268 | return walk_tg_tree(tg_cfs_schedulable_down, tg_nop, &data); |
| 9269 | } |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9270 | #endif /* CONFIG_CFS_BANDWIDTH */ |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 9271 | #endif /* CONFIG_FAIR_GROUP_SCHED */ |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9272 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9273 | #ifdef CONFIG_RT_GROUP_SCHED |
Mirco Tischler | 0c70814 | 2008-05-14 16:05:46 -0700 | [diff] [blame] | 9274 | static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 9275 | s64 val) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9276 | { |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 9277 | return sched_group_set_rt_runtime(cgroup_tg(cgrp), val); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9278 | } |
| 9279 | |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 9280 | static s64 cpu_rt_runtime_read(struct cgroup *cgrp, struct cftype *cft) |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9281 | { |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 9282 | return sched_group_rt_runtime(cgroup_tg(cgrp)); |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9283 | } |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 9284 | |
| 9285 | static int cpu_rt_period_write_uint(struct cgroup *cgrp, struct cftype *cftype, |
| 9286 | u64 rt_period_us) |
| 9287 | { |
| 9288 | return sched_group_set_rt_period(cgroup_tg(cgrp), rt_period_us); |
| 9289 | } |
| 9290 | |
| 9291 | static u64 cpu_rt_period_read_uint(struct cgroup *cgrp, struct cftype *cft) |
| 9292 | { |
| 9293 | return sched_group_rt_period(cgroup_tg(cgrp)); |
| 9294 | } |
Dhaval Giani | 6d6bc0a | 2008-05-30 14:23:45 +0200 | [diff] [blame] | 9295 | #endif /* CONFIG_RT_GROUP_SCHED */ |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9296 | |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9297 | static struct cftype cpu_files[] = { |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9298 | #ifdef CONFIG_FAIR_GROUP_SCHED |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9299 | { |
| 9300 | .name = "shares", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 9301 | .read_u64 = cpu_shares_read_u64, |
| 9302 | .write_u64 = cpu_shares_write_u64, |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9303 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9304 | #endif |
Paul Turner | ab84d31 | 2011-07-21 09:43:28 -0700 | [diff] [blame] | 9305 | #ifdef CONFIG_CFS_BANDWIDTH |
| 9306 | { |
| 9307 | .name = "cfs_quota_us", |
| 9308 | .read_s64 = cpu_cfs_quota_read_s64, |
| 9309 | .write_s64 = cpu_cfs_quota_write_s64, |
| 9310 | }, |
| 9311 | { |
| 9312 | .name = "cfs_period_us", |
| 9313 | .read_u64 = cpu_cfs_period_read_u64, |
| 9314 | .write_u64 = cpu_cfs_period_write_u64, |
| 9315 | }, |
| 9316 | #endif |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9317 | #ifdef CONFIG_RT_GROUP_SCHED |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9318 | { |
Peter Zijlstra | 9f0c1e5 | 2008-02-13 15:45:39 +0100 | [diff] [blame] | 9319 | .name = "rt_runtime_us", |
Paul Menage | 06ecb27 | 2008-04-29 01:00:06 -0700 | [diff] [blame] | 9320 | .read_s64 = cpu_rt_runtime_read, |
| 9321 | .write_s64 = cpu_rt_runtime_write, |
Peter Zijlstra | 6f505b1 | 2008-01-25 21:08:30 +0100 | [diff] [blame] | 9322 | }, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 9323 | { |
| 9324 | .name = "rt_period_us", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 9325 | .read_u64 = cpu_rt_period_read_uint, |
| 9326 | .write_u64 = cpu_rt_period_write_uint, |
Peter Zijlstra | d0b27fa | 2008-04-19 19:44:57 +0200 | [diff] [blame] | 9327 | }, |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9328 | #endif |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9329 | }; |
| 9330 | |
| 9331 | static int cpu_cgroup_populate(struct cgroup_subsys *ss, struct cgroup *cont) |
| 9332 | { |
Paul Menage | fe5c7cc | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9333 | return cgroup_add_files(cont, ss, cpu_files, ARRAY_SIZE(cpu_files)); |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9334 | } |
| 9335 | |
| 9336 | struct cgroup_subsys cpu_cgroup_subsys = { |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9337 | .name = "cpu", |
| 9338 | .create = cpu_cgroup_create, |
| 9339 | .destroy = cpu_cgroup_destroy, |
Ben Blum | f780bdb | 2011-05-26 16:25:19 -0700 | [diff] [blame] | 9340 | .can_attach_task = cpu_cgroup_can_attach_task, |
| 9341 | .attach_task = cpu_cgroup_attach_task, |
Peter Zijlstra | 068c5cc | 2011-01-19 12:26:11 +0100 | [diff] [blame] | 9342 | .exit = cpu_cgroup_exit, |
Ingo Molnar | 38605ca | 2007-10-29 21:18:11 +0100 | [diff] [blame] | 9343 | .populate = cpu_cgroup_populate, |
| 9344 | .subsys_id = cpu_cgroup_subsys_id, |
Srivatsa Vaddagiri | 68318b8 | 2007-10-18 23:41:03 -0700 | [diff] [blame] | 9345 | .early_init = 1, |
| 9346 | }; |
| 9347 | |
Peter Zijlstra | 052f1dc | 2008-02-13 15:45:40 +0100 | [diff] [blame] | 9348 | #endif /* CONFIG_CGROUP_SCHED */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9349 | |
| 9350 | #ifdef CONFIG_CGROUP_CPUACCT |
| 9351 | |
| 9352 | /* |
| 9353 | * CPU accounting code for task groups. |
| 9354 | * |
| 9355 | * Based on the work by Paul Menage (menage@google.com) and Balbir Singh |
| 9356 | * (balbir@in.ibm.com). |
| 9357 | */ |
| 9358 | |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9359 | /* track cpu usage of a group of tasks and its child groups */ |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9360 | struct cpuacct { |
| 9361 | struct cgroup_subsys_state css; |
| 9362 | /* cpuusage holds pointer to a u64-type object on every cpu */ |
Tejun Heo | 43cf38e | 2010-02-02 14:38:57 +0900 | [diff] [blame] | 9363 | u64 __percpu *cpuusage; |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9364 | struct percpu_counter cpustat[CPUACCT_STAT_NSTATS]; |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9365 | struct cpuacct *parent; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9366 | }; |
| 9367 | |
| 9368 | struct cgroup_subsys cpuacct_subsys; |
| 9369 | |
| 9370 | /* return cpu accounting group corresponding to this container */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9371 | static inline struct cpuacct *cgroup_ca(struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9372 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9373 | return container_of(cgroup_subsys_state(cgrp, cpuacct_subsys_id), |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9374 | struct cpuacct, css); |
| 9375 | } |
| 9376 | |
| 9377 | /* return cpu accounting group to which this task belongs */ |
| 9378 | static inline struct cpuacct *task_ca(struct task_struct *tsk) |
| 9379 | { |
| 9380 | return container_of(task_subsys_state(tsk, cpuacct_subsys_id), |
| 9381 | struct cpuacct, css); |
| 9382 | } |
| 9383 | |
| 9384 | /* create a new cpu accounting group */ |
| 9385 | static struct cgroup_subsys_state *cpuacct_create( |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9386 | struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9387 | { |
| 9388 | struct cpuacct *ca = kzalloc(sizeof(*ca), GFP_KERNEL); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9389 | int i; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9390 | |
| 9391 | if (!ca) |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9392 | goto out; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9393 | |
| 9394 | ca->cpuusage = alloc_percpu(u64); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9395 | if (!ca->cpuusage) |
| 9396 | goto out_free_ca; |
| 9397 | |
| 9398 | for (i = 0; i < CPUACCT_STAT_NSTATS; i++) |
| 9399 | if (percpu_counter_init(&ca->cpustat[i], 0)) |
| 9400 | goto out_free_counters; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9401 | |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9402 | if (cgrp->parent) |
| 9403 | ca->parent = cgroup_ca(cgrp->parent); |
| 9404 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9405 | return &ca->css; |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9406 | |
| 9407 | out_free_counters: |
| 9408 | while (--i >= 0) |
| 9409 | percpu_counter_destroy(&ca->cpustat[i]); |
| 9410 | free_percpu(ca->cpuusage); |
| 9411 | out_free_ca: |
| 9412 | kfree(ca); |
| 9413 | out: |
| 9414 | return ERR_PTR(-ENOMEM); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9415 | } |
| 9416 | |
| 9417 | /* destroy an existing cpu accounting group */ |
Ingo Molnar | 41a2d6c | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 9418 | static void |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9419 | cpuacct_destroy(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9420 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9421 | struct cpuacct *ca = cgroup_ca(cgrp); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9422 | int i; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9423 | |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9424 | for (i = 0; i < CPUACCT_STAT_NSTATS; i++) |
| 9425 | percpu_counter_destroy(&ca->cpustat[i]); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9426 | free_percpu(ca->cpuusage); |
| 9427 | kfree(ca); |
| 9428 | } |
| 9429 | |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9430 | static u64 cpuacct_cpuusage_read(struct cpuacct *ca, int cpu) |
| 9431 | { |
Rusty Russell | b36128c | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 9432 | u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9433 | u64 data; |
| 9434 | |
| 9435 | #ifndef CONFIG_64BIT |
| 9436 | /* |
| 9437 | * Take rq->lock to make 64-bit read safe on 32-bit platforms. |
| 9438 | */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 9439 | raw_spin_lock_irq(&cpu_rq(cpu)->lock); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9440 | data = *cpuusage; |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 9441 | raw_spin_unlock_irq(&cpu_rq(cpu)->lock); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9442 | #else |
| 9443 | data = *cpuusage; |
| 9444 | #endif |
| 9445 | |
| 9446 | return data; |
| 9447 | } |
| 9448 | |
| 9449 | static void cpuacct_cpuusage_write(struct cpuacct *ca, int cpu, u64 val) |
| 9450 | { |
Rusty Russell | b36128c | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 9451 | u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9452 | |
| 9453 | #ifndef CONFIG_64BIT |
| 9454 | /* |
| 9455 | * Take rq->lock to make 64-bit write safe on 32-bit platforms. |
| 9456 | */ |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 9457 | raw_spin_lock_irq(&cpu_rq(cpu)->lock); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9458 | *cpuusage = val; |
Thomas Gleixner | 05fa785 | 2009-11-17 14:28:38 +0100 | [diff] [blame] | 9459 | raw_spin_unlock_irq(&cpu_rq(cpu)->lock); |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9460 | #else |
| 9461 | *cpuusage = val; |
| 9462 | #endif |
| 9463 | } |
| 9464 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9465 | /* return total cpu usage (in nanoseconds) of a group */ |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9466 | static u64 cpuusage_read(struct cgroup *cgrp, struct cftype *cft) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9467 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9468 | struct cpuacct *ca = cgroup_ca(cgrp); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9469 | u64 totalcpuusage = 0; |
| 9470 | int i; |
| 9471 | |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9472 | for_each_present_cpu(i) |
| 9473 | totalcpuusage += cpuacct_cpuusage_read(ca, i); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9474 | |
| 9475 | return totalcpuusage; |
| 9476 | } |
| 9477 | |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 9478 | static int cpuusage_write(struct cgroup *cgrp, struct cftype *cftype, |
| 9479 | u64 reset) |
| 9480 | { |
| 9481 | struct cpuacct *ca = cgroup_ca(cgrp); |
| 9482 | int err = 0; |
| 9483 | int i; |
| 9484 | |
| 9485 | if (reset) { |
| 9486 | err = -EINVAL; |
| 9487 | goto out; |
| 9488 | } |
| 9489 | |
Ken Chen | 720f549 | 2008-12-15 22:02:01 -0800 | [diff] [blame] | 9490 | for_each_present_cpu(i) |
| 9491 | cpuacct_cpuusage_write(ca, i, 0); |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 9492 | |
Dhaval Giani | 0297b80 | 2008-02-29 10:02:44 +0530 | [diff] [blame] | 9493 | out: |
| 9494 | return err; |
| 9495 | } |
| 9496 | |
Ken Chen | e9515c3 | 2008-12-15 22:04:15 -0800 | [diff] [blame] | 9497 | static int cpuacct_percpu_seq_read(struct cgroup *cgroup, struct cftype *cft, |
| 9498 | struct seq_file *m) |
| 9499 | { |
| 9500 | struct cpuacct *ca = cgroup_ca(cgroup); |
| 9501 | u64 percpu; |
| 9502 | int i; |
| 9503 | |
| 9504 | for_each_present_cpu(i) { |
| 9505 | percpu = cpuacct_cpuusage_read(ca, i); |
| 9506 | seq_printf(m, "%llu ", (unsigned long long) percpu); |
| 9507 | } |
| 9508 | seq_printf(m, "\n"); |
| 9509 | return 0; |
| 9510 | } |
| 9511 | |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9512 | static const char *cpuacct_stat_desc[] = { |
| 9513 | [CPUACCT_STAT_USER] = "user", |
| 9514 | [CPUACCT_STAT_SYSTEM] = "system", |
| 9515 | }; |
| 9516 | |
| 9517 | static int cpuacct_stats_show(struct cgroup *cgrp, struct cftype *cft, |
| 9518 | struct cgroup_map_cb *cb) |
| 9519 | { |
| 9520 | struct cpuacct *ca = cgroup_ca(cgrp); |
| 9521 | int i; |
| 9522 | |
| 9523 | for (i = 0; i < CPUACCT_STAT_NSTATS; i++) { |
| 9524 | s64 val = percpu_counter_read(&ca->cpustat[i]); |
| 9525 | val = cputime64_to_clock_t(val); |
| 9526 | cb->fill(cb, cpuacct_stat_desc[i], val); |
| 9527 | } |
| 9528 | return 0; |
| 9529 | } |
| 9530 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9531 | static struct cftype files[] = { |
| 9532 | { |
| 9533 | .name = "usage", |
Paul Menage | f4c753b | 2008-04-29 00:59:56 -0700 | [diff] [blame] | 9534 | .read_u64 = cpuusage_read, |
| 9535 | .write_u64 = cpuusage_write, |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9536 | }, |
Ken Chen | e9515c3 | 2008-12-15 22:04:15 -0800 | [diff] [blame] | 9537 | { |
| 9538 | .name = "usage_percpu", |
| 9539 | .read_seq_string = cpuacct_percpu_seq_read, |
| 9540 | }, |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9541 | { |
| 9542 | .name = "stat", |
| 9543 | .read_map = cpuacct_stats_show, |
| 9544 | }, |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9545 | }; |
| 9546 | |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9547 | static int cpuacct_populate(struct cgroup_subsys *ss, struct cgroup *cgrp) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9548 | { |
Dhaval Giani | 32cd756 | 2008-02-29 10:02:43 +0530 | [diff] [blame] | 9549 | return cgroup_add_files(cgrp, ss, files, ARRAY_SIZE(files)); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9550 | } |
| 9551 | |
| 9552 | /* |
| 9553 | * charge this task's execution time to its accounting group. |
| 9554 | * |
| 9555 | * called with rq->lock held. |
| 9556 | */ |
| 9557 | static void cpuacct_charge(struct task_struct *tsk, u64 cputime) |
| 9558 | { |
| 9559 | struct cpuacct *ca; |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9560 | int cpu; |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9561 | |
Li Zefan | c40c6f8 | 2009-02-26 15:40:15 +0800 | [diff] [blame] | 9562 | if (unlikely(!cpuacct_subsys.active)) |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9563 | return; |
| 9564 | |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9565 | cpu = task_cpu(tsk); |
Bharata B Rao | a18b83b | 2009-03-23 10:02:53 +0530 | [diff] [blame] | 9566 | |
| 9567 | rcu_read_lock(); |
| 9568 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9569 | ca = task_ca(tsk); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9570 | |
Bharata B Rao | 934352f | 2008-11-10 20:41:13 +0530 | [diff] [blame] | 9571 | for (; ca; ca = ca->parent) { |
Rusty Russell | b36128c | 2009-02-20 16:29:08 +0900 | [diff] [blame] | 9572 | u64 *cpuusage = per_cpu_ptr(ca->cpuusage, cpu); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9573 | *cpuusage += cputime; |
| 9574 | } |
Bharata B Rao | a18b83b | 2009-03-23 10:02:53 +0530 | [diff] [blame] | 9575 | |
| 9576 | rcu_read_unlock(); |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9577 | } |
| 9578 | |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9579 | /* |
Anton Blanchard | fa535a7 | 2010-02-02 14:46:13 -0800 | [diff] [blame] | 9580 | * When CONFIG_VIRT_CPU_ACCOUNTING is enabled one jiffy can be very large |
| 9581 | * in cputime_t units. As a result, cpuacct_update_stats calls |
| 9582 | * percpu_counter_add with values large enough to always overflow the |
| 9583 | * per cpu batch limit causing bad SMP scalability. |
| 9584 | * |
| 9585 | * To fix this we scale percpu_counter_batch by cputime_one_jiffy so we |
| 9586 | * batch the same amount of time with CONFIG_VIRT_CPU_ACCOUNTING disabled |
| 9587 | * and enabled. We cap it at INT_MAX which is the largest allowed batch value. |
| 9588 | */ |
| 9589 | #ifdef CONFIG_SMP |
| 9590 | #define CPUACCT_BATCH \ |
| 9591 | min_t(long, percpu_counter_batch * cputime_one_jiffy, INT_MAX) |
| 9592 | #else |
| 9593 | #define CPUACCT_BATCH 0 |
| 9594 | #endif |
| 9595 | |
| 9596 | /* |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9597 | * Charge the system/user time to the task's accounting group. |
| 9598 | */ |
| 9599 | static void cpuacct_update_stats(struct task_struct *tsk, |
| 9600 | enum cpuacct_stat_index idx, cputime_t val) |
| 9601 | { |
| 9602 | struct cpuacct *ca; |
Anton Blanchard | fa535a7 | 2010-02-02 14:46:13 -0800 | [diff] [blame] | 9603 | int batch = CPUACCT_BATCH; |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9604 | |
| 9605 | if (unlikely(!cpuacct_subsys.active)) |
| 9606 | return; |
| 9607 | |
| 9608 | rcu_read_lock(); |
| 9609 | ca = task_ca(tsk); |
| 9610 | |
| 9611 | do { |
Anton Blanchard | fa535a7 | 2010-02-02 14:46:13 -0800 | [diff] [blame] | 9612 | __percpu_counter_add(&ca->cpustat[idx], val, batch); |
Bharata B Rao | ef12fef | 2009-03-31 10:02:22 +0530 | [diff] [blame] | 9613 | ca = ca->parent; |
| 9614 | } while (ca); |
| 9615 | rcu_read_unlock(); |
| 9616 | } |
| 9617 | |
Srivatsa Vaddagiri | d842de8 | 2007-12-02 20:04:49 +0100 | [diff] [blame] | 9618 | struct cgroup_subsys cpuacct_subsys = { |
| 9619 | .name = "cpuacct", |
| 9620 | .create = cpuacct_create, |
| 9621 | .destroy = cpuacct_destroy, |
| 9622 | .populate = cpuacct_populate, |
| 9623 | .subsys_id = cpuacct_subsys_id, |
| 9624 | }; |
| 9625 | #endif /* CONFIG_CGROUP_CPUACCT */ |