patches for DPDK stable branches
 help / color / mirror / Atom feed
* Re: [dpdk-stable] [PATCH 4/6] mbuf: fix library version on meson build
  2018-10-15 14:50 ` [dpdk-stable] [PATCH 4/6] mbuf: fix library version on meson build Ferruh Yigit
@ 2018-10-15 14:25   ` Luca Boccassi
  0 siblings, 0 replies; 4+ messages in thread
From: Luca Boccassi @ 2018-10-15 14:25 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev, stable

On Mon, 2018-10-15 at 15:50 +0100, Ferruh Yigit wrote:
> Fixes: d27a6261875d ("mbuf: remove control mbuf")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
> Cc: olivier.matz@6wind.com
> Cc: Luca Boccassi <bluca@debian.org>
> ---
>  lib/librte_mbuf/meson.build | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/lib/librte_mbuf/meson.build
> b/lib/librte_mbuf/meson.build
> index 45ffb0db5..94d9c4c96 100644
> --- a/lib/librte_mbuf/meson.build
> +++ b/lib/librte_mbuf/meson.build
> @@ -1,7 +1,7 @@
>  # SPDX-License-Identifier: BSD-3-Clause
>  # Copyright(c) 2017 Intel Corporation
>  
> -version = 3
> +version = 4
>  sources = files('rte_mbuf.c', 'rte_mbuf_ptype.c',
> 'rte_mbuf_pool_ops.c')
>  headers = files('rte_mbuf.h', 'rte_mbuf_ptype.h',
> 'rte_mbuf_pool_ops.h')
>  deps += ['mempool']

Acked-by: Luca Boccassi <bluca@debian.org>

-- 
Kind regards,
Luca Boccassi

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

* Re: [dpdk-stable] [PATCH 5/6] ring: add library version to meson build
  2018-10-15 14:50 ` [dpdk-stable] [PATCH 5/6] ring: add library version to " Ferruh Yigit
@ 2018-10-15 14:26   ` Luca Boccassi
  0 siblings, 0 replies; 4+ messages in thread
From: Luca Boccassi @ 2018-10-15 14:26 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev, stable

On Mon, 2018-10-15 at 15:50 +0100, Ferruh Yigit wrote:
> Fixes: a3d6026711d0 ("ring: relax alignment constraint on ring
> structure")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
> ---
> Cc: olivier.matz@6wind.com
> Cc: Luca Boccassi <bluca@debian.org>
> ---
>  lib/librte_ring/meson.build | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/lib/librte_ring/meson.build
> b/lib/librte_ring/meson.build
> index ca8a435e9..ab8b0b469 100644
> --- a/lib/librte_ring/meson.build
> +++ b/lib/librte_ring/meson.build
> @@ -1,6 +1,7 @@
>  # SPDX-License-Identifier: BSD-3-Clause
>  # Copyright(c) 2017 Intel Corporation
>  
> +version = 2
>  sources = files('rte_ring.c')
>  headers = files('rte_ring.h',
>  		'rte_ring_c11_mem.h',

Acked-by: Luca Boccassi <bluca@debian.org>

-- 
Kind regards,
Luca Boccassi

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

* [dpdk-stable] [PATCH 4/6] mbuf: fix library version on meson build
       [not found] <20181015145057.37864-1-ferruh.yigit@intel.com>
@ 2018-10-15 14:50 ` Ferruh Yigit
  2018-10-15 14:25   ` Luca Boccassi
  2018-10-15 14:50 ` [dpdk-stable] [PATCH 5/6] ring: add library version to " Ferruh Yigit
  1 sibling, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2018-10-15 14:50 UTC (permalink / raw)
  To: John McNamara, Marko Kovacevic, Olivier Matz
  Cc: dev, Ferruh Yigit, yipeng1.wang, pablo.de.lara.guarch, stable,
	Luca Boccassi

Fixes: d27a6261875d ("mbuf: remove control mbuf")
Cc: stable@dpdk.org

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
Cc: olivier.matz@6wind.com
Cc: Luca Boccassi <bluca@debian.org>
---
 lib/librte_mbuf/meson.build | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_mbuf/meson.build b/lib/librte_mbuf/meson.build
index 45ffb0db5..94d9c4c96 100644
--- a/lib/librte_mbuf/meson.build
+++ b/lib/librte_mbuf/meson.build
@@ -1,7 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
-version = 3
+version = 4
 sources = files('rte_mbuf.c', 'rte_mbuf_ptype.c', 'rte_mbuf_pool_ops.c')
 headers = files('rte_mbuf.h', 'rte_mbuf_ptype.h', 'rte_mbuf_pool_ops.h')
 deps += ['mempool']
-- 
2.17.2

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

* [dpdk-stable] [PATCH 5/6] ring: add library version to meson build
       [not found] <20181015145057.37864-1-ferruh.yigit@intel.com>
  2018-10-15 14:50 ` [dpdk-stable] [PATCH 4/6] mbuf: fix library version on meson build Ferruh Yigit
@ 2018-10-15 14:50 ` Ferruh Yigit
  2018-10-15 14:26   ` Luca Boccassi
  1 sibling, 1 reply; 4+ messages in thread
From: Ferruh Yigit @ 2018-10-15 14:50 UTC (permalink / raw)
  To: John McNamara, Marko Kovacevic, Olivier Matz
  Cc: dev, Ferruh Yigit, yipeng1.wang, pablo.de.lara.guarch, stable,
	Luca Boccassi

Fixes: a3d6026711d0 ("ring: relax alignment constraint on ring structure")
Cc: stable@dpdk.org

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
---
Cc: olivier.matz@6wind.com
Cc: Luca Boccassi <bluca@debian.org>
---
 lib/librte_ring/meson.build | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/librte_ring/meson.build b/lib/librte_ring/meson.build
index ca8a435e9..ab8b0b469 100644
--- a/lib/librte_ring/meson.build
+++ b/lib/librte_ring/meson.build
@@ -1,6 +1,7 @@
 # SPDX-License-Identifier: BSD-3-Clause
 # Copyright(c) 2017 Intel Corporation
 
+version = 2
 sources = files('rte_ring.c')
 headers = files('rte_ring.h',
 		'rte_ring_c11_mem.h',
-- 
2.17.2

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

end of thread, other threads:[~2018-10-15 14:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20181015145057.37864-1-ferruh.yigit@intel.com>
2018-10-15 14:50 ` [dpdk-stable] [PATCH 4/6] mbuf: fix library version on meson build Ferruh Yigit
2018-10-15 14:25   ` Luca Boccassi
2018-10-15 14:50 ` [dpdk-stable] [PATCH 5/6] ring: add library version to " Ferruh Yigit
2018-10-15 14:26   ` Luca Boccassi

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