diff options
author | Brian Behlendorf <[email protected]> | 2009-01-15 14:29:10 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-01-15 14:29:10 -0800 |
commit | 43b4c537ebf1e171c0cf73b66e5c1590a9a5b7a3 (patch) | |
tree | aa696a5aab42e6f6657d5291c2f9fe738493b82f /module/zfs | |
parent | 12a1def5758227ef475ea890559f1059dbd98bda (diff) | |
parent | 71f5320a32399aee8b164e144c78718e015f3dd1 (diff) |
Merge branch 'gcc-branch' into refs/top-bases/zfs-branch
Diffstat (limited to 'module/zfs')
-rw-r--r-- | module/zfs/dsl_scrub.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/zfs/dsl_scrub.c b/module/zfs/dsl_scrub.c index dbdfe8c75..0ee2e0e4b 100644 --- a/module/zfs/dsl_scrub.c +++ b/module/zfs/dsl_scrub.c @@ -923,6 +923,7 @@ dsl_pool_scrub_clean_cb(dsl_pool_t *dp, boolean_t needs_io; int zio_flags = ZIO_FLAG_SCRUB_THREAD | ZIO_FLAG_RAW | ZIO_FLAG_CANFAIL; int zio_priority; + int d; ASSERT(bp->blk_birth > dp->dp_scrub_min_txg); @@ -947,7 +948,7 @@ dsl_pool_scrub_clean_cb(dsl_pool_t *dp, if (zb->zb_level == -1 && BP_GET_TYPE(bp) != DMU_OT_OBJSET) zio_flags |= ZIO_FLAG_SPECULATIVE; - for (int d = 0; d < BP_GET_NDVAS(bp); d++) { + for (d = 0; d < BP_GET_NDVAS(bp); d++) { vdev_t *vd = vdev_lookup_top(spa, DVA_GET_VDEV(&bp->blk_dva[d])); |