| 907 | } |
| 908 | |
| 909 | zio_t * |
| 910 | zio_null(zio_t *pio, spa_t *spa, vdev_t *vd, zio_done_func_t *done, |
| 911 | void *private, enum zio_flag flags) |
| 912 | { |
| 913 | zio_t *zio; |
| 914 | |
| 915 | zio = zio_create(pio, spa, 0, NULL, NULL, 0, 0, done, private, |
| 916 | ZIO_TYPE_NULL, ZIO_PRIORITY_NOW, flags, vd, 0, NULL, |
| 917 | ZIO_STAGE_OPEN, ZIO_INTERLOCK_PIPELINE); |
| 918 | |
| 919 | return (zio); |
| 920 | } |
| 921 | |
| 922 | zio_t * |
| 923 | zio_root(spa_t *spa, zio_done_func_t *done, void *private, enum zio_flag flags) |
no test coverage detected