Home
last modified time | relevance | path

Searched refs:ids_maxid (Results 1 – 2 of 2) sorted by relevance

/titanic_44/usr/src/cmd/fm/fmd/common/
H A Dfmd_idspace.c65 ids->ids_maxid = max; in fmd_idspace_create()
183 return (id >= ids->ids_minid && id <= ids->ids_maxid); in fmd_idspace_valid()
192 if (id < ids->ids_minid || id > ids->ids_maxid) { in fmd_idspace_xalloc_locked()
194 id, ids->ids_minid, ids->ids_maxid, in fmd_idspace_xalloc_locked()
230 if (ids->ids_count == ids->ids_maxid - ids->ids_minid + 1) in fmd_idspace_alloc_locked()
234 if (++ids->ids_nextid > ids->ids_maxid) in fmd_idspace_alloc_locked()
H A Dfmd_idspace.h54 id_t ids_maxid; /* maximum identifier value */ member