1 /*
2 * Copyright (c) 2000-2007 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28 /*
29 * @OSF_COPYRIGHT@
30 */
31 /*
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 * Software Distribution Coordinator or [email protected]
49 * School of Computer Science
50 * Carnegie Mellon University
51 * Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56 /*
57 */
58 /*
59 * Author: Avadis Tevanian, Jr.
60 * Date: 1986
61 *
62 * Compute various averages.
63 */
64
65 #include <mach/mach_types.h>
66
67 #include <kern/sched.h>
68 #include <kern/assert.h>
69 #include <kern/processor.h>
70 #include <kern/thread.h>
71 #if CONFIG_TELEMETRY
72 #include <kern/telemetry.h>
73 #endif
74 #include <kern/zalloc_internal.h>
75
76 #include <sys/kdebug.h>
77
78 uint32_t avenrun[3] = {0, 0, 0};
79 uint32_t mach_factor[3] = {0, 0, 0};
80
81 uint32_t sched_load_average, sched_mach_factor;
82
83 #if defined(CONFIG_SCHED_TIMESHARE_CORE)
84 /*
85 * Values are scaled by LOAD_SCALE, defined in processor_info.h
86 */
87 #define base(n) ((n) << SCHED_TICK_SHIFT)
88 #define frac(n) (((base(n) - 1) * LOAD_SCALE) / base(n))
89
90 static uint32_t fract[3] = {
91 frac(5), /* 5 second average */
92 frac(30), /* 30 second average */
93 frac(60), /* 1 minute average */
94 };
95
96 #undef base
97 #undef frac
98
99 #endif /* CONFIG_SCHED_TIMESHARE_CORE */
100
101 static unsigned int sched_nrun;
102
103 typedef void (*sched_avg_comp_t)(
104 void *param);
105
106 static struct sched_average {
107 sched_avg_comp_t comp;
108 void *param;
109 int period; /* in seconds */
110 uint64_t deadline;
111 } sched_average[] = {
112 { compute_averunnable, &sched_nrun, 5, 0 },
113 { compute_stack_target, NULL, 5, 1 },
114 { compute_pageout_gc_throttle, NULL, 1, 0 },
115 { compute_pmap_gc_throttle, NULL, 60, 0 },
116 { compute_zone_working_set_size, NULL, ZONE_WSS_UPDATE_PERIOD, 0 },
117 { NULL, NULL, 0, 0 }
118 };
119
120 typedef struct sched_average *sched_average_t;
121
122 /*
123 * Scheduler load calculation algorithm
124 *
125 * The scheduler load values provide an estimate of the number of runnable
126 * timeshare threads in the system at various priority bands. The load
127 * ultimately affects the priority shifts applied to all threads in a band
128 * causing them to timeshare with other threads in the system. The load is
129 * maintained in buckets, with each bucket corresponding to a priority band.
130 *
131 * Each runnable thread on the system contributes its load to its priority
132 * band and to the bands above it. The contribution of a thread to the bands
133 * above it is not strictly 1:1 and is weighted based on the priority band
134 * of the thread. The rules of thread load contribution to each of its higher
135 * bands are as follows:
136 *
137 * - DF threads: Upto (2 * NCPUs) threads
138 * - UT threads: Upto NCPUs threads
139 * - BG threads: Upto 1 thread
140 *
141 * To calculate the load values, the various run buckets are sampled (every
142 * sched_load_compute_interval_abs) and the weighted contributions of the the
143 * lower bucket threads are added. The resultant value is plugged into an
144 * exponentially weighted moving average formula:
145 * new-load = alpha * old-load + (1 - alpha) * run-bucket-sample-count
146 * (where, alpha < 1)
147 * The calculations for the scheduler load are done using fixpoint math with
148 * a scale factor of 16 to avoid expensive divides and floating point
149 * operations. The final load values are a smooth curve representative of
150 * the actual number of runnable threads in a priority band.
151 */
152
153 /* Maintains the current (scaled for fixpoint) load in various buckets */
154 uint32_t sched_load[TH_BUCKET_MAX];
155
156 /*
157 * Alpha factor for the EWMA alogrithm. The current values are chosen as
158 * 6:10 ("old load":"new samples") to make sure the scheduler reacts fast
159 * enough to changing system load but does not see too many spikes from bursty
160 * activity. The current values ensure that the scheduler would converge
161 * to the latest load in 2-3 sched_load_compute_interval_abs intervals
162 * (which amounts to ~30-45ms with current values).
163 */
164 #define SCHED_LOAD_EWMA_ALPHA_OLD 6
165 #define SCHED_LOAD_EWMA_ALPHA_NEW 10
166 #define SCHED_LOAD_EWMA_ALPHA_SHIFT 4
167 static_assert((SCHED_LOAD_EWMA_ALPHA_OLD + SCHED_LOAD_EWMA_ALPHA_NEW) == (1ul << SCHED_LOAD_EWMA_ALPHA_SHIFT));
168
169 /* For fixpoint EWMA, roundup the load to make it converge */
170 #define SCHED_LOAD_EWMA_ROUNDUP(load) (((load) & (1ul << (SCHED_LOAD_EWMA_ALPHA_SHIFT - 1))) != 0)
171
172 /* Macro to convert scaled sched load to a real load value */
173 #define SCHED_LOAD_EWMA_UNSCALE(load) (((load) >> SCHED_LOAD_EWMA_ALPHA_SHIFT) + SCHED_LOAD_EWMA_ROUNDUP(load))
174
175 /*
176 * Routine to capture the latest runnable counts and update sched_load (only used for non-clutch schedulers)
177 */
178 void
compute_sched_load(void)179 compute_sched_load(void)
180 {
181 /*
182 * Retrieve a snapshot of the current run counts.
183 *
184 * Why not a bcopy()? Because we need atomic word-sized reads of sched_run_buckets,
185 * not byte-by-byte copy.
186 */
187 uint32_t ncpus = processor_avail_count;
188 uint32_t load_now[TH_BUCKET_MAX];
189
190 load_now[TH_BUCKET_RUN] = os_atomic_load(&sched_run_buckets[TH_BUCKET_RUN], relaxed);
191 load_now[TH_BUCKET_FIXPRI] = os_atomic_load(&sched_run_buckets[TH_BUCKET_FIXPRI], relaxed);
192 load_now[TH_BUCKET_SHARE_FG] = os_atomic_load(&sched_run_buckets[TH_BUCKET_SHARE_FG], relaxed);
193 load_now[TH_BUCKET_SHARE_DF] = os_atomic_load(&sched_run_buckets[TH_BUCKET_SHARE_DF], relaxed);
194 load_now[TH_BUCKET_SHARE_UT] = os_atomic_load(&sched_run_buckets[TH_BUCKET_SHARE_UT], relaxed);
195 load_now[TH_BUCKET_SHARE_BG] = os_atomic_load(&sched_run_buckets[TH_BUCKET_SHARE_BG], relaxed);
196
197 assert(load_now[TH_BUCKET_RUN] >= 0);
198 assert(load_now[TH_BUCKET_FIXPRI] >= 0);
199
200 uint32_t nthreads = load_now[TH_BUCKET_RUN];
201 uint32_t nfixpri = load_now[TH_BUCKET_FIXPRI];
202
203 KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE,
204 MACHDBG_CODE(DBG_MACH_SCHED, MACH_SCHED_LOAD) | DBG_FUNC_NONE,
205 load_now[TH_BUCKET_FIXPRI], (load_now[TH_BUCKET_SHARE_FG] + load_now[TH_BUCKET_SHARE_DF]),
206 load_now[TH_BUCKET_SHARE_BG], load_now[TH_BUCKET_SHARE_UT], 0);
207
208 /*
209 * Compute the timeshare priority conversion factor based on loading.
210 * Because our counters may be incremented and accessed
211 * concurrently with respect to each other, we may have
212 * windows where the invariant (nthreads - nfixpri) == (fg + df + bg + ut)
213 * is broken, so truncate values in these cases.
214 */
215 uint32_t timeshare_threads = (nthreads - nfixpri);
216 for (uint32_t i = TH_BUCKET_SHARE_FG; i <= TH_BUCKET_SHARE_BG; i++) {
217 if (load_now[i] > timeshare_threads) {
218 load_now[i] = timeshare_threads;
219 }
220 }
221
222 /*
223 * Default threads contribute up to (NCPUS * 2) of load to FG threads
224 */
225 if (load_now[TH_BUCKET_SHARE_DF] <= (ncpus * 2)) {
226 load_now[TH_BUCKET_SHARE_FG] += load_now[TH_BUCKET_SHARE_DF];
227 } else {
228 load_now[TH_BUCKET_SHARE_FG] += (ncpus * 2);
229 }
230
231 /*
232 * Utility threads contribute up to NCPUS of load to FG & DF threads
233 */
234 if (load_now[TH_BUCKET_SHARE_UT] <= ncpus) {
235 load_now[TH_BUCKET_SHARE_FG] += load_now[TH_BUCKET_SHARE_UT];
236 load_now[TH_BUCKET_SHARE_DF] += load_now[TH_BUCKET_SHARE_UT];
237 } else {
238 load_now[TH_BUCKET_SHARE_FG] += ncpus;
239 load_now[TH_BUCKET_SHARE_DF] += ncpus;
240 }
241
242 /*
243 * BG threads contribute up to 1 thread worth of load to FG, DF and UT threads
244 */
245 if (load_now[TH_BUCKET_SHARE_BG] > 0) {
246 load_now[TH_BUCKET_SHARE_FG] += 1;
247 load_now[TH_BUCKET_SHARE_DF] += 1;
248 load_now[TH_BUCKET_SHARE_UT] += 1;
249 }
250
251 /*
252 * The conversion factor consists of two components:
253 * a fixed value based on the absolute time unit (sched_fixed_shift),
254 * and a dynamic portion based on load (sched_load_shifts).
255 *
256 * Zero load results in a out of range shift count.
257 */
258
259 for (uint32_t i = TH_BUCKET_SHARE_FG; i <= TH_BUCKET_SHARE_BG; i++) {
260 uint32_t bucket_load = 0;
261
262 if (load_now[i] > ncpus) {
263 /* Normalize the load to number of CPUs */
264 if (ncpus > 1) {
265 bucket_load = load_now[i] / ncpus;
266 } else {
267 bucket_load = load_now[i];
268 }
269
270 if (bucket_load > MAX_LOAD) {
271 bucket_load = MAX_LOAD;
272 }
273 }
274 /* Plug the load values into the EWMA algorithm to calculate (scaled for fixpoint) sched_load */
275 sched_load[i] = (sched_load[i] * SCHED_LOAD_EWMA_ALPHA_OLD) + ((bucket_load << SCHED_LOAD_EWMA_ALPHA_SHIFT) * SCHED_LOAD_EWMA_ALPHA_NEW);
276 sched_load[i] = sched_load[i] >> SCHED_LOAD_EWMA_ALPHA_SHIFT;
277 }
278
279 KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE,
280 MACHDBG_CODE(DBG_MACH_SCHED, MACH_SCHED_LOAD_EFFECTIVE) | DBG_FUNC_NONE,
281 SCHED_LOAD_EWMA_UNSCALE(sched_load[TH_BUCKET_SHARE_FG]), SCHED_LOAD_EWMA_UNSCALE(sched_load[TH_BUCKET_SHARE_DF]),
282 SCHED_LOAD_EWMA_UNSCALE(sched_load[TH_BUCKET_SHARE_UT]), SCHED_LOAD_EWMA_UNSCALE(sched_load[TH_BUCKET_SHARE_BG]), 0);
283 }
284
285 void
compute_averages(uint64_t stdelta)286 compute_averages(uint64_t stdelta)
287 {
288 uint32_t nthreads = os_atomic_load(&sched_run_buckets[TH_BUCKET_RUN], relaxed) - 1;
289 uint32_t ncpus = processor_avail_count;
290
291 /* Update the global pri_shifts based on the latest values */
292 for (uint32_t i = TH_BUCKET_SHARE_FG; i <= TH_BUCKET_SHARE_BG; i++) {
293 uint32_t bucket_load = SCHED_LOAD_EWMA_UNSCALE(sched_load[i]);
294 uint32_t shift = sched_fixed_shift - sched_load_shifts[bucket_load];
295
296 if (shift > SCHED_PRI_SHIFT_MAX) {
297 sched_pri_shifts[i] = INT8_MAX;
298 } else {
299 sched_pri_shifts[i] = shift;
300 }
301 }
302
303 /*
304 * Sample total running threads for the load average calculation.
305 */
306 sched_nrun = nthreads;
307
308 /*
309 * Load average and mach factor calculations for
310 * those which ask about these things.
311 */
312 uint32_t average_now = nthreads * LOAD_SCALE;
313 uint32_t factor_now;
314
315 if (nthreads > ncpus) {
316 factor_now = (ncpus * LOAD_SCALE) / (nthreads + 1);
317 } else {
318 factor_now = (ncpus - nthreads) * LOAD_SCALE;
319 }
320
321 /*
322 * For those statistics that formerly relied on being recomputed
323 * on timer ticks, advance by the approximate number of corresponding
324 * elapsed intervals, thus compensating for potential idle intervals.
325 */
326 for (uint32_t index = 0; index < stdelta; index++) {
327 sched_mach_factor = ((sched_mach_factor << 2) + factor_now) / 5;
328 sched_load_average = ((sched_load_average << 2) + average_now) / 5;
329 }
330
331 /*
332 * Compute old-style Mach load averages.
333 */
334 for (uint32_t index = 0; index < stdelta; index++) {
335 for (uint32_t i = 0; i < 3; i++) {
336 mach_factor[i] = ((mach_factor[i] * fract[i]) +
337 (factor_now * (LOAD_SCALE - fract[i]))) / LOAD_SCALE;
338
339 avenrun[i] = ((avenrun[i] * fract[i]) +
340 (average_now * (LOAD_SCALE - fract[i]))) / LOAD_SCALE;
341 }
342 }
343
344 /*
345 * Compute averages in other components.
346 */
347 uint64_t abstime = mach_absolute_time();
348
349 for (sched_average_t avg = sched_average; avg->comp != NULL; ++avg) {
350 if (abstime >= avg->deadline) {
351 uint64_t period_abs = (avg->period * sched_one_second_interval);
352 uint64_t ninvokes = 1;
353
354 ninvokes += (abstime - avg->deadline) / period_abs;
355 ninvokes = MIN(ninvokes, SCHED_TICK_MAX_DELTA);
356
357 for (uint32_t index = 0; index < ninvokes; index++) {
358 (*avg->comp)(avg->param);
359 }
360 avg->deadline = abstime + period_abs;
361 }
362 }
363 }
364