Home | History | Annotate | Line # | Download | only in kern
bufq_readprio.c revision 1.1
      1 /*	$NetBSD: bufq_readprio.c,v 1.1 2004/10/14 05:12:28 yamt Exp $	*/
      2 /*	NetBSD: subr_disk.c,v 1.61 2004/09/25 03:30:44 thorpej Exp 	*/
      3 
      4 /*-
      5  * Copyright (c) 1996, 1997, 1999, 2000 The NetBSD Foundation, Inc.
      6  * All rights reserved.
      7  *
      8  * This code is derived from software contributed to The NetBSD Foundation
      9  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
     10  * NASA Ames Research Center.
     11  *
     12  * Redistribution and use in source and binary forms, with or without
     13  * modification, are permitted provided that the following conditions
     14  * are met:
     15  * 1. Redistributions of source code must retain the above copyright
     16  *    notice, this list of conditions and the following disclaimer.
     17  * 2. Redistributions in binary form must reproduce the above copyright
     18  *    notice, this list of conditions and the following disclaimer in the
     19  *    documentation and/or other materials provided with the distribution.
     20  * 3. All advertising materials mentioning features or use of this software
     21  *    must display the following acknowledgement:
     22  *	This product includes software developed by the NetBSD
     23  *	Foundation, Inc. and its contributors.
     24  * 4. Neither the name of The NetBSD Foundation nor the names of its
     25  *    contributors may be used to endorse or promote products derived
     26  *    from this software without specific prior written permission.
     27  *
     28  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     29  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     30  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     31  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     32  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     33  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     34  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     35  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     36  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     37  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     38  * POSSIBILITY OF SUCH DAMAGE.
     39  */
     40 
     41 /*
     42  * Copyright (c) 1982, 1986, 1988, 1993
     43  *	The Regents of the University of California.  All rights reserved.
     44  * (c) UNIX System Laboratories, Inc.
     45  * All or some portions of this file are derived from material licensed
     46  * to the University of California by American Telephone and Telegraph
     47  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     48  * the permission of UNIX System Laboratories, Inc.
     49  *
     50  * Redistribution and use in source and binary forms, with or without
     51  * modification, are permitted provided that the following conditions
     52  * are met:
     53  * 1. Redistributions of source code must retain the above copyright
     54  *    notice, this list of conditions and the following disclaimer.
     55  * 2. Redistributions in binary form must reproduce the above copyright
     56  *    notice, this list of conditions and the following disclaimer in the
     57  *    documentation and/or other materials provided with the distribution.
     58  * 3. Neither the name of the University nor the names of its contributors
     59  *    may be used to endorse or promote products derived from this software
     60  *    without specific prior written permission.
     61  *
     62  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     63  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     64  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     65  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     66  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     67  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     68  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     69  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     70  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     71  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     72  * SUCH DAMAGE.
     73  *
     74  *	@(#)ufs_disksubr.c	8.5 (Berkeley) 1/21/94
     75  */
     76 
     77 #include <sys/cdefs.h>
     78 __KERNEL_RCSID(0, "$NetBSD: bufq_readprio.c,v 1.1 2004/10/14 05:12:28 yamt Exp $");
     79 
     80 #include <sys/param.h>
     81 #include <sys/systm.h>
     82 #include <sys/buf.h>
     83 #include <sys/malloc.h>
     84 
     85 /*
     86  * Seek sort for disks.
     87  *
     88  * There are two queues.  The first queue holds read requests; the second
     89  * holds write requests.  The read queue is first-come first-served; the
     90  * write queue is sorted in ascendening block order.
     91  * The read queue is processed first.  After PRIO_READ_BURST consecutive
     92  * read requests with non-empty write queue PRIO_WRITE_REQ requests from
     93  * the write queue will be processed.
     94  */
     95 
     96 #define PRIO_READ_BURST		48
     97 #define PRIO_WRITE_REQ		16
     98 
     99 struct bufq_prio {
    100 	TAILQ_HEAD(, buf) bq_read, bq_write; /* actual list of buffers */
    101 	struct buf *bq_write_next;	/* next request in bq_write */
    102 	struct buf *bq_next;		/* current request */
    103 	int bq_read_burst;		/* # of consecutive reads */
    104 };
    105 
    106 static void
    107 bufq_prio_put(struct bufq_state *bufq, struct buf *bp)
    108 {
    109 	struct bufq_prio *prio = bufq->bq_private;
    110 	struct buf *bq;
    111 	int sortby;
    112 
    113 	sortby = bufq->bq_flags & BUFQ_SORT_MASK;
    114 
    115 	/*
    116 	 * If it's a read request append it to the list.
    117 	 */
    118 	if ((bp->b_flags & B_READ) == B_READ) {
    119 		TAILQ_INSERT_TAIL(&prio->bq_read, bp, b_actq);
    120 		return;
    121 	}
    122 
    123 	bq = TAILQ_FIRST(&prio->bq_write);
    124 
    125 	/*
    126 	 * If the write list is empty, simply append it to the list.
    127 	 */
    128 	if (bq == NULL) {
    129 		TAILQ_INSERT_TAIL(&prio->bq_write, bp, b_actq);
    130 		prio->bq_write_next = bp;
    131 		return;
    132 	}
    133 
    134 	/*
    135 	 * If we lie after the next request, insert after this request.
    136 	 */
    137 	if (buf_inorder(prio->bq_write_next, bp, sortby))
    138 		bq = prio->bq_write_next;
    139 
    140 	/*
    141 	 * Search for the first request at a larger block number.
    142 	 * We go before this request if it exists.
    143 	 */
    144 	while (bq != NULL && buf_inorder(bq, bp, sortby))
    145 		bq = TAILQ_NEXT(bq, b_actq);
    146 
    147 	if (bq != NULL)
    148 		TAILQ_INSERT_BEFORE(bq, bp, b_actq);
    149 	else
    150 		TAILQ_INSERT_TAIL(&prio->bq_write, bp, b_actq);
    151 }
    152 
    153 static struct buf *
    154 bufq_prio_get(struct bufq_state *bufq, int remove)
    155 {
    156 	struct bufq_prio *prio = bufq->bq_private;
    157 	struct buf *bp;
    158 
    159 	/*
    160 	 * If no current request, get next from the lists.
    161 	 */
    162 	if (prio->bq_next == NULL) {
    163 		/*
    164 		 * If at least one list is empty, select the other.
    165 		 */
    166 		if (TAILQ_FIRST(&prio->bq_read) == NULL) {
    167 			prio->bq_next = prio->bq_write_next;
    168 			prio->bq_read_burst = 0;
    169 		} else if (prio->bq_write_next == NULL) {
    170 			prio->bq_next = TAILQ_FIRST(&prio->bq_read);
    171 			prio->bq_read_burst = 0;
    172 		} else {
    173 			/*
    174 			 * Both list have requests.  Select the read list up
    175 			 * to PRIO_READ_BURST times, then select the write
    176 			 * list PRIO_WRITE_REQ times.
    177 			 */
    178 			if (prio->bq_read_burst++ < PRIO_READ_BURST)
    179 				prio->bq_next = TAILQ_FIRST(&prio->bq_read);
    180 			else if (prio->bq_read_burst <
    181 			    PRIO_READ_BURST + PRIO_WRITE_REQ)
    182 				prio->bq_next = prio->bq_write_next;
    183 			else {
    184 				prio->bq_next = TAILQ_FIRST(&prio->bq_read);
    185 				prio->bq_read_burst = 0;
    186 			}
    187 		}
    188 	}
    189 
    190 	bp = prio->bq_next;
    191 
    192 	if (bp != NULL && remove) {
    193 		if ((bp->b_flags & B_READ) == B_READ)
    194 			TAILQ_REMOVE(&prio->bq_read, bp, b_actq);
    195 		else {
    196 			/*
    197 			 * Advance the write pointer before removing
    198 			 * bp since it is actually prio->bq_write_next.
    199 			 */
    200 			prio->bq_write_next =
    201 			    TAILQ_NEXT(prio->bq_write_next, b_actq);
    202 			TAILQ_REMOVE(&prio->bq_write, bp, b_actq);
    203 			if (prio->bq_write_next == NULL)
    204 				prio->bq_write_next =
    205 				    TAILQ_FIRST(&prio->bq_write);
    206 		}
    207 
    208 		prio->bq_next = NULL;
    209 	}
    210 
    211 	return (bp);
    212 }
    213 
    214 void
    215 bufq_readprio_init(struct bufq_state *bufq)
    216 {
    217 	struct bufq_prio *prio;
    218 
    219 	bufq->bq_get = bufq_prio_get;
    220 	bufq->bq_put = bufq_prio_put;
    221 	MALLOC(bufq->bq_private, struct bufq_prio *,
    222 	    sizeof(struct bufq_prio), M_DEVBUF, M_ZERO);
    223 	prio = (struct bufq_prio *)bufq->bq_private;
    224 	TAILQ_INIT(&prio->bq_read);
    225 	TAILQ_INIT(&prio->bq_write);
    226 }
    227 
    228