diff options
author | Brian Behlendorf <[email protected]> | 2009-01-13 13:32:30 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-01-13 13:32:30 -0800 |
commit | 16c26fa9cd3a35e1d1a7c293dcd18c91fa50e413 (patch) | |
tree | 764b6c91aa5e1e81402ce2afff7d8b1e08ce1467 | |
parent | 0e3bb44848d3c463978d0f19d625a1429d4c8371 (diff) | |
parent | bb9b10a8309ee5b4af5894e7fa176ab38ab701c6 (diff) |
Merge commit 'refs/top-bases/gcc-branch' into gcc-branch
-rw-r--r-- | module/zfs/dsl_dir.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/module/zfs/dsl_dir.c b/module/zfs/dsl_dir.c index 9a76d989a..7c46092ab 100644 --- a/module/zfs/dsl_dir.c +++ b/module/zfs/dsl_dir.c @@ -952,11 +952,13 @@ dsl_dir_diduse_space(dsl_dir_t *dd, dd_used_t type, dd->dd_phys->dd_used_breakdown[type] >= -used); dd->dd_phys->dd_used_breakdown[type] += used; #ifdef DEBUG - dd_used_t t; - uint64_t u = 0; - for (t = 0; t < DD_USED_NUM; t++) - u += dd->dd_phys->dd_used_breakdown[t]; - ASSERT3U(u, ==, dd->dd_phys->dd_used_bytes); + { + dd_used_t t; + uint64_t u = 0; + for (t = 0; t < DD_USED_NUM; t++) + u += dd->dd_phys->dd_used_breakdown[t]; + ASSERT3U(u, ==, dd->dd_phys->dd_used_bytes); + } #endif } if (needlock) |