| 183 | } |
| 184 | |
| 185 | static void |
| 186 | vdev_raidz_map_free_vsd(zio_t *zio) |
| 187 | { |
| 188 | raidz_map_t *rm = zio->io_vsd; |
| 189 | |
| 190 | ASSERT0(rm->rm_freed); |
| 191 | rm->rm_freed = B_TRUE; |
| 192 | |
| 193 | if (rm->rm_reports == 0) { |
| 194 | vdev_raidz_map_free(rm); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | /*ARGSUSED*/ |
| 199 | static void |
nothing calls this directly
no test coverage detected