Home
last modified time | relevance | path

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

/freebsd-10-stable/sys/dev/hyperv/pcib/
Dvmbus_pcib.c716 struct hv_dr_work *dr_wrk = arg; in pci_devices_present_work() local
726 hbus = dr_wrk->bus; in pci_devices_present_work()
727 free(dr_wrk, M_DEVBUF); in pci_devices_present_work()
823 struct hv_dr_work *dr_wrk; in hv_pci_devices_present() local
842 dr_wrk = malloc(sizeof(*dr_wrk), M_DEVBUF, M_WAITOK | M_ZERO); in hv_pci_devices_present()
843 dr_wrk->bus = hbus; in hv_pci_devices_present()
844 TASK_INIT(&dr_wrk->task, 0, pci_devices_present_work, dr_wrk); in hv_pci_devices_present()
845 taskqueue_enqueue(hbus->sc->taskq, &dr_wrk->task); in hv_pci_devices_present()