]> git.droids-corp.org - dpdk.git/commitdiff
net/ice: fix bandwidth config size in memory copy
authorTing Xu <ting.xu@intel.com>
Tue, 27 Jul 2021 10:55:08 +0000 (18:55 +0800)
committerQi Zhang <qi.z.zhang@intel.com>
Sun, 15 Aug 2021 02:32:03 +0000 (04:32 +0200)
The memory size of bandwidth config parameters is not set correctly in
memory copy process, which leads to the wrong values. This patch fixed
the size to the correct value.

Fixes: 3a6bfc37eaf4 ("net/ice: support QoS config VF bandwidth in DCF")
Cc: stable@dpdk.org
Signed-off-by: Ting Xu <ting.xu@intel.com>
Acked-by: Qi Zhang <qi.z.zhang@intel.com>
drivers/net/ice/ice_dcf_sched.c

index 090988c6e17c2cb20077222fb2c22605a34ac8a6..dcf2723494d4a64284c7ccb71d89ee915ea02a15 100644 (file)
@@ -833,7 +833,7 @@ static int ice_dcf_hierarchy_commit(struct rte_eth_dev *dev,
                        goto fail_clear;
                }
                /* store the bandwidth information for replay */
-               ice_memcpy(hw->qos_bw_cfg[vf_id], vf_bw, sizeof(*vf_bw),
+               ice_memcpy(hw->qos_bw_cfg[vf_id], vf_bw, size,
                           ICE_NONDMA_TO_NONDMA);
                ice_memset(vf_bw, 0, size, ICE_NONDMA_MEM);
        }
@@ -859,7 +859,7 @@ static int ice_dcf_hierarchy_commit(struct rte_eth_dev *dev,
                ret_val = ICE_ERR_NO_MEMORY;
                goto fail_clear;
        }
-       ice_memcpy(hw->qos_bw_cfg[ICE_DCF_VFID], tc_bw, sizeof(*tc_bw),
+       ice_memcpy(hw->qos_bw_cfg[ICE_DCF_VFID], tc_bw, size,
                   ICE_NONDMA_TO_NONDMA);
 
        hw->tm_conf.committed = true;