src/hotspot/share/gc/g1/g1CollectedHeap.cpp
changeset 54368 f15b5d110fbc
parent 54262 1f9ad92e337b
child 54375 a5ce9300462f
--- a/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Mon Apr 01 14:34:24 2019 -0700
+++ b/src/hotspot/share/gc/g1/g1CollectedHeap.cpp	Mon Apr 01 14:54:48 2019 -0700
@@ -1575,7 +1575,10 @@
     //    And ReservedSpace calls it 'special'. If we failed to set 'special',
     //    we reserved memory without large page.
     if (os::can_commit_large_page_memory() || rs.special()) {
-      page_size = rs.alignment();
+      // An alignment at ReservedSpace comes from preferred page size or
+      // heap alignment, and if the alignment came from heap alignment, it could be
+      // larger than large pages size. So need to cap with the large page size.
+      page_size = MIN2(rs.alignment(), os::large_page_size());
     }
   }