2008-11-20 23:01:55 +03:00
|
|
|
/*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
2022-07-12 00:16:13 +03:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2008-11-20 23:01:55 +03:00
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
/*
|
2010-05-29 00:45:14 +04:00
|
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
2016-10-14 03:59:18 +03:00
|
|
|
* Copyright (c) 2012, 2015 by Delphix. All rights reserved.
|
2008-11-20 23:01:55 +03:00
|
|
|
*/
|
|
|
|
|
2020-07-30 02:35:33 +03:00
|
|
|
#ifndef _SYS_ZFS_REFCOUNT_H
|
|
|
|
#define _SYS_ZFS_REFCOUNT_H
|
2008-11-20 23:01:55 +03:00
|
|
|
|
|
|
|
#include <sys/inttypes.h>
|
|
|
|
#include <sys/list.h>
|
|
|
|
#include <sys/zfs_context.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the reference is held only by the calling function and not any
|
|
|
|
* particular object, use FTAG (which is a string) for the holder_tag.
|
|
|
|
* Otherwise, use the object that holds the reference.
|
|
|
|
*/
|
2017-10-27 22:46:35 +03:00
|
|
|
#define FTAG ((char *)(uintptr_t)__func__)
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2010-08-27 01:24:34 +04:00
|
|
|
#ifdef ZFS_DEBUG
|
2008-11-20 23:01:55 +03:00
|
|
|
typedef struct reference {
|
|
|
|
list_node_t ref_link;
|
2019-08-14 06:24:43 +03:00
|
|
|
const void *ref_holder;
|
2008-11-20 23:01:55 +03:00
|
|
|
uint64_t ref_number;
|
|
|
|
uint8_t *ref_removed;
|
|
|
|
} reference_t;
|
|
|
|
|
|
|
|
typedef struct refcount {
|
|
|
|
kmutex_t rc_mtx;
|
2013-09-04 16:00:57 +04:00
|
|
|
boolean_t rc_tracked;
|
2008-11-20 23:01:55 +03:00
|
|
|
list_t rc_list;
|
|
|
|
list_t rc_removed;
|
2016-01-13 22:39:25 +03:00
|
|
|
uint64_t rc_count;
|
|
|
|
uint64_t rc_removed_count;
|
2017-03-01 03:10:18 +03:00
|
|
|
} zfs_refcount_t;
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2018-09-26 20:29:26 +03:00
|
|
|
/*
|
|
|
|
* Note: zfs_refcount_t must be initialized with
|
|
|
|
* refcount_create[_untracked]()
|
|
|
|
*/
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2018-10-01 20:42:05 +03:00
|
|
|
void zfs_refcount_create(zfs_refcount_t *);
|
|
|
|
void zfs_refcount_create_untracked(zfs_refcount_t *);
|
|
|
|
void zfs_refcount_create_tracked(zfs_refcount_t *);
|
|
|
|
void zfs_refcount_destroy(zfs_refcount_t *);
|
|
|
|
void zfs_refcount_destroy_many(zfs_refcount_t *, uint64_t);
|
|
|
|
int zfs_refcount_is_zero(zfs_refcount_t *);
|
|
|
|
int64_t zfs_refcount_count(zfs_refcount_t *);
|
2019-08-14 06:24:43 +03:00
|
|
|
int64_t zfs_refcount_add(zfs_refcount_t *, const void *);
|
|
|
|
int64_t zfs_refcount_remove(zfs_refcount_t *, const void *);
|
2021-10-08 21:10:34 +03:00
|
|
|
/*
|
|
|
|
* Note that (add|remove)_many add/remove one reference with "number" N,
|
|
|
|
* _not_ make N references with "number" 1, which is what vanilla
|
|
|
|
* zfs_refcount_(add|remove) would do if called N times.
|
|
|
|
*
|
|
|
|
* Attempting to remove a reference with number N when none exists is a
|
|
|
|
* panic on debug kernels with reference_tracking enabled.
|
|
|
|
*/
|
2019-08-14 06:24:43 +03:00
|
|
|
int64_t zfs_refcount_add_many(zfs_refcount_t *, uint64_t, const void *);
|
|
|
|
int64_t zfs_refcount_remove_many(zfs_refcount_t *, uint64_t, const void *);
|
2018-10-01 20:42:05 +03:00
|
|
|
void zfs_refcount_transfer(zfs_refcount_t *, zfs_refcount_t *);
|
2019-08-14 06:24:43 +03:00
|
|
|
void zfs_refcount_transfer_ownership(zfs_refcount_t *, const void *,
|
|
|
|
const void *);
|
2018-10-09 00:58:21 +03:00
|
|
|
void zfs_refcount_transfer_ownership_many(zfs_refcount_t *, uint64_t,
|
2019-08-14 06:24:43 +03:00
|
|
|
const void *, const void *);
|
|
|
|
boolean_t zfs_refcount_held(zfs_refcount_t *, const void *);
|
|
|
|
boolean_t zfs_refcount_not_held(zfs_refcount_t *, const void *);
|
2018-10-01 20:42:05 +03:00
|
|
|
|
|
|
|
void zfs_refcount_init(void);
|
|
|
|
void zfs_refcount_fini(void);
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2010-08-27 01:24:34 +04:00
|
|
|
#else /* ZFS_DEBUG */
|
2008-11-20 23:01:55 +03:00
|
|
|
|
|
|
|
typedef struct refcount {
|
|
|
|
uint64_t rc_count;
|
2018-09-26 20:29:26 +03:00
|
|
|
} zfs_refcount_t;
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_create(rc) ((rc)->rc_count = 0)
|
|
|
|
#define zfs_refcount_create_untracked(rc) ((rc)->rc_count = 0)
|
|
|
|
#define zfs_refcount_create_tracked(rc) ((rc)->rc_count = 0)
|
|
|
|
#define zfs_refcount_destroy(rc) ((rc)->rc_count = 0)
|
|
|
|
#define zfs_refcount_destroy_many(rc, number) ((rc)->rc_count = 0)
|
2021-08-17 18:44:34 +03:00
|
|
|
#define zfs_refcount_is_zero(rc) (zfs_refcount_count(rc) == 0)
|
|
|
|
#define zfs_refcount_count(rc) atomic_load_64(&(rc)->rc_count)
|
2017-03-01 03:10:18 +03:00
|
|
|
#define zfs_refcount_add(rc, holder) atomic_inc_64_nv(&(rc)->rc_count)
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_remove(rc, holder) atomic_dec_64_nv(&(rc)->rc_count)
|
|
|
|
#define zfs_refcount_add_many(rc, number, holder) \
|
2008-11-20 23:01:55 +03:00
|
|
|
atomic_add_64_nv(&(rc)->rc_count, number)
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_remove_many(rc, number, holder) \
|
2008-11-20 23:01:55 +03:00
|
|
|
atomic_add_64_nv(&(rc)->rc_count, -number)
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_transfer(dst, src) { \
|
2021-08-17 18:44:34 +03:00
|
|
|
uint64_t __tmp = zfs_refcount_count(src); \
|
2010-05-29 00:45:14 +04:00
|
|
|
atomic_add_64(&(src)->rc_count, -__tmp); \
|
|
|
|
atomic_add_64(&(dst)->rc_count, __tmp); \
|
|
|
|
}
|
2018-10-09 00:58:21 +03:00
|
|
|
#define zfs_refcount_transfer_ownership(rc, ch, nh) ((void)0)
|
|
|
|
#define zfs_refcount_transfer_ownership_many(rc, nr, ch, nh) ((void)0)
|
2021-08-17 18:44:34 +03:00
|
|
|
#define zfs_refcount_held(rc, holder) (zfs_refcount_count(rc) > 0)
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_not_held(rc, holder) (B_TRUE)
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2018-10-01 20:42:05 +03:00
|
|
|
#define zfs_refcount_init()
|
|
|
|
#define zfs_refcount_fini()
|
2008-11-20 23:01:55 +03:00
|
|
|
|
2010-08-27 01:24:34 +04:00
|
|
|
#endif /* ZFS_DEBUG */
|
2008-11-20 23:01:55 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _SYS_REFCOUNT_H */
|