Home
last modified time | relevance | path

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

/linux/drivers/media/v4l2-core/
H A Dv4l2-mem2mem.c126 struct v4l2_m2m_queue_ctx *q_ctx; in v4l2_m2m_get_vq() local
128 q_ctx = get_queue_ctx(m2m_ctx, type); in v4l2_m2m_get_vq()
129 if (!q_ctx) in v4l2_m2m_get_vq()
132 return &q_ctx->q; in v4l2_m2m_get_vq()
136 struct vb2_v4l2_buffer *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx) in v4l2_m2m_next_buf() argument
141 spin_lock_irqsave(&q_ctx->rdy_spinlock, flags); in v4l2_m2m_next_buf()
143 if (list_empty(&q_ctx->rdy_queue)) { in v4l2_m2m_next_buf()
144 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags); in v4l2_m2m_next_buf()
148 b = list_first_entry(&q_ctx->rdy_queue, struct v4l2_m2m_buffer, list); in v4l2_m2m_next_buf()
149 spin_unlock_irqrestore(&q_ctx->rdy_spinlock, flags); in v4l2_m2m_next_buf()
[all …]
/linux/drivers/net/ethernet/intel/ice/
H A Dice_sched.c557 struct ice_q_ctx *q_ctx; in ice_alloc_lan_q_ctx() local
565 q_ctx = devm_kcalloc(ice_hw_to_dev(hw), new_numqs, in ice_alloc_lan_q_ctx()
566 sizeof(*q_ctx), GFP_KERNEL); in ice_alloc_lan_q_ctx()
567 if (!q_ctx) in ice_alloc_lan_q_ctx()
571 q_ctx[idx].q_handle = ICE_INVAL_Q_HANDLE; in ice_alloc_lan_q_ctx()
572 q_ctx[idx].q_teid = ICE_INVAL_TEID; in ice_alloc_lan_q_ctx()
575 vsi_ctx->lan_q_ctx[tc] = q_ctx; in ice_alloc_lan_q_ctx()
583 q_ctx = devm_kcalloc(ice_hw_to_dev(hw), new_numqs, in ice_alloc_lan_q_ctx()
584 sizeof(*q_ctx), GFP_KERNEL); in ice_alloc_lan_q_ctx()
585 if (!q_ctx) in ice_alloc_lan_q_ctx()
[all …]
H A Dice_common.c4685 struct ice_q_ctx *q_ctx; in ice_get_lan_q_ctx() local
4694 q_ctx = vsi->lan_q_ctx[tc]; in ice_get_lan_q_ctx()
4695 return &q_ctx[q_handle]; in ice_get_lan_q_ctx()
4718 struct ice_q_ctx *q_ctx; in ice_ena_vsi_txq() local
4735 q_ctx = ice_get_lan_q_ctx(hw, vsi_handle, tc, q_handle); in ice_ena_vsi_txq()
4736 if (!q_ctx) { in ice_ena_vsi_txq()
4788 q_ctx->q_handle = q_handle; in ice_ena_vsi_txq()
4789 q_ctx->q_teid = le32_to_cpu(node.node_teid); in ice_ena_vsi_txq()
4794 status = ice_sched_replay_q_bw(pi, q_ctx); in ice_ena_vsi_txq()
4824 struct ice_q_ctx *q_ctx; in ice_dis_vsi_txq() local
[all …]
H A Dice_lag.c405 struct ice_q_ctx *q_ctx; in ice_lag_qbuf_recfg() local
412 q_ctx = ice_get_lan_q_ctx(hw, vsi_num, tc, i); in ice_lag_qbuf_recfg()
413 if (!q_ctx) { in ice_lag_qbuf_recfg()
418 if (q_ctx->q_teid == ICE_INVAL_TEID) { in ice_lag_qbuf_recfg()
423 if (q_ctx->q_handle == ICE_INVAL_Q_HANDLE) { in ice_lag_qbuf_recfg()
429 qid = pf->vsi[vsi_num]->txq_map[q_ctx->q_handle]; in ice_lag_qbuf_recfg()
432 qbuf->queue_info[count].q_teid = cpu_to_le32(q_ctx->q_teid); in ice_lag_qbuf_recfg()
H A Dice_sched.h178 int ice_sched_replay_q_bw(struct ice_port_info *pi, struct ice_q_ctx *q_ctx);
/linux/include/media/
H A Dv4l2-mem2mem.h637 struct vb2_v4l2_buffer *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx);
668 struct vb2_v4l2_buffer *v4l2_m2m_last_buf(struct v4l2_m2m_queue_ctx *q_ctx);
763 struct vb2_v4l2_buffer *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx);
796 void v4l2_m2m_buf_remove_by_buf(struct v4l2_m2m_queue_ctx *q_ctx,
826 v4l2_m2m_buf_remove_by_idx(struct v4l2_m2m_queue_ctx *q_ctx, unsigned int idx);