]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/vdev_disk.c
Don't persist temporary pool name on devices
[mirror_zfs.git] / module / zfs / vdev_disk.c
CommitLineData
60101509
BB
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.
26ef0cc7 26 * Copyright (c) 2012, 2015 by Delphix. All rights reserved.
60101509
BB
27 */
28
29#include <sys/zfs_context.h>
30#include <sys/spa.h>
31#include <sys/vdev_disk.h>
32#include <sys/vdev_impl.h>
a6255b7f 33#include <sys/abd.h>
60101509
BB
34#include <sys/fs/zfs.h>
35#include <sys/zio.h>
36#include <sys/sunldi.h>
37
6839eed2 38char *zfs_vdev_scheduler = VDEV_SCHEDULER;
8128bd89 39static void *zfs_vdev_holder = VDEV_HOLDER;
6839eed2 40
60101509
BB
41/*
42 * Virtual device vector for disks.
43 */
44typedef struct dio_request {
60101509 45 zio_t *dr_zio; /* Parent ZIO */
aa159afb 46 atomic_t dr_ref; /* References */
60101509
BB
47 int dr_error; /* Bio error */
48 int dr_bio_count; /* Count of bio's */
d1d7e268 49 struct bio *dr_bio[0]; /* Attached bio's */
60101509
BB
50} dio_request_t;
51
52
53#ifdef HAVE_OPEN_BDEV_EXCLUSIVE
54static fmode_t
55vdev_bdev_mode(int smode)
56{
57 fmode_t mode = 0;
58
59 ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
60
61 if (smode & FREAD)
62 mode |= FMODE_READ;
63
64 if (smode & FWRITE)
65 mode |= FMODE_WRITE;
66
d1d7e268 67 return (mode);
60101509
BB
68}
69#else
70static int
71vdev_bdev_mode(int smode)
72{
73 int mode = 0;
74
75 ASSERT3S(smode & (FREAD | FWRITE), !=, 0);
76
77 if ((smode & FREAD) && !(smode & FWRITE))
78 mode = MS_RDONLY;
79
d1d7e268 80 return (mode);
60101509
BB
81}
82#endif /* HAVE_OPEN_BDEV_EXCLUSIVE */
83
84static uint64_t
85bdev_capacity(struct block_device *bdev)
86{
87 struct hd_struct *part = bdev->bd_part;
88
89 /* The partition capacity referenced by the block device */
90 if (part)
f74fae8b 91 return (part->nr_sects << 9);
60101509
BB
92
93 /* Otherwise assume the full device capacity */
f74fae8b 94 return (get_capacity(bdev->bd_disk) << 9);
60101509
BB
95}
96
d148e951
BB
97static void
98vdev_disk_error(zio_t *zio)
99{
100#ifdef ZFS_DEBUG
a69052be 101 printk("ZFS: zio error=%d type=%d offset=%llu size=%llu "
193a37cb 102 "flags=%x\n", zio->io_error, zio->io_type,
d148e951 103 (u_longlong_t)zio->io_offset, (u_longlong_t)zio->io_size,
193a37cb 104 zio->io_flags);
d148e951
BB
105#endif
106}
107
6839eed2
BB
108/*
109 * Use the Linux 'noop' elevator for zfs managed block devices. This
110 * strikes the ideal balance by allowing the zfs elevator to do all
111 * request ordering and prioritization. While allowing the Linux
112 * elevator to do the maximum front/back merging allowed by the
113 * physical device. This yields the largest possible requests for
114 * the device with the lowest total overhead.
6839eed2
BB
115 */
116static int
fdcd952b 117vdev_elevator_switch(vdev_t *v, char *elevator)
6839eed2 118{
fdcd952b
BB
119 vdev_disk_t *vd = v->vdev_tsd;
120 struct block_device *bdev = vd->vd_bdev;
121 struct request_queue *q = bdev_get_queue(bdev);
122 char *device = bdev->bd_disk->disk_name;
e2448b0e 123 int error;
fdcd952b 124
84daadde
PS
125 /*
126 * Skip devices which are not whole disks (partitions).
127 * Device-mapper devices are excepted since they may be whole
128 * disks despite the vdev_wholedisk flag, in which case we can
129 * and should switch the elevator. If the device-mapper device
130 * does not have an elevator (i.e. dm-raid, dm-crypt, etc.) the
131 * "Skip devices without schedulers" check below will fail.
132 */
133 if (!v->vdev_wholedisk && strncmp(device, "dm-", 3) != 0)
04516a45
BB
134 return (0);
135
fdcd952b
BB
136 /* Skip devices without schedulers (loop, ram, dm, etc) */
137 if (!q->elevator || !blk_queue_stackable(q))
138 return (0);
6839eed2 139
fdcd952b 140 /* Leave existing scheduler when set to "none" */
4903926f 141 if ((strncmp(elevator, "none", 4) == 0) && (strlen(elevator) == 4))
6839eed2
BB
142 return (0);
143
6d1d976b
BB
144#ifdef HAVE_ELEVATOR_CHANGE
145 error = elevator_change(q, elevator);
146#else
d1d7e268
MK
147 /*
148 * For pre-2.6.36 kernels elevator_change() is not available.
6d1d976b
BB
149 * Therefore we fall back to using a usermodehelper to echo the
150 * elevator into sysfs; This requires /bin/echo and sysfs to be
151 * mounted which may not be true early in the boot process.
152 */
d1d7e268 153#define SET_SCHEDULER_CMD \
6d1d976b
BB
154 "exec 0</dev/null " \
155 " 1>/sys/block/%s/queue/scheduler " \
156 " 2>/dev/null; " \
157 "echo %s"
158
159 {
160 char *argv[] = { "/bin/sh", "-c", NULL, NULL };
161 char *envp[] = { NULL };
162
163 argv[2] = kmem_asprintf(SET_SCHEDULER_CMD, device, elevator);
761394b3 164 error = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
6d1d976b
BB
165 strfree(argv[2]);
166 }
167#endif /* HAVE_ELEVATOR_CHANGE */
6839eed2
BB
168 if (error)
169 printk("ZFS: Unable to set \"%s\" scheduler for %s (%s): %d\n",
d1d7e268 170 elevator, v->vdev_path, device, error);
6839eed2
BB
171
172 return (error);
173}
174
b5a28807
ED
175/*
176 * Expanding a whole disk vdev involves invoking BLKRRPART on the
177 * whole disk device. This poses a problem, because BLKRRPART will
178 * return EBUSY if one of the disk's partitions is open. That's why
179 * we have to do it here, just before opening the data partition.
180 * Unfortunately, BLKRRPART works by dropping all partitions and
181 * recreating them, which means that for a short time window, all
182 * /dev/sdxN device files disappear (until udev recreates them).
183 * This means two things:
184 * - When we open the data partition just after a BLKRRPART, we
185 * can't do it using the normal device file path because of the
186 * obvious race condition with udev. Instead, we use reliable
187 * kernel APIs to get a handle to the new partition device from
188 * the whole disk device.
189 * - Because vdev_disk_open() initially needs to find the device
190 * using its path, multiple vdev_disk_open() invocations in
191 * short succession on the same disk with BLKRRPARTs in the
192 * middle have a high probability of failure (because of the
193 * race condition with udev). A typical situation where this
194 * might happen is when the zpool userspace tool does a
195 * TRYIMPORT immediately followed by an IMPORT. For this
196 * reason, we only invoke BLKRRPART in the module when strictly
197 * necessary (zpool online -e case), and rely on userspace to
198 * do it when possible.
199 */
200static struct block_device *
201vdev_disk_rrpart(const char *path, int mode, vdev_disk_t *vd)
202{
203#if defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK)
204 struct block_device *bdev, *result = ERR_PTR(-ENXIO);
205 struct gendisk *disk;
206 int error, partno;
207
8128bd89 208 bdev = vdev_bdev_open(path, vdev_bdev_mode(mode), zfs_vdev_holder);
b5a28807 209 if (IS_ERR(bdev))
d1d7e268 210 return (bdev);
b5a28807
ED
211
212 disk = get_gendisk(bdev->bd_dev, &partno);
213 vdev_bdev_close(bdev, vdev_bdev_mode(mode));
214
215 if (disk) {
216 bdev = bdget(disk_devt(disk));
217 if (bdev) {
218 error = blkdev_get(bdev, vdev_bdev_mode(mode), vd);
219 if (error == 0)
220 error = ioctl_by_bdev(bdev, BLKRRPART, 0);
221 vdev_bdev_close(bdev, vdev_bdev_mode(mode));
222 }
223
224 bdev = bdget_disk(disk, partno);
225 if (bdev) {
226 error = blkdev_get(bdev,
227 vdev_bdev_mode(mode) | FMODE_EXCL, vd);
228 if (error == 0)
229 result = bdev;
230 }
231 put_disk(disk);
232 }
233
d1d7e268 234 return (result);
b5a28807 235#else
d1d7e268 236 return (ERR_PTR(-EOPNOTSUPP));
b5a28807
ED
237#endif /* defined(HAVE_3ARG_BLKDEV_GET) && defined(HAVE_GET_GENDISK) */
238}
239
60101509 240static int
1bd201e7
CS
241vdev_disk_open(vdev_t *v, uint64_t *psize, uint64_t *max_psize,
242 uint64_t *ashift)
60101509 243{
b5a28807 244 struct block_device *bdev = ERR_PTR(-ENXIO);
60101509 245 vdev_disk_t *vd;
2d82ea8b 246 int count = 0, mode, block_size;
60101509
BB
247
248 /* Must have a pathname and it must be absolute. */
249 if (v->vdev_path == NULL || v->vdev_path[0] != '/') {
250 v->vdev_stat.vs_aux = VDEV_AUX_BAD_LABEL;
2d82ea8b 251 return (SET_ERROR(EINVAL));
60101509
BB
252 }
253
0d8103d9
BB
254 /*
255 * Reopen the device if it's not currently open. Otherwise,
256 * just update the physical size of the device.
257 */
258 if (v->vdev_tsd != NULL) {
259 ASSERT(v->vdev_reopening);
260 vd = v->vdev_tsd;
261 goto skip_open;
262 }
263
79c76d5b 264 vd = kmem_zalloc(sizeof (vdev_disk_t), KM_SLEEP);
60101509 265 if (vd == NULL)
2d82ea8b 266 return (SET_ERROR(ENOMEM));
60101509
BB
267
268 /*
269 * Devices are always opened by the path provided at configuration
270 * time. This means that if the provided path is a udev by-id path
271 * then drives may be recabled without an issue. If the provided
4e95cc99 272 * path is a udev by-path path, then the physical location information
60101509
BB
273 * will be preserved. This can be critical for more complicated
274 * configurations where drives are located in specific physical
275 * locations to maximize the systems tolerence to component failure.
4e95cc99 276 * Alternatively, you can provide your own udev rule to flexibly map
60101509 277 * the drives as you see fit. It is not advised that you use the
4e95cc99 278 * /dev/[hd]d devices which may be reordered due to probing order.
60101509
BB
279 * Devices in the wrong locations will be detected by the higher
280 * level vdev validation.
2d82ea8b
BB
281 *
282 * The specified paths may be briefly removed and recreated in
283 * response to udev events. This should be exceptionally unlikely
284 * because the zpool command makes every effort to verify these paths
285 * have already settled prior to reaching this point. Therefore,
286 * a ENOENT failure at this point is highly likely to be transient
287 * and it is reasonable to sleep and retry before giving up. In
288 * practice delays have been observed to be on the order of 100ms.
60101509
BB
289 */
290 mode = spa_mode(v->vdev_spa);
b5a28807
ED
291 if (v->vdev_wholedisk && v->vdev_expanding)
292 bdev = vdev_disk_rrpart(v->vdev_path, mode, vd);
2d82ea8b
BB
293
294 while (IS_ERR(bdev) && count < 50) {
8128bd89
BB
295 bdev = vdev_bdev_open(v->vdev_path,
296 vdev_bdev_mode(mode), zfs_vdev_holder);
2d82ea8b
BB
297 if (unlikely(PTR_ERR(bdev) == -ENOENT)) {
298 msleep(10);
299 count++;
300 } else if (IS_ERR(bdev)) {
301 break;
302 }
303 }
304
60101509 305 if (IS_ERR(bdev)) {
2d82ea8b
BB
306 dprintf("failed open v->vdev_path=%s, error=%d count=%d\n",
307 v->vdev_path, -PTR_ERR(bdev), count);
d1d7e268 308 kmem_free(vd, sizeof (vdev_disk_t));
2d82ea8b 309 return (SET_ERROR(-PTR_ERR(bdev)));
60101509
BB
310 }
311
312 v->vdev_tsd = vd;
313 vd->vd_bdev = bdev;
0d8103d9
BB
314
315skip_open:
316 /* Determine the physical block size */
317 block_size = vdev_bdev_block_size(vd->vd_bdev);
60101509 318
60101509
BB
319 /* Clear the nowritecache bit, causes vdev_reopen() to try again. */
320 v->vdev_nowritecache = B_FALSE;
321
fb40095f
RY
322 /* Inform the ZIO pipeline that we are non-rotational */
323 v->vdev_nonrot = blk_queue_nonrot(bdev_get_queue(vd->vd_bdev));
324
60101509 325 /* Physical volume size in bytes */
0d8103d9 326 *psize = bdev_capacity(vd->vd_bdev);
60101509 327
1bd201e7
CS
328 /* TODO: report possible expansion size */
329 *max_psize = *psize;
330
60101509 331 /* Based on the minimum sector size set the block size */
9bd274dd 332 *ashift = highbit64(MAX(block_size, SPA_MINBLOCKSIZE)) - 1;
60101509 333
6839eed2 334 /* Try to set the io scheduler elevator algorithm */
fdcd952b 335 (void) vdev_elevator_switch(v, zfs_vdev_scheduler);
6839eed2 336
d1d7e268 337 return (0);
60101509
BB
338}
339
340static void
341vdev_disk_close(vdev_t *v)
342{
343 vdev_disk_t *vd = v->vdev_tsd;
344
0d8103d9 345 if (v->vdev_reopening || vd == NULL)
60101509
BB
346 return;
347
348 if (vd->vd_bdev != NULL)
349 vdev_bdev_close(vd->vd_bdev,
d1d7e268 350 vdev_bdev_mode(spa_mode(v->vdev_spa)));
60101509 351
d1d7e268 352 kmem_free(vd, sizeof (vdev_disk_t));
60101509
BB
353 v->vdev_tsd = NULL;
354}
355
356static dio_request_t *
357vdev_disk_dio_alloc(int bio_count)
358{
359 dio_request_t *dr;
360 int i;
361
d1d7e268 362 dr = kmem_zalloc(sizeof (dio_request_t) +
79c76d5b 363 sizeof (struct bio *) * bio_count, KM_SLEEP);
60101509 364 if (dr) {
60101509
BB
365 atomic_set(&dr->dr_ref, 0);
366 dr->dr_bio_count = bio_count;
367 dr->dr_error = 0;
368
369 for (i = 0; i < dr->dr_bio_count; i++)
370 dr->dr_bio[i] = NULL;
371 }
372
d1d7e268 373 return (dr);
60101509
BB
374}
375
376static void
377vdev_disk_dio_free(dio_request_t *dr)
378{
379 int i;
380
381 for (i = 0; i < dr->dr_bio_count; i++)
382 if (dr->dr_bio[i])
383 bio_put(dr->dr_bio[i]);
384
d1d7e268
MK
385 kmem_free(dr, sizeof (dio_request_t) +
386 sizeof (struct bio *) * dr->dr_bio_count);
60101509
BB
387}
388
389static void
390vdev_disk_dio_get(dio_request_t *dr)
391{
392 atomic_inc(&dr->dr_ref);
393}
394
395static int
396vdev_disk_dio_put(dio_request_t *dr)
397{
398 int rc = atomic_dec_return(&dr->dr_ref);
399
400 /*
401 * Free the dio_request when the last reference is dropped and
402 * ensure zio_interpret is called only once with the correct zio
403 */
404 if (rc == 0) {
405 zio_t *zio = dr->dr_zio;
406 int error = dr->dr_error;
407
408 vdev_disk_dio_free(dr);
409
410 if (zio) {
411 zio->io_error = error;
d148e951
BB
412 ASSERT3S(zio->io_error, >=, 0);
413 if (zio->io_error)
414 vdev_disk_error(zio);
a6255b7f 415
26ef0cc7 416 zio_delay_interrupt(zio);
60101509
BB
417 }
418 }
419
d1d7e268 420 return (rc);
60101509
BB
421}
422
784a7fe5 423BIO_END_IO_PROTO(vdev_disk_physio_completion, bio, error)
60101509
BB
424{
425 dio_request_t *dr = bio->bi_private;
426 int rc;
427
784a7fe5
LW
428 if (dr->dr_error == 0) {
429#ifdef HAVE_1ARG_BIO_END_IO_T
430 dr->dr_error = -(bio->bi_error);
431#else
432 if (error)
433 dr->dr_error = -(error);
434 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
435 dr->dr_error = EIO;
436#endif
437 }
60101509 438
b0be93e8 439 /* Drop reference acquired by __vdev_disk_physio */
60101509 440 rc = vdev_disk_dio_put(dr);
60101509
BB
441}
442
60101509
BB
443static unsigned int
444bio_map(struct bio *bio, void *bio_ptr, unsigned int bio_size)
445{
446 unsigned int offset, size, i;
447 struct page *page;
448
449 offset = offset_in_page(bio_ptr);
450 for (i = 0; i < bio->bi_max_vecs; i++) {
451 size = PAGE_SIZE - offset;
452
453 if (bio_size <= 0)
454 break;
455
456 if (size > bio_size)
457 size = bio_size;
458
71f8548e 459 if (is_vmalloc_addr(bio_ptr))
60101509
BB
460 page = vmalloc_to_page(bio_ptr);
461 else
462 page = virt_to_page(bio_ptr);
463
17584980
CC
464 /*
465 * Some network related block device uses tcp_sendpage, which
466 * doesn't behave well when using 0-count page, this is a
467 * safety net to catch them.
468 */
469 ASSERT3S(page_count(page), >, 0);
470
60101509
BB
471 if (bio_add_page(bio, page, size, offset) != size)
472 break;
473
474 bio_ptr += size;
475 bio_size -= size;
476 offset = 0;
477 }
478
d1d7e268 479 return (bio_size);
60101509
BB
480}
481
b0be93e8
IH
482static unsigned int
483bio_map_abd_off(struct bio *bio, abd_t *abd, unsigned int size, size_t off)
484{
485 if (abd_is_linear(abd))
486 return (bio_map(bio, ((char *)abd_to_buf(abd)) + off, size));
487
488 return (abd_scatter_bio_map_off(bio, abd, size, off));
489}
490
3b86aeb2
CC
491#ifndef bio_set_op_attrs
492#define bio_set_op_attrs(bio, rw, flags) \
493 do { (bio)->bi_rw |= (rw)|(flags); } while (0)
494#endif
495
bbb1b6ce 496static inline void
3b86aeb2 497vdev_submit_bio_impl(struct bio *bio)
bbb1b6ce
BB
498{
499#ifdef HAVE_1ARG_SUBMIT_BIO
bbb1b6ce
BB
500 submit_bio(bio);
501#else
3b86aeb2 502 submit_bio(0, bio);
bbb1b6ce
BB
503#endif
504}
505
37f9dac5 506static inline void
3b86aeb2 507vdev_submit_bio(struct bio *bio)
37f9dac5
RY
508{
509#ifdef HAVE_CURRENT_BIO_TAIL
510 struct bio **bio_tail = current->bio_tail;
511 current->bio_tail = NULL;
3b86aeb2 512 vdev_submit_bio_impl(bio);
37f9dac5
RY
513 current->bio_tail = bio_tail;
514#else
515 struct bio_list *bio_list = current->bio_list;
516 current->bio_list = NULL;
3b86aeb2 517 vdev_submit_bio_impl(bio);
37f9dac5
RY
518 current->bio_list = bio_list;
519#endif
520}
521
60101509 522static int
b0be93e8
IH
523__vdev_disk_physio(struct block_device *bdev, zio_t *zio,
524 size_t io_size, uint64_t io_offset, int rw, int flags)
60101509 525{
d1d7e268 526 dio_request_t *dr;
b0be93e8 527 uint64_t abd_offset;
60101509 528 uint64_t bio_offset;
3b86aeb2 529 int bio_size, bio_count = 16;
f74fae8b 530 int i = 0, error = 0;
e8ac4557
IH
531#if defined(HAVE_BLK_QUEUE_HAVE_BLK_PLUG)
532 struct blk_plug plug;
533#endif
60101509 534
b0be93e8
IH
535 ASSERT(zio != NULL);
536 ASSERT3U(io_offset + io_size, <=, bdev->bd_inode->i_size);
e06be586 537
60101509
BB
538retry:
539 dr = vdev_disk_dio_alloc(bio_count);
540 if (dr == NULL)
d1d7e268 541 return (ENOMEM);
60101509 542
2959d94a 543 if (zio && !(zio->io_flags & (ZIO_FLAG_IO_RETRY | ZIO_FLAG_TRYHARD)))
29b763cd 544 bio_set_flags_failfast(bdev, &flags);
2959d94a 545
60101509 546 dr->dr_zio = zio;
60101509 547
60101509
BB
548 /*
549 * When the IO size exceeds the maximum bio size for the request
550 * queue we are forced to break the IO in multiple bio's and wait
551 * for them all to complete. Ideally, all pool users will set
552 * their volume block size to match the maximum request size and
553 * the common case will be one bio per vdev IO request.
554 */
a6255b7f 555
b0be93e8
IH
556 abd_offset = 0;
557 bio_offset = io_offset;
558 bio_size = io_size;
60101509
BB
559 for (i = 0; i <= dr->dr_bio_count; i++) {
560
561 /* Finished constructing bio's for given buffer */
562 if (bio_size <= 0)
563 break;
564
565 /*
566 * By default only 'bio_count' bio's per dio are allowed.
567 * However, if we find ourselves in a situation where more
568 * are needed we allocate a larger dio and warn the user.
569 */
570 if (dr->dr_bio_count == i) {
571 vdev_disk_dio_free(dr);
572 bio_count *= 2;
60101509
BB
573 goto retry;
574 }
575
29b763cd 576 /* bio_alloc() with __GFP_WAIT never returns NULL */
f1512ee6 577 dr->dr_bio[i] = bio_alloc(GFP_NOIO,
b0be93e8 578 MIN(abd_nr_pages_off(zio->io_abd, bio_size, abd_offset),
02730c33 579 BIO_MAX_PAGES));
29b763cd 580 if (unlikely(dr->dr_bio[i] == NULL)) {
60101509 581 vdev_disk_dio_free(dr);
d1d7e268 582 return (ENOMEM);
60101509
BB
583 }
584
585 /* Matching put called by vdev_disk_physio_completion */
586 vdev_disk_dio_get(dr);
587
588 dr->dr_bio[i]->bi_bdev = bdev;
d4541210 589 BIO_BI_SECTOR(dr->dr_bio[i]) = bio_offset >> 9;
60101509
BB
590 dr->dr_bio[i]->bi_end_io = vdev_disk_physio_completion;
591 dr->dr_bio[i]->bi_private = dr;
3b86aeb2 592 bio_set_op_attrs(dr->dr_bio[i], rw, flags);
60101509
BB
593
594 /* Remaining size is returned to become the new size */
b0be93e8 595 bio_size = bio_map_abd_off(dr->dr_bio[i], zio->io_abd,
02730c33 596 bio_size, abd_offset);
60101509
BB
597
598 /* Advance in buffer and construct another bio if needed */
b0be93e8 599 abd_offset += BIO_BI_SIZE(dr->dr_bio[i]);
d4541210 600 bio_offset += BIO_BI_SIZE(dr->dr_bio[i]);
60101509
BB
601 }
602
37f9dac5 603 /* Extra reference to protect dio_request during vdev_submit_bio */
60101509
BB
604 vdev_disk_dio_get(dr);
605
e8ac4557
IH
606#if defined(HAVE_BLK_QUEUE_HAVE_BLK_PLUG)
607 if (dr->dr_bio_count > 1)
608 blk_start_plug(&plug);
609#endif
610
60101509
BB
611 /* Submit all bio's associated with this dio */
612 for (i = 0; i < dr->dr_bio_count; i++)
613 if (dr->dr_bio[i])
3b86aeb2 614 vdev_submit_bio(dr->dr_bio[i]);
60101509 615
e8ac4557
IH
616#if defined(HAVE_BLK_QUEUE_HAVE_BLK_PLUG)
617 if (dr->dr_bio_count > 1)
618 blk_finish_plug(&plug);
619#endif
620
d1d7e268 621 (void) vdev_disk_dio_put(dr);
60101509 622
d1d7e268 623 return (error);
60101509
BB
624}
625
784a7fe5 626BIO_END_IO_PROTO(vdev_disk_io_flush_completion, bio, rc)
60101509
BB
627{
628 zio_t *zio = bio->bi_private;
784a7fe5
LW
629#ifdef HAVE_1ARG_BIO_END_IO_T
630 int rc = bio->bi_error;
631#endif
60101509
BB
632
633 zio->io_error = -rc;
634 if (rc && (rc == -EOPNOTSUPP))
635 zio->io_vd->vdev_nowritecache = B_TRUE;
636
637 bio_put(bio);
d148e951
BB
638 ASSERT3S(zio->io_error, >=, 0);
639 if (zio->io_error)
640 vdev_disk_error(zio);
60101509 641 zio_interrupt(zio);
60101509
BB
642}
643
644static int
645vdev_disk_io_flush(struct block_device *bdev, zio_t *zio)
646{
647 struct request_queue *q;
648 struct bio *bio;
649
650 q = bdev_get_queue(bdev);
651 if (!q)
d1d7e268 652 return (ENXIO);
60101509 653
abc41ac7 654 bio = bio_alloc(GFP_NOIO, 0);
29b763cd
IH
655 /* bio_alloc() with __GFP_WAIT never returns NULL */
656 if (unlikely(bio == NULL))
d1d7e268 657 return (ENOMEM);
60101509
BB
658
659 bio->bi_end_io = vdev_disk_io_flush_completion;
660 bio->bi_private = zio;
661 bio->bi_bdev = bdev;
3b86aeb2
CC
662 bio_set_op_attrs(bio, 0, VDEV_WRITE_FLUSH_FUA);
663 vdev_submit_bio(bio);
cecb7487 664 invalidate_bdev(bdev);
60101509 665
d1d7e268 666 return (0);
60101509 667}
60101509 668
98b25418 669static void
60101509
BB
670vdev_disk_io_start(zio_t *zio)
671{
672 vdev_t *v = zio->io_vd;
673 vdev_disk_t *vd = v->vdev_tsd;
3b86aeb2 674 int rw, flags, error;
60101509
BB
675
676 switch (zio->io_type) {
677 case ZIO_TYPE_IOCTL:
678
679 if (!vdev_readable(v)) {
2e528b49 680 zio->io_error = SET_ERROR(ENXIO);
98b25418
GW
681 zio_interrupt(zio);
682 return;
60101509
BB
683 }
684
685 switch (zio->io_cmd) {
686 case DKIOCFLUSHWRITECACHE:
687
688 if (zfs_nocacheflush)
689 break;
690
691 if (v->vdev_nowritecache) {
2e528b49 692 zio->io_error = SET_ERROR(ENOTSUP);
60101509
BB
693 break;
694 }
695
696 error = vdev_disk_io_flush(vd->vd_bdev, zio);
697 if (error == 0)
98b25418 698 return;
60101509
BB
699
700 zio->io_error = error;
701 if (error == ENOTSUP)
702 v->vdev_nowritecache = B_TRUE;
703
704 break;
705
706 default:
2e528b49 707 zio->io_error = SET_ERROR(ENOTSUP);
60101509
BB
708 }
709
98b25418
GW
710 zio_execute(zio);
711 return;
60101509 712 case ZIO_TYPE_WRITE:
3b86aeb2 713 rw = WRITE;
e6603b7c 714#if defined(HAVE_BLK_QUEUE_HAVE_BIO_RW_UNPLUG)
3b86aeb2 715 flags = (1 << BIO_RW_UNPLUG);
e6603b7c 716#elif defined(REQ_UNPLUG)
3b86aeb2 717 flags = REQ_UNPLUG;
e6603b7c 718#else
3b86aeb2 719 flags = 0;
e6603b7c 720#endif
60101509
BB
721 break;
722
723 case ZIO_TYPE_READ:
3b86aeb2 724 rw = READ;
e6603b7c 725#if defined(HAVE_BLK_QUEUE_HAVE_BIO_RW_UNPLUG)
3b86aeb2 726 flags = (1 << BIO_RW_UNPLUG);
e6603b7c 727#elif defined(REQ_UNPLUG)
3b86aeb2 728 flags = REQ_UNPLUG;
e6603b7c 729#else
3b86aeb2 730 flags = 0;
e6603b7c 731#endif
60101509
BB
732 break;
733
734 default:
2e528b49 735 zio->io_error = SET_ERROR(ENOTSUP);
98b25418
GW
736 zio_interrupt(zio);
737 return;
60101509
BB
738 }
739
26ef0cc7 740 zio->io_target_timestamp = zio_handle_io_delay(zio);
b0be93e8 741 error = __vdev_disk_physio(vd->vd_bdev, zio,
3b86aeb2 742 zio->io_size, zio->io_offset, rw, flags);
60101509
BB
743 if (error) {
744 zio->io_error = error;
98b25418
GW
745 zio_interrupt(zio);
746 return;
60101509 747 }
60101509
BB
748}
749
750static void
751vdev_disk_io_done(zio_t *zio)
752{
753 /*
754 * If the device returned EIO, we revalidate the media. If it is
755 * determined the media has changed this triggers the asynchronous
756 * removal of the device from the configuration.
757 */
758 if (zio->io_error == EIO) {
d1d7e268 759 vdev_t *v = zio->io_vd;
60101509
BB
760 vdev_disk_t *vd = v->vdev_tsd;
761
762 if (check_disk_change(vd->vd_bdev)) {
763 vdev_bdev_invalidate(vd->vd_bdev);
764 v->vdev_remove_wanted = B_TRUE;
765 spa_async_request(zio->io_spa, SPA_ASYNC_REMOVE);
766 }
767 }
768}
769
770static void
771vdev_disk_hold(vdev_t *vd)
772{
773 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
774
775 /* We must have a pathname, and it must be absolute. */
776 if (vd->vdev_path == NULL || vd->vdev_path[0] != '/')
777 return;
778
779 /*
780 * Only prefetch path and devid info if the device has
781 * never been opened.
782 */
783 if (vd->vdev_tsd != NULL)
784 return;
785
786 /* XXX: Implement me as a vnode lookup for the device */
787 vd->vdev_name_vp = NULL;
788 vd->vdev_devid_vp = NULL;
789}
790
791static void
792vdev_disk_rele(vdev_t *vd)
793{
794 ASSERT(spa_config_held(vd->vdev_spa, SCL_STATE, RW_WRITER));
795
796 /* XXX: Implement me as a vnode rele for the device */
797}
798
799vdev_ops_t vdev_disk_ops = {
800 vdev_disk_open,
801 vdev_disk_close,
802 vdev_default_asize,
803 vdev_disk_io_start,
804 vdev_disk_io_done,
805 NULL,
806 vdev_disk_hold,
807 vdev_disk_rele,
808 VDEV_TYPE_DISK, /* name of this vdev type */
809 B_TRUE /* leaf vdev */
810};
811
6839eed2 812module_param(zfs_vdev_scheduler, charp, 0644);
c409e464 813MODULE_PARM_DESC(zfs_vdev_scheduler, "I/O scheduler");