# HG changeset patch # User stuefe # Date 1569603745 -7200 # Node ID 5f5558a1a1136a6b7c879fd0921c44adb512fffb # Parent 0d77dd9159b1634a71fcb18314e8720ed521ad85 Correct chunk allocation size for standard loaders in class space diff -r 0d77dd9159b1 -r 5f5558a1a113 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 };