Skip to content

Commit d21f279

Browse files
committed
Illumos 3465, 3466, 3467, 3468, 3470, 3473
3465 ::walk ... | ::<dcmd> misinterprets input as symbol names 3466 ::tsd should handle missing/NULL values better 3467 mdb_ctf_vread() could be more useful 3468 mdb enhancements for zfs development 3470 ::whatis does not print callers from KMF_LITE 3473 mdb_get_module() returns wrong module Reviewed by: Adam Leventhal <ahl@delphix.com> Reviewed by: Eric Schrock <eric.schrock@delphix.com> Reviewed by: Dan Kimmel <dan.kimmel@delphix.com> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Dan McDonald <danmcd@nexenta.com> References: https://www.illumos.org/issues/3468 illumos/illumos-gate@28e4da2 Porting notes: - The only portion of this patch which applies to ZoL is a small change to types used in the refcount structure. Ported-by: Brian Behlendorf <behlendorf1@llnl.gov> Closes #4216
1 parent 89666a8 commit d21f279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/sys/refcount.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ typedef struct refcount {
5353
boolean_t rc_tracked;
5454
list_t rc_list;
5555
list_t rc_removed;
56-
int64_t rc_count;
57-
int64_t rc_removed_count;
56+
uint64_t rc_count;
57+
uint64_t rc_removed_count;
5858
} refcount_t;
5959

6060
/* Note: refcount_t must be initialized with refcount_create[_untracked]() */

0 commit comments

Comments
 (0)