X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Fcrc32.h;h=340b539558e56ed61814cb9104f742488d0acb23;hb=89c27818b3bba409ed8e4ccacc9be37384b46705;hp=5a47236a2ba1d5443db574f3ae3e809db8973f2f;hpb=b4bd28a490012ecbce292561da404d4e9b02d24b;p=vpp.git diff --git a/src/vppinfra/crc32.h b/src/vppinfra/crc32.h index 5a47236a2ba..340b539558e 100644 --- a/src/vppinfra/crc32.h +++ b/src/vppinfra/crc32.h @@ -16,10 +16,14 @@ #ifndef __included_crc32_h__ #define __included_crc32_h__ +#include + #if __SSE4_2__ #define clib_crc32c_uses_intrinsics #include +#define crc32_u64 _mm_crc32_u64 + static_always_inline u32 clib_crc32c (u8 * s, int len) { @@ -47,9 +51,12 @@ clib_crc32c (u8 * s, int len) } #elif __ARM_FEATURE_CRC32 -#define clib_crc32c_with_intrinsics +#define clib_crc32c_uses_intrinsics #include + +#define crc32_u64 __crc32cd + static_always_inline u32 clib_crc32c (u8 * s, int len) {