[dpdk-dev] [PATCH] net/octeontx2: fix VF configuration fail

Jerin Jacob jerinjacobk at gmail.com
Mon Jan 13 08:26:14 CET 2020


On Mon, Dec 2, 2019 at 8:11 PM Harman Kalra <hkalra at marvell.com> wrote:
>
> Returning -ENOTSUP only in case loopback mode is enabled and
> device is VF or SDP.
>
> Fixes: c2c0aa75cd01 ("net/octeontx2: fix loopback config return for VF")
> Cc: stable at dpdk.org
>
> Signed-off-by: Harman Kalra <hkalra at marvell.com>
> ---

Acked-by: Jerin Jacob <jerinj at marvell.com>

Applied to dpdk-next-net-mrvl/master. Thanks

>  drivers/net/octeontx2/otx2_ethdev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/octeontx2/otx2_ethdev.c b/drivers/net/octeontx2/otx2_ethdev.c
> index ed329273d..43c6107a8 100644
> --- a/drivers/net/octeontx2/otx2_ethdev.c
> +++ b/drivers/net/octeontx2/otx2_ethdev.c
> @@ -204,7 +204,7 @@ cgx_intlbk_enable(struct otx2_eth_dev *dev, bool en)
>  {
>         struct otx2_mbox *mbox = dev->mbox;
>
> -       if (otx2_dev_is_vf_or_sdp(dev))
> +       if (en && otx2_dev_is_vf_or_sdp(dev))
>                 return -ENOTSUP;
>
>         if (en)
> --
> 2.18.0
>


More information about the dev mailing list