/*
* 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
*/
/*
*/
#include <fmd_alloc.h>
#include <fmd_subr.h>
#include <fmd_conf.h>
#include <fmd_error.h>
#include <fmd_string.h>
#include <fmd_idspace.h>
#include <fmd.h>
{
/*
* Dynamically size the hash table bucket array based on the desired
* chain length. We hash by indexing on the low-order bits.
* Do not permit the hash bucket array to exceed a reasonable size.
*/
return (ids);
}
void
{
uint_t i;
for (i = 0; i < ids->ids_hashlen; i++) {
}
}
}
void
{
for (i = 0; i < ids->ids_hashlen; i++) {
}
for (i = 0; i < count; i++)
}
static fmd_idelem_t *
{
break;
}
return (ide);
}
void *
{
void *data;
return (data);
}
void
{
fmd_panic("idspace %p (%s) does not contain id %ld",
}
}
int
{
}
int
{
}
static id_t
{
uint_t h;
fmd_panic("%ld out of range [%ld .. %ld] for idspace %p (%s)\n",
}
return (fmd_set_errno(EALREADY));
return (id);
}
{
return (id);
}
static id_t
{
return (fmd_set_errno(ENOSPC));
do {
return (id);
}
{
return (id);
}
/*
* For the moment, we use a simple but slow implementation: reset ids_nextid to
* the minimum id and search in order from there. If this becomes performance
* sensitive we can maintain a freelist of the unallocated identifiers, etc.
*/
{
return (id);
}
void *
{
void *data;
else
break;
}
return (NULL);
}
return (data);
}
/*
* Retrieve the id-specific data for the specified id and place a hold on the
* id so that it cannot be or deleted until fmd_idspace_rele(ids, id) is
* called. For simplicity, we now use a single global reference count for all
* holds. If this feature needs to be used in a place where there is high
* contention between holders and deleters, the implementation can be modified
* to use either a per-hash-bucket or a per-id-element condition variable.
*/
void *
{
}
return (data);
}
void
{
}