diff options
Diffstat (limited to 'module/zfs/zfs_ctldir.c')
-rw-r--r-- | module/zfs/zfs_ctldir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/zfs/zfs_ctldir.c b/module/zfs/zfs_ctldir.c index 6a7b7bbb5..35a86d434 100644 --- a/module/zfs/zfs_ctldir.c +++ b/module/zfs/zfs_ctldir.c @@ -141,7 +141,7 @@ zfsctl_snapshot_alloc(char *full_name, char *full_path, spa_t *spa, se->se_root_dentry = root_dentry; se->se_taskqid = TASKQID_INVALID; - refcount_create(&se->se_refcount); + zfs_refcount_create(&se->se_refcount); return (se); } @@ -153,7 +153,7 @@ zfsctl_snapshot_alloc(char *full_name, char *full_path, spa_t *spa, static void zfsctl_snapshot_free(zfs_snapentry_t *se) { - refcount_destroy(&se->se_refcount); + zfs_refcount_destroy(&se->se_refcount); strfree(se->se_name); strfree(se->se_path); @@ -176,7 +176,7 @@ zfsctl_snapshot_hold(zfs_snapentry_t *se) static void zfsctl_snapshot_rele(zfs_snapentry_t *se) { - if (refcount_remove(&se->se_refcount, NULL) == 0) + if (zfs_refcount_remove(&se->se_refcount, NULL) == 0) zfsctl_snapshot_free(se); } |