summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/fs/zfs/sys/bptree.h
diff options
context:
space:
mode:
authorMatthew Ahrens <mahrens@delphix.com>2014-06-25 10:37:59 -0800
committerChristopher Siden <chris@delphix.com>2014-06-25 11:38:00 -0700
commit7802d7bf98dec568dadf72286893b1fe5abd8602 (patch)
treebd21795fc9554a2a95eca899b3291499e7729e29 /usr/src/uts/common/fs/zfs/sys/bptree.h
parent511ef1d6e74f3d1db7bd854375a0926d87bdd7e6 (diff)
downloadillumos-joyent-7802d7bf98dec568dadf72286893b1fe5abd8602.tar.gz
4914 zfs on-disk bookmark structure should be named *_phys_t
Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Christopher Siden <christopher.siden@delphix.com> Reviewed by: Richard Lowe <richlowe@richlowe.net> Reviewed by: Saso Kiselkov <skiselkov.ml@gmail.com> Approved by: Robert Mustacchi <rm@joyent.com>
Diffstat (limited to 'usr/src/uts/common/fs/zfs/sys/bptree.h')
-rw-r--r--usr/src/uts/common/fs/zfs/sys/bptree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/fs/zfs/sys/bptree.h b/usr/src/uts/common/fs/zfs/sys/bptree.h
index a533cb9490..327c128bf4 100644
--- a/usr/src/uts/common/fs/zfs/sys/bptree.h
+++ b/usr/src/uts/common/fs/zfs/sys/bptree.h
@@ -19,7 +19,7 @@
* CDDL HEADER END
*/
/*
- * Copyright (c) 2013 by Delphix. All rights reserved.
+ * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
*/
#ifndef _SYS_BPTREE_H
@@ -43,7 +43,7 @@ typedef struct bptree_phys {
typedef struct bptree_entry_phys {
blkptr_t be_bp;
uint64_t be_birth_txg; /* only delete blocks born after this txg */
- zbookmark_t be_zb; /* holds traversal resume point if needed */
+ zbookmark_phys_t be_zb; /* holds traversal resume point if needed */
} bptree_entry_phys_t;
typedef int bptree_itor_t(void *arg, const blkptr_t *bp, dmu_tx_t *tx);