net/i40e: fix parent when adding TM node
Queue's parent is TC not port. It's wrong to always set
the parent to root.
Fixes: e0ff4d304c
("net/ixgbe: support adding TM node")
Cc: stable@dpdk.org
Signed-off-by: Wenzhuo Lu <wenzhuo.lu@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
This commit is contained in:
parent
a20a3c8c8b
commit
49b6b461af
@ -621,7 +621,7 @@ i40e_node_add(struct rte_eth_dev *dev, uint32_t node_id,
|
||||
tm_node->priority = priority;
|
||||
tm_node->weight = weight;
|
||||
tm_node->reference_count = 0;
|
||||
tm_node->parent = pf->tm_conf.root;
|
||||
tm_node->parent = parent_node;
|
||||
tm_node->shaper_profile = shaper_profile;
|
||||
rte_memcpy(&tm_node->params, params,
|
||||
sizeof(struct rte_tm_node_params));
|
||||
|
Loading…
Reference in New Issue
Block a user