[jdk13u-dev] RFR: 8255468: JDK-8255269 incorrectly replaced average copy time

Yuri Nesterenko yan at openjdk.java.net
Wed Oct 28 06:37:22 UTC 2020


On Tue, 27 Oct 2020 16:50:29 GMT, Paul Hohensee <phh at openjdk.org> wrote:

> Please review this fix to the patch for JDK-8255269. Part of the average copy time calculation was left out. This line from the patch
> 
> double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy);
> 
> should be
> 
> double average_copy_time = average_time_ms(G1GCPhaseTimes::ObjCopy) + average_time_ms(G1GCPhaseTimes::OptObjCopy);
> 
> Thanks,
> Paul

Marked as reviewed by yan (Reviewer).

-------------

PR: https://git.openjdk.java.net/jdk13u-dev/pull/6


More information about the jdk-updates-dev mailing list