patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:31   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 02/13] net/i40e: " Andrew Rybchenko
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: a0ace286a60b ("net/bonding: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/net/bonding/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/bonding/meson.build b/drivers/net/bonding/meson.build
index b90abc6..44d5fd8 100644
--- a/drivers/net/bonding/meson.build
+++ b/drivers/net/bonding/meson.build
@@ -2,6 +2,7 @@
 # Copyright(c) 2017 Intel Corporation
 
 name = 'bond' #, james bond :-)
+version = 2
 sources = files('rte_eth_bond_api.c', 'rte_eth_bond_pmd.c',
 	'rte_eth_bond_args.c', 'rte_eth_bond_8023ad.c', 'rte_eth_bond_alb.c')
 
-- 
2.7.4

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

* [dpdk-stable] [PATCH 02/13] net/i40e: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:32   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 03/13] net/ixgbe: " Andrew Rybchenko
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/net/i40e/meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/i40e/meson.build b/drivers/net/i40e/meson.build
index 8764b0e..197e611 100644
--- a/drivers/net/i40e/meson.build
+++ b/drivers/net/i40e/meson.build
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
+
 cflags += ['-DPF_DRIVER',
 	'-DVF_DRIVER',
 	'-DINTEGRATED_VF',
-- 
2.7.4

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

* [dpdk-stable] [PATCH 03/13] net/ixgbe: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build Andrew Rybchenko
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 02/13] net/i40e: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:37   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 04/13] net/null: " Andrew Rybchenko
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/net/ixgbe/meson.build | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/net/ixgbe/meson.build b/drivers/net/ixgbe/meson.build
index 60af0ba..f649e65 100644
--- a/drivers/net/ixgbe/meson.build
+++ b/drivers/net/ixgbe/meson.build
@@ -1,6 +1,8 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
+
 cflags += ['-DRTE_LIBRTE_IXGBE_BYPASS']
 
 subdir('base')
-- 
2.7.4

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

* [dpdk-stable] [PATCH 04/13] net/null: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (2 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 03/13] net/ixgbe: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:37   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 05/13] net/ring: " Andrew Rybchenko
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: efd5d1a8d8dd ("drivers/net: build some vdev PMDs with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/net/null/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/null/meson.build b/drivers/net/null/meson.build
index 68ac0d2..60e2ce6 100644
--- a/drivers/net/null/meson.build
+++ b/drivers/net/null/meson.build
@@ -1,4 +1,5 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
 sources = files('rte_eth_null.c')
-- 
2.7.4

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

* [dpdk-stable] [PATCH 05/13] net/ring: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (3 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 04/13] net/null: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:38   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 06/13] bitratestats: " Andrew Rybchenko
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: efd5d1a8d8dd ("drivers/net: build some vdev PMDs with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 drivers/net/ring/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ring/meson.build b/drivers/net/ring/meson.build
index e877a4b..7659b04 100644
--- a/drivers/net/ring/meson.build
+++ b/drivers/net/ring/meson.build
@@ -1,5 +1,6 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
 sources = files('rte_eth_ring.c')
 install_headers('rte_eth_ring.h')
-- 
2.7.4

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

* [dpdk-stable] [PATCH 06/13] bitratestats: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (4 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 05/13] net/ring: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:39   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 07/13] cryptodev: " Andrew Rybchenko
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_bitratestats/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_bitratestats/meson.build b/lib/librte_bitratestats/meson.build
index ede7e0a..c35b62b 100644
--- a/lib/librte_bitratestats/meson.build
+++ b/lib/librte_bitratestats/meson.build
@@ -1,6 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
 sources = files('rte_bitrate.c')
 headers = files('rte_bitrate.h')
 deps += ['ethdev', 'metrics']
-- 
2.7.4

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

* [dpdk-stable] [PATCH 07/13] cryptodev: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (5 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 06/13] bitratestats: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:40   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 08/13] eventdev: " Andrew Rybchenko
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_cryptodev/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_cryptodev/meson.build b/lib/librte_cryptodev/meson.build
index 234da32..bd5fed8 100644
--- a/lib/librte_cryptodev/meson.build
+++ b/lib/librte_cryptodev/meson.build
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 3
+version = 4
 sources = files('rte_cryptodev.c', 'rte_cryptodev_pmd.c')
 headers = files('rte_cryptodev.h',
 	'rte_cryptodev_pmd.h',
-- 
2.7.4

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

* [dpdk-stable] [PATCH 08/13] eventdev: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (6 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 07/13] cryptodev: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:40   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 09/13] mempool: " Andrew Rybchenko
                   ` (2 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_eventdev/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_eventdev/meson.build b/lib/librte_eventdev/meson.build
index d1a9960..e1e22a5 100644
--- a/lib/librte_eventdev/meson.build
+++ b/lib/librte_eventdev/meson.build
@@ -1,6 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 3
 allow_experimental_apis = true
 sources = files('rte_eventdev.c',
 		'rte_event_ring.c',
-- 
2.7.4

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

* [dpdk-stable] [PATCH 09/13] mempool: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (7 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 08/13] eventdev: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:41   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 10/13] pdump: " Andrew Rybchenko
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 11/13] table: " Andrew Rybchenko
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_mempool/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_mempool/meson.build b/lib/librte_mempool/meson.build
index 7a4f3da..712720f 100644
--- a/lib/librte_mempool/meson.build
+++ b/lib/librte_mempool/meson.build
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 2
+version = 3
 sources = files('rte_mempool.c', 'rte_mempool_ops.c')
 headers = files('rte_mempool.h')
 deps += ['ring']
-- 
2.7.4

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

* [dpdk-stable] [PATCH 10/13] pdump: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (8 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 09/13] mempool: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:42   ` Bruce Richardson
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 11/13] table: " Andrew Rybchenko
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_pdump/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_pdump/meson.build b/lib/librte_pdump/meson.build
index 3a95eab..435107a 100644
--- a/lib/librte_pdump/meson.build
+++ b/lib/librte_pdump/meson.build
@@ -1,6 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
 sources = files('rte_pdump.c')
 headers = files('rte_pdump.h')
 deps += ['ethdev']
-- 
2.7.4

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

* [dpdk-stable] [PATCH 11/13] table: fix library version in meson build
       [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
                   ` (9 preceding siblings ...)
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 10/13] pdump: " Andrew Rybchenko
@ 2018-03-20 11:26 ` Andrew Rybchenko
  2018-03-23 21:42   ` Bruce Richardson
  10 siblings, 1 reply; 22+ messages in thread
From: Andrew Rybchenko @ 2018-03-20 11:26 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson, stable

Fixes: 5b9656b157d3 ("lib: build with meson")
Cc: stable@dpdk.org

Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
---
 lib/librte_table/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_table/meson.build b/lib/librte_table/meson.build
index 13e797b..0944bef 100644
--- a/lib/librte_table/meson.build
+++ b/lib/librte_table/meson.build
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 2
+version = 3
 sources = files('rte_table_lpm.c', 'rte_table_lpm_ipv6.c',
 		'rte_table_hash_cuckoo.c', 'rte_table_hash_key8.c',
 		'rte_table_hash_key16.c', 'rte_table_hash_key32.c',
-- 
2.7.4

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

* Re: [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build Andrew Rybchenko
@ 2018-03-23 21:31   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:31 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:15AM +0000, Andrew Rybchenko wrote:
> Fixes: a0ace286a60b ("net/bonding: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 02/13] net/i40e: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 02/13] net/i40e: " Andrew Rybchenko
@ 2018-03-23 21:32   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:32 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:16AM +0000, Andrew Rybchenko wrote:
> Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 03/13] net/ixgbe: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 03/13] net/ixgbe: " Andrew Rybchenko
@ 2018-03-23 21:37   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:37 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:17AM +0000, Andrew Rybchenko wrote:
> Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 04/13] net/null: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 04/13] net/null: " Andrew Rybchenko
@ 2018-03-23 21:37   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:37 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:18AM +0000, Andrew Rybchenko wrote:
> Fixes: efd5d1a8d8dd ("drivers/net: build some vdev PMDs with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 05/13] net/ring: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 05/13] net/ring: " Andrew Rybchenko
@ 2018-03-23 21:38   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:38 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:19AM +0000, Andrew Rybchenko wrote:
> Fixes: efd5d1a8d8dd ("drivers/net: build some vdev PMDs with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 06/13] bitratestats: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 06/13] bitratestats: " Andrew Rybchenko
@ 2018-03-23 21:39   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:39 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:20AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 07/13] cryptodev: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 07/13] cryptodev: " Andrew Rybchenko
@ 2018-03-23 21:40   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:40 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:21AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 08/13] eventdev: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 08/13] eventdev: " Andrew Rybchenko
@ 2018-03-23 21:40   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:40 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:22AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 09/13] mempool: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 09/13] mempool: " Andrew Rybchenko
@ 2018-03-23 21:41   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:41 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:23AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 10/13] pdump: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 10/13] pdump: " Andrew Rybchenko
@ 2018-03-23 21:42   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:42 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:24AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-stable] [PATCH 11/13] table: fix library version in meson build
  2018-03-20 11:26 ` [dpdk-stable] [PATCH 11/13] table: " Andrew Rybchenko
@ 2018-03-23 21:42   ` Bruce Richardson
  0 siblings, 0 replies; 22+ messages in thread
From: Bruce Richardson @ 2018-03-23 21:42 UTC (permalink / raw)
  To: Andrew Rybchenko; +Cc: dev, stable

On Tue, Mar 20, 2018 at 11:26:25AM +0000, Andrew Rybchenko wrote:
> Fixes: 5b9656b157d3 ("lib: build with meson")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

end of thread, other threads:[~2018-03-23 21:43 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1521545187-27096-1-git-send-email-arybchenko@solarflare.com>
2018-03-20 11:26 ` [dpdk-stable] [PATCH 01/13] net/bonding: fix library version in meson build Andrew Rybchenko
2018-03-23 21:31   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 02/13] net/i40e: " Andrew Rybchenko
2018-03-23 21:32   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 03/13] net/ixgbe: " Andrew Rybchenko
2018-03-23 21:37   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 04/13] net/null: " Andrew Rybchenko
2018-03-23 21:37   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 05/13] net/ring: " Andrew Rybchenko
2018-03-23 21:38   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 06/13] bitratestats: " Andrew Rybchenko
2018-03-23 21:39   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 07/13] cryptodev: " Andrew Rybchenko
2018-03-23 21:40   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 08/13] eventdev: " Andrew Rybchenko
2018-03-23 21:40   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 09/13] mempool: " Andrew Rybchenko
2018-03-23 21:41   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 10/13] pdump: " Andrew Rybchenko
2018-03-23 21:42   ` Bruce Richardson
2018-03-20 11:26 ` [dpdk-stable] [PATCH 11/13] table: " Andrew Rybchenko
2018-03-23 21: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).