diff options
-rw-r--r-- | src/vppinfra/cache.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/vppinfra/cache.h b/src/vppinfra/cache.h index 7464b77a41b..e5c678eb517 100644 --- a/src/vppinfra/cache.h +++ b/src/vppinfra/cache.h @@ -45,17 +45,9 @@ */ #ifndef CLIB_LOG2_CACHE_LINE_BYTES -#if defined(__x86_64__) || defined(__ARM_ARCH_7A__) || defined(__i386__) -#define CLIB_LOG2_CACHE_LINE_BYTES 6 -#endif - -#ifdef __aarch64__ -#define CLIB_LOG2_CACHE_LINE_BYTES 7 -#endif - -/* Default cache line size of 32 bytes. */ +/* Default cache line size of 64 bytes. */ #ifndef CLIB_LOG2_CACHE_LINE_BYTES -#define CLIB_LOG2_CACHE_LINE_BYTES 5 +#define CLIB_LOG2_CACHE_LINE_BYTES 6 #endif #endif /* CLIB_LOG2_CACHE_LINE_BYTES defined */ |