[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-09 Thread Thomas Monjalon
2015-12-09 10:10, Jerin Jacob: > On Wed, Dec 09, 2015 at 12:11:47PM +0800, Chao Zhu wrote: > > This patch fixes the compile errors caused by lacking of "size_t" > > definition in rte_hash.h. The > > compile error exists on IBM POWER and ARM (see jerin.jacob at > > caviumnetworks.com's message). >

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-09 Thread Chao Zhu
This patch fixes the compile errors caused by lacking of "size_t" definition in rte_hash.h. The compile error exists on IBM POWER and ARM (see jerin.jacob at caviumnetworks.com's message). The errors are like: In file included from /tmp/dpdk/app/test/test_hash_scaling.c:35:0: /tmp/dpdk/build/inc

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-09 Thread Chao Zhu
Jerin, Both stdio.h and stddef.h works on POWER. To make it work on ARM, I'll use stddef.h and submit another patch. Thanks! On 2015/12/8 17:10, Jerin Jacob wrote: > On Tue, Dec 08, 2015 at 04:28:52PM +0800, Chao Zhu wrote: >> This patch fixes the compile errors caused by lacking of "size_t" de

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-09 Thread Jerin Jacob
On Wed, Dec 09, 2015 at 12:11:47PM +0800, Chao Zhu wrote: > This patch fixes the compile errors caused by lacking of "size_t" definition > in rte_hash.h. The > compile error exists on IBM POWER and ARM (see jerin.jacob at > caviumnetworks.com's message). remove relative references from git log,

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-08 Thread Chao Zhu
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..5046

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-08 Thread Jerin Jacob
On Tue, Dec 08, 2015 at 04:28:52PM +0800, Chao Zhu wrote: > 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

[dpdk-dev] [PATCH] librte_hash: Fix compile errors on IBM POWER

2015-12-08 Thread Thomas Monjalon
2015-12-08 16:28, Chao Zhu: > This patch fixes the compile errors caused by lacking of "size_t" definition > in rte_hash.h. > > Signed-off-by: Chao Zhu Please Chao, could you provide the exact error and a Fixes: line in the commit message? Thanks