Linux 2.6.37 compat, WRITE_FLUSH_FUA
[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  * Unfortunately we cannot directly call the elevator_switch() function
116  * because it is not exported from the block layer.  This means we have
117  * to use the sysfs interface and a user space upcall.  Pools will be
118  * automatically imported on module load so we must do this at device
119  * open time from the kernel.
120  */
121 #define SET_SCHEDULER_CMD \
122         "exec 0</dev/null " \
123         "     1>/sys/block/%s/queue/scheduler " \
124         "     2>/dev/null; " \
125         "echo %s"
126
127 static int
128 vdev_elevator_switch(vdev_t *v, char *elevator)
129 {
130         vdev_disk_t *vd = v->vdev_tsd;
131         struct block_device *bdev = vd->vd_bdev;
132         struct request_queue *q = bdev_get_queue(bdev);
133         char *device = bdev->bd_disk->disk_name;
134         char *argv[] = { "/bin/sh", "-c", NULL, NULL };
135         char *envp[] = { NULL };
136         int error;
137
138         /* Skip devices which are not whole disks (partitions) */
139         if (!v->vdev_wholedisk)
140                 return (0);
141
142         /* Skip devices without schedulers (loop, ram, dm, etc) */
143         if (!q->elevator || !blk_queue_stackable(q))
144                 return (0);
145
146         /* Leave existing scheduler when set to "none" */
147         if (!strncmp(elevator, "none", 4) && (strlen(elevator) == 4))
148                 return (0);
149
150         argv[2] = kmem_asprintf(SET_SCHEDULER_CMD, device, elevator);
151         error = call_usermodehelper(argv[0], argv, envp, 1);
152         if (error)
153                 printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
154                        elevator, v->vdev_path, device, error);
155
156         strfree(argv[2]);
157
158         return (error);
159 }
160
161 static int
162 vdev_disk_open(vdev_t *v, uint64_t *psize, uint64_t *ashift)
163 {
164         struct block_device *bdev;
165         vdev_disk_t *vd;
166         int mode, block_size;
167
168         /* Must have a pathname and it must be absolute. */
169         if (v->vdev_path == NULL || v->vdev_path[0] != '/') {
170                 v->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
171                 return EINVAL;
172         }
173
174         vd = kmem_zalloc(sizeof(vdev_disk_t), KM_SLEEP);
175         if (vd == NULL)
176                 return ENOMEM;
177
178         /*
179          * Devices are always opened by the path provided at configuration
180          * time.  This means that if the provided path is a udev by-id path
181          * then drives may be recabled without an issue.  If the provided
182          * path is a udev by-path path then the physical location information
183          * will be preserved.  This can be critical for more complicated
184          * configurations where drives are located in specific physical
185          * locations to maximize the systems tolerence to component failure.
186          * Alternately you can provide your own udev rule to flexibly map
187          * the drives as you see fit.  It is not advised that you use the
188          * /dev/[hd]d devices which may be reorder due to probing order.
189          * Devices in the wrong locations will be detected by the higher
190          * level vdev validation.
191          */
192         mode = spa_mode(v->vdev_spa);
193         bdev = vdev_bdev_open(v->vdev_path, vdev_bdev_mode(mode), vd);
194         if (IS_ERR(bdev)) {
195                 kmem_free(vd, sizeof(vdev_disk_t));
196                 return -PTR_ERR(bdev);
197         }
198
199         v->vdev_tsd = vd;
200         vd->vd_bdev = bdev;
201         block_size =  vdev_bdev_block_size(bdev);
202
203         /* We think the wholedisk property should always be set when this
204          * function is called.  ASSERT here so if any legitimate cases exist
205          * where it's not set, we'll find them during debugging.  If we never
206          * hit the ASSERT, this and the following conditional statement can be
207          * removed. */
208         ASSERT3S(v->vdev_wholedisk, !=, -1ULL);
209
210         /* The wholedisk property was initialized to -1 in vdev_alloc() if it
211          * was unspecified.  In that case, check if this is a whole device.
212          * When bdev->bd_contains == bdev we have a whole device and not simply
213          * a partition. */
214         if (v->vdev_wholedisk == -1ULL)
215                 v->vdev_wholedisk = (bdev->bd_contains == bdev);
216
217         /* Clear the nowritecache bit, causes vdev_reopen() to try again. */
218         v->vdev_nowritecache = B_FALSE;
219
220         /* Physical volume size in bytes */
221         *psize = bdev_capacity(bdev);
222
223         /* Based on the minimum sector size set the block size */
224         *ashift = highbit(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
225
226         /* Try to set the io scheduler elevator algorithm */
227         (void) vdev_elevator_switch(v, zfs_vdev_scheduler);
228
229         return 0;
230 }
231
232 static void
233 vdev_disk_close(vdev_t *v)
234 {
235         vdev_disk_t *vd = v->vdev_tsd;
236
237         if (vd == NULL)
238                 return;
239
240         if (vd->vd_bdev != NULL)
241                 vdev_bdev_close(vd->vd_bdev,
242                                 vdev_bdev_mode(spa_mode(v->vdev_spa)));
243
244         kmem_free(vd, sizeof(vdev_disk_t));
245         v->vdev_tsd = NULL;
246 }
247
248 static dio_request_t *
249 vdev_disk_dio_alloc(int bio_count)
250 {
251         dio_request_t *dr;
252         int i;
253
254         dr = kmem_zalloc(sizeof(dio_request_t) +
255                          sizeof(struct bio *) * bio_count, KM_SLEEP);
256         if (dr) {
257                 init_completion(&dr->dr_comp);
258                 atomic_set(&dr->dr_ref, 0);
259                 dr->dr_bio_count = bio_count;
260                 dr->dr_error = 0;
261
262                 for (i = 0; i < dr->dr_bio_count; i++)
263                         dr->dr_bio[i] = NULL;
264         }
265
266         return dr;
267 }
268
269 static void
270 vdev_disk_dio_free(dio_request_t *dr)
271 {
272         int i;
273
274         for (i = 0; i < dr->dr_bio_count; i++)
275                 if (dr->dr_bio[i])
276                         bio_put(dr->dr_bio[i]);
277
278         kmem_free(dr, sizeof(dio_request_t) +
279                   sizeof(struct bio *) * dr->dr_bio_count);
280 }
281
282 static int
283 vdev_disk_dio_is_sync(dio_request_t *dr)
284 {
285 #ifdef HAVE_BIO_RW_SYNC
286         /* BIO_RW_SYNC preferred interface from 2.6.12-2.6.29 */
287         return (dr->dr_rw & (1 << BIO_RW_SYNC));
288 #else
289 # ifdef HAVE_BIO_RW_SYNCIO
290         /* BIO_RW_SYNCIO preferred interface from 2.6.30-2.6.35 */
291         return (dr->dr_rw & (1 << BIO_RW_SYNCIO));
292 # else
293 #  ifdef HAVE_REQ_SYNC
294         /* REQ_SYNC preferred interface from 2.6.36-2.6.xx */
295         return (dr->dr_rw & REQ_SYNC);
296 #  else
297 #   error "Unable to determine bio sync flag"
298 #  endif /* HAVE_REQ_SYNC */
299 # endif /* HAVE_BIO_RW_SYNC */
300 #endif /* HAVE_BIO_RW_SYNCIO */
301 }
302
303 static void
304 vdev_disk_dio_get(dio_request_t *dr)
305 {
306         atomic_inc(&dr->dr_ref);
307 }
308
309 static int
310 vdev_disk_dio_put(dio_request_t *dr)
311 {
312         int rc = atomic_dec_return(&dr->dr_ref);
313
314         /*
315          * Free the dio_request when the last reference is dropped and
316          * ensure zio_interpret is called only once with the correct zio
317          */
318         if (rc == 0) {
319                 zio_t *zio = dr->dr_zio;
320                 int error = dr->dr_error;
321
322                 vdev_disk_dio_free(dr);
323
324                 if (zio) {
325                         zio->io_delay = jiffies_to_msecs(
326                             jiffies_64 - zio->io_delay);
327                         zio->io_error = error;
328                         ASSERT3S(zio->io_error, >=, 0);
329                         if (zio->io_error)
330                                 vdev_disk_error(zio);
331                         zio_interrupt(zio);
332                 }
333         }
334
335         return rc;
336 }
337
338 BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, size, error)
339 {
340         dio_request_t *dr = bio->bi_private;
341         int rc;
342
343         /* Fatal error but print some useful debugging before asserting */
344         if (dr == NULL)
345                 PANIC("dr == NULL, bio->bi_private == NULL\n"
346                     "bi_next: %p, bi_flags: %lx, bi_rw: %lu, bi_vcnt: %d\n"
347                     "bi_idx: %d, bi_size: %d, bi_end_io: %p, bi_cnt: %d\n",
348                     bio->bi_next, bio->bi_flags, bio->bi_rw, bio->bi_vcnt,
349                     bio->bi_idx, bio->bi_size, bio->bi_end_io,
350                     atomic_read(&bio->bi_cnt));
351
352 #ifndef HAVE_2ARGS_BIO_END_IO_T
353         if (bio->bi_size)
354                 return 1;
355 #endif /* HAVE_2ARGS_BIO_END_IO_T */
356
357         if (error == 0 && !test_bit(BIO_UPTODATE, &bio->bi_flags))
358                 error = -EIO;
359
360         if (dr->dr_error == 0)
361                 dr->dr_error = -error;
362
363         /* Drop reference aquired by __vdev_disk_physio */
364         rc = vdev_disk_dio_put(dr);
365
366         /* Wake up synchronous waiter this is the last outstanding bio */
367         if ((rc == 1) && vdev_disk_dio_is_sync(dr))
368                 complete(&dr->dr_comp);
369
370         BIO_END_IO_RETURN(0);
371 }
372
373 static inline unsigned long
374 bio_nr_pages(void *bio_ptr, unsigned int bio_size)
375 {
376         return ((((unsigned long)bio_ptr + bio_size + PAGE_SIZE - 1) >>
377                 PAGE_SHIFT) - ((unsigned long)bio_ptr >> PAGE_SHIFT));
378 }
379
380 static unsigned int
381 bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
382 {
383         unsigned int offset, size, i;
384         struct page *page;
385
386         offset = offset_in_page(bio_ptr);
387         for (i = 0; i < bio->bi_max_vecs; i++) {
388                 size = PAGE_SIZE - offset;
389
390                 if (bio_size <= 0)
391                         break;
392
393                 if (size > bio_size)
394                         size = bio_size;
395
396                 if (kmem_virt(bio_ptr))
397                         page = vmalloc_to_page(bio_ptr);
398                 else
399                         page = virt_to_page(bio_ptr);
400
401                 if (bio_add_page(bio, page, size, offset) != size)
402                         break;
403
404                 bio_ptr  += size;
405                 bio_size -= size;
406                 offset = 0;
407         }
408
409         return bio_size;
410 }
411
412 static int
413 __vdev_disk_physio(struct block_device *bdev, zio_t *zio, caddr_t kbuf_ptr,
414                    size_t kbuf_size, uint64_t kbuf_offset, int flags)
415 {
416         dio_request_t *dr;
417         caddr_t bio_ptr;
418         uint64_t bio_offset;
419         int bio_size, bio_count = 16;
420         int i = 0, error = 0;
421
422         ASSERT3U(kbuf_offset + kbuf_size, <=, bdev->bd_inode->i_size);
423
424 retry:
425         dr = vdev_disk_dio_alloc(bio_count);
426         if (dr == NULL)
427                 return ENOMEM;
428
429         if (zio && !(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
430                         bio_set_flags_failfast(bdev, &flags);
431
432         dr->dr_zio = zio;
433         dr->dr_rw = flags;
434
435         /*
436          * When the IO size exceeds the maximum bio size for the request
437          * queue we are forced to break the IO in multiple bio's and wait
438          * for them all to complete.  Ideally, all pool users will set
439          * their volume block size to match the maximum request size and
440          * the common case will be one bio per vdev IO request.
441          */
442         bio_ptr    = kbuf_ptr;
443         bio_offset = kbuf_offset;
444         bio_size   = kbuf_size;
445         for (i = 0; i <= dr->dr_bio_count; i++) {
446
447                 /* Finished constructing bio's for given buffer */
448                 if (bio_size <= 0)
449                         break;
450
451                 /*
452                  * By default only 'bio_count' bio's per dio are allowed.
453                  * However, if we find ourselves in a situation where more
454                  * are needed we allocate a larger dio and warn the user.
455                  */
456                 if (dr->dr_bio_count == i) {
457                         vdev_disk_dio_free(dr);
458                         bio_count *= 2;
459                         printk("WARNING: Resized bio's/dio to %d\n",bio_count);
460                         goto retry;
461                 }
462
463                 dr->dr_bio[i] = bio_alloc(GFP_NOIO,
464                                           bio_nr_pages(bio_ptr, bio_size));
465                 if (dr->dr_bio[i] == NULL) {
466                         vdev_disk_dio_free(dr);
467                         return ENOMEM;
468                 }
469
470                 /* Matching put called by vdev_disk_physio_completion */
471                 vdev_disk_dio_get(dr);
472
473                 dr->dr_bio[i]->bi_bdev = bdev;
474                 dr->dr_bio[i]->bi_sector = bio_offset >> 9;
475                 dr->dr_bio[i]->bi_rw = dr->dr_rw;
476                 dr->dr_bio[i]->bi_end_io = vdev_disk_physio_completion;
477                 dr->dr_bio[i]->bi_private = dr;
478
479                 /* Remaining size is returned to become the new size */
480                 bio_size = bio_map(dr->dr_bio[i], bio_ptr, bio_size);
481
482                 /* Advance in buffer and construct another bio if needed */
483                 bio_ptr    += dr->dr_bio[i]->bi_size;
484                 bio_offset += dr->dr_bio[i]->bi_size;
485         }
486
487         /* Extra reference to protect dio_request during submit_bio */
488         vdev_disk_dio_get(dr);
489         if (zio)
490                 zio->io_delay = jiffies_64;
491
492         /* Submit all bio's associated with this dio */
493         for (i = 0; i < dr->dr_bio_count; i++)
494                 if (dr->dr_bio[i])
495                         submit_bio(dr->dr_rw, dr->dr_bio[i]);
496
497         /*
498          * On synchronous blocking requests we wait for all bio the completion
499          * callbacks to run.  We will be woken when the last callback runs
500          * for this dio.  We are responsible for putting the last dio_request
501          * reference will in turn put back the last bio references.  The
502          * only synchronous consumer is vdev_disk_read_rootlabel() all other
503          * IO originating from vdev_disk_io_start() is asynchronous.
504          */
505         if (vdev_disk_dio_is_sync(dr)) {
506                 wait_for_completion(&dr->dr_comp);
507                 error = dr->dr_error;
508                 ASSERT3S(atomic_read(&dr->dr_ref), ==, 1);
509         }
510
511         (void)vdev_disk_dio_put(dr);
512
513         return error;
514 }
515
516 int
517 vdev_disk_physio(struct block_device *bdev, caddr_t kbuf,
518                  size_t size, uint64_t offset, int flags)
519 {
520         bio_set_flags_failfast(bdev, &flags);
521         return __vdev_disk_physio(bdev, NULL, kbuf, size, offset, flags);
522 }
523
524 /* 2.6.24 API change */
525 #ifdef HAVE_BIO_EMPTY_BARRIER
526 BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, size, rc)
527 {
528         zio_t *zio = bio->bi_private;
529
530         zio->io_delay = jiffies_to_msecs(jiffies_64 - zio->io_delay);
531         zio->io_error = -rc;
532         if (rc && (rc == -EOPNOTSUPP))
533                 zio->io_vd->vdev_nowritecache = B_TRUE;
534
535         bio_put(bio);
536         ASSERT3S(zio->io_error, >=, 0);
537         if (zio->io_error)
538                 vdev_disk_error(zio);
539         zio_interrupt(zio);
540
541         BIO_END_IO_RETURN(0);
542 }
543
544 static int
545 vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
546 {
547         struct request_queue *q;
548         struct bio *bio;
549
550         q = bdev_get_queue(bdev);
551         if (!q)
552                 return ENXIO;
553
554         bio = bio_alloc(GFP_KERNEL, 0);
555         if (!bio)
556                 return ENOMEM;
557
558         bio->bi_end_io = vdev_disk_io_flush_completion;
559         bio->bi_private = zio;
560         bio->bi_bdev = bdev;
561         zio->io_delay = jiffies_64;
562         submit_bio(VDEV_WRITE_FLUSH_FUA, bio);
563
564         return 0;
565 }
566 #else
567 static int
568 vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
569 {
570         return ENOTSUP;
571 }
572 #endif /* HAVE_BIO_EMPTY_BARRIER */
573
574 static int
575 vdev_disk_io_start(zio_t *zio)
576 {
577         vdev_t *v = zio->io_vd;
578         vdev_disk_t *vd = v->vdev_tsd;
579         int flags, error;
580
581         switch (zio->io_type) {
582         case ZIO_TYPE_IOCTL:
583
584                 if (!vdev_readable(v)) {
585                         zio->io_error = ENXIO;
586                         return ZIO_PIPELINE_CONTINUE;
587                 }
588
589                 switch (zio->io_cmd) {
590                 case DKIOCFLUSHWRITECACHE:
591
592                         if (zfs_nocacheflush)
593                                 break;
594
595                         if (v->vdev_nowritecache) {
596                                 zio->io_error = ENOTSUP;
597                                 break;
598                         }
599
600                         error = vdev_disk_io_flush(vd->vd_bdev, zio);
601                         if (error == 0)
602                                 return ZIO_PIPELINE_STOP;
603
604                         zio->io_error = error;
605                         if (error == ENOTSUP)
606                                 v->vdev_nowritecache = B_TRUE;
607
608                         break;
609
610                 default:
611                         zio->io_error = ENOTSUP;
612                 }
613
614                 return ZIO_PIPELINE_CONTINUE;
615
616         case ZIO_TYPE_WRITE:
617                 flags = WRITE;
618                 break;
619
620         case ZIO_TYPE_READ:
621                 flags = READ;
622                 break;
623
624         default:
625                 zio->io_error = ENOTSUP;
626                 return ZIO_PIPELINE_CONTINUE;
627         }
628
629         error = __vdev_disk_physio(vd->vd_bdev, zio, zio->io_data,
630                                    zio->io_size, zio->io_offset, flags);
631         if (error) {
632                 zio->io_error = error;
633                 return ZIO_PIPELINE_CONTINUE;
634         }
635
636         return ZIO_PIPELINE_STOP;
637 }
638
639 static void
640 vdev_disk_io_done(zio_t *zio)
641 {
642         /*
643          * If the device returned EIO, we revalidate the media.  If it is
644          * determined the media has changed this triggers the asynchronous
645          * removal of the device from the configuration.
646          */
647         if (zio->io_error == EIO) {
648                 vdev_t *v = zio->io_vd;
649                 vdev_disk_t *vd = v->vdev_tsd;
650
651                 if (check_disk_change(vd->vd_bdev)) {
652                         vdev_bdev_invalidate(vd->vd_bdev);
653                         v->vdev_remove_wanted = B_TRUE;
654                         spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
655                 }
656         }
657 }
658
659 static void
660 vdev_disk_hold(vdev_t *vd)
661 {
662         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
663
664         /* We must have a pathname, and it must be absolute. */
665         if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
666                 return;
667
668         /*
669          * Only prefetch path and devid info if the device has
670          * never been opened.
671          */
672         if (vd->vdev_tsd != NULL)
673                 return;
674
675         /* XXX: Implement me as a vnode lookup for the device */
676         vd->vdev_name_vp = NULL;
677         vd->vdev_devid_vp = NULL;
678 }
679
680 static void
681 vdev_disk_rele(vdev_t *vd)
682 {
683         ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
684
685         /* XXX: Implement me as a vnode rele for the device */
686 }
687
688 vdev_ops_t vdev_disk_ops = {
689         vdev_disk_open,
690         vdev_disk_close,
691         vdev_default_asize,
692         vdev_disk_io_start,
693         vdev_disk_io_done,
694         NULL,
695         vdev_disk_hold,
696         vdev_disk_rele,
697         VDEV_TYPE_DISK,         /* name of this vdev type */
698         B_TRUE                  /* leaf vdev */
699 };
700
701 /*
702  * Given the root disk device devid or pathname, read the label from
703  * the device, and construct a configuration nvlist.
704  */
705 int
706 vdev_disk_read_rootlabel(char *devpath, char *devid, nvlist_t **config)
707 {
708         struct block_device *bdev;
709         vdev_label_t *label;
710         uint64_t s, size;
711         int i;
712
713         bdev = vdev_bdev_open(devpath, vdev_bdev_mode(FREAD), NULL);
714         if (IS_ERR(bdev))
715                 return -PTR_ERR(bdev);
716
717         s = bdev_capacity(bdev);
718         if (s == 0) {
719                 vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
720                 return EIO;
721         }
722
723         size = P2ALIGN_TYPED(s, sizeof(vdev_label_t), uint64_t);
724         label = vmem_alloc(sizeof(vdev_label_t), KM_SLEEP);
725
726         for (i = 0; i < VDEV_LABELS; i++) {
727                 uint64_t offset, state, txg = 0;
728
729                 /* read vdev label */
730                 offset = vdev_label_offset(size, i, 0);
731                 if (vdev_disk_physio(bdev, (caddr_t)label,
732                     VDEV_SKIP_SIZE + VDEV_PHYS_SIZE, offset, READ_SYNC) != 0)
733                         continue;
734
735                 if (nvlist_unpack(label->vl_vdev_phys.vp_nvlist,
736                     sizeof (label->vl_vdev_phys.vp_nvlist), config, 0) != 0) {
737                         *config = NULL;
738                         continue;
739                 }
740
741                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_STATE,
742                     &state) != 0 || state >= POOL_STATE_DESTROYED) {
743                         nvlist_free(*config);
744                         *config = NULL;
745                         continue;
746                 }
747
748                 if (nvlist_lookup_uint64(*config, ZPOOL_CONFIG_POOL_TXG,
749                     &txg) != 0 || txg == 0) {
750                         nvlist_free(*config);
751                         *config = NULL;
752                         continue;
753                 }
754
755                 break;
756         }
757
758         vmem_free(label, sizeof(vdev_label_t));
759         vdev_bdev_close(bdev, vdev_bdev_mode(FREAD));
760
761         return 0;
762 }
763
764 module_param(zfs_vdev_scheduler, charp, 0644);
765 MODULE_PARM_DESC(zfs_vdev_scheduler, "I/O scheduler");