Correct chunk allocation size for standard loaders in class space stuefe-new-metaspace-branch
authorstuefe
Fri, 27 Sep 2019 19:02:25 +0200
branchstuefe-new-metaspace-branch
changeset 58381 5f5558a1a113
parent 58380 0d77dd9159b1
child 58382 2e16658b7776
Correct chunk allocation size for standard loaders in class space
src/hotspot/share/memory/metaspace/chunkAllocSequence.cpp
--- a/src/hotspot/share/memory/metaspace/chunkAllocSequence.cpp	Fri Sep 27 19:01:21 2019 +0200
+++ b/src/hotspot/share/memory/metaspace/chunkAllocSequence.cpp	Fri Sep 27 19:02:25 2019 +0200
@@ -71,10 +71,10 @@
 };
 
 static const chklvl_t g_sequ_standard_class[] = {
-    chklvl::CHUNK_LEVEL_4K,
-    chklvl::CHUNK_LEVEL_4K,
-    chklvl::CHUNK_LEVEL_4K,
-    chklvl::CHUNK_LEVEL_4K,
+    chklvl::CHUNK_LEVEL_2K,
+    chklvl::CHUNK_LEVEL_2K,
+    chklvl::CHUNK_LEVEL_2K,
+    chklvl::CHUNK_LEVEL_2K,
     chklvl::CHUNK_LEVEL_32K,
     -1 // .. repeat last
 };