DPDK patches and discussions
 help / color / mirror / Atom feed
From: Jan Scheurich <jan.scheurich@ericsson.com>
To: "Stokes, Ian" <ian.stokes@intel.com>, Matteo Croce <mcroce@redhat.com>
Cc: "dev@openvswitch.org" <dev@openvswitch.org>,
	"'dev@dpdk.org'" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [ovs-dev] [PATCH] netdev-dpdk: defer MTU set after interface start
Date: Wed, 13 Dec 2017 11:55:23 +0000	[thread overview]
Message-ID: <VI1PR0702MB3839FEA6ACA7F3BF2948EAB39A350@VI1PR0702MB3839.eurprd07.prod.outlook.com> (raw)
In-Reply-To: <CD7C01071941AC429549C17338DB8A528918C648@IRSMSX101.ger.corp.intel.com>

> > The issue only arises with the qede PMD and 67fe6d635193
> > ("netdev-dpdk: use rte_eth_dev_set_mtu.")
>
> I had some more time to look at this today but this patch will break OVS DPDK for existing supported DPDK ports during testing.
>
> I tested with an XL710 and the MTU will fail to apply, the device must be stopped before configuration changes can be applied such as
> MTU. See log message below
>
> 2017-11-28T17:13:50Z|00086|dpdk|ERR|i40e_dev_mtu_set(): port 0 must be stopped before configuration
> 2017-11-28T17:13:50Z|00087|netdev_dpdk|ERR|Interface dpdk0 MTU (1500) setup error: Device or resource busy
>
> Did you come across it in your testing? I guess you didn’t see this for QEDE pmd. In my case the DPDK devices will simply fail to add to the
> bridge.
>
> As is, the patch would not be acceptable as its breaking existing functionality. It would have to be reworked to configure for device that
> cannot reconfigure when busy.
>
> Thanks
> Ian

I fully support the original decision to switch to using rte_dev_set_mtu() in OVS. The prior approach setting max_rx_pkt_len in rte_eth_dev_configure() was non-portable as that field has no well-defined semantics and its relation to the MTU size is different for almost every PMD.

I had a look at the qede PMD implementation of rte_dev_set_mtu() in DPDK 17.05 and 17.11. It assumes that the device must be started because qede_set_mtu() unconditionally stops the device before and restarts it after changing the MTU value. Given that other PMDs like i40e don’t accept it after start, there is no possible way OVS can use rte_dev_set_mtu() that will work with all drivers.

I think it is a weakness of the rte_ethdev API that it does not specify clearly when API functions like rte_dev_set_mtu() may be called. From the documentation of error -EBUSY one can guess that the intention was to optionally support it when the device is started. Implicitly one could conclude that it MUST be supported when the device stopped. That is logical and also what most PMDs do.

I would say the qede PMD should be fixed. It should accept the rte_dev_set_mtu() at any time between rte_eth_dev_configure() and rte_eth_dev_start() (and optionally also after start).

BR, Jan



       reply	other threads:[~2017-12-13 11:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20171116172326.22070-1-mcroce@redhat.com>
     [not found] ` <CD7C01071941AC429549C17338DB8A528918B1F9@IRSMSX101.ger.corp.intel.com>
     [not found]   ` <CAGnkfhwi-VyFk0kH3Tave-hrZnDk5yLbqVsQ7otgQZS8_VCymw@mail.gmail.com>
     [not found]     ` <CD7C01071941AC429549C17338DB8A528918C648@IRSMSX101.ger.corp.intel.com>
2017-12-13 11:55       ` Jan Scheurich [this message]
2017-12-13 12:08         ` Stokes, Ian
2017-12-13 16:06           ` Aaron Conole

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=VI1PR0702MB3839FEA6ACA7F3BF2948EAB39A350@VI1PR0702MB3839.eurprd07.prod.outlook.com \
    --to=jan.scheurich@ericsson.com \
    --cc=dev@dpdk.org \
    --cc=dev@openvswitch.org \
    --cc=ian.stokes@intel.com \
    --cc=mcroce@redhat.com \
    /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).