Re: [dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection

2019-04-10 Thread Thomas Monjalon
> > From: Jerin Jacob > > > > Use CRC32 instruction only when it is available to avoid > > the build issue like below. > > > > {standard input}:16: Error: > > selected processor does not support `crc32cx w3,w3,x0' > > > > Fixes: ea7be0a0386e ("lib/librte_table: add hash function headers") > > C

Re: [dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection

2019-04-08 Thread Dumitrescu, Cristian
dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function > selection > > From: Jerin Jacob > > Use CRC32 instruction only when it is available to avoid > the build issue like below. > > {standard input}:16: Error: > selected processor does not support `crc32cx w3,w3,x0&#

[dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection

2019-04-06 Thread Jerin Jacob Kollanukkaran
From: Jerin Jacob Use CRC32 instruction only when it is available to avoid the build issue like below. {standard input}:16: Error: selected processor does not support `crc32cx w3,w3,x0' Fixes: ea7be0a0386e ("lib/librte_table: add hash function headers") Cc: Gavin Hu Cc: sta...@dpdk.org Signed