| 1634 | } |
| 1635 | |
| 1636 | static void |
| 1637 | vdev_open_child(void *arg) |
| 1638 | { |
| 1639 | vdev_t *vd = arg; |
| 1640 | |
| 1641 | vd->vdev_open_thread = curthread; |
| 1642 | vd->vdev_open_error = vdev_open(vd); |
| 1643 | vd->vdev_open_thread = NULL; |
| 1644 | } |
| 1645 | |
| 1646 | static boolean_t |
| 1647 | vdev_uses_zvols(vdev_t *vd) |
nothing calls this directly
no test coverage detected