Skip to content

Commit 7384b93

Browse files
committed
no need to disable aggregation
1 parent 721913d commit 7384b93

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

module/zfs/vdev_raidz.c

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3138,19 +3138,8 @@ vdev_raidz_io_done(zio_t *zio)
31383138
* data and parity as we can track down. If we've
31393139
* already been through once before, all children will
31403140
* be marked as tried so we'll proceed to combinatorial
3141-
* reconstruction. We also disable aggregation.
3141+
* reconstruction.
31423142
*/
3143-
if (rm->rm_phys_col != NULL) {
3144-
for (int i = 0; i < rm->rm_nphys_cols; i++) {
3145-
if (rm->rm_phys_col[i].rc_abd != NULL)
3146-
abd_free(rm->rm_phys_col[i].
3147-
rc_abd);
3148-
}
3149-
kmem_free(rm->rm_phys_col,
3150-
sizeof (raidz_col_t) * rm->rm_nphys_cols);
3151-
rm->rm_phys_col = NULL;
3152-
rm->rm_nphys_cols = 0;
3153-
}
31543143
int nread = 0;
31553144
for (int i = 0; i < rm->rm_nrows; i++) {
31563145
nread += vdev_raidz_read_all(zio,

0 commit comments

Comments
 (0)