From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chao Zhu Subject: [PATCH] librte_hash: Fix compile errors on IBM POWER Date: Tue, 8 Dec 2015 16:28:52 +0800 Message-ID: <1449563332-1536-1-git-send-email-chaozhu@linux.vnet.ibm.com> To: dev@dpdk.org Return-path: Received: from e23smtp03.au.ibm.com (e23smtp03.au.ibm.com [202.81.31.145]) by dpdk.org (Postfix) with ESMTP id C115F11C5 for ; Tue, 8 Dec 2015 09:27:12 +0100 (CET) Received: from localhost by e23smtp03.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 8 Dec 2015 18:27:10 +1000 Received: from d23relay08.au.ibm.com (d23relay08.au.ibm.com [9.185.71.33]) by d23dlp02.au.ibm.com (Postfix) with ESMTP id C43B82BB003F for ; Tue, 8 Dec 2015 19:27:08 +1100 (EST) Received: from d23av01.au.ibm.com (d23av01.au.ibm.com [9.190.234.96]) by d23relay08.au.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id tB88Qdof27852964 for ; Tue, 8 Dec 2015 19:26:50 +1100 Received: from d23av01.au.ibm.com (localhost [127.0.0.1]) by d23av01.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id tB88QXk6007960 for ; Tue, 8 Dec 2015 19:26:33 +1100 Received: from os_controller.crl.ibm.com ([9.186.57.26]) by d23av01.au.ibm.com (8.14.4/8.14.4/NCO v10.0 AVin) with ESMTP id tB88QWJf007001 for ; Tue, 8 Dec 2015 19:26:32 +1100 List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes the compile errors caused by lacking of "size_t" definition in rte_hash.h. Signed-off-by: Chao Zhu --- lib/librte_hash/rte_hash.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/lib/librte_hash/rte_hash.h b/lib/librte_hash/rte_hash.h index 6494ade..5046e9b 100644 --- a/lib/librte_hash/rte_hash.h +++ b/lib/librte_hash/rte_hash.h @@ -41,6 +41,7 @@ */ #include +#include #ifdef __cplusplus extern "C" { -- 1.7.1