mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-04-06 17:49:11 +03:00
Fix racy assignment of zcb.zcb_haderrors
zcb_haderrors will be modified in zdb_blkptr_done, which is asynchronous. So we must move this assignment after zio_wait. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: loli10K <ezomori.nozomu@gmail.com> Signed-off-by: Chunwei Chen <david.chen@nutanix.com> Closes #7099
This commit is contained in:
parent
f108a49236
commit
0c0b0ad48a
@ -3388,7 +3388,7 @@ dump_block_stats(spa_t *spa)
|
|||||||
int flags = TRAVERSE_PRE | TRAVERSE_PREFETCH_METADATA |
|
int flags = TRAVERSE_PRE | TRAVERSE_PREFETCH_METADATA |
|
||||||
TRAVERSE_NO_DECRYPT | TRAVERSE_HARD;
|
TRAVERSE_NO_DECRYPT | TRAVERSE_HARD;
|
||||||
boolean_t leaks = B_FALSE;
|
boolean_t leaks = B_FALSE;
|
||||||
int e, c;
|
int e, c, err;
|
||||||
bp_embedded_type_t i;
|
bp_embedded_type_t i;
|
||||||
|
|
||||||
bzero(&zcb, sizeof (zcb));
|
bzero(&zcb, sizeof (zcb));
|
||||||
@ -3430,7 +3430,7 @@ dump_block_stats(spa_t *spa)
|
|||||||
|
|
||||||
zcb.zcb_totalasize = metaslab_class_get_alloc(spa_normal_class(spa));
|
zcb.zcb_totalasize = metaslab_class_get_alloc(spa_normal_class(spa));
|
||||||
zcb.zcb_start = zcb.zcb_lastprint = gethrtime();
|
zcb.zcb_start = zcb.zcb_lastprint = gethrtime();
|
||||||
zcb.zcb_haderrors |= traverse_pool(spa, 0, flags, zdb_blkptr_cb, &zcb);
|
err = traverse_pool(spa, 0, flags, zdb_blkptr_cb, &zcb);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we've traversed the data blocks then we need to wait for those
|
* If we've traversed the data blocks then we need to wait for those
|
||||||
@ -3446,6 +3446,12 @@ dump_block_stats(spa_t *spa)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Done after zio_wait() since zcb_haderrors is modified in
|
||||||
|
* zdb_blkptr_done()
|
||||||
|
*/
|
||||||
|
zcb.zcb_haderrors |= err;
|
||||||
|
|
||||||
if (zcb.zcb_haderrors) {
|
if (zcb.zcb_haderrors) {
|
||||||
(void) printf("\nError counts:\n\n");
|
(void) printf("\nError counts:\n\n");
|
||||||
(void) printf("\t%5s %s\n", "errno", "count");
|
(void) printf("\t%5s %s\n", "errno", "count");
|
||||||
|
Loading…
Reference in New Issue
Block a user