--- old/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp 2016-11-16 16:45:35.307714000 +0100 +++ new/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp 2016-11-16 16:45:35.161707000 +0100 @@ -473,8 +473,10 @@ //////////////////////////////////////////////////////////////////////////////// // thread stack -size_t os::Posix::_compiler_thread_min_stack_allowed = 64 * K; -size_t os::Posix::_java_thread_min_stack_allowed = 64 * K; +// Minimum usable stack sizes required to get to user code. Space for VM +// guard pages is added later. +size_t os::Posix::_compiler_thread_min_stack_allowed = 32 * K; +size_t os::Posix::_java_thread_min_stack_allowed = 32 * K; size_t os::Posix::_vm_internal_thread_min_stack_allowed = 64 * K; // return default stack size for thr_type @@ -487,7 +489,7 @@ size_t os::Linux::default_guard_size(os::ThreadType thr_type) { // Creating guard page is very expensive. Java thread has HotSpot // guard page, only enable glibc guard page for non-Java threads. - return (thr_type == java_thread ? 0 : page_size()); + return ((thr_type == java_thread || thr_type == os::compiler_thread) ? 0 : page_size()); } // Java thread: