# HG changeset patch # User tschatzl # Date 1408538080 -7200 # Node ID 8b27004a5786cc0cb283b6af8dcc00d5f13ec647 # Parent f75b959a3b4634236824b12bf18b981e3f808136 8055525: Bigapp weblogic+medrec fails to startup after JDK-8038423 Summary: If large pages are enabled and configured in Linux, the VM always pre-commits the entire space. The VM fails verification of the commit of the initial heap because some internal data structure marked all memory pages of the heap as committed during initialization. This makes the code think that we attempted a double-commit during first allocation of the heap. Remove the initial marking of memory pages of the heap to committed. Reviewed-by: mgerdin diff -r f75b959a3b46 -r 8b27004a5786 hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp --- a/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp Tue Aug 19 13:44:55 2014 -0700 +++ b/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp Wed Aug 20 14:34:40 2014 +0200 @@ -67,10 +67,6 @@ uintx size_in_bits = rs.size() / page_size; _committed.resize(size_in_bits, /* in_resource_area */ false); - if (_special) { - _committed.set_range(0, size_in_bits); - } - return true; }