| 634 | |
| 635 | |
| 636 | static void |
| 637 | vdev_draid_map_free_vsd(zio_t *zio) |
| 638 | { |
| 639 | raidz_map_t *rm = zio->io_vsd; |
| 640 | |
| 641 | ASSERT0(rm->rm_freed); |
| 642 | rm->rm_freed = B_TRUE; |
| 643 | |
| 644 | if (rm->rm_reports == 0) { |
| 645 | vdev_raidz_map_free(rm); |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | /*ARGSUSED*/ |
| 650 | static void |
nothing calls this directly
no test coverage detected