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