DPDK patches and discussions
 help / color / mirror / Atom feed
From: Matan Azrad <matan@mellanox.com>
To: "Burakov, Anatoly" <anatoly.burakov@intel.com>,
	Bruce Richardson <bruce.richardson@intel.com>,
	Thomas Monjalon <thomas@monjalon.net>
Cc: "dev@dpdk.org" <dev@dpdk.org>,
	"pmatilai@redhat.com" <pmatilai@redhat.com>,
	"david.marchand@6wind.com" <david.marchand@6wind.com>,
	 "jia.guo@intel.com" <jia.guo@intel.com>,
	"konstantin.ananyev@intel.com" <konstantin.ananyev@intel.com>,
	"stephen@networkplumber.org" <stephen@networkplumber.org>,
	"fbl@redhat.com" <fbl@redhat.com>
Subject: Re: [dpdk-dev] kernel binding of devices + hotplug
Date: Sat, 14 Apr 2018 20:10:28 +0000	[thread overview]
Message-ID: <AM4PR0501MB26572B34362274F476575ACBD2B20@AM4PR0501MB2657.eurprd05.prod.outlook.com> (raw)
In-Reply-To: <b670f7b1-c894-ec92-86d0-fdd2fb789e67@intel.com>

Hi all

From: Burakov, Anatoly, Friday, April 13, 2018 8:41 PM
> To: Bruce Richardson <bruce.richardson@intel.com>; Thomas Monjalon
> <thomas@monjalon.net>
> Cc: dev@dpdk.org; pmatilai@redhat.com; david.marchand@6wind.com;
> jia.guo@intel.com; Matan Azrad <matan@mellanox.com>;
> konstantin.ananyev@intel.com; stephen@networkplumber.org;
> fbl@redhat.com
> Subject: Re: kernel binding of devices + hotplug
> 
> On 13-Apr-18 5:40 PM, Bruce Richardson wrote:
> > On Fri, Apr 13, 2018 at 06:31:21PM +0200, Thomas Monjalon wrote:
> >> It's time to think (again) how we bind devices with kernel modules.
> >> We need to decide how we want to manage hotplugged devices with
> DPDK.
> >>
> >> A bit of history first.
> >> There was some code in DPDK for bind/unbind, but it has been removed
> >> in DPDK 1.7 -
> >>
> https://emea01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fdpd
> >>
> k.org%2Fcommit%2F5d8751b83&data=02%7C01%7Cmatan%40mellanox.com
> %7C6ea5
> >>
> 5ce994ff4bb0d65208d5a165b417%7Ca652971c7d2e4d9ba6a4d149256f461b%7
> C0%7
> >>
> C0%7C636592380565078675&sdata=uLRDAk65hYtJYxjIvY20de377yayCN5DrjCZ
> x8H
> >> p61o%3D&reserved=0 Copy of the commit message (in 2014):
> >> "
> >> 	The bind/unbind operations should not be handled by the eal.
> >> 	These operations should be either done outside of dpdk or
> >> 	inside the PMDs themselves as these are their problems.
> >> "
> >>
> >> The question raised at this time (4 years ago) is still under discussion.
> >> Should we manage binding inside or outside DPDK?
> >> Should it be controlled in the application or in the OS base?
> >>
> >> As you know, we use dpdk-devbind.py.
> >> This tool lacks two major features:
> >> 	- persistent configuration
> >> 	- hotplug
> >>
> >> If we consider that the DPDK applications should be able to apply its
> >> own policy to choose the devices to bind, then we need to implement
> >> binding in the PMD (with EAL helpers).
> >>
> >> On the other hand, if we consider that it is the system
> >> responsibility, then we could choose systemd/udev and driverctl.
> >>
> >> The debate is launched!
> >>
> >
> > Allow me to nail my colours to the mast early! :-)
> >
> > I believe it's system not application responsibility.
> > I also believe I have previously explained my reasons for that choice
> > in some of the previous email threads.
> 
> For what it's worth, I tend to agree, if only because writing code for what is
> essentially a bunch of read/write/filesystem enumeration in C is extremely
> fiddly and error prone :) IMO things like this are better handled either by
> scripts, or by tools whose sole purpose is doing exactly that (or both).
> 
> I like having scripts like devbind in DPDK because we can tailor them to our
> use cases better, and having them is amenable to automation, but while I
> wouldn't be opposed to removing them altogether in favor of some external
> tool (systemd/udev/driverctl/whatever), in my humble opinion moving them
> back into EAL or even PMD's would be a mistake.
> 

Since the application runs in the system by a command of the system user I think the responsibility is for the user.
The DPDK user forwards the control of some devices to the DPDK application using the EAL whitelist\blacklist mode to specify the devices,
Any DPDK PMD should know which binding it needs to probe\control the device and can apply it,
So, if the user asks to control on a device by DPDK application it makes sense that the application will do the correct binding to the device since the user wants to use it(no need to ask more operation of pre binding from the user).

Regarding the conflict of system rules for a device, it is again the user responsibility, whatever we will decide for the binding procedure of DPDK application the user needs to take it into account and to solve such like conflicts.
One option is to remove any binding rules of a DPDK device in the DPDK application initialization and adjust the new rules by the PMDs, then any conflict should not disturb the user.

In current hot-plug case the application will need to do a lot of work to bind\remap devices in plug-in\plug-out events while the PMD could have all the knowledge to do it. 

One more issue with the script is that the user should do different bind per device, in case of PMD responsibility the user can forget it:
Think about that, any time the user wants to switch\add new supported nic it should update the script usage and to do per nic operation contrary to the DPDK principles.

Matan.

> Thanks,
> Anatoly

  reply	other threads:[~2018-04-14 20:10 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-13 16:31 Thomas Monjalon
2018-04-13 16:40 ` Bruce Richardson
2018-04-13 17:40   ` Burakov, Anatoly
2018-04-14 20:10     ` Matan Azrad [this message]
2018-04-16  8:31       ` Bruce Richardson
2018-04-16 16:11         ` Matan Azrad
2018-04-16 16:57           ` Stephen Hemminger
2018-04-16 17:10             ` Matan Azrad
2018-04-16 17:18               ` Stephen Hemminger
2018-04-16 17:32                 ` Matan Azrad
2018-04-16 17:50             ` Thomas Monjalon
2018-04-17  9:23           ` Ananyev, Konstantin
2018-04-17 10:42             ` Matan Azrad
2018-04-17 11:00               ` Ananyev, Konstantin
2018-04-22 11:26                 ` Matan Azrad
2018-04-16  9:26       ` Guo, Jia
2018-04-16 16:11         ` Matan Azrad
2018-04-15  5:01   ` Wiles, Keith
2018-04-15  1:48 ` Stephen Hemminger
2018-04-18 14:11   ` Flavio Leitner
2018-04-18 18:17     ` Stephen Hemminger
2018-04-18 18:54       ` Flavio Leitner
2018-04-19  6:04         ` Alejandro Lucero
2018-04-19  8:24           ` Thomas Monjalon
2018-04-19  8:40             ` Bruce Richardson
2018-04-19  9:47               ` Thomas Monjalon

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=AM4PR0501MB26572B34362274F476575ACBD2B20@AM4PR0501MB2657.eurprd05.prod.outlook.com \
    --to=matan@mellanox.com \
    --cc=anatoly.burakov@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=david.marchand@6wind.com \
    --cc=dev@dpdk.org \
    --cc=fbl@redhat.com \
    --cc=jia.guo@intel.com \
    --cc=konstantin.ananyev@intel.com \
    --cc=pmatilai@redhat.com \
    --cc=stephen@networkplumber.org \
    --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).