From: Thomas Monjalon Date: Wed, 30 Mar 2016 13:59:05 +0000 (+0200) Subject: examples/ip_pipeline: fix SSE4.2 optimization branch X-Git-Tag: spdx-start~7111 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e27529c61cb7c004c458dfdeaea1b19f5c40e6fc;p=dpdk.git examples/ip_pipeline: fix SSE4.2 optimization branch The branch was disabled because of a typo in the SSE4.2 flag. Change also the x86_64 flag to use a DPDK one. Fixes: 28377375c6c0 ("examples/ip_pipeline: fix build for x86_64 without SSE4.2") Signed-off-by: Thomas Monjalon Acked-by: Cristian Dumitrescu --- diff --git a/examples/ip_pipeline/pipeline/hash_func.h b/examples/ip_pipeline/pipeline/hash_func.h index 1953ad4706..9db7173f5e 100644 --- a/examples/ip_pipeline/pipeline/hash_func.h +++ b/examples/ip_pipeline/pipeline/hash_func.h @@ -152,7 +152,7 @@ hash_xor_key64(void *key, __rte_unused uint32_t key_size, uint64_t seed) return (xor0 >> 32) ^ xor0; } -#if defined(__x86_64__) && defined(RTE_CPUFLAG_SSE4_2) +#if defined(RTE_ARCH_X86_64) && defined(RTE_MACHINE_CPUFLAG_SSE4_2) #include