Searched refs:src_q (Results 1 – 2 of 2) sorted by relevance
/Linux-v5.4/drivers/media/v4l2-core/ |
D | v4l2-mem2mem.c | 610 struct vb2_queue *src_q, *dst_q; in v4l2_m2m_poll_for_data() local 615 src_q = v4l2_m2m_get_src_vq(m2m_ctx); in v4l2_m2m_poll_for_data() 618 poll_wait(file, &src_q->done_wq, wait); in v4l2_m2m_poll_for_data() 626 if ((!src_q->streaming || src_q->error || in v4l2_m2m_poll_for_data() 627 list_empty(&src_q->queued_list)) && in v4l2_m2m_poll_for_data() 645 spin_lock_irqsave(&src_q->done_lock, flags); in v4l2_m2m_poll_for_data() 646 if (!list_empty(&src_q->done_list)) in v4l2_m2m_poll_for_data() 647 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer, in v4l2_m2m_poll_for_data() 652 spin_unlock_irqrestore(&src_q->done_lock, flags); in v4l2_m2m_poll_for_data()
|
/Linux-v5.4/drivers/media/platform/s5p-mfc/ |
D | s5p_mfc.c | 996 struct vb2_queue *src_q, *dst_q; in s5p_mfc_poll() local 1002 src_q = &ctx->vq_src; in s5p_mfc_poll() 1009 if ((!src_q->streaming || list_empty(&src_q->queued_list)) in s5p_mfc_poll() 1016 poll_wait(file, &src_q->done_wq, wait); in s5p_mfc_poll() 1021 spin_lock_irqsave(&src_q->done_lock, flags); in s5p_mfc_poll() 1022 if (!list_empty(&src_q->done_list)) in s5p_mfc_poll() 1023 src_vb = list_first_entry(&src_q->done_list, struct vb2_buffer, in s5p_mfc_poll() 1028 spin_unlock_irqrestore(&src_q->done_lock, flags); in s5p_mfc_poll()
|