changeset 5055:9b1cdb2b44fa

Backout earlier RH1015432 fix
author andrew
date Mon, 17 Mar 2014 13:43:56 +0000
parents e9721d827f31
children 9600c7d61f8f
files src/os/linux/vm/os_linux.cpp
diffstat 1 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/src/os/linux/vm/os_linux.cpp	Mon Mar 17 13:40:34 2014 +0000
+++ b/src/os/linux/vm/os_linux.cpp	Mon Mar 17 13:43:56 2014 +0000
@@ -4637,15 +4637,7 @@
   // class initialization depending on 32 or 64 bit VM.
   os::Linux::min_stack_allowed = MAX2(os::Linux::min_stack_allowed,
             (size_t)(StackYellowPages+StackRedPages+StackShadowPages) * Linux::page_size() +
-                    (2*BytesPerWord COMPILER2_PRESENT(+1)) 
-                       * 
-#ifdef PPC
-                      NOT_ZERO ( Linux::vm_default_page_size() ) 
-                       ZERO_ONLY ( Linux::page_size() )
-#else                   
-                       ( Linux::vm_default_page_size() )
-#endif
-                     );
+                    (2*BytesPerWord COMPILER2_PRESENT(+1)) * Linux::vm_default_page_size());
 
   size_t threadStackSizeInBytes = ThreadStackSize * K;
   if (threadStackSizeInBytes != 0 &&