Home | History | Annotate | Line # | Download | only in kern
kern_physio.c revision 1.61.2.3
      1  1.61.2.3      yamt /*	$NetBSD: kern_physio.c,v 1.61.2.3 2007/02/26 09:11:08 yamt Exp $	*/
      2      1.20       cgd 
      3      1.20       cgd /*-
      4      1.20       cgd  * Copyright (c) 1982, 1986, 1990, 1993
      5      1.20       cgd  *	The Regents of the University of California.  All rights reserved.
      6      1.20       cgd  * (c) UNIX System Laboratories, Inc.
      7      1.20       cgd  * All or some portions of this file are derived from material licensed
      8      1.20       cgd  * to the University of California by American Telephone and Telegraph
      9      1.20       cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10      1.20       cgd  * the permission of UNIX System Laboratories, Inc.
     11      1.20       cgd  *
     12      1.20       cgd  * Redistribution and use in source and binary forms, with or without
     13      1.20       cgd  * modification, are permitted provided that the following conditions
     14      1.20       cgd  * are met:
     15      1.20       cgd  * 1. Redistributions of source code must retain the above copyright
     16      1.20       cgd  *    notice, this list of conditions and the following disclaimer.
     17      1.20       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18      1.20       cgd  *    notice, this list of conditions and the following disclaimer in the
     19      1.20       cgd  *    documentation and/or other materials provided with the distribution.
     20      1.57       agc  * 3. Neither the name of the University nor the names of its contributors
     21      1.57       agc  *    may be used to endorse or promote products derived from this software
     22      1.57       agc  *    without specific prior written permission.
     23      1.57       agc  *
     24      1.57       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     25      1.57       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     26      1.57       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27      1.57       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28      1.57       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29      1.57       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30      1.57       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31      1.57       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32      1.57       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33      1.57       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34      1.57       agc  * SUCH DAMAGE.
     35      1.57       agc  *
     36      1.57       agc  *	@(#)kern_physio.c	8.1 (Berkeley) 6/10/93
     37      1.57       agc  */
     38      1.57       agc 
     39      1.57       agc /*-
     40      1.57       agc  * Copyright (c) 1994 Christopher G. Demetriou
     41      1.57       agc  *
     42      1.57       agc  * Redistribution and use in source and binary forms, with or without
     43      1.57       agc  * modification, are permitted provided that the following conditions
     44      1.57       agc  * are met:
     45      1.57       agc  * 1. Redistributions of source code must retain the above copyright
     46      1.57       agc  *    notice, this list of conditions and the following disclaimer.
     47      1.57       agc  * 2. Redistributions in binary form must reproduce the above copyright
     48      1.57       agc  *    notice, this list of conditions and the following disclaimer in the
     49      1.57       agc  *    documentation and/or other materials provided with the distribution.
     50      1.20       cgd  * 3. All advertising materials mentioning features or use of this software
     51      1.20       cgd  *    must display the following acknowledgement:
     52      1.20       cgd  *	This product includes software developed by the University of
     53      1.20       cgd  *	California, Berkeley and its contributors.
     54      1.20       cgd  * 4. Neither the name of the University nor the names of its contributors
     55      1.20       cgd  *    may be used to endorse or promote products derived from this software
     56      1.20       cgd  *    without specific prior written permission.
     57      1.20       cgd  *
     58      1.20       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59      1.20       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60      1.20       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61      1.20       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62      1.20       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63      1.20       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64      1.20       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65      1.20       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66      1.20       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67      1.20       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68      1.20       cgd  * SUCH DAMAGE.
     69      1.20       cgd  *
     70      1.20       cgd  *	@(#)kern_physio.c	8.1 (Berkeley) 6/10/93
     71      1.20       cgd  */
     72      1.51     lukem 
     73      1.51     lukem #include <sys/cdefs.h>
     74  1.61.2.3      yamt __KERNEL_RCSID(0, "$NetBSD: kern_physio.c,v 1.61.2.3 2007/02/26 09:11:08 yamt Exp $");
     75      1.30       mrg 
     76      1.20       cgd #include <sys/param.h>
     77      1.20       cgd #include <sys/systm.h>
     78      1.20       cgd #include <sys/buf.h>
     79      1.20       cgd #include <sys/proc.h>
     80  1.61.2.1      yamt #include <sys/once.h>
     81  1.61.2.1      yamt #include <sys/workqueue.h>
     82      1.26  christos 
     83      1.29       mrg #include <uvm/uvm_extern.h>
     84      1.29       mrg 
     85  1.61.2.1      yamt ONCE_DECL(physio_initialized);
     86  1.61.2.1      yamt struct workqueue *physio_workqueue;
     87  1.61.2.1      yamt 
     88      1.20       cgd /*
     89      1.20       cgd  * The routines implemented in this file are described in:
     90      1.20       cgd  *	Leffler, et al.: The Design and Implementation of the 4.3BSD
     91      1.20       cgd  *	    UNIX Operating System (Addison Welley, 1989)
     92      1.20       cgd  * on pages 231-233.
     93      1.20       cgd  *
     94      1.20       cgd  * The routines "getphysbuf" and "putphysbuf" steal and return a swap
     95      1.20       cgd  * buffer.  Leffler, et al., says that swap buffers are used to do the
     96      1.61   thorpej  * I/O, so raw I/O requests don't have to be single-threaded.  Of course,
     97      1.61   thorpej  * NetBSD doesn't use "swap buffers" -- we have our own memory pool for
     98      1.61   thorpej  * buffer descriptors.
     99      1.20       cgd  */
    100      1.20       cgd 
    101  1.61.2.1      yamt /* #define	PHYSIO_DEBUG */
    102  1.61.2.1      yamt #if defined(PHYSIO_DEBUG)
    103  1.61.2.1      yamt #define	DPRINTF(a)	printf a
    104  1.61.2.1      yamt #else /* defined(PHYSIO_DEBUG) */
    105  1.61.2.1      yamt #define	DPRINTF(a)	/* nothing */
    106  1.61.2.1      yamt #endif /* defined(PHYSIO_DEBUG) */
    107  1.61.2.1      yamt 
    108  1.61.2.1      yamt /* abuse these members/flags of struct buf */
    109  1.61.2.1      yamt #define	b_running	b_freelistindex
    110  1.61.2.1      yamt #define	b_endoffset	b_lblkno
    111  1.61.2.1      yamt #define	B_DONTFREE	B_AGE
    112  1.61.2.1      yamt 
    113      1.61   thorpej /*
    114      1.61   thorpej  * allocate a buffer structure for use in physical I/O.
    115      1.61   thorpej  */
    116      1.61   thorpej static struct buf *
    117      1.61   thorpej getphysbuf(void)
    118      1.61   thorpej {
    119      1.61   thorpej 	struct buf *bp;
    120      1.61   thorpej 
    121  1.61.2.1      yamt 	bp = getiobuf();
    122  1.61.2.1      yamt 	bp->b_error = 0;
    123  1.61.2.1      yamt 	bp->b_flags = B_BUSY;
    124      1.61   thorpej 	return(bp);
    125      1.61   thorpej }
    126      1.61   thorpej 
    127      1.61   thorpej /*
    128      1.61   thorpej  * get rid of a swap buffer structure which has been used in physical I/O.
    129      1.61   thorpej  */
    130      1.61   thorpej static void
    131      1.61   thorpej putphysbuf(struct buf *bp)
    132      1.61   thorpej {
    133  1.61.2.1      yamt 
    134  1.61.2.1      yamt 	if ((bp->b_flags & B_DONTFREE) != 0) {
    135  1.61.2.1      yamt 		return;
    136  1.61.2.1      yamt 	}
    137      1.61   thorpej 
    138      1.61   thorpej 	if (__predict_false(bp->b_flags & B_WANTED))
    139      1.61   thorpej 		panic("putphysbuf: private buf B_WANTED");
    140  1.61.2.1      yamt 	putiobuf(bp);
    141  1.61.2.1      yamt }
    142  1.61.2.1      yamt 
    143  1.61.2.1      yamt static void
    144  1.61.2.1      yamt physio_done(struct work *wk, void *dummy)
    145  1.61.2.1      yamt {
    146  1.61.2.1      yamt 	struct buf *bp = (void *)wk;
    147  1.61.2.1      yamt 	size_t todo = bp->b_bufsize;
    148  1.61.2.1      yamt 	size_t done = bp->b_bcount - bp->b_resid;
    149  1.61.2.1      yamt 	struct buf *mbp = bp->b_private;
    150  1.61.2.1      yamt 
    151  1.61.2.1      yamt 	KASSERT(&bp->b_work == wk);
    152  1.61.2.1      yamt 	KASSERT(bp->b_bcount <= todo);
    153  1.61.2.1      yamt 	KASSERT(bp->b_resid <= bp->b_bcount);
    154  1.61.2.1      yamt 	KASSERT((bp->b_flags & B_PHYS) != 0);
    155  1.61.2.1      yamt 	KASSERT(dummy == NULL);
    156  1.61.2.1      yamt 
    157  1.61.2.1      yamt 	vunmapbuf(bp, todo);
    158  1.61.2.2      yamt 	uvm_vsunlock(bp->b_proc->p_vmspace, bp->b_data, todo);
    159  1.61.2.1      yamt 
    160  1.61.2.1      yamt 	simple_lock(&mbp->b_interlock);
    161  1.61.2.1      yamt 	if (__predict_false(done != todo)) {
    162  1.61.2.1      yamt 		off_t endoffset = dbtob(bp->b_blkno) + done;
    163  1.61.2.1      yamt 
    164  1.61.2.1      yamt 		/*
    165  1.61.2.1      yamt 		 * we got an error or hit EOM.
    166  1.61.2.1      yamt 		 *
    167  1.61.2.1      yamt 		 * we only care about the first one.
    168  1.61.2.1      yamt 		 * ie. the one at the lowest offset.
    169  1.61.2.1      yamt 		 */
    170  1.61.2.1      yamt 
    171  1.61.2.1      yamt 		KASSERT(mbp->b_endoffset != endoffset);
    172  1.61.2.1      yamt 		DPRINTF(("%s: error=%d at %" PRIu64 " - %" PRIu64
    173  1.61.2.1      yamt 		    ", blkno=%" PRIu64 ", bcount=%d, flags=0x%x\n",
    174  1.61.2.1      yamt 		    __func__, bp->b_error, dbtob(bp->b_blkno), endoffset,
    175  1.61.2.1      yamt 		    bp->b_blkno, bp->b_bcount, bp->b_flags));
    176  1.61.2.1      yamt 
    177  1.61.2.1      yamt 		if (mbp->b_endoffset == -1 || endoffset < mbp->b_endoffset) {
    178  1.61.2.1      yamt 			int error;
    179  1.61.2.1      yamt 
    180  1.61.2.1      yamt 			if ((bp->b_flags & B_ERROR) != 0) {
    181  1.61.2.1      yamt 				if (bp->b_error == 0) {
    182  1.61.2.1      yamt 					error = EIO; /* XXX */
    183  1.61.2.1      yamt 				} else {
    184  1.61.2.1      yamt 					error = bp->b_error;
    185  1.61.2.1      yamt 				}
    186  1.61.2.1      yamt 			} else {
    187  1.61.2.1      yamt 				error = 0; /* EOM */
    188  1.61.2.1      yamt 			}
    189  1.61.2.1      yamt 
    190  1.61.2.1      yamt 			DPRINTF(("%s: mbp=%p, error %d -> %d, endoff %" PRIu64
    191  1.61.2.1      yamt 			    " -> %" PRIu64 "\n",
    192  1.61.2.1      yamt 			    __func__, mbp,
    193  1.61.2.1      yamt 			    mbp->b_error, error,
    194  1.61.2.1      yamt 			    mbp->b_endoffset, endoffset));
    195  1.61.2.1      yamt 
    196  1.61.2.1      yamt 			mbp->b_endoffset = endoffset;
    197  1.61.2.1      yamt 			mbp->b_error = error;
    198  1.61.2.1      yamt 		}
    199  1.61.2.1      yamt 		mbp->b_flags |= B_ERROR;
    200  1.61.2.1      yamt 	} else {
    201  1.61.2.1      yamt 		KASSERT((bp->b_flags & B_ERROR) == 0);
    202  1.61.2.1      yamt 	}
    203  1.61.2.1      yamt 
    204  1.61.2.1      yamt 	mbp->b_running--;
    205  1.61.2.1      yamt 	if ((mbp->b_flags & B_WANTED) != 0) {
    206  1.61.2.1      yamt 		mbp->b_flags &= ~B_WANTED;
    207  1.61.2.1      yamt 		wakeup(mbp);
    208  1.61.2.1      yamt 	}
    209  1.61.2.1      yamt 	simple_unlock(&mbp->b_interlock);
    210  1.61.2.1      yamt 
    211  1.61.2.1      yamt 	putphysbuf(bp);
    212  1.61.2.1      yamt }
    213  1.61.2.1      yamt 
    214  1.61.2.1      yamt static void
    215  1.61.2.1      yamt physio_biodone(struct buf *bp)
    216  1.61.2.1      yamt {
    217  1.61.2.1      yamt #if defined(DIAGNOSTIC)
    218  1.61.2.1      yamt 	struct buf *mbp = bp->b_private;
    219  1.61.2.1      yamt 	size_t todo = bp->b_bufsize;
    220  1.61.2.1      yamt 
    221  1.61.2.1      yamt 	KASSERT(mbp->b_running > 0);
    222  1.61.2.1      yamt 	KASSERT(bp->b_bcount <= todo);
    223  1.61.2.1      yamt 	KASSERT(bp->b_resid <= bp->b_bcount);
    224  1.61.2.1      yamt #endif /* defined(DIAGNOSTIC) */
    225  1.61.2.1      yamt 
    226  1.61.2.1      yamt 	workqueue_enqueue(physio_workqueue, &bp->b_work);
    227  1.61.2.1      yamt }
    228  1.61.2.1      yamt 
    229  1.61.2.1      yamt static int
    230  1.61.2.1      yamt physio_wait(struct buf *bp, int n, const char *wchan)
    231  1.61.2.1      yamt {
    232  1.61.2.1      yamt 	int error = 0;
    233  1.61.2.1      yamt 
    234  1.61.2.1      yamt 	LOCK_ASSERT(simple_lock_held(&bp->b_interlock));
    235  1.61.2.1      yamt 
    236  1.61.2.1      yamt 	while (bp->b_running > n) {
    237  1.61.2.1      yamt 		bp->b_flags |= B_WANTED;
    238  1.61.2.1      yamt 		error = ltsleep(bp, PRIBIO + 1, wchan, 0, &bp->b_interlock);
    239  1.61.2.1      yamt 		if (error) {
    240  1.61.2.1      yamt 			break;
    241  1.61.2.1      yamt 		}
    242  1.61.2.1      yamt 	}
    243  1.61.2.1      yamt 
    244  1.61.2.1      yamt 	return error;
    245      1.61   thorpej }
    246      1.20       cgd 
    247  1.61.2.1      yamt static int
    248  1.61.2.1      yamt physio_init(void)
    249  1.61.2.1      yamt {
    250  1.61.2.1      yamt 	int error;
    251  1.61.2.1      yamt 
    252  1.61.2.1      yamt 	KASSERT(physio_workqueue == NULL);
    253  1.61.2.1      yamt 
    254  1.61.2.1      yamt 	error = workqueue_create(&physio_workqueue, "physiod",
    255  1.61.2.2      yamt 	    physio_done, NULL, PRIBIO, IPL_BIO, 0);
    256  1.61.2.1      yamt 
    257  1.61.2.1      yamt 	return error;
    258  1.61.2.1      yamt }
    259  1.61.2.1      yamt 
    260  1.61.2.1      yamt #define	PHYSIO_CONCURRENCY	16	/* XXX tune */
    261  1.61.2.1      yamt 
    262      1.20       cgd /*
    263      1.20       cgd  * Do "physical I/O" on behalf of a user.  "Physical I/O" is I/O directly
    264      1.20       cgd  * from the raw device to user buffers, and bypasses the buffer cache.
    265      1.20       cgd  *
    266      1.20       cgd  * Comments in brackets are from Leffler, et al.'s pseudo-code implementation.
    267      1.20       cgd  */
    268      1.20       cgd int
    269  1.61.2.1      yamt physio(void (*strategy)(struct buf *), struct buf *obp, dev_t dev, int flags,
    270      1.61   thorpej     void (*min_phys)(struct buf *), struct uio *uio)
    271      1.20       cgd {
    272      1.20       cgd 	struct iovec *iovp;
    273      1.54   thorpej 	struct lwp *l = curlwp;
    274      1.54   thorpej 	struct proc *p = l->l_proc;
    275  1.61.2.1      yamt 	int i, s;
    276  1.61.2.1      yamt 	int error;
    277  1.61.2.1      yamt 	int error2;
    278  1.61.2.1      yamt 	struct buf *bp = NULL;
    279  1.61.2.1      yamt 	struct buf *mbp;
    280  1.61.2.1      yamt 	int concurrency = PHYSIO_CONCURRENCY - 1;
    281  1.61.2.1      yamt 
    282  1.61.2.1      yamt 	error = RUN_ONCE(&physio_initialized, physio_init);
    283  1.61.2.1      yamt 	if (__predict_false(error != 0)) {
    284  1.61.2.1      yamt 		return error;
    285  1.61.2.1      yamt 	}
    286  1.61.2.1      yamt 
    287  1.61.2.1      yamt 	DPRINTF(("%s: called: off=%" PRIu64 ", resid=%zu\n",
    288  1.61.2.1      yamt 	    __func__, uio->uio_offset, uio->uio_resid));
    289      1.20       cgd 
    290      1.53   hannken 	flags &= B_READ | B_WRITE;
    291      1.20       cgd 
    292      1.20       cgd 	/* Make sure we have a buffer, creating one if necessary. */
    293  1.61.2.1      yamt 	if (obp != NULL) {
    294      1.29       mrg 		/* [raise the processor priority level to splbio;] */
    295      1.29       mrg 		s = splbio();
    296  1.61.2.1      yamt 		simple_lock(&obp->b_interlock);
    297      1.20       cgd 
    298      1.29       mrg 		/* [while the buffer is marked busy] */
    299  1.61.2.1      yamt 		while (obp->b_flags & B_BUSY) {
    300      1.29       mrg 			/* [mark the buffer wanted] */
    301  1.61.2.1      yamt 			obp->b_flags |= B_WANTED;
    302      1.29       mrg 			/* [wait until the buffer is available] */
    303  1.61.2.1      yamt 			ltsleep(obp, PRIBIO+1, "physbuf", 0, &obp->b_interlock);
    304      1.29       mrg 		}
    305      1.20       cgd 
    306      1.29       mrg 		/* Mark it busy, so nobody else will use it. */
    307  1.61.2.1      yamt 		obp->b_flags = B_BUSY | B_DONTFREE;
    308      1.20       cgd 
    309      1.29       mrg 		/* [lower the priority level] */
    310  1.61.2.1      yamt 		simple_unlock(&obp->b_interlock);
    311      1.29       mrg 		splx(s);
    312  1.61.2.1      yamt 
    313  1.61.2.1      yamt 		concurrency = 0; /* see "XXXkludge" comment below */
    314      1.29       mrg 	}
    315      1.20       cgd 
    316  1.61.2.1      yamt 	mbp = getphysbuf();
    317  1.61.2.1      yamt 	mbp->b_running = 0;
    318  1.61.2.1      yamt 	mbp->b_endoffset = -1;
    319  1.61.2.1      yamt 
    320  1.61.2.1      yamt 	PHOLD(l);
    321      1.20       cgd 
    322      1.20       cgd 	for (i = 0; i < uio->uio_iovcnt; i++) {
    323  1.61.2.3      yamt 		bool sync = true;
    324  1.61.2.1      yamt 
    325      1.20       cgd 		iovp = &uio->uio_iov[i];
    326      1.20       cgd 		while (iovp->iov_len > 0) {
    327  1.61.2.1      yamt 			size_t todo;
    328  1.61.2.1      yamt 			vaddr_t endp;
    329  1.61.2.1      yamt 
    330  1.61.2.1      yamt 			simple_lock(&mbp->b_interlock);
    331  1.61.2.1      yamt 			if ((mbp->b_flags & B_ERROR) != 0) {
    332  1.61.2.1      yamt 				goto done_locked;
    333  1.61.2.1      yamt 			}
    334  1.61.2.1      yamt 			error = physio_wait(mbp, sync ? 0 : concurrency,
    335  1.61.2.1      yamt 			    "physio1");
    336  1.61.2.1      yamt 			if (error) {
    337  1.61.2.1      yamt 				goto done_locked;
    338  1.61.2.1      yamt 			}
    339  1.61.2.1      yamt 			simple_unlock(&mbp->b_interlock);
    340  1.61.2.1      yamt 			if (obp != NULL) {
    341  1.61.2.1      yamt 				/*
    342  1.61.2.1      yamt 				 * XXXkludge
    343  1.61.2.1      yamt 				 * some drivers use "obp" as an identifier.
    344  1.61.2.1      yamt 				 */
    345  1.61.2.1      yamt 				bp = obp;
    346  1.61.2.1      yamt 			} else {
    347  1.61.2.1      yamt 				bp = getphysbuf();
    348  1.61.2.1      yamt 			}
    349  1.61.2.1      yamt 			bp->b_dev = dev;
    350  1.61.2.1      yamt 			bp->b_proc = p;
    351  1.61.2.1      yamt 			bp->b_private = mbp;
    352  1.61.2.1      yamt 			bp->b_vp = NULL;
    353      1.47       chs 
    354      1.20       cgd 			/*
    355      1.20       cgd 			 * [mark the buffer busy for physical I/O]
    356      1.20       cgd 			 * (i.e. set B_PHYS (because it's an I/O to user
    357      1.20       cgd 			 * memory, and B_RAW, because B_RAW is to be
    358      1.20       cgd 			 * "Set by physio for raw transfers.", in addition
    359      1.20       cgd 			 * to the "busy" and read/write flag.)
    360      1.20       cgd 			 */
    361  1.61.2.1      yamt 			bp->b_flags = (bp->b_flags & B_DONTFREE) |
    362  1.61.2.1      yamt 			    B_BUSY | B_PHYS | B_RAW | B_CALL | flags;
    363  1.61.2.1      yamt 			bp->b_iodone = physio_biodone;
    364      1.20       cgd 
    365      1.20       cgd 			/* [set up the buffer for a maximum-sized transfer] */
    366      1.20       cgd 			bp->b_blkno = btodb(uio->uio_offset);
    367  1.61.2.1      yamt 			if (dbtob(bp->b_blkno) != uio->uio_offset) {
    368  1.61.2.1      yamt 				error = EINVAL;
    369  1.61.2.1      yamt 				goto done;
    370  1.61.2.1      yamt 			}
    371  1.61.2.1      yamt 			bp->b_bcount = MIN(MAXPHYS, iovp->iov_len);
    372      1.20       cgd 			bp->b_data = iovp->iov_base;
    373      1.24   mycroft 
    374      1.20       cgd 			/*
    375      1.48       wiz 			 * [call minphys to bound the transfer size]
    376      1.20       cgd 			 * and remember the amount of data to transfer,
    377      1.20       cgd 			 * for later comparison.
    378      1.20       cgd 			 */
    379      1.59    simonb 			(*min_phys)(bp);
    380  1.61.2.1      yamt 			todo = bp->b_bufsize = bp->b_bcount;
    381  1.61.2.1      yamt #if defined(DIAGNOSTIC)
    382      1.22       cgd 			if (todo > MAXPHYS)
    383  1.61.2.1      yamt 				panic("todo(%zu) > MAXPHYS; minphys broken",
    384  1.61.2.1      yamt 				    todo);
    385  1.61.2.1      yamt #endif /* defined(DIAGNOSTIC) */
    386  1.61.2.1      yamt 
    387  1.61.2.3      yamt 			sync = false;
    388  1.61.2.1      yamt 			endp = (vaddr_t)bp->b_data + todo;
    389  1.61.2.1      yamt 			if (trunc_page(endp) != endp) {
    390  1.61.2.1      yamt 				/*
    391  1.61.2.1      yamt 				 * following requests can overlap.
    392  1.61.2.1      yamt 				 * note that uvm_vslock does round_page.
    393  1.61.2.1      yamt 				 */
    394  1.61.2.3      yamt 				sync = true;
    395  1.61.2.1      yamt 			}
    396      1.20       cgd 
    397      1.20       cgd 			/*
    398      1.20       cgd 			 * [lock the part of the user address space involved
    399      1.20       cgd 			 *    in the transfer]
    400      1.20       cgd 			 * Beware vmapbuf(); it clobbers b_data and
    401      1.20       cgd 			 * saves it in b_saveaddr.  However, vunmapbuf()
    402      1.20       cgd 			 * restores it.
    403      1.20       cgd 			 */
    404  1.61.2.2      yamt 			error = uvm_vslock(p->p_vmspace, bp->b_data, todo,
    405  1.61.2.1      yamt 			    (flags & B_READ) ?  VM_PROT_WRITE : VM_PROT_READ);
    406      1.47       chs 			if (error) {
    407  1.61.2.1      yamt 				goto done;
    408      1.37   thorpej 			}
    409      1.20       cgd 			vmapbuf(bp, todo);
    410      1.20       cgd 
    411      1.58      yamt 			BIO_SETPRIO(bp, BPRIO_TIMECRITICAL);
    412      1.58      yamt 
    413  1.61.2.1      yamt 			simple_lock(&mbp->b_interlock);
    414  1.61.2.1      yamt 			mbp->b_running++;
    415  1.61.2.1      yamt 			simple_unlock(&mbp->b_interlock);
    416  1.61.2.1      yamt 
    417      1.20       cgd 			/* [call strategy to start the transfer] */
    418      1.20       cgd 			(*strategy)(bp);
    419  1.61.2.1      yamt 			bp = NULL;
    420      1.20       cgd 
    421  1.61.2.1      yamt 			iovp->iov_len -= todo;
    422  1.61.2.1      yamt 			iovp->iov_base = (caddr_t)iovp->iov_base + todo;
    423  1.61.2.1      yamt 			uio->uio_offset += todo;
    424  1.61.2.1      yamt 			uio->uio_resid -= todo;
    425  1.61.2.1      yamt 		}
    426  1.61.2.1      yamt 	}
    427      1.23   mycroft 
    428  1.61.2.1      yamt done:
    429  1.61.2.1      yamt 	simple_lock(&mbp->b_interlock);
    430  1.61.2.1      yamt done_locked:
    431  1.61.2.1      yamt 	error2 = physio_wait(mbp, 0, "physio2");
    432  1.61.2.1      yamt 	if (error == 0) {
    433  1.61.2.1      yamt 		error = error2;
    434  1.61.2.1      yamt 	}
    435  1.61.2.1      yamt 	simple_unlock(&mbp->b_interlock);
    436      1.20       cgd 
    437  1.61.2.1      yamt 	if ((mbp->b_flags & B_ERROR) != 0) {
    438  1.61.2.1      yamt 		off_t delta;
    439      1.20       cgd 
    440  1.61.2.1      yamt 		delta = uio->uio_offset - mbp->b_endoffset;
    441  1.61.2.1      yamt 		KASSERT(delta > 0);
    442  1.61.2.1      yamt 		uio->uio_resid += delta;
    443  1.61.2.1      yamt 		/* uio->uio_offset = mbp->b_endoffset; */
    444  1.61.2.1      yamt 	} else {
    445  1.61.2.1      yamt 		KASSERT(mbp->b_endoffset == -1);
    446  1.61.2.1      yamt 	}
    447  1.61.2.1      yamt 	if (bp != NULL) {
    448  1.61.2.1      yamt 		putphysbuf(bp);
    449  1.61.2.1      yamt 	}
    450  1.61.2.1      yamt 	if (error == 0) {
    451  1.61.2.1      yamt 		error = mbp->b_error;
    452      1.20       cgd 	}
    453  1.61.2.1      yamt 	putphysbuf(mbp);
    454      1.20       cgd 
    455      1.20       cgd 	/*
    456      1.20       cgd 	 * [clean up the state of the buffer]
    457      1.20       cgd 	 * Remember if somebody wants it, so we can wake them up below.
    458      1.20       cgd 	 * Also, if we had to steal it, give it back.
    459      1.20       cgd 	 */
    460  1.61.2.1      yamt 	if (obp != NULL) {
    461  1.61.2.1      yamt 		KASSERT((obp->b_flags & B_BUSY) != 0);
    462  1.61.2.1      yamt 		KASSERT((obp->b_flags & B_DONTFREE) != 0);
    463  1.61.2.1      yamt 
    464      1.20       cgd 		/*
    465      1.20       cgd 		 * [if another process is waiting for the raw I/O buffer,
    466      1.20       cgd 		 *    wake up processes waiting to do physical I/O;
    467      1.20       cgd 		 */
    468  1.61.2.1      yamt 		s = splbio();
    469  1.61.2.1      yamt 		simple_lock(&obp->b_interlock);
    470  1.61.2.1      yamt 		obp->b_flags &=
    471  1.61.2.1      yamt 		    ~(B_BUSY | B_PHYS | B_RAW | B_CALL | B_DONTFREE);
    472  1.61.2.1      yamt 		if ((obp->b_flags & B_WANTED) != 0) {
    473  1.61.2.1      yamt 			obp->b_flags &= ~B_WANTED;
    474  1.61.2.1      yamt 			wakeup(obp);
    475      1.20       cgd 		}
    476  1.61.2.1      yamt 		simple_unlock(&obp->b_interlock);
    477  1.61.2.1      yamt 		splx(s);
    478      1.20       cgd 	}
    479  1.61.2.1      yamt 	PRELE(l);
    480  1.61.2.1      yamt 
    481  1.61.2.1      yamt 	DPRINTF(("%s: done: off=%" PRIu64 ", resid=%zu\n",
    482  1.61.2.1      yamt 	    __func__, uio->uio_offset, uio->uio_resid));
    483      1.20       cgd 
    484  1.61.2.1      yamt 	return error;
    485      1.20       cgd }
    486      1.20       cgd 
    487      1.20       cgd /*
    488      1.20       cgd  * Leffler, et al., says on p. 231:
    489      1.20       cgd  * "The minphys() routine is called by physio() to adjust the
    490      1.20       cgd  * size of each I/O transfer before the latter is passed to
    491      1.24   mycroft  * the strategy routine..."
    492      1.20       cgd  *
    493      1.20       cgd  * so, just adjust the buffer's count accounting to MAXPHYS here,
    494      1.20       cgd  * and return the new count;
    495      1.20       cgd  */
    496      1.24   mycroft void
    497      1.61   thorpej minphys(struct buf *bp)
    498      1.20       cgd {
    499      1.20       cgd 
    500      1.24   mycroft 	if (bp->b_bcount > MAXPHYS)
    501      1.24   mycroft 		bp->b_bcount = MAXPHYS;
    502      1.20       cgd }
    503