MFV r337195: 9454 ::zfs_blkstats should count embedded blocks
illumos/illumos-gate@dec267e7ea Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Approved by: Robert Mustacchi <rm@joyent.com> Author: Matthew Ahrens <mahrens@delphix.com>
This commit is contained in:
parent
2aa2398e3b
commit
9b1a0e4bff
@ -3552,14 +3552,14 @@ dsl_scan_scrub_cb(dsl_pool_t *dp,
|
||||
int zio_flags = ZIO_FLAG_SCAN_THREAD | ZIO_FLAG_RAW | ZIO_FLAG_CANFAIL;
|
||||
int d;
|
||||
|
||||
count_block(dp->dp_blkstats, bp);
|
||||
|
||||
if (phys_birth <= scn->scn_phys.scn_min_txg ||
|
||||
phys_birth >= scn->scn_phys.scn_max_txg)
|
||||
return (0);
|
||||
|
||||
if (BP_IS_EMBEDDED(bp)) {
|
||||
count_block(scn, dp->dp_blkstats, bp);
|
||||
return (0);
|
||||
}
|
||||
/* Embedded BP's have phys_birth==0, so we reject them above. */
|
||||
ASSERT(!BP_IS_EMBEDDED(bp));
|
||||
|
||||
ASSERT(DSL_SCAN_IS_SCRUB_RESILVER(scn));
|
||||
if (scn->scn_phys.scn_func == POOL_SCAN_SCRUB) {
|
||||
|
Loading…
Reference in New Issue
Block a user