Skip to content

Commit 50158f3

Browse files
author
Thomas Schatzl
committedSep 12, 2023
8316002: Remove unnecessary seen_dead_loader in ClassLoaderDataGraph::do_unloading
Reviewed-by: coleenp
1 parent 6f2684b commit 50158f3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎src/hotspot/share/classfile/classLoaderDataGraph.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,6 @@ bool ClassLoaderDataGraph::do_unloading() {
494494
assert_locked_or_safepoint(ClassLoaderDataGraph_lock);
495495

496496
ClassLoaderData* prev = nullptr;
497-
bool seen_dead_loader = false;
498497
uint loaders_processed = 0;
499498
uint loaders_removed = 0;
500499

@@ -505,7 +504,6 @@ bool ClassLoaderDataGraph::do_unloading() {
505504
} else {
506505
// Found dead CLD.
507506
loaders_removed++;
508-
seen_dead_loader = true;
509507
data->unload();
510508

511509
// Move dead CLD to unloading list.
@@ -523,7 +521,7 @@ bool ClassLoaderDataGraph::do_unloading() {
523521

524522
log_debug(class, loader, data)("do_unloading: loaders processed %u, loaders removed %u", loaders_processed, loaders_removed);
525523

526-
return seen_dead_loader;
524+
return loaders_removed != 0;
527525
}
528526

529527
// There's at least one dead class loader. Purge refererences of healthy module

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Sep 12, 2023

@openjdk-notifier[bot]

GoeLin commented on Mar 29, 2024

@GoeLin
Member

/backport jdk21u-dev

openjdk[bot] commented on Mar 29, 2024

@openjdk[bot]

@GoeLin the backport was successfully created on the branch backport-GoeLin-50158f39 in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 50158f39 from the openjdk/jdk repository.

The commit being backported was authored by Thomas Schatzl on 12 Sep 2023 and was reviewed by Coleen Phillimore.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:

$ git fetch https://github.com/openjdk-bots/jdk21u-dev.git backport-GoeLin-50158f39:backport-GoeLin-50158f39
$ git checkout backport-GoeLin-50158f39
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u-dev.git backport-GoeLin-50158f39
Please sign in to comment.