# HG changeset patch # User ecaspole # Date 1572371474 14400 # Node ID 5a0e0d0b3a278f048e8a98583858bc95fca4ba04 # Parent 63994dedec49c0604622679c5b56820d66f2840b 8233075: JFR - nmetods - misspelled in several places Reviewed-by: hseigel, mseledtsov diff -r 63994dedec49 -r 5a0e0d0b3a27 src/hotspot/share/jfr/metadata/metadata.xml --- a/src/hotspot/share/jfr/metadata/metadata.xml Tue Oct 29 10:13:27 2019 -0700 +++ b/src/hotspot/share/jfr/metadata/metadata.xml Tue Oct 29 13:51:14 2019 -0400 @@ -810,8 +810,8 @@ - - + + diff -r 63994dedec49 -r 5a0e0d0b3a27 src/hotspot/share/jfr/periodic/jfrPeriodic.cpp --- a/src/hotspot/share/jfr/periodic/jfrPeriodic.cpp Tue Oct 29 10:13:27 2019 -0700 +++ b/src/hotspot/share/jfr/periodic/jfrPeriodic.cpp Tue Oct 29 13:51:14 2019 -0400 @@ -558,8 +558,8 @@ event.set_standardCompileCount(CompileBroker::get_total_standard_compile_count()); event.set_osrBytesCompiled(CompileBroker::get_sum_osr_bytes_compiled()); event.set_standardBytesCompiled(CompileBroker::get_sum_standard_bytes_compiled()); - event.set_nmetodsSize(CompileBroker::get_sum_nmethod_size()); - event.set_nmetodCodeSize(CompileBroker::get_sum_nmethod_code_size()); + event.set_nmethodsSize(CompileBroker::get_sum_nmethod_size()); + event.set_nmethodCodeSize(CompileBroker::get_sum_nmethod_code_size()); event.set_peakTimeSpent(CompileBroker::get_peak_compilation_time()); event.set_totalTimeSpent(CompileBroker::get_total_compilation_time()); event.commit(); diff -r 63994dedec49 -r 5a0e0d0b3a27 test/jdk/jdk/jfr/event/compiler/TestCompilerStats.java --- a/test/jdk/jdk/jfr/event/compiler/TestCompilerStats.java Tue Oct 29 10:13:27 2019 -0700 +++ b/test/jdk/jdk/jfr/event/compiler/TestCompilerStats.java Tue Oct 29 13:51:14 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -59,8 +59,8 @@ Events.assertField(event, "standardCompileCount").atLeast(0); Events.assertField(event, "osrBytesCompiled").atLeast(0L); Events.assertField(event, "standardBytesCompiled").atLeast(0L); - Events.assertField(event, "nmetodsSize").atLeast(0L); - Events.assertField(event, "nmetodCodeSize").atLeast(0L); + Events.assertField(event, "nmethodsSize").atLeast(0L); + Events.assertField(event, "nmethodCodeSize").atLeast(0L); Events.assertField(event, "peakTimeSpent").atLeast(0L); Events.assertField(event, "totalTimeSpent").atLeast(0L); }