Remove wholedisk check from vdev_disk_open()
[zfs.git] / module / zfs / vdev_disk.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (C) 2008-2010 Lawrence Livermore National Security, LLC.
23  * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
24  * Rewritten for Linux by Brian Behlendorf <behlendorf1@llnl.gov>.
25  * LLNL-CODE-403049.
26  */
27
28 #include <sys/zfs_context.h>
29 #include <sys/spa.h>
30 #include <sys/vdev_disk.h>
31 #include <sys/vdev_impl.h>
32 #include <sys/fs/zfs.h>
33 #include <sys/zio.h>
34 #include <sys/sunldi.h>
35
36 char *zfs_vdev_scheduler = VDEV_SCHEDULER;
37
38 /*
39  * Virtual device vector for disks.
40  */
41 typedef struct dio_request {
42         struct completion       dr_comp;        /* Completion for sync IO */
43         atomic_t                dr_ref;         /* References */
44         zio_t                   *dr_zio;        /* Parent ZIO */
45         int                     dr_rw;          /* Read/Write */
46         int                     dr_error;       /* Bio error */
47         int                     dr_bio_count;   /* Count of bio's */
48         struct bio              *dr_bio[0];     /* Attached bio's */
49 } dio_request_t;
50
51
52 #ifdef HAVE_OPEN_BDEV_EXCLUSIVE
53 static fmode_t
54 vdev_bdev_mode(int smode)
55 {
56         fmode_t mode = 0;
57
58         ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
59
60         if (smode & FREAD)
61                 mode |= FMODE_READ;
62
63         if (smode & FWRITE)
64                 mode |= FMODE_WRITE;
65
66         return mode;
67 }
68 #else
69 static int
70 vdev_bdev_mode(int smode)
71 {
72         int mode = 0;
73
74         ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
75
76         if ((smode & FREAD) && !(smode & FWRITE))
77                 mode = MS_RDONLY;
78
79         return mode;
80 }
81 #endif /* HAVE_OPEN_BDEV_EXCLUSIVE */
82
83 static uint64_t
84 bdev_capacity(struct block_device *bdev)
85 {
86         struct hd_struct *part = bdev->bd_part;
87
88         /* The partition capacity referenced by the block device */
89         if (part)
90                 return (part->nr_sects << 9);
91
92         /* Otherwise assume the full device capacity */
93         return (get_capacity(bdev->bd_disk) << 9);
94 }
95
96 static void
97 vdev_disk_error(zio_t *zio)
98 {
99 #ifdef ZFS_DEBUG
100         printk("ZFS: zio error=%d type=%d offset=%llu size=%llu "
101             "flags=%x delay=%llu\n", zio->io_error, zio->io_type,
102             (u_longlong_t)zio->io_offset, (u_longlong_t)zio->io_size,
103             zio->io_flags, (u_longlong_t)zio->io_delay);
104 #endif
105 }
106
107 /*
108  * Use the Linux 'noop' elevator for zfs managed block devices.  This
109  * strikes the ideal balance by allowing the zfs elevator to do all
110  * request ordering and prioritization.  While allowing the Linux
111  * elevator to do the maximum front/back merging allowed by the
112  * physical device.  This yields the largest possible requests for
113  * the device with the lowest total overhead.
114  */
115 static int
116 vdev_elevator_switch(vdev_t *v, char *elevator)
117 {
118         vdev_disk_t *vd = v->vdev_tsd;
119         struct block_device *bdev = vd->vd_bdev;
120         struct request_queue *q = bdev_get_queue(bdev);
121         char *device = bdev->bd_disk->disk_name;
122         int error;
123
124         /*
125          * Skip devices which are not whole disks (partitions).
126          * Device-mapper devices are excepted since they may be whole
127          * disks despite the vdev_wholedisk flag, in which case we can
128          * and should switch the elevator. If the device-mapper device
129          * does not have an elevator (i.e. dm-raid, dm-crypt, etc.) the
130          * "Skip devices without schedulers" check below will fail.
131          */
132         if (!v->vdev_wholedisk && strncmp(device, "dm-", 3) != 0)
133                 return (0);
134
135         /* Skip devices without schedulers (loop, ram, dm, etc) */
136         if (!q->elevator || !blk_queue_stackable(q))
137                 return (0);
138
139         /* Leave existing scheduler when set to "none" */
140         if (!strncmp(elevator, "none", 4) && (strlen(elevator) == 4))
141                 return (0);
142
143 #ifdef HAVE_ELEVATOR_CHANGE
144         error = elevator_change(q, elevator);
145 #else
146         /* For pre-2.6.36 kernels elevator_change() is not available.
147          * Therefore we fall back to using a usermodehelper to echo the
148          * elevator into sysfs;  This requires /bin/echo and sysfs to be
149          * mounted which may not be true early in the boot process.
150          */
151 # define SET_SCHEDULER_CMD \
152         "exec 0</dev/null " \
153         "     1>/sys/block/%s/queue/scheduler " \
154         "     2>/dev/null; " \
155         "echo %s"
156
157         {
158                 char *argv[] = { "/bin/sh", "-c", NULL, NULL };
159                 char *envp[] = { NULL };
160
161                 argv[2] = kmem_asprintf(SET_SCHEDULER_CMD, device, elevator);
162                 error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
163                 strfree(argv[2]);
164         }
165 #endif /* HAVE_ELEVATOR_CHANGE */
166         if (error)
167                 printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
168                        elevator, v->vdev_path, device, error);
169
170         return (error);
171 }
172
173 /*
174  * Expanding a whole disk vdev involves invoking BLKRRPART on the
175  * whole disk device. This poses a problem, because BLKRRPART will
176  * return EBUSY if one of the disk's partitions is open. That's why
177  * we have to do it here, just before opening the data partition.
178  * Unfortunately, BLKRRPART works by dropping all partitions and
179  * recreating them, which means that for a short time window, all
180  * /dev/sdxN device files disappear (until udev recreates them).
181  * This means two things:
182  *  - When we open the data partition just after a BLKRRPART, we
183  *    can't do it using the normal device file path because of the
184  *    obvious race condition with udev. Instead, we use reliable
185  *    kernel APIs to get a handle to the new partition device from
186  *    the whole disk device.
187  *  - Because vdev_disk_open() initially needs to find the device
188  *    using its path, multiple vdev_disk_open() invocations in
189  *    short succession on the same disk with BLKRRPARTs in the
190  *    middle have a high probability of failure (because of the
191  *    race condition with udev). A typical situation where this
192  *    might happen is when the zpool userspace tool does a
193  *    TRYIMPORT immediately followed by an IMPORT. For this
194  *    reason, we only invoke BLKRRPART in the module when strictly
195  *    necessary (zpool online -e case), and rely on userspace to
196  *    do it when possible.
197  */
198 static struct block_device *
199 vdev_disk_rrpart(const char *path, int mode, vdev_disk_t *vd)
200 {
201 #if defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK)
202         struct block_device *bdev, *result = ERR_PTR(-ENXIO);
203         struct gendisk *disk;
204         int error, partno;
205
206         bdev = vdev_bdev_open(path, vdev_bdev_mode(mode), vd);
207         if (IS_ERR(bdev))
208                 return bdev;
209
210         disk = get_gendisk(bdev->bd_dev, &partno);
211         vdev_bdev_close(bdev, vdev_bdev_mode(mode));
212
213         if (disk) {
214                 bdev = bdget(disk_devt(disk));
215                 if (bdev) {
216                         error = blkdev_get(bdev, vdev_bdev_mode(mode), vd);
217                         if (error == 0)
218                                 error = ioctl_by_bdev(bdev, BLKRRPART, 0);
219                         vdev_bdev_close(bdev, vdev_bdev_mode(mode));
220                 }
221
222                 bdev = bdget_disk(disk, partno);
223                 if (bdev) {
224                         error = blkdev_get(bdev,
225                             vdev_bdev_mode(mode) | FMODE_EXCL, vd);
226                         if (error == 0)
227                                 result = bdev;
228                 }
229                 put_disk(disk);
230         }
231
232         return result;
233 #else
234         return ERR_PTR(-EOPNOTSUPP);
235 #endif /* defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK) */
236 }
237
238 static int
239 vdev_disk_open(vdev_t *v, uint64_t *psize, uint64_t *max_psize,
240     uint64_t *ashift)
241 {
242         struct block_device *bdev = ERR_PTR(-ENXIO);
243         vdev_disk_t *vd;
244         int mode, block_size;
245
246         /* Must have a pathname and it must be absolute. */
247         if (v->vdev_path == NULL || v->vdev_path[0] != '/') {
248                 v->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
249                 return EINVAL;
250         }
251
252         /*
253          * Reopen the device if it's not currently open. Otherwise,
254          * just update the physical size of the device.
255          */
256         if (v->vdev_tsd != NULL) {
257                 ASSERT(v->vdev_reopening);
258                 vd = v->vdev_tsd;
259                 goto skip_open;
260         }
261
262         vd = kmem_zalloc(sizeof(vdev_disk_t), KM_PUSHPAGE);
263         if (vd == NULL)
264                 return ENOMEM;
265
266         /*
267          * Devices are always opened by the path provided at configuration
268          * time.  This means that if the provided path is a udev by-id path
269          * then drives may be recabled without an issue.  If the provided
270          * path is a udev by-path path then the physical location information
271          * will be preserved.  This can be critical for more complicated
272          * configurations where drives are located in specific physical
273          * locations to maximize the systems tolerence to component failure.
274          * Alternately you can provide your own udev rule to flexibly map
275          * the drives as you see fit.  It is not advised that you use the
276          * /dev/[hd]d devices which may be reorder due to probing order.
277          * Devices in the wrong locations will be detected by the higher
278          * level vdev validation.
279          */
280         mode = spa_mode(v->vdev_spa);
281         if (v->vdev_wholedisk && v->vdev_expanding)
282                 bdev = vdev_disk_rrpart(v->vdev_path, mode, vd);
283         if (IS_ERR(bdev))
284                 bdev = vdev_bdev_open(v->vdev_path, vdev_bdev_mode(mode), vd);
285         if (IS_ERR(bdev)) {
286                 kmem_free(vd, sizeof(vdev_disk_t));
287                 return -PTR_ERR(bdev);
288         }
289
290         v->vdev_tsd = vd;
291         vd->vd_bdev = bdev;
292
293 skip_open:
294         /*  Determine the physical block size */
295         block_size = vdev_bdev_block_size(vd->vd_bdev);
296
297         /* Clear the nowritecache bit, causes vdev_reopen() to try again. */
298         v->vdev_nowritecache = B_FALSE;
299
300         /* Physical volume size in bytes */
301         *psize = bdev_capacity(vd->vd_bdev);
302
303         /* TODO: report possible expansion size */
304         *max_psize = *psize;
305
306         /* Based on the minimum sector size set the block size */
307         *ashift = highbit(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
308
309         /* Try to set the io scheduler elevator algorithm */
310         (void) vdev_elevator_switch(v, zfs_vdev_scheduler);
311
312         return 0;
313 }
314
315 static void
316 vdev_disk_close(vdev_t *v)
317 {
318         vdev_disk_t *vd = v->vdev_tsd;
319
320         if (v->vdev_reopening || vd == NULL)
321                 return;
322
323         if (vd->vd_bdev != NULL)
324                 vdev_bdev_close(vd->vd_bdev,
325                                 vdev_bdev_mode(spa_mode(v->vdev_spa)));
326
327         kmem_free(vd, sizeof(vdev_disk_t));
328         v->vdev_tsd = NULL;
329 }
330
331 static dio_request_t *
332 vdev_disk_dio_alloc(int bio_count)
333 {
334         dio_request_t *dr;
335         int i;
336
337         dr = kmem_zalloc(sizeof(dio_request_t) +
338                          sizeof(struct bio *) * bio_count, KM_PUSHPAGE);
339         if (dr) {
340                 init_completion(&dr->dr_comp);
341                 atomic_set(&dr->dr_ref, 0);
342                 dr->dr_bio_count = bio_count;
343                 dr->dr_error = 0;
344
345                 for (i = 0; i < dr->dr_bio_count; i++)
346                         dr->dr_bio[i] = NULL;
347         }
348
349         return dr;
350 }
351
352 static void
353 vdev_disk_dio_free(dio_request_t *dr)
354 {
355         int i;
356
357         for (i = 0; i < dr->dr_bio_count; i++)
358                 if (dr->dr_bio[i])
359                         bio_put(dr->dr_bio[i]);
360
361         kmem_free(dr, sizeof(dio_request_t) +
362                   sizeof(struct bio *) * dr->dr_bio_count);
363 }
364
365 static int
366 vdev_disk_dio_is_sync(dio_request_t *dr)
367 {
368 #ifdef HAVE_BIO_RW_SYNC
369         /* BIO_RW_SYNC preferred interface from 2.6.12-2.6.29 */
370         return (dr->dr_rw & (1 << BIO_RW_SYNC));
371 #else
372 # ifdef HAVE_BIO_RW_SYNCIO
373         /* BIO_RW_SYNCIO preferred interface from 2.6.30-2.6.35 */
374         return (dr->dr_rw & (1 << BIO_RW_SYNCIO));
375 # else
376 #  ifdef HAVE_REQ_SYNC
377         /* REQ_SYNC preferred interface from 2.6.36-2.6.xx */
378         return (dr->dr_rw & REQ_SYNC);
379 #  else
380 #   error "Unable to determine bio sync flag"
381 #  endif /* HAVE_REQ_SYNC */
382 # endif /* HAVE_BIO_RW_SYNC */
383 #endif /* HAVE_BIO_RW_SYNCIO */
384 }
385
386 static void
387 vdev_disk_dio_get(dio_request_t *dr)
388 {
389         atomic_inc(&dr->dr_ref);
390 }
391
392 static int
393 vdev_disk_dio_put(dio_request_t *dr)
394 {
395         int rc = atomic_dec_return(&dr->dr_ref);
396
397         /*
398          * Free the dio_request when the last reference is dropped and
399          * ensure zio_interpret is called only once with the correct zio
400          */
401         if (rc == 0) {
402                 zio_t *zio = dr->dr_zio;
403                 int error = dr->dr_error;
404
405                 vdev_disk_dio_free(dr);
406
407                 if (zio) {
408                         zio->io_delay = jiffies_to_msecs(
409                             jiffies_64 - zio->io_delay);
410                         zio->io_error = error;
411                         ASSERT3S(zio->io_error, >=, 0);
412                         if (zio->io_error)
413                                 vdev_disk_error(zio);
414                         zio_interrupt(zio);
415                 }
416         }
417
418         return rc;
419 }
420
421 BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, size, error)
422 {
423         dio_request_t *dr = bio->bi_private;
424         int rc;
425
426         /* Fatal error but print some useful debugging before asserting */
427         if (dr == NULL)
428                 PANIC("dr == NULL, bio->bi_private == NULL\n"
429                     "bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d\n"
430                     "bi_idx: %d, bi_size: %d, bi_end_io: %p, bi_cnt: %d\n",
431                     bio->bi_next, bio->bi_flags, bio->bi_rw, bio->bi_vcnt,
432                     bio->bi_idx, bio->bi_size, bio->bi_end_io,
433                     atomic_read(&bio->bi_cnt));
434
435 #ifndef HAVE_2ARGS_BIO_END_IO_T
436         if (bio->bi_size)
437                 return 1;
438 #endif /* HAVE_2ARGS_BIO_END_IO_T */
439
440         if (error == 0 && !test_bit(BIO_UPTODATE, &bio->bi_flags))
441                 error = -EIO;
442
443         if (dr->dr_error == 0)
444                 dr->dr_error = -error;
445
446         /* Drop reference aquired by __vdev_disk_physio */
447         rc = vdev_disk_dio_put(dr);
448
449         /* Wake up synchronous waiter this is the last outstanding bio */
450         if ((rc == 1) && vdev_disk_dio_is_sync(dr))
451                 complete(&dr->dr_comp);
452
453         BIO_END_IO_RETURN(0);
454 }
455
456 static inline unsigned long
457 bio_nr_pages(void *bio_ptr, unsigned int bio_size)
458 {
459         return ((((unsigned long)bio_ptr + bio_size + PAGE_SIZE - 1) >>
460                 PAGE_SHIFT) - ((unsigned long)bio_ptr >> PAGE_SHIFT));
461 }
462
463 static unsigned int
464 bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
465 {
466         unsigned int offset, size, i;
467         struct page *page;
468
469         offset = offset_in_page(bio_ptr);
470         for (i = 0; i < bio->bi_max_vecs; i++) {
471                 size = PAGE_SIZE - offset;
472
473                 if (bio_size <= 0)
474                         break;
475
476                 if (size > bio_size)
477                         size = bio_size;
478
479                 if (kmem_virt(bio_ptr))
480                         page = vmalloc_to_page(bio_ptr);
481                 else
482                         page = virt_to_page(bio_ptr);
483
484                 if (bio_add_page(bio, page, size, offset) != size)
485                         break;
486
487                 bio_ptr  += size;
488                 bio_size -= size;
489                 offset = 0;
490         }
491
492         return bio_size;
493 }
494
495 static int
496 __vdev_disk_physio(struct block_device *bdev, zio_t *zio, caddr_t kbuf_ptr,
497                    size_t kbuf_size, uint64_t kbuf_offset, int flags)
498 {
499         dio_request_t *dr;
500         caddr_t bio_ptr;
501         uint64_t bio_offset;
502         int bio_size, bio_count = 16;
503         int i = 0, error = 0;
504
505         ASSERT3U(kbuf_offset + kbuf_size, <=, bdev->bd_inode->i_size);
506
507 retry:
508         dr = vdev_disk_dio_alloc(bio_count);
509         if (dr == NULL)
510                 return ENOMEM;
511
512         if (zio && !(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
513                         bio_set_flags_failfast(bdev, &flags);
514
515         dr->dr_zio = zio;
516         dr->dr_rw = flags;
517
518         /*
519          * When the IO size exceeds the maximum bio size for the request
520          * queue we are forced to break the IO in multiple bio's and wait
521          * for them all to complete.  Ideally, all pool users will set
522          * their volume block size to match the maximum request size and
523          * the common case will be one bio per vdev IO request.
524          */
525         bio_ptr    = kbuf_ptr;
526         bio_offset = kbuf_offset;
527         bio_size   = kbuf_size;
528         for (i = 0; i <= dr->dr_bio_count; i++) {
529
530                 /* Finished constructing bio's for given buffer */
531                 if (bio_size <= 0)
532                         break;
533
534                 /*
535                  * By default only 'bio_count' bio's per dio are allowed.
536                  * However, if we find ourselves in a situation where more
537                  * are needed we allocate a larger dio and warn the user.
538                  */
539                 if (dr->dr_bio_count == i) {
540                         vdev_disk_dio_free(dr);
541                         bio_count *= 2;
542                         goto retry;
543                 }
544
545                 dr->dr_bio[i] = bio_alloc(GFP_NOIO,
546                                           bio_nr_pages(bio_ptr, bio_size));
547                 if (dr->dr_bio[i] == NULL) {
548                         vdev_disk_dio_free(dr);
549                         return ENOMEM;
550                 }
551
552                 /* Matching put called by vdev_disk_physio_completion */
553                 vdev_disk_dio_get(dr);
554
555                 dr->dr_bio[i]->bi_bdev = bdev;
556                 dr->dr_bio[i]->bi_sector = bio_offset >> 9;
557                 dr->dr_bio[i]->bi_rw = dr->dr_rw;
558                 dr->dr_bio[i]->bi_end_io = vdev_disk_physio_completion;
559                 dr->dr_bio[i]->bi_private = dr;
560
561                 /* Remaining size is returned to become the new size */
562                 bio_size = bio_map(dr->dr_bio[i], bio_ptr, bio_size);
563
564                 /* Advance in buffer and construct another bio if needed */
565                 bio_ptr    += dr->dr_bio[i]->bi_size;
566                 bio_offset += dr->dr_bio[i]->bi_size;
567         }
568
569         /* Extra reference to protect dio_request during submit_bio */
570         vdev_disk_dio_get(dr);
571         if (zio)
572                 zio->io_delay = jiffies_64;
573
574         /* Submit all bio's associated with this dio */
575         for (i = 0; i < dr->dr_bio_count; i++)
576                 if (dr->dr_bio[i])
577                         submit_bio(dr->dr_rw, dr->dr_bio[i]);
578
579         /*
580          * On synchronous blocking requests we wait for all bio the completion
581          * callbacks to run.  We will be woken when the last callback runs
582          * for this dio.  We are responsible for putting the last dio_request
583          * reference will in turn put back the last bio references.  The
584          * only synchronous consumer is vdev_disk_read_rootlabel() all other
585          * IO originating from vdev_disk_io_start() is asynchronous.
586          */
587         if (vdev_disk_dio_is_sync(dr)) {
588                 wait_for_completion(&dr->dr_comp);
589                 error = dr->dr_error;
590                 ASSERT3S(atomic_read(&dr->dr_ref), ==, 1);
591         }
592
593         (void)vdev_disk_dio_put(dr);
594
595         return error;
596 }
597
598 int
599 vdev_disk_physio(struct block_device *bdev, caddr_t kbuf,
600                  size_t size, uint64_t offset, int flags)
601 {
602         bio_set_flags_failfast(bdev, &flags);
603         return __vdev_disk_physio(bdev, NULL, kbuf, size, offset, flags);
604 }
605
606 BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, size, rc)
607 {
608         zio_t *zio = bio->bi_private;
609
610         zio->io_delay = jiffies_to_msecs(jiffies_64 - zio->io_delay);
611         zio->io_error = -rc;
612         if (rc && (rc == -EOPNOTSUPP))
613                 zio->io_vd->vdev_nowritecache = B_TRUE;
614
615         bio_put(bio);
616         ASSERT3S(zio->io_error, >=, 0);
617         if (zio->io_error)
618                 vdev_disk_error(zio);
619         zio_interrupt(zio);
620
621         BIO_END_IO_RETURN(0);
622 }
623
624 static int
625 vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
626 {
627         struct request_queue *q;
628         struct bio *bio;
629
630         q = bdev_get_queue(bdev);
631         if (!q)
632                 return ENXIO;
633
634         bio = bio_alloc(GFP_KERNEL, 0);
635         if (!bio)
636                 return ENOMEM;
637
638         bio->bi_end_io = vdev_disk_io_flush_completion;
639         bio->bi_private = zio;
640         bio->bi_bdev = bdev;
641         zio->io_delay = jiffies_64;
642         submit_bio(VDEV_WRITE_FLUSH_FUA, bio);
643
644         return 0;
645 }
646
647 static int
648 vdev_disk_io_start(zio_t *zio)
649 {
650         vdev_t *v = zio->io_vd;
651         vdev_disk_t *vd = v->vdev_tsd;
652         int flags, error;
653
654         switch (zio->io_type) {
655         case ZIO_TYPE_IOCTL:
656
657                 if (!vdev_readable(v)) {
658                         zio->io_error = ENXIO;
659                         return ZIO_PIPELINE_CONTINUE;
660                 }
661
662                 switch (zio->io_cmd) {
663                 case DKIOCFLUSHWRITECACHE:
664
665                         if (zfs_nocacheflush)
666                                 break;
667
668                         if (v->vdev_nowritecache) {
669                                 zio->io_error = ENOTSUP;
670                                 break;
671                         }
672
673                         error = vdev_disk_io_flush(vd->vd_bdev, zio);
674                         if (error == 0)
675                                 return ZIO_PIPELINE_STOP;
676
677                         zio->io_error = error;
678                         if (error == ENOTSUP)
679                                 v->vdev_nowritecache = B_TRUE;
680
681                         break;
682
683                 default:
684                         zio->io_error = ENOTSUP;
685                 }
686
687                 return ZIO_PIPELINE_CONTINUE;
688
689         case ZIO_TYPE_WRITE:
690                 flags = WRITE;
691                 break;
692
693         case ZIO_TYPE_READ:
694                 flags = READ;
695                 break;
696
697         default:
698                 zio->io_error = ENOTSUP;
699                 return ZIO_PIPELINE_CONTINUE;
700         }
701
702         error = __vdev_disk_physio(vd->vd_bdev, zio, zio->io_data,
703                                    zio->io_size, zio->io_offset, flags);
704         if (error) {
705                 zio->io_error = error;
706                 return ZIO_PIPELINE_CONTINUE;
707         }
708
709         return ZIO_PIPELINE_STOP;
710 }
711
712 static void
713 vdev_disk_io_done(zio_t *zio)
714 {
715         /*
716          * If the device returned EIO, we revalidate the media.  If it is
717          * determined the media has changed this triggers the asynchronous
718          * removal of the device from the configuration.
719          */
720         if (zio->io_error == EIO) {
721                 vdev_t *v = zio->io_vd;
722                 vdev_disk_t *vd = v->vdev_tsd;
723
724                 if (check_disk_change(vd->vd_bdev)) {
725                         vdev_bdev_invalidate(vd->vd_bdev);
726                         v->vdev_remove_wanted = B_TRUE;
727                         spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
728                 }
729         }
730 }
731
732 static void
733 vdev_disk_hold(vdev_t *vd)
734 {
735         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
736
737         /* We must have a pathname, and it must be absolute. */
738         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
739                 return;
740
741         /*
742          * Only prefetch path and devid info if the device has
743          * never been opened.
744          */
745         if (vd->vdev_tsd != NULL)
746                 return;
747
748         /* XXX: Implement me as a vnode lookup for the device */
749         vd->vdev_name_vp = NULL;
750         vd->vdev_devid_vp = NULL;
751 }
752
753 static void
754 vdev_disk_rele(vdev_t *vd)
755 {
756         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
757
758         /* XXX: Implement me as a vnode rele for the device */
759 }
760
761 vdev_ops_t vdev_disk_ops = {
762         vdev_disk_open,
763         vdev_disk_close,
764         vdev_default_asize,
765         vdev_disk_io_start,
766         vdev_disk_io_done,
767         NULL,
768         vdev_disk_hold,
769         vdev_disk_rele,
770         VDEV_TYPE_DISK,         /* name of this vdev type */
771         B_TRUE                  /* leaf vdev */
772 };
773
774 /*
775  * Given the root disk device devid or pathname, read the label from
776  * the device, and construct a configuration nvlist.
777  */
778 int
779 vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
780 {
781         struct block_device *bdev;
782         vdev_label_t *label;
783         uint64_t s, size;
784         int i;
785
786         bdev = vdev_bdev_open(devpath, vdev_bdev_mode(FREAD), NULL);
787         if (IS_ERR(bdev))
788                 return -PTR_ERR(bdev);
789
790         s = bdev_capacity(bdev);
791         if (s == 0) {
792                 vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
793                 return EIO;
794         }
795
796         size = P2ALIGN_TYPED(s, sizeof(vdev_label_t), uint64_t);
797         label = vmem_alloc(sizeof(vdev_label_t), KM_PUSHPAGE);
798
799         for (i = 0; i < VDEV_LABELS; i++) {
800                 uint64_t offset, state, txg = 0;
801
802                 /* read vdev label */
803                 offset = vdev_label_offset(size, i, 0);
804                 if (vdev_disk_physio(bdev, (caddr_t)label,
805                     VDEV_SKIP_SIZE + VDEV_PHYS_SIZE, offset, READ_SYNC) != 0)
806                         continue;
807
808                 if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
809                     sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
810                         *config = NULL;
811                         continue;
812                 }
813
814                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
815                     &state) != 0 || state >= POOL_STATE_DESTROYED) {
816                         nvlist_free(*config);
817                         *config = NULL;
818                         continue;
819                 }
820
821                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
822                     &txg) != 0 || txg == 0) {
823                         nvlist_free(*config);
824                         *config = NULL;
825                         continue;
826                 }
827
828                 break;
829         }
830
831         vmem_free(label, sizeof(vdev_label_t));
832         vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
833
834         return 0;
835 }
836
837 module_param(zfs_vdev_scheduler, charp, 0644);
838 MODULE_PARM_DESC(zfs_vdev_scheduler, "I/O scheduler");