patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH v5 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200414030625.35195-1-haiyue.wang@intel.com>
@ 2020-04-14  3:06   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-04-14  3:06 UTC (permalink / raw)
  To: dev, thomas, vattunuru, jerinj, alex.williamson, david.marchand
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.0


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

* [dpdk-stable] [PATCH v7 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200418111642.78874-1-haiyue.wang@intel.com>
@ 2020-04-18 11:16   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-04-18 11:16 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, vattunuru, jerinj, alex.williamson,
	david.marchand
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.1


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

* [dpdk-stable] [PATCH v8 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200418173035.8000-1-haiyue.wang@intel.com>
@ 2020-04-18 17:30   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-04-18 17:30 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, vattunuru, jerinj, alex.williamson,
	david.marchand
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.1


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

* [dpdk-stable] [PATCH v9 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200422050804.66781-1-haiyue.wang@intel.com>
@ 2020-04-22  5:08   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-04-22  5:08 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, vattunuru, jerinj, alex.williamson,
	david.marchand
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v10 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200426015514.39489-1-haiyue.wang@intel.com>
@ 2020-04-26  1:55   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-04-26  1:55 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, vattunuru, jerinj, alex.williamson,
	david.marchand
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v11 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200505074646.31985-1-haiyue.wang@intel.com>
@ 2020-05-05  7:46   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-05-05  7:46 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand; +Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v12 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200505103440.38455-1-haiyue.wang@intel.com>
@ 2020-05-05 10:34   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-05-05 10:34 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand; +Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v13 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200506113524.30205-1-haiyue.wang@intel.com>
@ 2020-05-06 11:35   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-05-06 11:35 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand; +Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v14 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200528012225.74142-1-haiyue.wang@intel.com>
@ 2020-05-28  1:22   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-05-28  1:22 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand, arybchenko
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v15 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200529013710.72302-1-haiyue.wang@intel.com>
@ 2020-05-29  1:37   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-05-29  1:37 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand, arybchenko,
	xiaolong.ye
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.26.2


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

* [dpdk-stable] [PATCH v16 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200617063321.52709-1-haiyue.wang@intel.com>
@ 2020-06-17  6:33   ` Haiyue Wang
  0 siblings, 0 replies; 13+ messages in thread
From: Haiyue Wang @ 2020-06-17  6:33 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand, arybchenko,
	xiaolong.ye
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.27.0


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

* [dpdk-stable] [PATCH v17 1/2] eal: add uuid dependent header files explicitly
       [not found] ` <20200703145718.81017-1-haiyue.wang@intel.com>
@ 2020-07-03 14:57   ` Haiyue Wang
  2020-07-06 14:32     ` David Marchand
  0 siblings, 1 reply; 13+ messages in thread
From: Haiyue Wang @ 2020-07-03 14:57 UTC (permalink / raw)
  To: dev, anatoly.burakov, thomas, jerinj, david.marchand, arybchenko
  Cc: Haiyue Wang, stable

Add the dependent header files explicitly, so that the user just needs
to include the 'rte_uuid.h' header file directly to avoid compile error:
 (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
 (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’

Fixes: 6bc67c497a51 ("eal: add uuid API")
Cc: stable@dpdk.org

Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
---
 lib/librte_eal/include/rte_uuid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
index 044afbdfa..8b42e070a 100644
--- a/lib/librte_eal/include/rte_uuid.h
+++ b/lib/librte_eal/include/rte_uuid.h
@@ -15,6 +15,8 @@ extern "C" {
 #endif
 
 #include <stdbool.h>
+#include <stddef.h>
+#include <string.h>
 
 /**
  * Struct describing a Universal Unique Identifier
-- 
2.27.0


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

* Re: [dpdk-stable] [PATCH v17 1/2] eal: add uuid dependent header files explicitly
  2020-07-03 14:57   ` [dpdk-stable] [PATCH v17 " Haiyue Wang
@ 2020-07-06 14:32     ` David Marchand
  0 siblings, 0 replies; 13+ messages in thread
From: David Marchand @ 2020-07-06 14:32 UTC (permalink / raw)
  To: Haiyue Wang
  Cc: dev, Burakov, Anatoly, Thomas Monjalon,
	Jerin Jacob Kollanukkaran, Andrew Rybchenko, dpdk stable

On Fri, Jul 3, 2020 at 5:05 PM Haiyue Wang <haiyue.wang@intel.com> wrote:
>
> Add the dependent header files explicitly, so that the user just needs
> to include the 'rte_uuid.h' header file directly to avoid compile error:
>  (1). rte_uuid.h:97:55: error: unknown type name ‘size_t’
>  (2). rte_uuid.h:58:2: error: implicit declaration of function ‘memcpy’
>
> Fixes: 6bc67c497a51 ("eal: add uuid API")
> Cc: stable@dpdk.org
>
> Signed-off-by: Haiyue Wang <haiyue.wang@intel.com>
> ---
>  lib/librte_eal/include/rte_uuid.h | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/lib/librte_eal/include/rte_uuid.h b/lib/librte_eal/include/rte_uuid.h
> index 044afbdfa..8b42e070a 100644
> --- a/lib/librte_eal/include/rte_uuid.h
> +++ b/lib/librte_eal/include/rte_uuid.h
> @@ -15,6 +15,8 @@ extern "C" {
>  #endif
>
>  #include <stdbool.h>
> +#include <stddef.h>
> +#include <string.h>
>
>  /**
>   * Struct describing a Universal Unique Identifier
> --
> 2.27.0
>

Acked-by: David Marchand <david.marchand@redhat.com>


-- 
David Marchand


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

end of thread, other threads:[~2020-07-06 14:32 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200305043311.17065-1-vattunuru@marvell.com>
     [not found] ` <20200414030625.35195-1-haiyue.wang@intel.com>
2020-04-14  3:06   ` [dpdk-stable] [PATCH v5 1/2] eal: add uuid dependent header files explicitly Haiyue Wang
     [not found] ` <20200418111642.78874-1-haiyue.wang@intel.com>
2020-04-18 11:16   ` [dpdk-stable] [PATCH v7 " Haiyue Wang
     [not found] ` <20200418173035.8000-1-haiyue.wang@intel.com>
2020-04-18 17:30   ` [dpdk-stable] [PATCH v8 " Haiyue Wang
     [not found] ` <20200422050804.66781-1-haiyue.wang@intel.com>
2020-04-22  5:08   ` [dpdk-stable] [PATCH v9 " Haiyue Wang
     [not found] ` <20200426015514.39489-1-haiyue.wang@intel.com>
2020-04-26  1:55   ` [dpdk-stable] [PATCH v10 " Haiyue Wang
     [not found] ` <20200505074646.31985-1-haiyue.wang@intel.com>
2020-05-05  7:46   ` [dpdk-stable] [PATCH v11 " Haiyue Wang
     [not found] ` <20200505103440.38455-1-haiyue.wang@intel.com>
2020-05-05 10:34   ` [dpdk-stable] [PATCH v12 " Haiyue Wang
     [not found] ` <20200506113524.30205-1-haiyue.wang@intel.com>
2020-05-06 11:35   ` [dpdk-stable] [PATCH v13 " Haiyue Wang
     [not found] ` <20200528012225.74142-1-haiyue.wang@intel.com>
2020-05-28  1:22   ` [dpdk-stable] [PATCH v14 " Haiyue Wang
     [not found] ` <20200529013710.72302-1-haiyue.wang@intel.com>
2020-05-29  1:37   ` [dpdk-stable] [PATCH v15 " Haiyue Wang
     [not found] ` <20200617063321.52709-1-haiyue.wang@intel.com>
2020-06-17  6:33   ` [dpdk-stable] [PATCH v16 " Haiyue Wang
     [not found] ` <20200703145718.81017-1-haiyue.wang@intel.com>
2020-07-03 14:57   ` [dpdk-stable] [PATCH v17 " Haiyue Wang
2020-07-06 14:32     ` David Marchand

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