From dcd6e756718b656d43f4575558f41ce0c28d0eca Mon Sep 17 00:00:00 2001 From: Jonas Norlinder <7039722+JonasNorlinder@users.noreply.github.com> Date: Fri, 25 Aug 2023 08:10:09 +0000 Subject: [PATCH] 8314990: Generational ZGC: Strong OopStorage stats reported as weak roots Reviewed-by: stefank, eosterlund --- src/hotspot/share/gc/z/zRootsIterator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/share/gc/z/zRootsIterator.cpp b/src/hotspot/share/gc/z/zRootsIterator.cpp index 130ab5e4627..086d90781dd 100644 --- a/src/hotspot/share/gc/z/zRootsIterator.cpp +++ b/src/hotspot/share/gc/z/zRootsIterator.cpp @@ -101,7 +101,7 @@ void ZParallelApply::apply(ClosureType* cl) { } void ZOopStorageSetIteratorStrong::apply(OopClosure* cl) { - ZRootStatTimer timer(ZSubPhaseConcurrentWeakRootsOopStorageSet, _generation); + ZRootStatTimer timer(ZSubPhaseConcurrentRootsOopStorageSet, _generation); _iter.oops_do(cl); }