Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_bus.c5942 struct device_location_node *dln, *tdln; in dev_wired_cache_fini() local
5945 free(dln, M_BUS); in dev_wired_cache_fini()
5953 struct device_location_node *dln; in dev_wired_cache_lookup() local
5955 TAILQ_FOREACH(dln, &dcp->dlc_list, dln_link) { in dev_wired_cache_lookup()
5956 if (strcmp(locator, dln->dln_locator) == 0) in dev_wired_cache_lookup()
5957 return (dln); in dev_wired_cache_lookup()
5966 struct device_location_node *dln; in dev_wired_cache_add() local
5971 dln = malloc(sizeof(*dln) + loclen + pathlen, M_BUS, M_WAITOK | M_ZERO); in dev_wired_cache_add()
5972 dln->dln_locator = (char *)(dln + 1); in dev_wired_cache_add()
5974 dln->dln_path = dln->dln_locator + loclen; in dev_wired_cache_add()
[all …]