/*
* 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
* 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) 2012, 2015 by Delphix. All rights reserved.
*/
#include <sys/zfs_context.h>
#include <sys/refcount.h>
#ifdef ZFS_DEBUG
#ifdef _KERNEL
#else
#endif
void
refcount_init(void)
{
}
void
refcount_fini(void)
{
}
void
{
rc->rc_removed_count = 0;
}
void
{
}
void
{
}
void
{
}
}
}
void
{
refcount_destroy_many(rc, 0);
}
int
{
}
{
}
{
if (rc->rc_tracked) {
}
if (rc->rc_tracked)
return (count);
}
{
}
{
if (!rc->rc_tracked) {
return (count);
}
if (reference_history > 0) {
ref->ref_removed =
KM_SLEEP);
rc->rc_removed_count++;
ref->ref_removed);
rc->rc_removed_count--;
}
} else {
}
return (count);
}
}
return (-1);
}
{
}
void
{
src->rc_removed_count = 0;
list_destroy(&list);
}
void
void *new_holder)
{
if (!rc->rc_tracked) {
return;
}
break;
}
}
}
/*
* If tracking is enabled, return true if a reference exists that matches
* the "holder" tag. If tracking is disabled, then return true if a reference
* might be held.
*/
{
if (!rc->rc_tracked) {
}
return (B_TRUE);
}
}
return (B_FALSE);
}
/*
* If tracking is enabled, return true if a reference does not exist that
* matches the "holder" tag. If tracking is disabled, always return true
* since the reference might not be held.
*/
{
if (!rc->rc_tracked) {
return (B_TRUE);
}
return (B_FALSE);
}
}
return (B_TRUE);
}
#endif /* ZFS_DEBUG */