Lines Matching defs:new_numqs
593 * @new_numqs: number of queues
596 ice_alloc_lan_q_ctx(struct ice_hw *hw, u16 vsi_handle, u8 tc, u16 new_numqs)
607 ice_calloc(hw, new_numqs, sizeof(*q_ctx));
610 vsi_ctx->num_lan_q_entries[tc] = new_numqs;
614 if (new_numqs > vsi_ctx->num_lan_q_entries[tc]) {
618 ice_calloc(hw, new_numqs, sizeof(*q_ctx));
625 vsi_ctx->num_lan_q_entries[tc] = new_numqs;
635 * @new_numqs: number of queues
638 ice_alloc_rdma_q_ctx(struct ice_hw *hw, u16 vsi_handle, u8 tc, u16 new_numqs)
649 ice_calloc(hw, new_numqs, sizeof(*q_ctx));
652 vsi_ctx->num_rdma_q_entries[tc] = new_numqs;
656 if (new_numqs > vsi_ctx->num_rdma_q_entries[tc]) {
660 ice_calloc(hw, new_numqs, sizeof(*q_ctx));
667 vsi_ctx->num_rdma_q_entries[tc] = new_numqs;
1961 * @new_numqs: new number of max queues
1968 u8 tc, u16 new_numqs, u8 owner)
1995 if (new_numqs <= prev_numqs)
1998 status = ice_alloc_lan_q_ctx(hw, vsi_handle, tc, new_numqs);
2002 status = ice_alloc_rdma_q_ctx(hw, vsi_handle, tc, new_numqs);
2007 if (new_numqs)
2008 ice_sched_calc_vsi_child_nodes(hw, new_numqs, new_num_nodes);
2021 vsi_ctx->sched.max_lanq[tc] = new_numqs;
2023 vsi_ctx->sched.max_rdmaq[tc] = new_numqs;