net/i40e: fix parent when adding TM node
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Tue, 17 Oct 2017 05:50:40 +0000 (13:50 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 26 Oct 2017 00:33:00 +0000 (02:33 +0200)
Queue's parent is TC not port. It's wrong to always set
the parent to root.

Fixes: e0ff4d304ccf ("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>
drivers/net/i40e/i40e_tm.c

index 882bccf..44316f6 100644 (file)
@@ -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));