Skip to content

Commit 0f2ac20

Browse files
author
Thomas Schatzl
committedJun 25, 2020
8244603: G1 incorrectly limiting young gen size when using the reserve can result in repeated full gcs
8238858: G1 Mixed gc young gen sizing might cause the first mixed gc to immediately follow the prepare mixed gc Reviewed-by: sjohanss, iwalulya
1 parent 8c20401 commit 0f2ac20

File tree

3 files changed

+317
-202
lines changed

3 files changed

+317
-202
lines changed
 

‎src/hotspot/share/gc/g1/g1Analytics.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,11 @@ void G1Analytics::report_rs_length(double rs_length) {
224224
}
225225

226226
double G1Analytics::predict_alloc_rate_ms() const {
227-
return predict_zero_bounded(_alloc_rate_ms_seq);
227+
if (enough_samples_available(_alloc_rate_ms_seq)) {
228+
return predict_zero_bounded(_alloc_rate_ms_seq);
229+
} else {
230+
return 0.0;
231+
}
228232
}
229233

230234
double G1Analytics::predict_concurrent_refine_rate_ms() const {

0 commit comments

Comments
 (0)
Please sign in to comment.