DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] introduce dpdk-kmods repository
@ 2020-02-17 16:46 Thomas Monjalon
  2020-02-26 16:30 ` [dpdk-dev] [dpdk-techboard] " Olivier Matz
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2020-02-17 16:46 UTC (permalink / raw)
  To: dev; +Cc: techboard

Write first lines of the README file about the intent (upstream first)
and the licenses allowed so far in DPDK.

Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
---
 README | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 README

diff --git a/README b/README
new file mode 100644
index 0000000..e71dbba
--- /dev/null
+++ b/README
@@ -0,0 +1,10 @@
+dpdk-kmods can include kernel source code for various operating systems.
+
+DPDK is focused on userspace libraries, so it is encouraged contributing
+and using vanilla kernels as much as possible.
+Some kernel modules were historically parts of DPDK,
+and are hosted in its directory kernel/.
+Now the preference is to contribute kernel modules to the upstream project
+if possible, otherwise to host kernel code in dpdk-kmods.git.
+
+The license can be BSD-3-Clause or GPL-2.0.
-- 
2.25.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] introduce dpdk-kmods repository
  2020-02-17 16:46 [dpdk-dev] [PATCH] introduce dpdk-kmods repository Thomas Monjalon
@ 2020-02-26 16:30 ` Olivier Matz
  2020-02-26 16:32   ` Jerin Jacob
  0 siblings, 1 reply; 5+ messages in thread
From: Olivier Matz @ 2020-02-26 16:30 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, techboard

On Mon, Feb 17, 2020 at 05:46:42PM +0100, Thomas Monjalon wrote:
> Write first lines of the README file about the intent (upstream first)
> and the licenses allowed so far in DPDK.
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>

Acked-by: Olivier Matz <olivier.matz@6wind.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] introduce dpdk-kmods repository
  2020-02-26 16:30 ` [dpdk-dev] [dpdk-techboard] " Olivier Matz
@ 2020-02-26 16:32   ` Jerin Jacob
  2020-02-28 11:10     ` Andrew Rybchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Jerin Jacob @ 2020-02-26 16:32 UTC (permalink / raw)
  To: Olivier Matz; +Cc: Thomas Monjalon, dpdk-dev, techboard

On Wed, Feb 26, 2020 at 10:00 PM Olivier Matz <olivier.matz@6wind.com> wrote:
>
> On Mon, Feb 17, 2020 at 05:46:42PM +0100, Thomas Monjalon wrote:
> > Write first lines of the README file about the intent (upstream first)
> > and the licenses allowed so far in DPDK.
> >
> > Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
>
> Acked-by: Olivier Matz <olivier.matz@6wind.com>

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] introduce dpdk-kmods repository
  2020-02-26 16:32   ` Jerin Jacob
@ 2020-02-28 11:10     ` Andrew Rybchenko
  2020-03-05 16:59       ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Rybchenko @ 2020-02-28 11:10 UTC (permalink / raw)
  To: Jerin Jacob, Olivier Matz; +Cc: Thomas Monjalon, dpdk-dev, techboard

On 2/26/20 7:32 PM, Jerin Jacob wrote:
> On Wed, Feb 26, 2020 at 10:00 PM Olivier Matz <olivier.matz@6wind.com> wrote:
>>
>> On Mon, Feb 17, 2020 at 05:46:42PM +0100, Thomas Monjalon wrote:
>>> Write first lines of the README file about the intent (upstream first)
>>> and the licenses allowed so far in DPDK.
>>>
>>> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
>>
>> Acked-by: Olivier Matz <olivier.matz@6wind.com>
> 
> Acked-by: Jerin Jacob <jerinj@marvell.com>
> 

Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] introduce dpdk-kmods repository
  2020-02-28 11:10     ` Andrew Rybchenko
@ 2020-03-05 16:59       ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2020-03-05 16:59 UTC (permalink / raw)
  To: techboard; +Cc: Jerin Jacob, Olivier Matz, dev, Andrew Rybchenko

28/02/2020 12:10, Andrew Rybchenko:
> On 2/26/20 7:32 PM, Jerin Jacob wrote:
> > On Wed, Feb 26, 2020 at 10:00 PM Olivier Matz <olivier.matz@6wind.com> wrote:
> >>
> >> On Mon, Feb 17, 2020 at 05:46:42PM +0100, Thomas Monjalon wrote:
> >>> Write first lines of the README file about the intent (upstream first)
> >>> and the licenses allowed so far in DPDK.
> >>>
> >>> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> >>
> >> Acked-by: Olivier Matz <olivier.matz@6wind.com>
> > 
> > Acked-by: Jerin Jacob <jerinj@marvell.com>
> > 
> 
> Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>

Applied




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2020-03-05 16:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-17 16:46 [dpdk-dev] [PATCH] introduce dpdk-kmods repository Thomas Monjalon
2020-02-26 16:30 ` [dpdk-dev] [dpdk-techboard] " Olivier Matz
2020-02-26 16:32   ` Jerin Jacob
2020-02-28 11:10     ` Andrew Rybchenko
2020-03-05 16:59       ` Thomas Monjalon

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).