On 12/7/2016 3:31 AM, Wenzhuo Lu wrote:
> This patch implement vf_stats_get and vf_stats_reset ops for i40e.
> 
> Signed-off-by: Qi Zhang <qi.z.zh...@intel.com>
> ---
<...>

> +static int
> +i40e_vf_stats_get(struct rte_eth_dev *dev,
> +               uint16_t vf,
> +               struct rte_eth_stats *stats)
> +{
> +     struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
> +     struct i40e_vsi *vsi;
> +
> +     int ret = 0;
> +
> +     if (pf->vf_num <= vf) {
> +             PMD_DRV_LOG(ERR, "Invalid VF id %d\n", vf);
> +             return -EINVAL;
> +     }

Do we need following check as it has been done in prev patches:

+       rte_eth_dev_info_get(port, &dev_info);
+
+       if (vf_id >= dev_info.max_vfs)
+               return -EINVAL;

Reply via email to