Searched refs:cpu_wq (Results 1 – 2 of 2) sorted by relevance
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | linux_workqueue.c | 114 wq->cpu_wq = (cpu_workqueue_struct *)LOS_MemAlloc(m_aucSysMem0, sizeof(cpu_workqueue_struct)); in __create_workqueue_key() 115 if (wq->cpu_wq == NULL) { in __create_workqueue_key() 132 LOS_MemFree(m_aucSysMem0, wq->cpu_wq); in __create_workqueue_key() 152 cpu_workqueue_struct *cwq = wq->cpu_wq; in InitCpuWorkqueue() 278 if (WorkqueueIsEmpty(wq->cpu_wq)) { in QueueWorkOn() 281 LIST_FOR_WORK(tmpWork, &wq->cpu_wq->worklist, struct work_struct, entry) { in QueueWorkOn() 288 QueueWork(wq->cpu_wq, work, intSave); in QueueWorkOn() 370 if ((wq == NULL) || (wq->name == NULL) || (wq->cpu_wq == NULL) || (dwork == NULL)) { in queue_delayed_work() 385 if (!WorkqueueIsEmpty(wq->cpu_wq)) { in queue_delayed_work() 386 LIST_FOR_WORK(work, &wq->cpu_wq->worklist, struct work_struct, entry) { in queue_delayed_work() [all …]
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
D | workqueue.h | 150 cpu_workqueue_struct *cpu_wq; /**< Workqueue control structure. */ member
|