]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/vdev_disk.c
OpenZFS 6531 - Provide mechanism to artificially limit disk performance
[mirror_zfs.git] / module / zfs / vdev_disk.c
index c56225693fe7f31e0a509d733eb99f2f3a6f80da..1ef54d3899f9c2dadd6de5aa093cc44c0d0b9f3a 100644 (file)
@@ -23,6 +23,7 @@
  * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
  * Rewritten for Linux by Brian Behlendorf <behlendorf1@llnl.gov>.
  * LLNL-CODE-403049.
+ * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
  */
 
 #include <sys/zfs_context.h>
 #include <sys/sunldi.h>
 
 char *zfs_vdev_scheduler = VDEV_SCHEDULER;
+static void *zfs_vdev_holder = VDEV_HOLDER;
 
 /*
  * Virtual device vector for disks.
  */
 typedef struct dio_request {
        struct completion       dr_comp;        /* Completion for sync IO */
-       atomic_t                dr_ref;         /* References */
        zio_t                   *dr_zio;        /* Parent ZIO */
-       int                     dr_rw;          /* Read/Write */
+       atomic_t                dr_ref;         /* References */
+       int                     dr_wait;        /* Wait for IO */
        int                     dr_error;       /* Bio error */
        int                     dr_bio_count;   /* Count of bio's */
-        struct bio             *dr_bio[0];     /* Attached bio's */
+       struct bio              *dr_bio[0];     /* Attached bio's */
 } dio_request_t;
 
 
@@ -63,7 +65,7 @@ vdev_bdev_mode(int smode)
        if (smode & FWRITE)
                mode |= FMODE_WRITE;
 
-       return mode;
+       return (mode);
 }
 #else
 static int
@@ -76,7 +78,7 @@ vdev_bdev_mode(int smode)
        if ((smode & FREAD) && !(smode & FWRITE))
                mode = MS_RDONLY;
 
-       return mode;
+       return (mode);
 }
 #endif /* HAVE_OPEN_BDEV_EXCLUSIVE */
 
@@ -98,9 +100,9 @@ vdev_disk_error(zio_t *zio)
 {
 #ifdef ZFS_DEBUG
        printk("ZFS: zio error=%d type=%d offset=%llu size=%llu "
-           "flags=%x delay=%llu\n", zio->io_error, zio->io_type,
+           "flags=%x\n", zio->io_error, zio->io_type,
            (u_longlong_t)zio->io_offset, (u_longlong_t)zio->io_size,
-           zio->io_flags, (u_longlong_t)zio->io_delay);
+           zio->io_flags);
 #endif
 }
 
@@ -121,8 +123,15 @@ vdev_elevator_switch(vdev_t *v, char *elevator)
        char *device = bdev->bd_disk->disk_name;
        int error;
 
-       /* Skip devices which are not whole disks (partitions) */
-       if (!v->vdev_wholedisk)
+       /*
+        * Skip devices which are not whole disks (partitions).
+        * Device-mapper devices are excepted since they may be whole
+        * disks despite the vdev_wholedisk flag, in which case we can
+        * and should switch the elevator. If the device-mapper device
+        * does not have an elevator (i.e. dm-raid, dm-crypt, etc.) the
+        * "Skip devices without schedulers" check below will fail.
+        */
+       if (!v->vdev_wholedisk && strncmp(device, "dm-", 3) != 0)
                return (0);
 
        /* Skip devices without schedulers (loop, ram, dm, etc) */
@@ -130,18 +139,19 @@ vdev_elevator_switch(vdev_t *v, char *elevator)
                return (0);
 
        /* Leave existing scheduler when set to "none" */
-       if (!strncmp(elevator, "none", 4) && (strlen(elevator) == 4))
+       if ((strncmp(elevator, "none", 4) == 0) && (strlen(elevator) == 4))
                return (0);
 
 #ifdef HAVE_ELEVATOR_CHANGE
        error = elevator_change(q, elevator);
 #else
-       /* For pre-2.6.36 kernels elevator_change() is not available.
+       /*
+        * For pre-2.6.36 kernels elevator_change() is not available.
         * Therefore we fall back to using a usermodehelper to echo the
         * elevator into sysfs;  This requires /bin/echo and sysfs to be
         * mounted which may not be true early in the boot process.
         */
-# define SET_SCHEDULER_CMD \
+#define        SET_SCHEDULER_CMD \
        "exec 0</dev/null " \
        "     1>/sys/block/%s/queue/scheduler " \
        "     2>/dev/null; " \
@@ -152,13 +162,13 @@ vdev_elevator_switch(vdev_t *v, char *elevator)
                char *envp[] = { NULL };
 
                argv[2] = kmem_asprintf(SET_SCHEDULER_CMD, device, elevator);
-               error = call_usermodehelper(argv[0], argv, envp, 1);
+               error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
                strfree(argv[2]);
        }
 #endif /* HAVE_ELEVATOR_CHANGE */
        if (error)
                printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
-                      elevator, v->vdev_path, device, error);
+                   elevator, v->vdev_path, device, error);
 
        return (error);
 }
@@ -196,9 +206,9 @@ vdev_disk_rrpart(const char *path, int mode, vdev_disk_t *vd)
        struct gendisk *disk;
        int error, partno;
 
-       bdev = vdev_bdev_open(path, vdev_bdev_mode(mode), vd);
+       bdev = vdev_bdev_open(path, vdev_bdev_mode(mode), zfs_vdev_holder);
        if (IS_ERR(bdev))
-               return bdev;
+               return (bdev);
 
        disk = get_gendisk(bdev->bd_dev, &partno);
        vdev_bdev_close(bdev, vdev_bdev_mode(mode));
@@ -222,9 +232,9 @@ vdev_disk_rrpart(const char *path, int mode, vdev_disk_t *vd)
                put_disk(disk);
        }
 
-       return result;
+       return (result);
 #else
-       return ERR_PTR(-EOPNOTSUPP);
+       return (ERR_PTR(-EOPNOTSUPP));
 #endif /* defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK) */
 }
 
@@ -234,76 +244,98 @@ vdev_disk_open(vdev_t *v, uint64_t *psize, uint64_t *max_psize,
 {
        struct block_device *bdev = ERR_PTR(-ENXIO);
        vdev_disk_t *vd;
-       int mode, block_size;
+       int count = 0, mode, block_size;
 
        /* Must have a pathname and it must be absolute. */
        if (v->vdev_path == NULL || v->vdev_path[0] != '/') {
                v->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
-               return EINVAL;
+               return (SET_ERROR(EINVAL));
        }
 
-       vd = kmem_zalloc(sizeof(vdev_disk_t), KM_PUSHPAGE);
+       /*
+        * Reopen the device if it's not currently open. Otherwise,
+        * just update the physical size of the device.
+        */
+       if (v->vdev_tsd != NULL) {
+               ASSERT(v->vdev_reopening);
+               vd = v->vdev_tsd;
+               goto skip_open;
+       }
+
+       vd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
        if (vd == NULL)
-               return ENOMEM;
+               return (SET_ERROR(ENOMEM));
 
        /*
         * Devices are always opened by the path provided at configuration
         * time.  This means that if the provided path is a udev by-id path
         * then drives may be recabled without an issue.  If the provided
-        * path is a udev by-path path then the physical location information
+        * path is a udev by-path path, then the physical location information
         * will be preserved.  This can be critical for more complicated
         * configurations where drives are located in specific physical
         * locations to maximize the systems tolerence to component failure.
-        * Alternately you can provide your own udev rule to flexibly map
+        * Alternatively, you can provide your own udev rule to flexibly map
         * the drives as you see fit.  It is not advised that you use the
-        * /dev/[hd]d devices which may be reorder due to probing order.
+        * /dev/[hd]d devices which may be reordered due to probing order.
         * Devices in the wrong locations will be detected by the higher
         * level vdev validation.
+        *
+        * The specified paths may be briefly removed and recreated in
+        * response to udev events.  This should be exceptionally unlikely
+        * because the zpool command makes every effort to verify these paths
+        * have already settled prior to reaching this point.  Therefore,
+        * a ENOENT failure at this point is highly likely to be transient
+        * and it is reasonable to sleep and retry before giving up.  In
+        * practice delays have been observed to be on the order of 100ms.
         */
        mode = spa_mode(v->vdev_spa);
        if (v->vdev_wholedisk && v->vdev_expanding)
                bdev = vdev_disk_rrpart(v->vdev_path, mode, vd);
-       if (IS_ERR(bdev))
-               bdev = vdev_bdev_open(v->vdev_path, vdev_bdev_mode(mode), vd);
+
+       while (IS_ERR(bdev) && count < 50) {
+               bdev = vdev_bdev_open(v->vdev_path,
+                   vdev_bdev_mode(mode), zfs_vdev_holder);
+               if (unlikely(PTR_ERR(bdev) == -ENOENT)) {
+                       msleep(10);
+                       count++;
+               } else if (IS_ERR(bdev)) {
+                       break;
+               }
+       }
+
        if (IS_ERR(bdev)) {
-               kmem_free(vd, sizeof(vdev_disk_t));
-               return -PTR_ERR(bdev);
+               dprintf("failed open v->vdev_path=%s, error=%d count=%d\n",
+                   v->vdev_path, -PTR_ERR(bdev), count);
+               kmem_free(vd, sizeof (vdev_disk_t));
+               return (SET_ERROR(-PTR_ERR(bdev)));
        }
 
        v->vdev_tsd = vd;
        vd->vd_bdev = bdev;
-       block_size =  vdev_bdev_block_size(bdev);
-
-       /* We think the wholedisk property should always be set when this
-        * function is called.  ASSERT here so if any legitimate cases exist
-        * where it's not set, we'll find them during debugging.  If we never
-        * hit the ASSERT, this and the following conditional statement can be
-        * removed. */
-       ASSERT3S(v->vdev_wholedisk, !=, -1ULL);
-
-       /* The wholedisk property was initialized to -1 in vdev_alloc() if it
-        * was unspecified.  In that case, check if this is a whole device.
-        * When bdev->bd_contains == bdev we have a whole device and not simply
-        * a partition. */
-       if (v->vdev_wholedisk == -1ULL)
-               v->vdev_wholedisk = (bdev->bd_contains == bdev);
+
+skip_open:
+       /*  Determine the physical block size */
+       block_size = vdev_bdev_block_size(vd->vd_bdev);
 
        /* Clear the nowritecache bit, causes vdev_reopen() to try again. */
        v->vdev_nowritecache = B_FALSE;
 
+       /* Inform the ZIO pipeline that we are non-rotational */
+       v->vdev_nonrot = blk_queue_nonrot(bdev_get_queue(vd->vd_bdev));
+
        /* Physical volume size in bytes */
-       *psize = bdev_capacity(bdev);
+       *psize = bdev_capacity(vd->vd_bdev);
 
        /* TODO: report possible expansion size */
        *max_psize = *psize;
 
        /* Based on the minimum sector size set the block size */
-       *ashift = highbit(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
+       *ashift = highbit64(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
 
        /* Try to set the io scheduler elevator algorithm */
        (void) vdev_elevator_switch(v, zfs_vdev_scheduler);
 
-       return 0;
+       return (0);
 }
 
 static void
@@ -311,14 +343,14 @@ vdev_disk_close(vdev_t *v)
 {
        vdev_disk_t *vd = v->vdev_tsd;
 
-       if (vd == NULL)
+       if (v->vdev_reopening || vd == NULL)
                return;
 
        if (vd->vd_bdev != NULL)
                vdev_bdev_close(vd->vd_bdev,
-                               vdev_bdev_mode(spa_mode(v->vdev_spa)));
+                   vdev_bdev_mode(spa_mode(v->vdev_spa)));
 
-       kmem_free(vd, sizeof(vdev_disk_t));
+       kmem_free(vd, sizeof (vdev_disk_t));
        v->vdev_tsd = NULL;
 }
 
@@ -328,8 +360,8 @@ vdev_disk_dio_alloc(int bio_count)
        dio_request_t *dr;
        int i;
 
-       dr = kmem_zalloc(sizeof(dio_request_t) +
-                        sizeof(struct bio *) * bio_count, KM_PUSHPAGE);
+       dr = kmem_zalloc(sizeof (dio_request_t) +
+           sizeof (struct bio *) * bio_count, KM_SLEEP);
        if (dr) {
                init_completion(&dr->dr_comp);
                atomic_set(&dr->dr_ref, 0);
@@ -340,7 +372,7 @@ vdev_disk_dio_alloc(int bio_count)
                        dr->dr_bio[i] = NULL;
        }
 
-       return dr;
+       return (dr);
 }
 
 static void
@@ -352,29 +384,8 @@ vdev_disk_dio_free(dio_request_t *dr)
                if (dr->dr_bio[i])
                        bio_put(dr->dr_bio[i]);
 
-       kmem_free(dr, sizeof(dio_request_t) +
-                 sizeof(struct bio *) * dr->dr_bio_count);
-}
-
-static int
-vdev_disk_dio_is_sync(dio_request_t *dr)
-{
-#ifdef HAVE_BIO_RW_SYNC
-       /* BIO_RW_SYNC preferred interface from 2.6.12-2.6.29 */
-        return (dr->dr_rw & (1 << BIO_RW_SYNC));
-#else
-# ifdef HAVE_BIO_RW_SYNCIO
-       /* BIO_RW_SYNCIO preferred interface from 2.6.30-2.6.35 */
-        return (dr->dr_rw & (1 << BIO_RW_SYNCIO));
-# else
-#  ifdef HAVE_REQ_SYNC
-       /* REQ_SYNC preferred interface from 2.6.36-2.6.xx */
-        return (dr->dr_rw & REQ_SYNC);
-#  else
-#   error "Unable to determine bio sync flag"
-#  endif /* HAVE_REQ_SYNC */
-# endif /* HAVE_BIO_RW_SYNC */
-#endif /* HAVE_BIO_RW_SYNCIO */
+       kmem_free(dr, sizeof (dio_request_t) +
+           sizeof (struct bio *) * dr->dr_bio_count);
 }
 
 static void
@@ -399,59 +410,48 @@ vdev_disk_dio_put(dio_request_t *dr)
                vdev_disk_dio_free(dr);
 
                if (zio) {
-                       zio->io_delay = jiffies_to_msecs(
-                           jiffies_64 - zio->io_delay);
                        zio->io_error = error;
                        ASSERT3S(zio->io_error, >=, 0);
                        if (zio->io_error)
                                vdev_disk_error(zio);
-                       zio_interrupt(zio);
+                       zio_delay_interrupt(zio);
                }
        }
 
-       return rc;
+       return (rc);
 }
 
-BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, size, error)
+BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, error)
 {
        dio_request_t *dr = bio->bi_private;
        int rc;
+       int wait;
 
-       /* Fatal error but print some useful debugging before asserting */
-       if (dr == NULL)
-               PANIC("dr == NULL, bio->bi_private == NULL\n"
-                   "bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d\n"
-                   "bi_idx: %d, bi_size: %d, bi_end_io: %p, bi_cnt: %d\n",
-                   bio->bi_next, bio->bi_flags, bio->bi_rw, bio->bi_vcnt,
-                   bio->bi_idx, bio->bi_size, bio->bi_end_io,
-                   atomic_read(&bio->bi_cnt));
-
-#ifndef HAVE_2ARGS_BIO_END_IO_T
-       if (bio->bi_size)
-               return 1;
-#endif /* HAVE_2ARGS_BIO_END_IO_T */
-
-       if (error == 0 && !test_bit(BIO_UPTODATE, &bio->bi_flags))
-               error = -EIO;
-
-       if (dr->dr_error == 0)
-               dr->dr_error = -error;
+       if (dr->dr_error == 0) {
+#ifdef HAVE_1ARG_BIO_END_IO_T
+               dr->dr_error = -(bio->bi_error);
+#else
+               if (error)
+                       dr->dr_error = -(error);
+               else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
+                       dr->dr_error = EIO;
+#endif
+       }
 
+       wait = dr->dr_wait;
        /* Drop reference aquired by __vdev_disk_physio */
        rc = vdev_disk_dio_put(dr);
 
        /* Wake up synchronous waiter this is the last outstanding bio */
-       if ((rc == 1) && vdev_disk_dio_is_sync(dr))
+       if (wait && rc == 1)
                complete(&dr->dr_comp);
-
-       BIO_END_IO_RETURN(0);
 }
 
 static inline unsigned long
 bio_nr_pages(void *bio_ptr, unsigned int bio_size)
 {
        return ((((unsigned long)bio_ptr + bio_size + PAGE_SIZE - 1) >>
-               PAGE_SHIFT) - ((unsigned long)bio_ptr >> PAGE_SHIFT));
+           PAGE_SHIFT) - ((unsigned long)bio_ptr >> PAGE_SHIFT));
 }
 
 static unsigned int
@@ -470,11 +470,18 @@ bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
                if (size > bio_size)
                        size = bio_size;
 
-               if (kmem_virt(bio_ptr))
+               if (is_vmalloc_addr(bio_ptr))
                        page = vmalloc_to_page(bio_ptr);
                else
                        page = virt_to_page(bio_ptr);
 
+               /*
+                * Some network related block device uses tcp_sendpage, which
+                * doesn't behave well when using 0-count page, this is a
+                * safety net to catch them.
+                */
+               ASSERT3S(page_count(page), >, 0);
+
                if (bio_add_page(bio, page, size, offset) != size)
                        break;
 
@@ -483,17 +490,33 @@ bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
                offset = 0;
        }
 
-        return bio_size;
+       return (bio_size);
+}
+
+static inline void
+vdev_submit_bio(int rw, struct bio *bio)
+{
+#ifdef HAVE_CURRENT_BIO_TAIL
+       struct bio **bio_tail = current->bio_tail;
+       current->bio_tail = NULL;
+       submit_bio(rw, bio);
+       current->bio_tail = bio_tail;
+#else
+       struct bio_list *bio_list = current->bio_list;
+       current->bio_list = NULL;
+       submit_bio(rw, bio);
+       current->bio_list = bio_list;
+#endif
 }
 
 static int
 __vdev_disk_physio(struct block_device *bdev, zio_t *zio, caddr_t kbuf_ptr,
-                   size_t kbuf_size, uint64_t kbuf_offset, int flags)
+    size_t kbuf_size, uint64_t kbuf_offset, int flags, int wait)
 {
-        dio_request_t *dr;
+       dio_request_t *dr;
        caddr_t bio_ptr;
        uint64_t bio_offset;
-       int bio_size, bio_count = 16;
+       int rw, bio_size, bio_count = 16;
        int i = 0, error = 0;
 
        ASSERT3U(kbuf_offset + kbuf_size, <=, bdev->bd_inode->i_size);
@@ -501,13 +524,14 @@ __vdev_disk_physio(struct block_device *bdev, zio_t *zio, caddr_t kbuf_ptr,
 retry:
        dr = vdev_disk_dio_alloc(bio_count);
        if (dr == NULL)
-               return ENOMEM;
+               return (ENOMEM);
 
        if (zio && !(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
-                       bio_set_flags_failfast(bdev, &flags);
+               bio_set_flags_failfast(bdev, &flags);
 
+       rw = flags;
        dr->dr_zio = zio;
-       dr->dr_rw = flags;
+       dr->dr_wait = wait;
 
        /*
         * When the IO size exceeds the maximum bio size for the request
@@ -533,23 +557,23 @@ retry:
                if (dr->dr_bio_count == i) {
                        vdev_disk_dio_free(dr);
                        bio_count *= 2;
-                       printk("WARNING: Resized bio's/dio to %d\n",bio_count);
                        goto retry;
                }
 
+               /* bio_alloc() with __GFP_WAIT never returns NULL */
                dr->dr_bio[i] = bio_alloc(GFP_NOIO,
-                                         bio_nr_pages(bio_ptr, bio_size));
-               if (dr->dr_bio[i] == NULL) {
+                   MIN(bio_nr_pages(bio_ptr, bio_size), BIO_MAX_PAGES));
+               if (unlikely(dr->dr_bio[i] == NULL)) {
                        vdev_disk_dio_free(dr);
-                       return ENOMEM;
+                       return (ENOMEM);
                }
 
                /* Matching put called by vdev_disk_physio_completion */
                vdev_disk_dio_get(dr);
 
                dr->dr_bio[i]->bi_bdev = bdev;
-               dr->dr_bio[i]->bi_sector = bio_offset >> 9;
-               dr->dr_bio[i]->bi_rw = dr->dr_rw;
+               BIO_BI_SECTOR(dr->dr_bio[i]) = bio_offset >> 9;
+               dr->dr_bio[i]->bi_rw = rw;
                dr->dr_bio[i]->bi_end_io = vdev_disk_physio_completion;
                dr->dr_bio[i]->bi_private = dr;
 
@@ -557,19 +581,17 @@ retry:
                bio_size = bio_map(dr->dr_bio[i], bio_ptr, bio_size);
 
                /* Advance in buffer and construct another bio if needed */
-               bio_ptr    += dr->dr_bio[i]->bi_size;
-               bio_offset += dr->dr_bio[i]->bi_size;
+               bio_ptr    += BIO_BI_SIZE(dr->dr_bio[i]);
+               bio_offset += BIO_BI_SIZE(dr->dr_bio[i]);
        }
 
-       /* Extra reference to protect dio_request during submit_bio */
+       /* Extra reference to protect dio_request during vdev_submit_bio */
        vdev_disk_dio_get(dr);
-       if (zio)
-               zio->io_delay = jiffies_64;
 
        /* Submit all bio's associated with this dio */
        for (i = 0; i < dr->dr_bio_count; i++)
                if (dr->dr_bio[i])
-                       submit_bio(dr->dr_rw, dr->dr_bio[i]);
+                       vdev_submit_bio(rw, dr->dr_bio[i]);
 
        /*
         * On synchronous blocking requests we wait for all bio the completion
@@ -579,32 +601,32 @@ retry:
         * only synchronous consumer is vdev_disk_read_rootlabel() all other
         * IO originating from vdev_disk_io_start() is asynchronous.
         */
-       if (vdev_disk_dio_is_sync(dr)) {
+       if (wait) {
                wait_for_completion(&dr->dr_comp);
                error = dr->dr_error;
                ASSERT3S(atomic_read(&dr->dr_ref), ==, 1);
        }
 
-       (void)vdev_disk_dio_put(dr);
+       (void) vdev_disk_dio_put(dr);
 
-       return error;
+       return (error);
 }
 
 int
 vdev_disk_physio(struct block_device *bdev, caddr_t kbuf,
-                size_t size, uint64_t offset, int flags)
+    size_t size, uint64_t offset, int flags)
 {
        bio_set_flags_failfast(bdev, &flags);
-       return __vdev_disk_physio(bdev, NULL, kbuf, size, offset, flags);
+       return (__vdev_disk_physio(bdev, NULL, kbuf, size, offset, flags, 1));
 }
 
-/* 2.6.24 API change */
-#ifdef HAVE_BIO_EMPTY_BARRIER
-BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, size, rc)
+BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, rc)
 {
        zio_t *zio = bio->bi_private;
+#ifdef HAVE_1ARG_BIO_END_IO_T
+       int rc = bio->bi_error;
+#endif
 
-       zio->io_delay = jiffies_to_msecs(jiffies_64 - zio->io_delay);
        zio->io_error = -rc;
        if (rc && (rc == -EOPNOTSUPP))
                zio->io_vd->vdev_nowritecache = B_TRUE;
@@ -614,8 +636,6 @@ BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, size, rc)
        if (zio->io_error)
                vdev_disk_error(zio);
        zio_interrupt(zio);
-
-       BIO_END_IO_RETURN(0);
 }
 
 static int
@@ -626,41 +646,37 @@ vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
 
        q = bdev_get_queue(bdev);
        if (!q)
-               return ENXIO;
+               return (ENXIO);
 
-       bio = bio_alloc(GFP_KERNEL, 0);
-       if (!bio)
-               return ENOMEM;
+       bio = bio_alloc(GFP_NOIO, 0);
+       /* bio_alloc() with __GFP_WAIT never returns NULL */
+       if (unlikely(bio == NULL))
+               return (ENOMEM);
 
        bio->bi_end_io = vdev_disk_io_flush_completion;
        bio->bi_private = zio;
        bio->bi_bdev = bdev;
-       zio->io_delay = jiffies_64;
-       submit_bio(VDEV_WRITE_FLUSH_FUA, bio);
+       vdev_submit_bio(VDEV_WRITE_FLUSH_FUA, bio);
+       invalidate_bdev(bdev);
 
-       return 0;
+       return (0);
 }
-#else
-static int
-vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
-{
-       return ENOTSUP;
-}
-#endif /* HAVE_BIO_EMPTY_BARRIER */
 
-static int
+static void
 vdev_disk_io_start(zio_t *zio)
 {
        vdev_t *v = zio->io_vd;
        vdev_disk_t *vd = v->vdev_tsd;
+       zio_priority_t pri = zio->io_priority;
        int flags, error;
 
        switch (zio->io_type) {
        case ZIO_TYPE_IOCTL:
 
                if (!vdev_readable(v)) {
-                       zio->io_error = ENXIO;
-                       return ZIO_PIPELINE_CONTINUE;
+                       zio->io_error = SET_ERROR(ENXIO);
+                       zio_interrupt(zio);
+                       return;
                }
 
                switch (zio->io_cmd) {
@@ -670,13 +686,13 @@ vdev_disk_io_start(zio_t *zio)
                                break;
 
                        if (v->vdev_nowritecache) {
-                               zio->io_error = ENOTSUP;
+                               zio->io_error = SET_ERROR(ENOTSUP);
                                break;
                        }
 
                        error = vdev_disk_io_flush(vd->vd_bdev, zio);
                        if (error == 0)
-                               return ZIO_PIPELINE_STOP;
+                               return;
 
                        zio->io_error = error;
                        if (error == ENOTSUP)
@@ -685,32 +701,39 @@ vdev_disk_io_start(zio_t *zio)
                        break;
 
                default:
-                       zio->io_error = ENOTSUP;
+                       zio->io_error = SET_ERROR(ENOTSUP);
                }
 
-               return ZIO_PIPELINE_CONTINUE;
-
+               zio_execute(zio);
+               return;
        case ZIO_TYPE_WRITE:
-               flags = WRITE;
+               if ((pri == ZIO_PRIORITY_SYNC_WRITE) && (v->vdev_nonrot))
+                       flags = WRITE_SYNC;
+               else
+                       flags = WRITE;
                break;
 
        case ZIO_TYPE_READ:
-               flags = READ;
+               if ((pri == ZIO_PRIORITY_SYNC_READ) && (v->vdev_nonrot))
+                       flags = READ_SYNC;
+               else
+                       flags = READ;
                break;
 
        default:
-               zio->io_error = ENOTSUP;
-               return ZIO_PIPELINE_CONTINUE;
+               zio->io_error = SET_ERROR(ENOTSUP);
+               zio_interrupt(zio);
+               return;
        }
 
+       zio->io_target_timestamp = zio_handle_io_delay(zio);
        error = __vdev_disk_physio(vd->vd_bdev, zio, zio->io_data,
-                                  zio->io_size, zio->io_offset, flags);
+           zio->io_size, zio->io_offset, flags, 0);
        if (error) {
                zio->io_error = error;
-               return ZIO_PIPELINE_CONTINUE;
+               zio_interrupt(zio);
+               return;
        }
-
-       return ZIO_PIPELINE_STOP;
 }
 
 static void
@@ -722,7 +745,7 @@ vdev_disk_io_done(zio_t *zio)
         * removal of the device from the configuration.
         */
        if (zio->io_error == EIO) {
-               vdev_t *v = zio->io_vd;
+               vdev_t *v = zio->io_vd;
                vdev_disk_t *vd = v->vdev_tsd;
 
                if (check_disk_change(vd->vd_bdev)) {
@@ -787,21 +810,21 @@ vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
        uint64_t s, size;
        int i;
 
-       bdev = vdev_bdev_open(devpath, vdev_bdev_mode(FREAD), NULL);
+       bdev = vdev_bdev_open(devpath, vdev_bdev_mode(FREAD), zfs_vdev_holder);
        if (IS_ERR(bdev))
-               return -PTR_ERR(bdev);
+               return (-PTR_ERR(bdev));
 
        s = bdev_capacity(bdev);
        if (s == 0) {
                vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
-               return EIO;
+               return (EIO);
        }
 
-       size = P2ALIGN_TYPED(s, sizeof(vdev_label_t), uint64_t);
-       label = vmem_alloc(sizeof(vdev_label_t), KM_PUSHPAGE);
+       size = P2ALIGN_TYPED(s, sizeof (vdev_label_t), uint64_t);
+       label = vmem_alloc(sizeof (vdev_label_t), KM_SLEEP);
 
        for (i = 0; i < VDEV_LABELS; i++) {
-               uint64_t offset, state, txg = 0;
+               uint64_t offset, state, txg = 0;
 
                /* read vdev label */
                offset = vdev_label_offset(size, i, 0);
@@ -832,10 +855,10 @@ vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
                break;
        }
 
-       vmem_free(label, sizeof(vdev_label_t));
+       vmem_free(label, sizeof (vdev_label_t));
        vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
 
-       return 0;
+       return (0);
 }
 
 module_param(zfs_vdev_scheduler, charp, 0644);