--- old/src/hotspot/share/gc/g1/g1CollectedHeap.cpp 2020-08-04 14:27:25.517451710 +0200 +++ new/src/hotspot/share/gc/g1/g1CollectedHeap.cpp 2020-08-04 14:27:25.389449892 +0200 @@ -1968,7 +1968,7 @@ } void G1CollectedHeap::increment_old_marking_cycles_completed(bool concurrent, - bool liveness_completed) { + bool whole_heap_examined) { MonitorLocker ml(G1OldGCCount_lock, Mutex::_no_safepoint_check_flag); // We assume that if concurrent == true, then the caller is a @@ -2000,7 +2000,7 @@ _old_marking_cycles_started, _old_marking_cycles_completed); _old_marking_cycles_completed += 1; - if (liveness_completed) { + if (whole_heap_examined) { next_whole_heap_examined(); }