Searched defs:ndevts_alloced (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/uts/common/os/
H A Ddevid_cache.c729 int ndevts_alloced,
763 if (ndevts < ndevts_alloced)
871 int ndevts, undevts, ndevts_alloced; local
916 ndevts_alloced = 128;
919 devts = kmem_alloc(ndevts_alloced * sizeof (dev_t), KM_SLEEP);
924 ndevts_alloced, &ndevts, devts);
925 if (ndevts > ndevts_alloced) {
926 kmem_free(devts, ndevts_alloced * sizeof (dev_t));
927 ndevts_alloced += 128;
961 ndevts_alloced,
726 e_devid_minor_to_devlist( dev_info_t *dip, char *minor_name, int ndevts_alloced, int *devtcntp, dev_t *devtsp) argument
[all...]

Completed in 116 milliseconds