DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Jiang, YuX" <yux.jiang@intel.com>
To: "Yigit, Ferruh" <ferruh.yigit@intel.com>,
	Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>,
	Thomas Monjalon <thomas@monjalon.net>,
	"Ajit Khaparde" <ajit.khaparde@broadcom.com>,
	Huisong Li <lihuisong@huawei.com>,
	"Ananyev, Konstantin" <konstantin.ananyev@intel.com>,
	"Xu, Rosen" <rosen.xu@intel.com>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
	Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
Subject: Re: [dpdk-dev] [PATCH] ethdev: forbid MTU set before device configure
Date: Mon, 1 Nov 2021 09:39:06 +0000	[thread overview]
Message-ID: <SJ0PR11MB51500881B82FE61DFB69A34DFE8A9@SJ0PR11MB5150.namprd11.prod.outlook.com> (raw)
In-Reply-To: <fda7268d-e081-d664-3e8b-973bcd9e838f@intel.com>

> -----Original Message-----
> From: Yigit, Ferruh <ferruh.yigit@intel.com>
> Sent: Friday, October 29, 2021 5:22 PM
> To: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>; Jiang, YuX
> <yux.jiang@intel.com>; Thomas Monjalon <thomas@monjalon.net>; Ajit
> Khaparde <ajit.khaparde@broadcom.com>; Huisong Li
> <lihuisong@huawei.com>; Ananyev, Konstantin
> <konstantin.ananyev@intel.com>; Xu, Rosen <rosen.xu@intel.com>
> Cc: dev@dpdk.org; Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
> Subject: Re: [dpdk-dev] [PATCH] ethdev: forbid MTU set before device
> configure
> 
> On 10/29/2021 7:19 AM, Andrew Rybchenko wrote:
> > On 10/29/21 8:58 AM, Jiang, YuX wrote:
> >>> -----Original Message-----
> >>> From: dev <dev-bounces@dpdk.org> On Behalf Of Andrew Rybchenko
> >>> Sent: Friday, October 22, 2021 6:18 PM
> >>> To: Thomas Monjalon <thomas@monjalon.net>; Yigit, Ferruh
> >>> <ferruh.yigit@intel.com>; Ajit Khaparde
> >>> <ajit.khaparde@broadcom.com>; Huisong Li <lihuisong@huawei.com>;
> >>> Ananyev, Konstantin <konstantin.ananyev@intel.com>; Xu, Rosen
> >>> <rosen.xu@intel.com>
> >>> Cc: dev@dpdk.org; Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
> >>> Subject: [dpdk-dev] [PATCH] ethdev: forbid MTU set before device
> >>> configure
> >>>
> >>> From: Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
> >>>
> >>> rte_eth_dev_configure() always sets MTU to either
> >>> dev_conf.rxmode.mtu or RTE_ETHER_MTU if application doesn't provide
> the value.
> >>> So, there is no point to allow rte_eth_dev_set_mtu() before since
> >>> set value will be overwritten on configure anyway.
> >>>
> >>> Fixes: 1bb4a528c41f ("ethdev: fix max Rx packet length")
> >>>
> >>> Signed-off-by: Ivan Ilchenko <ivan.ilchenko@oktetlabs.ru>
> >>> Signed-off-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
> >>> ---
> >>>   lib/ethdev/rte_ethdev.c | 7 +++++++
> >>>   1 file changed, 7 insertions(+)
> >>>
> >>> diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c index
> >>> 4ea5a657e0..0d7dd68dc1 100644
> >>> --- a/lib/ethdev/rte_ethdev.c
> >>> +++ b/lib/ethdev/rte_ethdev.c
> >>> @@ -3728,6 +3728,13 @@ rte_eth_dev_set_mtu(uint16_t port_id,
> >>> uint16_t
> >>> mtu)
> >>>               return ret;
> >>>       }
> >>>
> >>> +    if (dev->data->dev_configured == 0) {
> >>> +        RTE_ETHDEV_LOG(ERR,
> >>> +            "Port %u must be configured before MTU set\n",
> >>> +            port_id);
> >>> +        return -EINVAL;
> >>> +    }
> >>> +
> >>>       ret = (*dev->dev_ops->mtu_set)(dev, mtu);
> >>>       if (ret == 0)
> >>>           dev->data->mtu = mtu;
> >>> --
> >>> 2.30.2
> >> Hi Ivan,
> >>
> >> We meet an issue based on this patch when test dpdk21.11-rc1.
> >> BugID: https://bugs.dpdk.org/show_bug.cgi?id=864, could you pls have a
> look?
> >>
> >
> > Hi, I think the problem is fixed by [1].
> >
> > [1]
> > https://patches.dpdk.org/project/dpdk/patch/20211024164237.2116166-1-
> a
> > ndrew.rybchenko@oktetlabs.ru/
> 
> That patch is merged to next-net, Yu can you please verify the issue with
> latest next-net?

Hi Ferruh,
We verify patch https://patches.dpdk.org/project/dpdk/patch/20211024164237.2116166-1-andrew.rybchenko@oktetlabs.ru/ on baseline dpdk main branch 6cc51b1293ceac4a77d4bf7ac91a8bbd59e1f78c
Test failed on nic XXV710 for 25GbE SFP28 158b/os Red Hat Enterprise Linux 8.4.
Need we verify it on next-net?

  reply	other threads:[~2021-11-01  9:39 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-22 10:18 Andrew Rybchenko
2021-10-22 13:21 ` Ferruh Yigit
2021-10-22 13:27   ` Ferruh Yigit
2021-10-29  5:58 ` Jiang, YuX
2021-10-29  6:19   ` Andrew Rybchenko
2021-10-29  9:22     ` Ferruh Yigit
2021-11-01  9:39       ` Jiang, YuX [this message]
2021-11-01  9:42         ` Andrew Rybchenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=SJ0PR11MB51500881B82FE61DFB69A34DFE8A9@SJ0PR11MB5150.namprd11.prod.outlook.com \
    --to=yux.jiang@intel.com \
    --cc=ajit.khaparde@broadcom.com \
    --cc=andrew.rybchenko@oktetlabs.ru \
    --cc=dev@dpdk.org \
    --cc=ferruh.yigit@intel.com \
    --cc=ivan.ilchenko@oktetlabs.ru \
    --cc=konstantin.ananyev@intel.com \
    --cc=lihuisong@huawei.com \
    --cc=rosen.xu@intel.com \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).