diff options
author | delphij <delphij@FreeBSD.org> | 2014-12-15 18:22:45 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2014-12-15 18:22:45 +0000 |
commit | 55ed102bbcd7fb8a8c81c15f00712508cb9ea8b5 (patch) | |
tree | 0fac2602e32f8d87a21c62ec1f35a9d8b772aa96 /cddl | |
parent | 50872743f93c1edaa918140eed44a7300d41beb8 (diff) | |
download | FreeBSD-src-55ed102bbcd7fb8a8c81c15f00712508cb9ea8b5.zip FreeBSD-src-55ed102bbcd7fb8a8c81c15f00712508cb9ea8b5.tar.gz |
MFV r275783:
Convert ARC flags to use enum. Previously, public flags are defined in
arc.h and private flags are defined in arc.c which can lead to confusion
and programming errors.
Consistently use 'hdr' (when referencing arc_buf_hdr_t) instead of 'buf'
or 'ab' because arc_buf_t are often named 'buf' as well.
Illumos issue:
5369 arc flags should be an enum
5370 consistent arc_buf_hdr_t naming scheme
MFC after: 2 weeks
Diffstat (limited to 'cddl')
-rw-r--r-- | cddl/contrib/opensolaris/cmd/zdb/zdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/contrib/opensolaris/cmd/zdb/zdb.c b/cddl/contrib/opensolaris/cmd/zdb/zdb.c index 83098e8..34912cd 100644 --- a/cddl/contrib/opensolaris/cmd/zdb/zdb.c +++ b/cddl/contrib/opensolaris/cmd/zdb/zdb.c @@ -1184,7 +1184,7 @@ visit_indirect(spa_t *spa, const dnode_phys_t *dnp, print_indirect(bp, zb, dnp); if (BP_GET_LEVEL(bp) > 0 && !BP_IS_HOLE(bp)) { - uint32_t flags = ARC_WAIT; + arc_flags_t flags = ARC_FLAG_WAIT; int i; blkptr_t *cbp; int epb = BP_GET_LSIZE(bp) >> SPA_BLKPTRSHIFT; |