| 896 | } |
| 897 | |
| 898 | static void |
| 899 | zio_destroy(zio_t *zio) |
| 900 | { |
| 901 | metaslab_trace_fini(&zio->io_alloc_list); |
| 902 | list_destroy(&zio->io_parent_list); |
| 903 | list_destroy(&zio->io_child_list); |
| 904 | mutex_destroy(&zio->io_lock); |
| 905 | cv_destroy(&zio->io_cv); |
| 906 | kmem_cache_free(zio_cache, zio); |
| 907 | } |
| 908 | |
| 909 | zio_t * |
| 910 | zio_null(zio_t *pio, spa_t *spa, vdev_t *vd, zio_done_func_t *done, |
no test coverage detected