sys/kern/kern_iosched.c
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | /* * Copyright (c) 2008 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon <dillon@backplane.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> #include <sys/proc.h> #include <sys/rtprio.h> #include <sys/queue.h> #include <machine/cpu.h> #include <sys/spinlock.h> #include <sys/iosched.h> #include <sys/sysctl.h> #include <sys/buf.h> #include <sys/limits.h> #include <sys/spinlock2.h> #include <vm/vm.h> #include <vm/vm_param.h> #include <vm/vm_kern.h> #include <vm/vm_extern.h> SYSCTL_NODE(, OID_AUTO, iosched, CTLFLAG_RW, 0, "I/O Scheduler"); static int iosched_debug = 0; SYSCTL_INT(_iosched, OID_AUTO, debug, CTLFLAG_RW, &iosched_debug, 0, ""); static struct iosched_data ioscpu[SMP_MAXCPU]; /* * MPSAFE */ static int badjiosched(thread_t td, size_t bytes) { globaldata_t gd = mycpu; size_t iostotal; int factor; int i; int delta; iostotal = 0; for (i = 0; i < ncpus; ++i) iostotal += ioscpu[i].iowbytes; if (SIZE_T_MAX / SMP_MAXCPU - td->td_iosdata.iowbytes < bytes) bytes = SIZE_T_MAX / SMP_MAXCPU - td->td_iosdata.iowbytes; td->td_iosdata.iowbytes += bytes; ioscpu[gd->gd_cpuid].iowbytes += bytes; iostotal += bytes; delta = ticks - td->td_iosdata.lastticks; if (delta) { td->td_iosdata.lastticks = ticks; if (delta < 0 || delta > hz * 10) delta = hz * 10; /* be careful of interger overflows */ bytes = (int64_t)td->td_iosdata.iowbytes * delta / (hz * 10); td->td_iosdata.iowbytes -= bytes; ioscpu[gd->gd_cpuid].iowbytes -= bytes; iostotal -= bytes; } /* be careful of interger overflows */ if (iostotal > 0) factor = (int64_t)td->td_iosdata.iowbytes * 100 / iostotal; else factor = 50; if (delta && (iosched_debug & 1)) { kprintf("proc %12s (%-5d) factor %3d (%zd/%zd)\n", td->td_comm, (td->td_lwp ? (int)td->td_lwp->lwp_proc->p_pid : -1), factor, td->td_iosdata.iowbytes, iostotal); } return (factor); } void biosched_done(thread_t td) { globaldata_t gd = mycpu; size_t bytes; if ((bytes = td->td_iosdata.iowbytes) != 0) { td->td_iosdata.iowbytes = 0; ioscpu[gd->gd_cpuid].iowbytes -= bytes; } } /* * Caller intends to write (bytes) * * MPSAFE */ void bwillwrite(int bytes) { long count; long factor; count = bd_heatup(); if (count > 0) { /* be careful of interger overflows */ factor = badjiosched(curthread, (size_t)bytes); count = hidirtybufspace / 100 * factor; bd_wait(count); } } /* * Caller intends to read (bytes) * * MPSAFE */ void bwillread(int bytes) { } /* * Call intends to do an inode-modifying operation of some sort. * * MPSAFE */ void bwillinode(int n) { long count; long factor; count = bd_heatup(); if (count > 0) { factor = badjiosched(curthread, PAGE_SIZE); count = count * factor / 100; bd_wait(count); } } |