All of lore.kernel.org
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection
@ 2019-04-06 13:29 Jerin Jacob Kollanukkaran
  2019-04-08 13:37 ` Dumitrescu, Cristian
  0 siblings, 1 reply; 3+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-04-06 13:29 UTC (permalink / raw)
  To: Cristian Dumitrescu
  Cc: dev@dpdk.org, thomas@monjalon.net, Jerin Jacob Kollanukkaran,
	Gavin Hu, stable@dpdk.org

From: Jerin Jacob <jerinj@marvell.com>

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 <gavin.hu@arm.com>
Cc: stable@dpdk.org

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
 lib/librte_table/rte_table_hash_func.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_table/rte_table_hash_func.h b/lib/librte_table/rte_table_hash_func.h
index 02296eabe..11ea5a90e 100644
--- a/lib/librte_table/rte_table_hash_func.h
+++ b/lib/librte_table/rte_table_hash_func.h
@@ -40,7 +40,7 @@ rte_crc32_u64(uint64_t crc, uint64_t v)
 	return _mm_crc32_u64(crc, v);
 }
 
-#elif defined(RTE_ARCH_ARM64)
+#elif defined(RTE_ARCH_ARM64) && defined(RTE_MACHINE_CPUFLAG_CRC32)
 #include "rte_table_hash_func_arm64.h"
 #else
 
-- 
2.21.0


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

end of thread, other threads:[~2019-04-10 20:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-06 13:29 [dpdk-dev] [PATCH] lib/librte_table: fix arm64 hash function selection Jerin Jacob Kollanukkaran
2019-04-08 13:37 ` Dumitrescu, Cristian
2019-04-10 20:05   ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.