Commit d332a38c authored by Anirudh Venkataramanan's avatar Anirudh Venkataramanan Committed by Jeff Kirsher

ice: Fix initialization for num_nodes_added

ice_sched_add_nodes_to_layer is used recursively, and so we start
with num_nodes_added being 0. This way, in case of an error or if
num_nodes is NULL, the function just returns 0 to indicate that no
nodes were added.

Fixes: 5513b920 ("ice: Update Tx scheduler tree for VSI multi-Tx queue support")
Signed-off-by: default avatarAnirudh Venkataramanan <anirudh.venkataramanan@intel.com>
Tested-by: default avatarTony Brelinski <tonyx.brelinski@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 2707df97
...@@ -751,14 +751,14 @@ ice_sched_add_nodes_to_layer(struct ice_port_info *pi, ...@@ -751,14 +751,14 @@ ice_sched_add_nodes_to_layer(struct ice_port_info *pi,
u16 num_added = 0; u16 num_added = 0;
u32 temp; u32 temp;
*num_nodes_added = 0;
if (!num_nodes) if (!num_nodes)
return status; return status;
if (!parent || layer < hw->sw_entry_point_layer) if (!parent || layer < hw->sw_entry_point_layer)
return ICE_ERR_PARAM; return ICE_ERR_PARAM;
*num_nodes_added = 0;
/* max children per node per layer */ /* max children per node per layer */
max_child_nodes = max_child_nodes =
le16_to_cpu(hw->layer_info[parent->tx_sched_layer].max_children); le16_to_cpu(hw->layer_info[parent->tx_sched_layer].max_children);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment