Searched refs:dln (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/kern/ |
H A D | subr_bus.c | 6065 struct device_location_node *dln, *tdln; in dev_wired_cache_fini() local 6067 TAILQ_FOREACH_SAFE(dln, &dcp->dlc_list, dln_link, tdln) { in dev_wired_cache_fini() 6068 free(dln, M_BUS); in dev_wired_cache_fini() 6076 struct device_location_node *dln; in dev_wired_cache_lookup() local 6078 TAILQ_FOREACH(dln, &dcp->dlc_list, dln_link) { in dev_wired_cache_lookup() 6079 if (strcmp(locator, dln->dln_locator) == 0) in dev_wired_cache_lookup() 6080 return (dln); in dev_wired_cache_lookup() 6089 struct device_location_node *dln; in dev_wired_cache_add() local 6094 dln = malloc(sizeof(*dln) + loclen + pathlen, M_BUS, M_WAITOK | M_ZERO); in dev_wired_cache_add() 6095 dln->dln_locator = (char *)(dln + 1); in dev_wired_cache_add() [all …]
|