Home
last modified time | relevance | path

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

/Linux-v6.1/drivers/misc/habanalabs/common/
Ddevice.c721 hdev->cq_wq = kcalloc(hdev->asic_prop.completion_queues_count, in device_early_init()
724 if (!hdev->cq_wq) { in device_early_init()
732 hdev->cq_wq[i] = create_singlethread_workqueue(workq_name); in device_early_init()
733 if (hdev->cq_wq[i] == NULL) { in device_early_init()
823 if (hdev->cq_wq[i]) in device_early_init()
824 destroy_workqueue(hdev->cq_wq[i]); in device_early_init()
825 kfree(hdev->cq_wq); in device_early_init()
864 destroy_workqueue(hdev->cq_wq[i]); in device_early_fini()
865 kfree(hdev->cq_wq); in device_early_fini()
Dirq.c84 queue_work(hdev->cq_wq[cq->cq_idx], &job->finish_work); in job_finish()
Dhabanalabs.h3232 struct workqueue_struct **cq_wq; member
Dcommand_submission.c1026 flush_workqueue(hdev->cq_wq[i]); in hl_cs_rollback_all()
/Linux-v6.1/drivers/net/ethernet/cisco/enic/
Denic_main.c1509 unsigned int cq_wq = enic_cq_wq(enic, 0); in enic_poll() local
1516 wq_work_done = vnic_cq_service(&enic->cq[cq_wq], wq_work_to_do, in enic_poll()