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