diff options
author | George Melikov <[email protected]> | 2017-01-18 01:49:24 +0300 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-01-17 14:49:24 -0800 |
commit | cf7d1484bf5bd94aa248babade69226b6dc4c0e2 (patch) | |
tree | 2afd16ec12f08fdab8b8c037d46d7d9b01d8da3d | |
parent | 832805d9515894a6567abcb95359f41f4cc61bfc (diff) |
OpenZFS 7082 - bptree_iterate() passes wrong args to zfs_dbgmsg()
Authored by: Igor Kozhukhov <[email protected]>
Reviewed by: Dan Kimmel <[email protected]>
Reviewed by: George Wilson <[email protected]>
Reviewed by: Igor Kozhukhov <[email protected]>
Approved by: Dan McDonald <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Ported-by: George Melikov <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/7082
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/10e67aa
Closes #5596
-rw-r--r-- | module/zfs/bptree.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/module/zfs/bptree.c b/module/zfs/bptree.c index c0edc9d76..6cd2b019f 100644 --- a/module/zfs/bptree.c +++ b/module/zfs/bptree.c @@ -20,7 +20,7 @@ */ /* - * Copyright (c) 2011, 2014 by Delphix. All rights reserved. + * Copyright (c) 2011, 2015 by Delphix. All rights reserved. */ #include <sys/arc.h> @@ -223,7 +223,8 @@ bptree_iterate(objset_t *os, uint64_t obj, boolean_t free, bptree_itor_t func, flags |= TRAVERSE_HARD; zfs_dbgmsg("bptree index %lld: traversing from min_txg=%lld " "bookmark %lld/%lld/%lld/%lld", - i, (longlong_t)bte.be_birth_txg, + (longlong_t)i, + (longlong_t)bte.be_birth_txg, (longlong_t)bte.be_zb.zb_objset, (longlong_t)bte.be_zb.zb_object, (longlong_t)bte.be_zb.zb_level, |