| 1956 | } |
| 1957 | |
| 1958 | static int |
| 1959 | vdev_raidz_worst_error(raidz_row_t *rr) |
| 1960 | { |
| 1961 | int error = 0; |
| 1962 | |
| 1963 | for (int c = 0; c < rr->rr_cols; c++) |
| 1964 | error = zio_worst_error(error, rr->rr_col[c].rc_error); |
| 1965 | |
| 1966 | return (error); |
| 1967 | } |
| 1968 | |
| 1969 | static void |
| 1970 | vdev_raidz_io_done_verified(zio_t *zio, raidz_row_t *rr) |
no test coverage detected