Hi Ajit,

On 6/1/2017 4:02 AM, Ajit Khaparde wrote:
> This patch adds code to determine the Rx status of a VF.
> It adds the rte_pmd_bnxt_get_vf_rx_status call, which calculates
> the VNIC count of the function to get the Rx status.
> 
> Signed-off-by: Stephen Hurd <stephen.h...@broadcom.com>
> Signed-off-by: Ajit Khaparde <ajit.khapa...@broadcom.com>

<...>

> +int rte_pmd_bnxt_get_tx_drop_count(uint8_t port, uint64_t *count)
> +{
> +     struct rte_eth_dev *dev;
> +     struct rte_eth_dev_info dev_info;
> +     struct bnxt *bp;
> +
> +     dev = &rte_eth_devices[port];
> +     if (!is_bnxt_supported(dev))
> +             return -ENOTSUP;
> +
> +     rte_eth_dev_info_get(port, &dev_info);
> +     bp = (struct bnxt *)dev->data->dev_private;
> +
> +     return bnxt_hwrm_func_qstats_tx_drop(bp, 0xffff, count);
> +}

I guess there is rebasing error here, this function left here and
causing a build error [1].
(or function tries to sneak in within another patch :)

[1]
.../drivers/net/bnxt/rte_pmd_bnxt.c:639:5: error: no previous prototype
for function 'rte_pmd_bnxt_get_tx_drop_count' [-Werror,-Wmissing-prototypes]
int rte_pmd_bnxt_get_tx_drop_count(uint8_t port, uint64_t *count)
    ^

Reply via email to