From: Hideyuki Yamashita <yamashita.hideyuki@po.ntt-tx.co.jp>
To: Thomas Monjalon <thomas@monjalon.net>
Cc: dev@dpdk.org, Gaetan Rivet <gaetan.rivet@6wind.com>
Subject: Re: [dpdk-dev] How to replace rte_eth_dev_attach with rte_eal_hotplug_add
Date: Thu, 25 Oct 2018 11:54:35 +0900 [thread overview]
Message-ID: <201810250255.w9P2tC3e007738@ccmail04.silk.ntt-tx.co.jp> (raw)
In-Reply-To: <3271179.oIOqrX44Jl@xps>
Hi,
> Yes it may work with most of the drivers.
Question for my understadnding.
You said that most of the drivers assign only one
port when hotplug_add is called, right?
Then what is the exception?
What kind of device/driver assign multiple ports?
My program attach to
- vhost pmd
- pcap pmd
- null pmd
and I understand those device(?) assign only one port per attach.
BR,
Hideyuki Yamashita
NTT TechnoCross
> Hi,
>
> 23/10/2018 03:52, Hideyuki Yamashita:
> > Hi,
> >
> > Thanks for your guidance again.
> >
> > Q1.
> > Is following my understanding correct?
> > If a device has multiple port, then "rte_eth_dev_get_port_by_name"
> > will NOT work becauase it uses strcmp and needs "exact match"
> > of the device name.
> > New iterator RTE_ETH_FOREACH_MATCHING_DEV takes care
> > of this issue and even if the name is "parially matched" with
> > the given parameter(user provided devargs).
>
> Yes
>
> > Q2.
> > If my program only handles devices which create only one port,
> > then "rte_eth_dev_get_port_by_name" may work.
> > (Though such a program does not have extensibility and
> > only workable under certain limitations)
>
> Yes it may work with most of the drivers.
>
> > Q3.
> > When new iterator RTE_ETH_FOREACH_MATCHING_DEV
> > will be available?
> > Do I have to wait 18.11 release or can I get those in git before release?
>
> Better to wait 18.11.
>
> > I agree with your guidance that RTE_ETH_FOREACH_MATCHING_DEV
> > is much better than using "rte_eth_dev_get_port_by_name" with regard
> > to handle devices which create multiple port.
> > But I need to replace existing deprecated attach/detach APIs to new
> > codes to maintain continuity of my product.
>
> We do not remove a method without a replacement.
> You can use rte_eth_dev_attach() until 18.08,
> and switch to the new iterator with 18.11.
>
>
> > > Hi,
> > >
> > > The better approach is using RTE_ETH_FOREACH_MATCHING_DEV for 2 reasons:
> > > - it is a loop, so work if multiple ports are matching
> > > - it uses devargs parameter, which is what the user requests
> > >
> > > Note: your code assumes that the ethdev name is devargs.name.
> > > It can be true by chance, but nothing forces drivers to assign port names
> > > this way. It will be wrong, for sure, if a device has multiple ports.
> > >
> > >
> > > 22/10/2018 13:24, Hideyuki Yamashita:
> > > > Hello Thomas,
> > > >
> > > > Thanks for your info.
> > > > What is the difference between using
> > > > rte_eth_dev_get_port_by_name and
> > > > RTE_ETH_FOREACH_MATCHING_DEV?
> > > >
> > > > I think using rte_eth_dev_get_port_by_name is
> > > > workable.
> > > > (In fact I modified my code already and it worked with no problem)
> > > >
> > > > So my question is "what is the difference" and "which is better approach".
> > > >
> > > > Thanks and BR,
> > > > Hideyuki Yamashita
> > > > NTT TechnoCross
> > > >
> > > > > Hi,
> > > > >
> > > > > I am actively working on it.
> > > > > Look how rte_eth_dev_attach is replaced in testpmd:
> > > > > https://patches.dpdk.org/patch/47019/
> > > > > It is using a new ethdev iterator RTE_ETH_FOREACH_MATCHING_DEV.
> > > > >
> > > > >
> > > > > 22/10/2018 06:34, Hideyuki Yamashita:
> > > > > > Dear Thomas and all,
> > > > > >
> > > > > > About a month ago, I posted the topic related with
> > > > > > how to replace rte_eth_dev_attach.
> > > > > >
> > > > > > Following your advice,
> > > > > > my code would be as below:
> > > > > > (Old code using deprecated API is commented out)
> > > > > >
> > > > > > rte_eth_dev_get_port_by_name is used to retrieve dpdk port
> > > > > > after rte_eal_hotplug_add.
> > > > > > Note that my application is just one of the dpdk applications(in the host)
> > > > > > and within the process, only one thread handles device attatch/detach.
> > > > > > (No race condition with regard to device hot_plug will
> > > > > > not take place)
> > > > > > -------------------------------------------------------------------
> > > > > > //ret = rte_eth_dev_attach(devargs, &vhost_port_id);
> > > > > > //if (ret < 0)
> > > > > > // return ret;
> > > > > >
> > > > > > struct rte_devargs da;
> > > > > >
> > > > > > memset(&da, 0, sizeof(da));
> > > > > >
> > > > > > /* parse devargs */
> > > > > > if (rte_devargs_parse(&da, devargs))
> > > > > > return -1;
> > > > > > ret = rte_eal_hotplug_add(da.bus->name, da.name, da.args);
> > > > > > if (ret < 0) {
> > > > > > free(da.args);
> > > > > > return ret;
> > > > > > }
> > > > > > free(da.args);
> > > > > > ret = rte_eth_dev_get_port_by_name(da.name, &vhost_port_id);
> > > > > > if (ret < 0)
> > > > > > return ret;
> > > > > > -----------------------------------------------------------------------------
> > > > > >
> > > > > > If you have any concerns/additional advices, please let me know.
> > > > > >
> > > > > > BR,
> > > > > > Hideyuki Yamashita
> > > > > > NTT TechnoCross
> > > > > >
> > > > > >
> > > > > > > 27/09/2018 12:40, Hideyuki Yamashita:
> > > > > > > > Dear Thomas,
> > > > > > > >
> > > > > > > > Thansk for your answer.
> > > > > > > > Please see inline.
> > > > > > > >
> > > > > > > > > 27/09/2018 03:38, Hideyuki Yamashita:
> > > > > > > > > > Dear Thomas,
> > > > > > > > > >
> > > > > > > > > > Thanks for your answer.
> > > > > > > > > > It took me a little time to digest answer.
> > > > > > > > > > Please see inline.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > > 21/09/2018 09:19, Hideyuki Yamashita:
> > > > > > > > > > > > Dear Gaetan and Thomas,
> > > > > > > > > > > >
> > > > > > > > > > > > Thanks for your answer.
> > > > > > > > > > > > Please see inline.
> > > > > > > > > > > >
> > > > > > > > > > > > > 20/09/2018 11:09, Ga?an Rivet:
> > > > > > > > > > > > > > On Thu, Sep 20, 2018 at 05:46:37PM +0900, Hideyuki Yamashita wrote:
> > > > > > > > > > > > > > > Hello,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From dpdk 18.08 release rte_eth_dev_attach and
> > > > > > > > > > > > > > > rte_eth_dev_detach becom deprecated API and
> > > > > > > > > > > > > > > it is recommended to replace with rte_eal_hotplug_add
> > > > > > > > > > > > > > > and rte_eal_hotplug_remove.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My program uses above mentioned deprecated APIs
> > > > > > > > > > > > > > > and have to replace those.
> > > > > > > > > > > > > > > Note that my program uses attach to attach vhost, pcap pmd.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My question is whether it is correct to replace those as following:
> > > > > > > > > > > > > > > find rte_eth_dev_attach function in rte_ethdev.c and
> > > > > > > > > > > > > > > migrate those content into my program.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > e.g.
> > > > > > > > > > > > > > > lib/librte_ethdev/rte_ethdev.c line 643-686 for attach
> > > > > > > > > > > > > > > lib/librte_ethdev/rte_ethdev.c line 690-720 for detach
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Your advice/guidance are much appreciated.
> > > > > > > > > > > > > > > Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hello Hideyuki,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You could use this code for guidance, while leaving the ethdev
> > > > > > > > > > > > > > specificities such as verifying the eth_dev_count_total(). The hotplug
> > > > > > > > > > > > > > function would already return an error if the PMD was not able to create
> > > > > > > > > > > > > > the necessary devices.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The main issue might be to find the port_id of your new port.
> > > > > > > > > > > > > > You won't be able to use eth_dev_last_created_port, so you would have to
> > > > > > > > > > > > > > iterate over the ethdev using RTE_ETH_FOREACH_DEV and find the one
> > > > > > > > > > > > > > matching your parameters (you might for example match the rte_device
> > > > > > > > > > > > > > name with the name you used in hotplug_add, as there is no standard
> > > > > > > > > > > > > > naming scheme at the ethdev level).
> > > > > > > > > > > > First of all, thank for your answering to my question.
> > > > > > > > > > > > But I have questions.
> > > > > > > > > > > > (Sorry, I have poor knowledge about dpdk and have many basic questions)
> > > > > > > > > > > >
> > > > > > > > > > > > Q1.
> > > > > > > > > > > > Why eth_dev_last_created_port can not be used?
> > > > > > > > > > > > When I look into rte_eth_dev_atthach in 18.08, it calls
> > > > > > > > > > > >
> > > > > > > > > > > > *port_id = eth_dev_last_created_port;
> > > > > > > > > > > >
> > > > > > > > > > > > at the end of the function.
> > > > > > > > > > >
> > > > > > > > > > > You can have a race condition.
> > > > > > > > > > Please elaborate me a bit more.
> > > > > > > > > >
> > > > > > > > > > Is it correct understanding that race condition
> > > > > > > > > > includes
> > > > > > > > > > - read information before port is available
> > > > > > > > > > - other device may be plugged (or unplugged)
> > > > > > > > > > and so using "eth_dev_last_created_port" is
> > > > > > > > > > NOT reliable?
> > > > > > > > >
> > > > > > > > > I am thinking about the second one only.
> > > > > > > >
> > > > > > > > If we assume there is only one DPDK application
> > > > > > > > inside the host and within the application, only one thread
> > > > > > > > handles attach/detach of devices, then is it ok to use
> > > > > > > > > > > > *port_id = eth_dev_last_created_port;
> > > > > > > > because there seems no possiblity race condition
> > > > > > > > takes place?
> > > > > > >
> > > > > > > If you are never probing a new port outside of this thread,
> > > > > > > I guess it's OK.
> > > > > > > Take care of not attaching from the interrupt thread too!
>
>
>
>
next prev parent reply other threads:[~2018-10-25 2:55 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-20 8:46 Hideyuki Yamashita
2018-09-20 9:09 ` Gaëtan Rivet
2018-09-20 13:02 ` Thomas Monjalon
2018-09-21 7:19 ` Hideyuki Yamashita
2018-09-21 9:16 ` Thomas Monjalon
2018-09-27 1:38 ` Hideyuki Yamashita
2018-09-27 8:58 ` Thomas Monjalon
2018-09-27 10:40 ` Hideyuki Yamashita
2018-09-27 11:39 ` Thomas Monjalon
2018-10-22 4:34 ` Hideyuki Yamashita
2018-10-22 6:55 ` Thomas Monjalon
2018-10-22 11:24 ` Hideyuki Yamashita
2018-10-22 12:01 ` Thomas Monjalon
2018-10-23 1:52 ` Hideyuki Yamashita
2018-10-23 7:34 ` Thomas Monjalon
2018-10-25 2:54 ` Hideyuki Yamashita [this message]
2018-10-25 6:48 ` Thomas Monjalon
2018-10-25 9:46 ` Hideyuki Yamashita
2018-10-25 10:35 ` Thomas Monjalon
2018-09-27 13:48 ` Andrzej Ostruszka
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=201810250255.w9P2tC3e007738@ccmail04.silk.ntt-tx.co.jp \
--to=yamashita.hideyuki@po.ntt-tx.co.jp \
--cc=dev@dpdk.org \
--cc=gaetan.rivet@6wind.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).