We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e56002c commit fc0d883Copy full SHA for fc0d883
src/hotspot/share/classfile/classLoaderDataGraph.cpp
@@ -586,7 +586,8 @@ void ClassLoaderDataGraph::purge(bool at_safepoint) {
586
// If we're purging metadata at a safepoint, clean remaining
587
// metaspaces if we need to.
588
if (at_safepoint) {
589
- if (_should_clean_deallocate_lists || InstanceKlass::has_previous_versions()) {
+ _safepoint_cleanup_needed = true; // tested and reset next.
590
+ if (should_clean_metaspaces_and_reset()) {
591
walk_metadata_and_clean_metaspaces();
592
}
593
} else {
0 commit comments