| 426 | } |
| 427 | |
| 428 | static void |
| 429 | vdev_mirror_close(vdev_t *vd) |
| 430 | { |
| 431 | for (int c = 0; c < vd->vdev_children; c++) |
| 432 | vdev_close(vd->vdev_child[c]); |
| 433 | } |
| 434 | |
| 435 | static void |
| 436 | vdev_mirror_child_done(zio_t *zio) |
nothing calls this directly
no test coverage detected