123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- /*
- * Copyright (c) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009
- * The President and Fellows of Harvard College.
- *
- * 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 University 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 UNIVERSITY 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 UNIVERSITY 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 <types.h>
- #include <kern/errno.h>
- #include <lib.h>
- #include <uio.h>
- #include <vfs.h>
- #include <device.h>
- #include <sfs.h>
- ////////////////////////////////////////////////////////////
- //
- // Basic block-level I/O routines
- //
- // Note: sfs_rblock is used to read the superblock
- // early in mount, before sfs is fully (or even mostly)
- // initialized, and so may not use anything from sfs
- // except sfs_device.
- int
- sfs_rwblock(struct sfs_fs *sfs, struct uio *uio)
- {
- int result;
- int tries=0;
- KASSERT(vfs_biglock_do_i_hold());
- DEBUG(DB_SFS, "sfs: %s %llu\n",
- uio->uio_rw == UIO_READ ? "read" : "write",
- uio->uio_offset / SFS_BLOCKSIZE);
- retry:
- result = sfs->sfs_device->d_io(sfs->sfs_device, uio);
- if (result == EINVAL) {
- /*
- * This means the sector we requested was out of range,
- * or the seek address we gave wasn't sector-aligned,
- * or a couple of other things that are our fault.
- */
- panic("sfs: d_io returned EINVAL\n");
- }
- if (result == EIO) {
- if (tries == 0) {
- tries++;
- kprintf("sfs: block %llu I/O error, retrying\n",
- uio->uio_offset / SFS_BLOCKSIZE);
- goto retry;
- }
- else if (tries < 10) {
- tries++;
- goto retry;
- }
- else {
- kprintf("sfs: block %llu I/O error, giving up after "
- "%d retries\n",
- uio->uio_offset / SFS_BLOCKSIZE, tries);
- }
- }
- return result;
- }
- int
- sfs_rblock(struct sfs_fs *sfs, void *data, uint32_t block)
- {
- struct iovec iov;
- struct uio ku;
- SFSUIO(&iov, &ku, data, block, UIO_READ);
- return sfs_rwblock(sfs, &ku);
- }
- int
- sfs_wblock(struct sfs_fs *sfs, void *data, uint32_t block)
- {
- struct iovec iov;
- struct uio ku;
- SFSUIO(&iov, &ku, data, block, UIO_WRITE);
- return sfs_rwblock(sfs, &ku);
- }
|