Searched refs:equeue (Results 1 – 1 of 1) sorted by relevance
/drivers/firmware/arm_scmi/ |
D | notify.c | 298 struct events_queue equeue; member 543 pd = container_of(eq, struct scmi_registered_events_desc, equeue); in scmi_events_dispatcher() 597 if (kfifo_avail(&r_evt->proto->equeue.kfifo) < sizeof(eh) + len) { in scmi_notify() 612 kfifo_in(&r_evt->proto->equeue.kfifo, &eh, sizeof(eh)); in scmi_notify() 613 kfifo_in(&r_evt->proto->equeue.kfifo, buf, len); in scmi_notify() 626 queue_work(r_evt->proto->equeue.wq, in scmi_notify() 627 &r_evt->proto->equeue.notify_work); in scmi_notify() 652 struct events_queue *equeue, size_t sz) in scmi_initialize_events_queue() argument 656 if (kfifo_alloc(&equeue->kfifo, sz, GFP_KERNEL)) in scmi_initialize_events_queue() 659 equeue->sz = kfifo_size(&equeue->kfifo); in scmi_initialize_events_queue() [all …]
|