From db6db050de54d85626f5e3029b63fd11309a16ea Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 2 Apr 2020 15:11:53 +0200 Subject: [PATCH] Increase BUFFER_SIZE for POWER8/9 --- common_power.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_power.h b/common_power.h index 26fb37a7d..71e16178e 100644 --- a/common_power.h +++ b/common_power.h @@ -842,7 +842,7 @@ Lmcount$lazy_ptr: #elif defined(PPC440FP2) #define BUFFER_SIZE ( 16 << 20) #elif defined(POWER8) || defined(POWER9) -#define BUFFER_SIZE ( 64 << 21) +#define BUFFER_SIZE ( 64 << 22) #else #define BUFFER_SIZE ( 16 << 20) #endif