mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-26 12:12:13 +03:00
Fix gcc c90 compliance warnings
Fix non-c90 compliant code, for the most part these changes simply deal with where a particular variable is declared. Under c90 it must alway be done at the very start of a block. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
+2
-1
@@ -216,6 +216,7 @@ dmu_tx_count_write(dmu_tx_hold_t *txh, uint64_t off, uint64_t len)
|
||||
uint64_t start, end, i;
|
||||
int min_bs, max_bs, min_ibs, max_ibs, epbs, bits;
|
||||
int err = 0;
|
||||
int l;
|
||||
|
||||
if (len == 0)
|
||||
return;
|
||||
@@ -303,7 +304,7 @@ dmu_tx_count_write(dmu_tx_hold_t *txh, uint64_t off, uint64_t len)
|
||||
* we need to account for overwrites/unref.
|
||||
*/
|
||||
if (start <= dn->dn_maxblkid) {
|
||||
for (int l = 0; l < DN_MAX_LEVELS; l++)
|
||||
for (l = 0; l < DN_MAX_LEVELS; l++)
|
||||
history[l] = -1ULL;
|
||||
}
|
||||
while (start <= dn->dn_maxblkid) {
|
||||
|
||||
Reference in New Issue
Block a user