diff options
Diffstat (limited to 'include/sys/rrwlock.h')
-rw-r--r-- | include/sys/rrwlock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sys/rrwlock.h b/include/sys/rrwlock.h index 7a328fd68..e1c1756cf 100644 --- a/include/sys/rrwlock.h +++ b/include/sys/rrwlock.h @@ -57,8 +57,8 @@ typedef struct rrwlock { kmutex_t rr_lock; kcondvar_t rr_cv; kthread_t *rr_writer; - refcount_t rr_anon_rcount; - refcount_t rr_linked_rcount; + zfs_refcount_t rr_anon_rcount; + zfs_refcount_t rr_linked_rcount; boolean_t rr_writer_wanted; boolean_t rr_track_all; } rrwlock_t; |