Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8268635: Corrupt oop in ClassLoaderData
Reviewed-by: iklam, dholmes
  • Loading branch information
coleenp committed Jul 7, 2021
1 parent bffb1a7 commit 3586a23
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/hotspot/share/classfile/classLoaderData.cpp
Expand Up @@ -806,6 +806,7 @@ void ClassLoaderData::init_handle_locked(OopHandle& dest, Handle h) {
if (dest.resolve() != NULL) {
return;
} else {
record_modified_oops();
dest = _handles.add(h());
}
}
Expand Down

6 comments on commit 3586a23

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@earthling-amzn
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk17

@openjdk
Copy link

@openjdk openjdk bot commented on 3586a23 Jul 9, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@earthling-amzn the backport was successfully created on the branch earthling-amzn-backport-3586a233 in my personal fork of openjdk/jdk17. To create a pull request with this backport targeting openjdk/jdk17: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 3586a233 from the openjdk/jdk repository.

The commit being backported was authored by Coleen Phillimore on 7 Jul 2021 and was reviewed by Ioi Lam and David Holmes.

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/jdk17:

$ git fetch https://github.com/openjdk-bots/jdk17 earthling-amzn-backport-3586a233:earthling-amzn-backport-3586a233
$ git checkout earthling-amzn-backport-3586a233
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17 earthling-amzn-backport-3586a233

@openjdk
Copy link

@openjdk openjdk bot commented on 3586a23 Jul 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AntonKozlov the target repository openjdk/13u does not exist.
List of valid repositories: jdk15u-dev, jdk16u, jdk17u, jdk12u, jdk13u, jdk11u-dev, jdk13u-dev, jdk14u, jdk15u, jdk17

@AntonKozlov
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/backport jdk13u-dev

@openjdk
Copy link

@openjdk openjdk bot commented on 3586a23 Jul 14, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@AntonKozlov the backport was successfully created on the branch AntonKozlov-backport-3586a233 in my personal fork of openjdk/jdk13u-dev. To create a pull request with this backport targeting openjdk/jdk13u-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 3586a233 from the openjdk/jdk repository.

The commit being backported was authored by Coleen Phillimore on 7 Jul 2021 and was reviewed by Ioi Lam and David Holmes.

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/jdk13u-dev:

$ git fetch https://github.com/openjdk-bots/jdk13u-dev AntonKozlov-backport-3586a233:AntonKozlov-backport-3586a233
$ git checkout AntonKozlov-backport-3586a233
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk13u-dev AntonKozlov-backport-3586a233

Please sign in to comment.