Files
mirror_zfs/include/sys/zfs_refcount.h
T

146 lines
4.9 KiB
C
Raw Normal View History

2025-01-04 11:04:27 +11:00
// SPDX-License-Identifier: CDDL-1.0
2008-11-20 12:01:55 -08: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-11 23:16:13 +02:00
* or https://opensource.org/licenses/CDDL-1.0.
2008-11-20 12:01:55 -08: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
*/
/*
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2012, 2015 by Delphix. All rights reserved.
2008-11-20 12:01:55 -08:00
*/
2020-07-29 16:35:33 -07:00
#ifndef _SYS_ZFS_REFCOUNT_H
#define _SYS_ZFS_REFCOUNT_H
2008-11-20 12:01:55 -08:00
#include <sys/inttypes.h>
#include <sys/avl.h>
2008-11-20 12:01:55 -08:00
#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 12:46:35 -07:00
#define FTAG ((char *)(uintptr_t)__func__)
2008-11-20 12:01:55 -08:00
2010-08-26 14:24:34 -07:00
#ifdef ZFS_DEBUG
2008-11-20 12:01:55 -08:00
typedef struct reference {
union {
avl_node_t a;
list_node_t l;
} ref_link;
const void *ref_holder;
2008-11-20 12:01:55 -08:00
uint64_t ref_number;
boolean_t ref_search;
2008-11-20 12:01:55 -08:00
} reference_t;
typedef struct refcount {
uint64_t rc_count;
2008-11-20 12:01:55 -08:00
kmutex_t rc_mtx;
avl_tree_t rc_tree;
2008-11-20 12:01:55 -08:00
list_t rc_removed;
uint_t rc_removed_count;
boolean_t rc_tracked;
} zfs_refcount_t;
2008-11-20 12:01:55 -08:00
/*
* Note: zfs_refcount_t must be initialized with
* refcount_create[_untracked]()
*/
2008-11-20 12:01:55 -08:00
2018-10-01 19:42:05 +02: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 *);
int64_t zfs_refcount_add(zfs_refcount_t *, const void *);
int64_t zfs_refcount_remove(zfs_refcount_t *, const void *);
2021-10-08 14:10:34 -04:00
/*
2023-06-05 14:51:44 -04:00
* Note that (add|remove)_many adds/removes one reference with "number" N,
* _not_ N references with "number" 1, which is what (add|remove)_few does,
* or what vanilla zfs_refcount_(add|remove) called N times would do.
2021-10-08 14:10:34 -04:00
*
* Attempting to remove a reference with number N when none exists is a
* panic on debug kernels with reference_tracking enabled.
*/
2023-06-05 14:51:44 -04:00
void zfs_refcount_add_few(zfs_refcount_t *, uint64_t, const void *);
void zfs_refcount_remove_few(zfs_refcount_t *, uint64_t, const void *);
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 19:42:05 +02:00
void zfs_refcount_transfer(zfs_refcount_t *, zfs_refcount_t *);
void zfs_refcount_transfer_ownership(zfs_refcount_t *, const void *,
const void *);
2018-10-08 14:58:21 -07:00
void zfs_refcount_transfer_ownership_many(zfs_refcount_t *, uint64_t,
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 19:42:05 +02:00
void zfs_refcount_init(void);
void zfs_refcount_fini(void);
2008-11-20 12:01:55 -08:00
2010-08-26 14:24:34 -07:00
#else /* ZFS_DEBUG */
2008-11-20 12:01:55 -08:00
typedef struct refcount {
uint64_t rc_count;
} zfs_refcount_t;
2008-11-20 12:01:55 -08:00
2018-10-01 19:42:05 +02: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 11:44:34 -04:00
#define zfs_refcount_is_zero(rc) (zfs_refcount_count(rc) == 0)
#define zfs_refcount_count(rc) atomic_load_64(&(rc)->rc_count)
#define zfs_refcount_add(rc, holder) atomic_inc_64_nv(&(rc)->rc_count)
2018-10-01 19:42:05 +02:00
#define zfs_refcount_remove(rc, holder) atomic_dec_64_nv(&(rc)->rc_count)
2023-06-05 14:51:44 -04:00
#define zfs_refcount_add_few(rc, number, holder) \
atomic_add_64(&(rc)->rc_count, number)
#define zfs_refcount_remove_few(rc, number, holder) \
atomic_add_64(&(rc)->rc_count, -number)
2018-10-01 19:42:05 +02:00
#define zfs_refcount_add_many(rc, number, holder) \
2008-11-20 12:01:55 -08:00
atomic_add_64_nv(&(rc)->rc_count, number)
2018-10-01 19:42:05 +02:00
#define zfs_refcount_remove_many(rc, number, holder) \
2008-11-20 12:01:55 -08:00
atomic_add_64_nv(&(rc)->rc_count, -number)
2018-10-01 19:42:05 +02:00
#define zfs_refcount_transfer(dst, src) { \
2021-08-17 11:44:34 -04:00
uint64_t __tmp = zfs_refcount_count(src); \
atomic_add_64(&(src)->rc_count, -__tmp); \
atomic_add_64(&(dst)->rc_count, __tmp); \
}
2018-10-08 14:58:21 -07: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 11:44:34 -04:00
#define zfs_refcount_held(rc, holder) (zfs_refcount_count(rc) > 0)
2018-10-01 19:42:05 +02:00
#define zfs_refcount_not_held(rc, holder) (B_TRUE)
2008-11-20 12:01:55 -08:00
2018-10-01 19:42:05 +02:00
#define zfs_refcount_init()
#define zfs_refcount_fini()
2008-11-20 12:01:55 -08:00
2010-08-26 14:24:34 -07:00
#endif /* ZFS_DEBUG */
2008-11-20 12:01:55 -08:00
#ifdef __cplusplus
}
#endif
#endif /* _SYS_REFCOUNT_H */