diff options
author | Brian Behlendorf <[email protected]> | 2009-01-15 14:29:09 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-01-15 14:29:09 -0800 |
commit | f969333c7342968bc3c024d3a23ffd656e6c95e9 (patch) | |
tree | 49b47b3595975a4fcb6c35b1bbbe3c2cef82c87c /module | |
parent | 3646bbdd8698057086e963424d1a4a804111aa50 (diff) | |
parent | c4fc002c87fbf2c43af7a913f488926d2623d739 (diff) |
Merge branch 'gcc-c90' into refs/top-bases/gcc-branch
Diffstat (limited to 'module')
-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])); |