Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/net/ethernet/qlogic/qed/
Dqed_ll2.c1152 struct qed_ll2_rx_packet *p_descq; in qed_ll2_acquire_connection_rx() local
1172 p_descq = kcalloc(capacity, sizeof(struct qed_ll2_rx_packet), in qed_ll2_acquire_connection_rx()
1174 if (!p_descq) { in qed_ll2_acquire_connection_rx()
1179 p_ll2_info->rx_queue.descq_array = p_descq; in qed_ll2_acquire_connection_rx()
1204 struct qed_ll2_tx_packet *p_descq; in qed_ll2_acquire_connection_tx() local
1224 desc_size = (sizeof(*p_descq) + in qed_ll2_acquire_connection_tx()
1226 sizeof(p_descq->bds_set)); in qed_ll2_acquire_connection_tx()
1228 p_descq = kcalloc(capacity, desc_size, GFP_KERNEL); in qed_ll2_acquire_connection_tx()
1229 if (!p_descq) { in qed_ll2_acquire_connection_tx()
1233 p_ll2_info->tx_queue.descq_mem = p_descq; in qed_ll2_acquire_connection_tx()