Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/contract/
H A Ddevice.c431 new->ctd_minor = NULL; in ctmpl_device_dup()
434 if (old->ctd_minor) { in ctmpl_device_dup()
435 ASSERT(strlen(old->ctd_minor) + 1 <= MAXPATHLEN); in ctmpl_device_dup()
436 bcopy(old->ctd_minor, buf, strlen(old->ctd_minor) + 1); in ctmpl_device_dup()
453 new->ctd_minor = minor; in ctmpl_device_dup()
471 if (dtmpl->ctd_minor) in ctmpl_device_free()
472 kmem_free(dtmpl->ctd_minor, strlen(dtmpl->ctd_minor) + 1); in ctmpl_device_free()
570 if (dtmpl->ctd_minor != NULL) { in ctmpl_device_set()
571 kmem_free(dtmpl->ctd_minor, in ctmpl_device_set()
572 strlen(dtmpl->ctd_minor) + 1); in ctmpl_device_set()
[all …]
/illumos-gate/usr/src/uts/common/sys/contract/
H A Ddevice_impl.h48 char *ctd_minor; member