DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2 1/3] meson: fix minimum required meson version
@ 2021-03-22 14:06 Gabriel Ganne
  2021-03-23  8:36 ` [dpdk-dev] [PATCH v3] meson: update " Gabriel Ganne
  0 siblings, 1 reply; 9+ messages in thread
From: Gabriel Ganne @ 2021-03-22 14:06 UTC (permalink / raw)
  To: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam,
	Bruce Richardson
  Cc: dev, olivier.matz, thierry.herbelot, Gabriel Ganne

WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
         in '0.48.0': console arg in custom_target

console argument is used within kernel/linux/kni/meson.build

Update documentation and travis setup script accordingly.

Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
---
 .ci/linux-setup.sh                        | 2 +-
 doc/guides/linux_gsg/sys_reqs.rst         | 2 +-
 doc/guides/prog_guide/build-sdk-meson.rst | 2 +-
 doc/guides/windows_gsg/build_dpdk.rst     | 2 +-
 meson.build                               | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh
index 5d3089cadd62..a181029ec49a 100755
--- a/.ci/linux-setup.sh
+++ b/.ci/linux-setup.sh
@@ -1,7 +1,7 @@
 #!/bin/sh -xe
 
 # need to install as 'root' since some of the unit tests won't run without it
-sudo python3 -m pip install --upgrade 'meson==0.47.1'
+sudo python3 -m pip install --upgrade 'meson==0.48'
 
 # setup hugepages. error ignored because having hugepage is not mandatory.
 cat /proc/meminfo
diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index d7ea8520e558..6a1712f3145c 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -45,7 +45,7 @@ Compilation of the DPDK
 
 *   Python 3.5 or later.
 
-*   Meson (version 0.47.1+) and ninja
+*   Meson (version 0.48.0+) and ninja
 
     * ``meson`` & ``ninja-build`` packages in most Linux distributions
 
diff --git a/doc/guides/prog_guide/build-sdk-meson.rst b/doc/guides/prog_guide/build-sdk-meson.rst
index 3429e264797d..4f3d0bd21f1a 100644
--- a/doc/guides/prog_guide/build-sdk-meson.rst
+++ b/doc/guides/prog_guide/build-sdk-meson.rst
@@ -35,7 +35,7 @@ The ``meson`` tool is used to configure a DPDK build. On most Linux
 distributions this can be got using the local package management system,
 e.g. ``dnf install meson`` or ``apt-get install meson``. If meson is not
 available as a suitable package, it can also be installed using the Python
-3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.47.1 of meson is
+3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.48.0 of meson is
 required - if the version packaged is too old, the latest version is
 generally available from "pip".
 
diff --git a/doc/guides/windows_gsg/build_dpdk.rst b/doc/guides/windows_gsg/build_dpdk.rst
index 5f1395f3d483..854b8b05cfff 100644
--- a/doc/guides/windows_gsg/build_dpdk.rst
+++ b/doc/guides/windows_gsg/build_dpdk.rst
@@ -64,7 +64,7 @@ A good option to choose is the MSI installer for both meson and ninja together::
 
 	http://mesonbuild.com/Getting-meson.html#installing-meson-and-ninja-with-the-msi-installer%22
 
-Recommended version is either Meson 0.47.1 (baseline) or the latest release.
+Recommended version is either Meson 0.48.0 (baseline) or the latest release.
 
 Install the Backend
 -------------------
diff --git a/meson.build b/meson.build
index 7778e18200a9..65c46f051365 100644
--- a/meson.build
+++ b/meson.build
@@ -8,7 +8,7 @@ project('DPDK', 'C',
 		files('VERSION')).stdout().strip(),
 	license: 'BSD',
 	default_options: ['buildtype=release', 'default_library=static'],
-	meson_version: '>= 0.47.1'
+	meson_version: '>= 0.48.0'
 )
 
 # set up some global vars for compiler, platform, configuration, etc.
-- 
2.29.2


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

* [dpdk-dev] [PATCH v3] meson: update minimum required meson version
  2021-03-22 14:06 [dpdk-dev] [PATCH v2 1/3] meson: fix minimum required meson version Gabriel Ganne
@ 2021-03-23  8:36 ` Gabriel Ganne
  2021-03-23  9:41   ` Bruce Richardson
  2021-03-23  9:52   ` [dpdk-dev] [PATCH v4] " Gabriel Ganne
  0 siblings, 2 replies; 9+ messages in thread
From: Gabriel Ganne @ 2021-03-23  8:36 UTC (permalink / raw)
  To: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam,
	Bruce Richardson
  Cc: dev, olivier.matz, thierry.herbelot, Gabriel Ganne

Bump meson required version to 0.49.2 which is chosen to be the same as
in both redhat-8 and debian-10.

Update documentation and travis setup script accordingly.

This fixes the following warning:
WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
         in '0.48.0': console arg in custom_target

'console' argument is used within kernel/linux/kni/meson.build

Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
---
 .ci/linux-setup.sh                        | 2 +-
 doc/guides/linux_gsg/sys_reqs.rst         | 2 +-
 doc/guides/prog_guide/build-sdk-meson.rst | 2 +-
 doc/guides/windows_gsg/build_dpdk.rst     | 2 +-
 meson.build                               | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh
index 5d3089cadd62..ca35b4b38d67 100755
--- a/.ci/linux-setup.sh
+++ b/.ci/linux-setup.sh
@@ -1,7 +1,7 @@
 #!/bin/sh -xe
 
 # need to install as 'root' since some of the unit tests won't run without it
-sudo python3 -m pip install --upgrade 'meson==0.47.1'
+sudo python3 -m pip install --upgrade 'meson==0.49.2'
 
 # setup hugepages. error ignored because having hugepage is not mandatory.
 cat /proc/meminfo
diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index d7ea8520e558..dfe8f4ef3bfb 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -45,7 +45,7 @@ Compilation of the DPDK
 
 *   Python 3.5 or later.
 
-*   Meson (version 0.47.1+) and ninja
+*   Meson (version 0.49.2+) and ninja
 
     * ``meson`` & ``ninja-build`` packages in most Linux distributions
 
diff --git a/doc/guides/prog_guide/build-sdk-meson.rst b/doc/guides/prog_guide/build-sdk-meson.rst
index 3429e264797d..b54a0b7b57ff 100644
--- a/doc/guides/prog_guide/build-sdk-meson.rst
+++ b/doc/guides/prog_guide/build-sdk-meson.rst
@@ -35,7 +35,7 @@ The ``meson`` tool is used to configure a DPDK build. On most Linux
 distributions this can be got using the local package management system,
 e.g. ``dnf install meson`` or ``apt-get install meson``. If meson is not
 available as a suitable package, it can also be installed using the Python
-3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.47.1 of meson is
+3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.49.2 of meson is
 required - if the version packaged is too old, the latest version is
 generally available from "pip".
 
diff --git a/doc/guides/windows_gsg/build_dpdk.rst b/doc/guides/windows_gsg/build_dpdk.rst
index 5f1395f3d483..0c5979dc193e 100644
--- a/doc/guides/windows_gsg/build_dpdk.rst
+++ b/doc/guides/windows_gsg/build_dpdk.rst
@@ -64,7 +64,7 @@ A good option to choose is the MSI installer for both meson and ninja together::
 
 	http://mesonbuild.com/Getting-meson.html#installing-meson-and-ninja-with-the-msi-installer%22
 
-Recommended version is either Meson 0.47.1 (baseline) or the latest release.
+Recommended version is either Meson 0.49.2 (baseline) or the latest release.
 
 Install the Backend
 -------------------
diff --git a/meson.build b/meson.build
index 7778e18200a9..60973fb18ac3 100644
--- a/meson.build
+++ b/meson.build
@@ -8,7 +8,7 @@ project('DPDK', 'C',
 		files('VERSION')).stdout().strip(),
 	license: 'BSD',
 	default_options: ['buildtype=release', 'default_library=static'],
-	meson_version: '>= 0.47.1'
+	meson_version: '>= 0.49.2'
 )
 
 # set up some global vars for compiler, platform, configuration, etc.
-- 
2.29.2


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

* Re: [dpdk-dev] [PATCH v3] meson: update minimum required meson version
  2021-03-23  8:36 ` [dpdk-dev] [PATCH v3] meson: update " Gabriel Ganne
@ 2021-03-23  9:41   ` Bruce Richardson
  2021-03-23  9:52   ` [dpdk-dev] [PATCH v4] " Gabriel Ganne
  1 sibling, 0 replies; 9+ messages in thread
From: Bruce Richardson @ 2021-03-23  9:41 UTC (permalink / raw)
  To: Gabriel Ganne
  Cc: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam, dev,
	olivier.matz, thierry.herbelot

On Tue, Mar 23, 2021 at 09:36:18AM +0100, Gabriel Ganne wrote:
> Bump meson required version to 0.49.2 which is chosen to be the same as
> in both redhat-8 and debian-10.
> 
> Update documentation and travis setup script accordingly.
> 
> This fixes the following warning:
> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
>          in '0.48.0': console arg in custom_target
> 
> 'console' argument is used within kernel/linux/kni/meson.build
> 
> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>

Repeating here the comment I had on earlier thread - I'd drop the ".2" when
not necessary, i.e. unless we find there are bugs that cause us issues with
0.49 or 0.49.1. In general I think it's better to keep the required meson
version only at the major release level. The reason it's currently at
0.47.1 rather than 0.47, was that 0.47 had a bug that prevented DPDK builds
from working correctly.

Regards,
/Bruce


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

* [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-03-23  8:36 ` [dpdk-dev] [PATCH v3] meson: update " Gabriel Ganne
  2021-03-23  9:41   ` Bruce Richardson
@ 2021-03-23  9:52   ` Gabriel Ganne
  2021-03-23 10:11     ` Bruce Richardson
  1 sibling, 1 reply; 9+ messages in thread
From: Gabriel Ganne @ 2021-03-23  9:52 UTC (permalink / raw)
  To: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam,
	Bruce Richardson
  Cc: dev, olivier.matz, thierry.herbelot, Gabriel Ganne

Bump meson required version to 0.49 which is chosen so as to be provided
by both redhat-8 and debian-10.

Update documentation and travis setup script accordingly.

This fixes the following warning:
WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
         in '0.48.0': console arg in custom_target

'console' argument is used within kernel/linux/kni/meson.build

Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
---
 .ci/linux-setup.sh                        | 2 +-
 doc/guides/linux_gsg/sys_reqs.rst         | 2 +-
 doc/guides/prog_guide/build-sdk-meson.rst | 2 +-
 doc/guides/windows_gsg/build_dpdk.rst     | 2 +-
 meson.build                               | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/.ci/linux-setup.sh b/.ci/linux-setup.sh
index 5d3089cadd62..eb6fc69c9c67 100755
--- a/.ci/linux-setup.sh
+++ b/.ci/linux-setup.sh
@@ -1,7 +1,7 @@
 #!/bin/sh -xe
 
 # need to install as 'root' since some of the unit tests won't run without it
-sudo python3 -m pip install --upgrade 'meson==0.47.1'
+sudo python3 -m pip install --upgrade 'meson==0.49'
 
 # setup hugepages. error ignored because having hugepage is not mandatory.
 cat /proc/meminfo
diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index d7ea8520e558..f6ea29d47a4a 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -45,7 +45,7 @@ Compilation of the DPDK
 
 *   Python 3.5 or later.
 
-*   Meson (version 0.47.1+) and ninja
+*   Meson (version 0.49+) and ninja
 
     * ``meson`` & ``ninja-build`` packages in most Linux distributions
 
diff --git a/doc/guides/prog_guide/build-sdk-meson.rst b/doc/guides/prog_guide/build-sdk-meson.rst
index 3429e264797d..d01166e8d27b 100644
--- a/doc/guides/prog_guide/build-sdk-meson.rst
+++ b/doc/guides/prog_guide/build-sdk-meson.rst
@@ -35,7 +35,7 @@ The ``meson`` tool is used to configure a DPDK build. On most Linux
 distributions this can be got using the local package management system,
 e.g. ``dnf install meson`` or ``apt-get install meson``. If meson is not
 available as a suitable package, it can also be installed using the Python
-3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.47.1 of meson is
+3 ``pip`` tool, e.g. ``pip3 install meson``. Version 0.49 of meson is
 required - if the version packaged is too old, the latest version is
 generally available from "pip".
 
diff --git a/doc/guides/windows_gsg/build_dpdk.rst b/doc/guides/windows_gsg/build_dpdk.rst
index 5f1395f3d483..d4a1fff429ff 100644
--- a/doc/guides/windows_gsg/build_dpdk.rst
+++ b/doc/guides/windows_gsg/build_dpdk.rst
@@ -64,7 +64,7 @@ A good option to choose is the MSI installer for both meson and ninja together::
 
 	http://mesonbuild.com/Getting-meson.html#installing-meson-and-ninja-with-the-msi-installer%22
 
-Recommended version is either Meson 0.47.1 (baseline) or the latest release.
+Recommended version is either Meson 0.49 (baseline) or the latest release.
 
 Install the Backend
 -------------------
diff --git a/meson.build b/meson.build
index 7778e18200a9..0a232c2676e0 100644
--- a/meson.build
+++ b/meson.build
@@ -8,7 +8,7 @@ project('DPDK', 'C',
 		files('VERSION')).stdout().strip(),
 	license: 'BSD',
 	default_options: ['buildtype=release', 'default_library=static'],
-	meson_version: '>= 0.47.1'
+	meson_version: '>= 0.49'
 )
 
 # set up some global vars for compiler, platform, configuration, etc.
-- 
2.29.2


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

* Re: [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-03-23  9:52   ` [dpdk-dev] [PATCH v4] " Gabriel Ganne
@ 2021-03-23 10:11     ` Bruce Richardson
  2021-03-23 10:13       ` Andrew Rybchenko
  0 siblings, 1 reply; 9+ messages in thread
From: Bruce Richardson @ 2021-03-23 10:11 UTC (permalink / raw)
  To: Gabriel Ganne
  Cc: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam, dev,
	olivier.matz, thierry.herbelot

On Tue, Mar 23, 2021 at 10:52:19AM +0100, Gabriel Ganne wrote:
> Bump meson required version to 0.49 which is chosen so as to be provided
> by both redhat-8 and debian-10.
> 
> Update documentation and travis setup script accordingly.
> 
> This fixes the following warning:
> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
>          in '0.48.0': console arg in custom_target
> 
> 'console' argument is used within kernel/linux/kni/meson.build
> 
> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
> ---
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-03-23 10:11     ` Bruce Richardson
@ 2021-03-23 10:13       ` Andrew Rybchenko
  2021-04-16 15:01         ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Rybchenko @ 2021-03-23 10:13 UTC (permalink / raw)
  To: Bruce Richardson, Gabriel Ganne
  Cc: Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam, dev,
	olivier.matz, thierry.herbelot

On 3/23/21 1:11 PM, Bruce Richardson wrote:
> On Tue, Mar 23, 2021 at 10:52:19AM +0100, Gabriel Ganne wrote:
>> Bump meson required version to 0.49 which is chosen so as to be provided
>> by both redhat-8 and debian-10.
>>
>> Update documentation and travis setup script accordingly.
>>
>> This fixes the following warning:
>> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
>>          in '0.48.0': console arg in custom_target
>>
>> 'console' argument is used within kernel/linux/kni/meson.build
>>
>> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
>> ---
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> 

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>


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

* Re: [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-03-23 10:13       ` Andrew Rybchenko
@ 2021-04-16 15:01         ` Thomas Monjalon
  2021-04-16 17:28           ` Thomas Monjalon
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Monjalon @ 2021-04-16 15:01 UTC (permalink / raw)
  To: Gabriel Ganne
  Cc: Bruce Richardson, dev, Aaron Conole, Michael Santana,
	Dmitry Kozlyuk, Narcisa Ana Maria Vasile, Dmitry Malloy,
	Pallavi Kadam, dev, olivier.matz, thierry.herbelot,
	Andrew Rybchenko

23/03/2021 11:13, Andrew Rybchenko:
> On 3/23/21 1:11 PM, Bruce Richardson wrote:
> > On Tue, Mar 23, 2021 at 10:52:19AM +0100, Gabriel Ganne wrote:
> >> Bump meson required version to 0.49 which is chosen so as to be provided
> >> by both redhat-8 and debian-10.
> >>
> >> Update documentation and travis setup script accordingly.
> >>
> >> This fixes the following warning:
> >> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
> >>          in '0.48.0': console arg in custom_target
> >>
> >> 'console' argument is used within kernel/linux/kni/meson.build
> >>
> >> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
> >> ---
> > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> 
> Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>

Applied, thanks



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

* Re: [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-04-16 15:01         ` Thomas Monjalon
@ 2021-04-16 17:28           ` Thomas Monjalon
  2021-04-19  8:42             ` Bruce Richardson
  0 siblings, 1 reply; 9+ messages in thread
From: Thomas Monjalon @ 2021-04-16 17:28 UTC (permalink / raw)
  To: Gabriel Ganne, Bruce Richardson
  Cc: dev, Aaron Conole, Michael Santana, Dmitry Kozlyuk,
	Narcisa Ana Maria Vasile, Dmitry Malloy, Pallavi Kadam, dev,
	olivier.matz, thierry.herbelot, Andrew Rybchenko, david.marchand

16/04/2021 17:01, Thomas Monjalon:
> 23/03/2021 11:13, Andrew Rybchenko:
> > On 3/23/21 1:11 PM, Bruce Richardson wrote:
> > > On Tue, Mar 23, 2021 at 10:52:19AM +0100, Gabriel Ganne wrote:
> > >> Bump meson required version to 0.49 which is chosen so as to be provided
> > >> by both redhat-8 and debian-10.
> > >>
> > >> Update documentation and travis setup script accordingly.
> > >>
> > >> This fixes the following warning:
> > >> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
> > >>          in '0.48.0': console arg in custom_target
> > >>
> > >> 'console' argument is used within kernel/linux/kni/meson.build
> > >>
> > >> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
> > >> ---
> > > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> > 
> > Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
> 
> Applied, thanks

David reported to me that Bruce did an interesting comment
in the thread of the v1:
https://inbox.dpdk.org/dev/20210401110911.GA1627@bricha3-MOBL.ger.corp.intel.com/

So I've changed the version from 0.49 to 0.49.2.

Hope there will be no issue.



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

* Re: [dpdk-dev] [PATCH v4] meson: update minimum required meson version
  2021-04-16 17:28           ` Thomas Monjalon
@ 2021-04-19  8:42             ` Bruce Richardson
  0 siblings, 0 replies; 9+ messages in thread
From: Bruce Richardson @ 2021-04-19  8:42 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: Gabriel Ganne, dev, Aaron Conole, Michael Santana,
	Dmitry Kozlyuk, Narcisa Ana Maria Vasile, Dmitry Malloy,
	Pallavi Kadam, olivier.matz, thierry.herbelot, Andrew Rybchenko,
	david.marchand

On Fri, Apr 16, 2021 at 07:28:57PM +0200, Thomas Monjalon wrote:
> 16/04/2021 17:01, Thomas Monjalon:
> > 23/03/2021 11:13, Andrew Rybchenko:
> > > On 3/23/21 1:11 PM, Bruce Richardson wrote:
> > > > On Tue, Mar 23, 2021 at 10:52:19AM +0100, Gabriel Ganne wrote:
> > > >> Bump meson required version to 0.49 which is chosen so as to be provided
> > > >> by both redhat-8 and debian-10.
> > > >>
> > > >> Update documentation and travis setup script accordingly.
> > > >>
> > > >> This fixes the following warning:
> > > >> WARNING: Project targeting '>= 0.47.1' but tried to use feature introduced
> > > >>          in '0.48.0': console arg in custom_target
> > > >>
> > > >> 'console' argument is used within kernel/linux/kni/meson.build
> > > >>
> > > >> Signed-off-by: Gabriel Ganne <gabriel.ganne@6wind.com>
> > > >> ---
> > > > Acked-by: Bruce Richardson <bruce.richardson@intel.com>
> > > 
> > > Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
> > 
> > Applied, thanks
> 
> David reported to me that Bruce did an interesting comment
> in the thread of the v1:
> https://inbox.dpdk.org/dev/20210401110911.GA1627@bricha3-MOBL.ger.corp.intel.com/
> 
> So I've changed the version from 0.49 to 0.49.2.
> 
> Hope there will be no issue.
> 
I would not expect so. Thanks for fixing it up on apply.

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

end of thread, other threads:[~2021-04-19  8:42 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-22 14:06 [dpdk-dev] [PATCH v2 1/3] meson: fix minimum required meson version Gabriel Ganne
2021-03-23  8:36 ` [dpdk-dev] [PATCH v3] meson: update " Gabriel Ganne
2021-03-23  9:41   ` Bruce Richardson
2021-03-23  9:52   ` [dpdk-dev] [PATCH v4] " Gabriel Ganne
2021-03-23 10:11     ` Bruce Richardson
2021-03-23 10:13       ` Andrew Rybchenko
2021-04-16 15:01         ` Thomas Monjalon
2021-04-16 17:28           ` Thomas Monjalon
2021-04-19  8:42             ` Bruce Richardson

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