Lines Matching defs:qg_list
4567 * @qg_list: list of queue groups to be added
4586 struct ice_aqc_add_tx_qgrp *qg_list, u16 buf_size,
4600 if (!qg_list)
4606 for (i = 0, list = qg_list; i < num_qgrps; i++) {
4619 return ice_aq_send_cmd(hw, &desc, qg_list, buf_size, cd);
4626 * @qg_list: the list of groups to disable
4627 * @buf_size: the total size of the qg_list buffer in bytes
4636 struct ice_aqc_dis_txq_item *qg_list, u16 buf_size,
4650 /* qg_list can be NULL only in VM/VF reset flow */
4651 if (!qg_list && !rst_src)
4683 if (!qg_list)
4691 for (i = 0, item = qg_list; i < num_qgrps; i++) {
4707 status = ice_aq_send_cmd(hw, &desc, qg_list, buf_size, cd);
4709 if (!qg_list)
4714 LE16_TO_CPU(qg_list[0].q_id[0]),
5487 struct ice_aqc_dis_txq_item *qg_list;
5509 buf_size = ice_struct_size(qg_list, q_id, 1);
5510 qg_list = (struct ice_aqc_dis_txq_item *)ice_malloc(hw, buf_size);
5511 if (!qg_list)
5533 qg_list->parent_teid = node->info.parent_teid;
5534 qg_list->num_qs = 1;
5535 qg_list->q_id[0] = CPU_TO_LE16(q_ids[i]);
5536 status = ice_aq_dis_lan_txq(hw, 1, qg_list, buf_size, rst_src,
5545 ice_free(hw, qg_list);
5714 struct ice_aqc_dis_txq_item *qg_list;
5725 qg_size = ice_struct_size(qg_list, q_id, 1);
5726 qg_list = (struct ice_aqc_dis_txq_item *)ice_malloc(hw, qg_size);
5727 if (!qg_list)
5739 qg_list->parent_teid = node->info.parent_teid;
5740 qg_list->num_qs = 1;
5741 qg_list->q_id[0] =
5745 status = ice_aq_dis_lan_txq(hw, 1, qg_list, qg_size,
5754 ice_free(hw, qg_list);