Searched refs:dln (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/kern/ |
H A D | subr_bus.c | 6023 struct device_location_node *dln, *tdln; in dev_wired_cache_fini() local 6025 TAILQ_FOREACH_SAFE(dln, &dcp->dlc_list, dln_link, tdln) { in dev_wired_cache_fini() 6026 free(dln, M_BUS); in dev_wired_cache_fini() 6034 struct device_location_node *dln; in dev_wired_cache_lookup() local 6036 TAILQ_FOREACH(dln, &dcp->dlc_list, dln_link) { in dev_wired_cache_lookup() 6037 if (strcmp(locator, dln->dln_locator) == 0) in dev_wired_cache_lookup() 6038 return (dln); in dev_wired_cache_lookup() 6047 struct device_location_node *dln; in dev_wired_cache_add() local 6052 dln = malloc(sizeof(*dln) + loclen + pathlen, M_BUS, M_WAITOK | M_ZERO); in dev_wired_cache_add() 6053 dln->dln_locator = (char *)(dln + 1); in dev_wired_cache_add() [all …]
|