MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vdev_raidz_worst_error

Function vdev_raidz_worst_error

freebsd/contrib/openzfs/module/zfs/vdev_raidz.c:1958–1967  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1956}
1957
1958static int
1959vdev_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
1969static void
1970vdev_raidz_io_done_verified(zio_t *zio, raidz_row_t *rr)

Callers 2

vdev_raidz_combrecFunction · 0.85

Calls 1

zio_worst_errorFunction · 0.85

Tested by

no test coverage detected