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