2 * Copyright (c) 2009, 2010 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Alex Hornung <ahornung@gmail.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
38 #include <sys/sysctl.h>
41 #include <sys/diskslice.h>
43 #include <machine/atomic.h>
44 #include <sys/thread.h>
45 #include <sys/thread2.h>
46 #include <sys/ctype.h>
48 #include <sys/syslog.h>
49 #include <sys/dsched.h>
50 #include <machine/param.h>
52 #include <kern/dsched/fq/fq.h>
54 static int dsched_fq_version_maj = 1;
55 static int dsched_fq_version_min = 1;
57 /* Make sure our structs fit */
58 CTASSERT(sizeof(struct fq_thread_io) <= DSCHED_THREAD_IO_MAX_SZ);
59 CTASSERT(sizeof(struct fq_disk_ctx) <= DSCHED_DISK_CTX_MAX_SZ);
61 struct dsched_fq_stats fq_stats;
63 extern struct dsched_policy dsched_fq_policy;
66 fq_dispatcher(struct fq_disk_ctx *diskctx)
68 struct dispatch_prep *dispatch_ary;
69 struct dsched_thread_io *ds_tdio, *ds_tdio2;
70 struct fq_thread_io *tdio;
71 struct bio *bio, *bio2;
76 * Array is dangerously big for an on-stack declaration, allocate
79 dispatch_ary = kmalloc(sizeof(*dispatch_ary) * FQ_DISPATCH_ARRAY_SZ,
80 M_TEMP, M_INTWAIT | M_ZERO);
83 * We need to manually assign an tdio to the tdctx of this thread
84 * since it isn't assigned one during fq_prepare, as the disk
87 tdio = (struct fq_thread_io *)dsched_new_policy_thread_tdio(&diskctx->head,
90 DSCHED_DISK_CTX_LOCK(&diskctx->head);
94 * sleep ~60 ms, failsafe low hz rates.
96 if ((lksleep(diskctx, &diskctx->head.lock, 0,
97 "fq_dispatcher", (hz + 14) / 15) == 0)) {
99 * We've been woken up; this either means that we are
100 * supposed to die away nicely or that the disk is idle.
103 if (__predict_false(diskctx->die == 1)) {
104 /* If we are supposed to die, drain all queues */
105 fq_drain(diskctx, FQ_DRAIN_FLUSH);
107 /* Now we can safely unlock and exit */
108 DSCHED_DISK_CTX_UNLOCK(&diskctx->head);
109 kprintf("fq_dispatcher is peacefully dying\n");
115 * We have been awakened because the disk is idle.
116 * So let's get ready to dispatch some extra bios.
121 /* Maybe the disk is idle and we just didn't get the wakeup */
123 idle = diskctx->idle;
125 /* Set the number of prepared requests to 0 */
129 * XXX: further room for improvements here. It would be better
130 * to dispatch a few requests from each tdio as to ensure
133 TAILQ_FOREACH_MUTABLE(ds_tdio, &diskctx->head.tdio_list, dlink, ds_tdio2) {
134 tdio = (struct fq_thread_io *)ds_tdio;
135 if (tdio->head.qlength == 0)
138 DSCHED_THREAD_IO_LOCK(&tdio->head);
139 if (atomic_cmpset_int(&tdio->rebalance, 1, 0))
140 fq_balance_self(tdio);
142 * XXX: why 5 extra? should probably be dynamic,
143 * relying on information on latency.
145 if ((tdio->max_tp > 0) && idle &&
146 (tdio->issued >= tdio->max_tp)) {
151 TAILQ_FOREACH_MUTABLE(bio, &tdio->head.queue, link, bio2) {
152 if (atomic_cmpset_int(&tdio->rebalance, 1, 0))
153 fq_balance_self(tdio);
154 if (((tdio->max_tp > 0) &&
155 (tdio->issued + prepd_io >= tdio->max_tp)) ||
156 (i == FQ_DISPATCH_ARRAY_SZ))
159 TAILQ_REMOVE(&tdio->head.queue, bio, link);
160 --tdio->head.qlength;
163 * beware that we do have an tdio reference
166 * XXX: note that here we don't dispatch it yet
167 * but just prepare it for dispatch so
168 * that no locks are held when calling
171 dispatch_ary[i].bio = bio;
172 dispatch_ary[i].tdio = tdio;
176 DSCHED_THREAD_IO_UNLOCK(&tdio->head);
180 dsched_disk_ctx_ref(&diskctx->head);
181 DSCHED_DISK_CTX_UNLOCK(&diskctx->head);
184 * Dispatch all the previously prepared bios, now without
187 for (--i; i >= 0; i--) {
188 bio = dispatch_ary[i].bio;
189 tdio = dispatch_ary[i].tdio;
190 fq_dispatch(diskctx, bio, tdio);
193 DSCHED_DISK_CTX_LOCK(&diskctx->head);
194 dsched_disk_ctx_unref(&diskctx->head);
199 fq_balance_thread(struct fq_disk_ctx *diskctx)
201 struct dsched_thread_io *ds_tdio;
202 struct fq_thread_io *tdio;
203 struct timeval tv, old_tv;
204 int64_t total_budget, product;
205 int64_t budget[FQ_PRIO_MAX+1];
206 int n, i, sum, total_disk_time;
209 DSCHED_DISK_CTX_LOCK(&diskctx->head);
211 getmicrotime(&diskctx->start_interval);
215 if ((lksleep(curthread, &diskctx->head.lock, 0, "fq_balancer", hz/2) == 0)) {
216 if (__predict_false(diskctx->die)) {
217 DSCHED_DISK_CTX_UNLOCK(&diskctx->head);
222 bzero(budget, sizeof(budget));
226 old_tv = diskctx->start_interval;
229 total_disk_time = (int)(1000000*((tv.tv_sec - old_tv.tv_sec)) +
230 (tv.tv_usec - old_tv.tv_usec));
232 if (total_disk_time == 0)
235 dsched_debug(LOG_INFO, "total_disk_time = %d\n", total_disk_time);
237 diskctx->start_interval = tv;
239 diskctx->disk_busy = (100*(total_disk_time - diskctx->idle_time)) / total_disk_time;
240 if (diskctx->disk_busy < 0)
241 diskctx->disk_busy = 0;
243 diskctx->idle_time = 0;
246 TAILQ_FOREACH(ds_tdio, &diskctx->head.tdio_list, dlink) {
247 tdio = (struct fq_thread_io *)ds_tdio;
248 tdio->interval_avg_latency = tdio->avg_latency;
249 tdio->interval_transactions = tdio->transactions;
250 if (tdio->interval_transactions > 0) {
251 product = (int64_t)tdio->interval_avg_latency *
252 tdio->interval_transactions;
253 product >>= lost_bits;
254 while(total_budget >= INT64_MAX - product) {
259 total_budget += product;
260 ++budget[(tdio->head.p) ? tdio->head.p->p_ionice : 0];
261 KKASSERT(total_budget >= 0);
262 dsched_debug(LOG_INFO,
263 "%d) avg_latency = %d, transactions = %d, ioprio = %d\n",
264 n, tdio->interval_avg_latency, tdio->interval_transactions,
265 (tdio->head.p) ? tdio->head.p->p_ionice : 0);
271 tdio->transactions = 0;
272 tdio->avg_latency = 0;
276 dsched_debug(LOG_INFO, "%d procs competing for disk\n"
277 "total_budget = %jd (lost bits = %d)\n"
278 "incomplete tp = %d\n", n, (intmax_t)total_budget,
279 lost_bits, diskctx->incomplete_tp);
286 for (i = 0; i < FQ_PRIO_MAX+1; i++) {
289 sum += (FQ_PRIO_BIAS+i)*budget[i];
295 dsched_debug(LOG_INFO, "sum = %d\n", sum);
297 for (i = 0; i < FQ_PRIO_MAX+1; i++) {
302 * XXX: if we still overflow here, we really need to switch to
303 * some more advanced mechanism such as compound int128 or
304 * storing the lost bits so they can be used in the
307 diskctx->budgetpb[i] = ((FQ_PRIO_BIAS+i)*total_budget/sum) << lost_bits;
308 KKASSERT(diskctx->budgetpb[i] >= 0);
311 dsched_debug(4, "disk is %d%% busy\n", diskctx->disk_busy);
312 TAILQ_FOREACH(ds_tdio, &diskctx->head.tdio_list, dlink) {
313 tdio = (struct fq_thread_io *)ds_tdio;
317 diskctx->prev_full = diskctx->last_full;
318 diskctx->last_full = (diskctx->disk_busy >= 90)?1:0;
324 * fq_balance_self should be called from all sorts of dispatchers. It basically
325 * offloads some of the heavier calculations on throttling onto the process that
326 * wants to do I/O instead of doing it in the fq_balance thread.
327 * - should be called with diskctx lock held
330 fq_balance_self(struct fq_thread_io *tdio) {
331 struct fq_disk_ctx *diskctx;
333 int64_t budget, used_budget;
335 int64_t transactions;
337 transactions = (int64_t)tdio->interval_transactions;
338 avg_latency = (int64_t)tdio->interval_avg_latency;
339 diskctx = (struct fq_disk_ctx *)tdio->head.diskctx;
342 /* XXX: do we really require the lock? */
343 DSCHED_DISK_CTX_LOCK_ASSERT(diskctx);
346 used_budget = avg_latency * transactions;
347 budget = diskctx->budgetpb[(tdio->head.p) ? tdio->head.p->p_ionice : 0];
349 if (used_budget > 0) {
350 dsched_debug(LOG_INFO,
351 "info: used_budget = %jd, budget = %jd\n",
352 (intmax_t)used_budget, budget);
355 if ((used_budget > budget) && (diskctx->disk_busy >= 90)) {
356 KKASSERT(avg_latency != 0);
358 tdio->max_tp = budget/(avg_latency);
359 atomic_add_int(&fq_stats.procs_limited, 1);
361 dsched_debug(LOG_INFO,
362 "rate limited to %d transactions\n", tdio->max_tp);
364 } else if (((used_budget*2 < budget) || (diskctx->disk_busy < 80)) &&
365 (!diskctx->prev_full && !diskctx->last_full)) {
372 do_fqstats(SYSCTL_HANDLER_ARGS)
374 return (sysctl_handle_opaque(oidp, &fq_stats, sizeof(struct dsched_fq_stats), req));
378 fq_mod_handler(module_t mod, int type, void *unused)
380 static struct sysctl_ctx_list sysctl_ctx;
381 static struct sysctl_oid *oid;
382 static char version[16];
385 ksnprintf(version, sizeof(version), "%d.%d",
386 dsched_fq_version_maj, dsched_fq_version_min);
390 bzero(&fq_stats, sizeof(struct dsched_fq_stats));
391 if ((error = dsched_register(&dsched_fq_policy)))
394 sysctl_ctx_init(&sysctl_ctx);
395 oid = SYSCTL_ADD_NODE(&sysctl_ctx,
396 SYSCTL_STATIC_CHILDREN(_dsched),
401 SYSCTL_ADD_PROC(&sysctl_ctx, SYSCTL_CHILDREN(oid),
402 OID_AUTO, "stats", CTLTYPE_OPAQUE|CTLFLAG_RD,
403 0, 0, do_fqstats, "S,dsched_fq_stats", "fq statistics");
405 SYSCTL_ADD_STRING(&sysctl_ctx, SYSCTL_CHILDREN(oid),
406 OID_AUTO, "version", CTLFLAG_RD, version, 0, "fq version");
408 kprintf("FQ scheduler policy version %d.%d loaded\n",
409 dsched_fq_version_maj, dsched_fq_version_min);
413 if ((error = dsched_unregister(&dsched_fq_policy)))
415 sysctl_ctx_free(&sysctl_ctx);
416 kprintf("FQ scheduler policy unloaded\n");
426 DSCHED_POLICY_MODULE(dsched_fq, fq_mod_handler);