From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 63CE3A0577;
	Tue, 14 Apr 2020 05:12:00 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id B82B91C07D;
	Tue, 14 Apr 2020 05:11:55 +0200 (CEST)
Received: from mga18.intel.com (mga18.intel.com [134.134.136.126])
 by dpdk.org (Postfix) with ESMTP id E84471C032;
 Tue, 14 Apr 2020 05:11:52 +0200 (CEST)
IronPort-SDR: HKxhuaOeolAqR0SRZxL+ewL927bMBWs4PSUx2UOHxCaWkT0qCtXnLjwSxWfAko0azMrENjp1/Q
 AZrAJhkZjcFA==
X-Amp-Result: SKIPPED(no attachment in message)
X-Amp-File-Uploaded: False
Received: from fmsmga005.fm.intel.com ([10.253.24.32])
 by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 13 Apr 2020 20:11:52 -0700
IronPort-SDR: tFqaaZS+gRImH/EbHGrrCb6byVnxEmMzP66uMDrt/C8An5pmjaTTLWFCl3QS3X/r0JwdngCM02
 MtG7F50vg14Q==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="5.72,381,1580803200"; d="scan'208";a="453387881"
Received: from npg-dpdk-haiyue-3.sh.intel.com ([10.67.119.46])
 by fmsmga005.fm.intel.com with ESMTP; 13 Apr 2020 20:11:50 -0700
From: Haiyue Wang <haiyue.wang@intel.com>
To: dev@dpdk.org, thomas@monjalon.net, vattunuru@marvell.com,
 jerinj@marvell.com, alex.williamson@redhat.com, david.marchand@redhat.com
Cc: Haiyue Wang <haiyue.wang@intel.com>,
	stable@dpdk.org
Date: Tue, 14 Apr 2020 11:06:24 +0800
Message-Id: <20200414030625.35195-2-haiyue.wang@intel.com>
X-Mailer: git-send-email 2.26.0
In-Reply-To: <20200414030625.35195-1-haiyue.wang@intel.com>
References: <20200305043311.17065-1-vattunuru@marvell.com>
 <20200414030625.35195-1-haiyue.wang@intel.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Subject: [dpdk-dev] [PATCH v5 1/2] eal: add uuid dependent header files
	explicitly
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

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