[jdk13u-dev] RFR: 8255468: JDK-8255269 incorrectly replaced average copy time
Paul Hohensee
phh at openjdk.java.net
Wed Oct 28 16:37:46 UTC 2020
On Wed, 28 Oct 2020 06:34:18 GMT, Yuri Nesterenko <yan 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).
Thanks, Yuri.
-------------
PR: https://git.openjdk.java.net/jdk13u-dev/pull/6
More information about the jdk-updates-dev
mailing list