Searched refs:dln (Results 1 – 1 of 1) sorted by relevance
| /freebsd/sys/kern/ |
| H A D | subr_bus.c | 6117 struct device_location_node *dln, *tdln; in dev_wired_cache_fini() local 6119 TAILQ_FOREACH_SAFE(dln, &dcp->dlc_list, dln_link, tdln) { in dev_wired_cache_fini() 6120 free(dln, M_BUS); in dev_wired_cache_fini() 6128 struct device_location_node *dln; in dev_wired_cache_lookup() local 6130 TAILQ_FOREACH(dln, &dcp->dlc_list, dln_link) { in dev_wired_cache_lookup() 6131 if (strcmp(locator, dln->dln_locator) == 0) in dev_wired_cache_lookup() 6132 return (dln); in dev_wired_cache_lookup() 6141 struct device_location_node *dln; in dev_wired_cache_add() local 6146 dln = malloc(sizeof(*dln) + loclen + pathlen, M_BUS, M_WAITOK | M_ZERO); in dev_wired_cache_add() 6147 dln->dln_locator = (char *)(dln + 1); in dev_wired_cache_add() [all …]
|