From 037d51d7b0640da53cf60a1df8e99df6ba373319 Mon Sep 17 00:00:00 2001 From: Ed Nevill Date: Tue, 27 Oct 2015 10:08:48 +0000 Subject: [PATCH] 8140582: aarch64: jvm fails to initialise after 8078556 Jvm fails to initialise on aarch64 systems with pagesize > 4K Reviewed-by: duke --- hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp b/hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp index e770da27179..6f213f20a24 100644 --- a/hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp +++ b/hotspot/src/cpu/aarch64/vm/globals_aarch64.hpp @@ -59,9 +59,9 @@ define_pd_global(intx, InlineFrequencyCount, 100); #define DEFAULT_STACK_RED_PAGES (1) #define DEFAULT_STACK_SHADOW_PAGES (4 DEBUG_ONLY(+5)) -#define MIN_STACK_YELLOW_PAGES DEFAULT_STACK_YELLOW_PAGES -#define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES -#define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES +#define MIN_STACK_YELLOW_PAGES 1 +#define MIN_STACK_RED_PAGES 1 +#define MIN_STACK_SHADOW_PAGES 1 define_pd_global(intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES); define_pd_global(intx, StackRedPages, DEFAULT_STACK_RED_PAGES);