-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
8321685: Missing ResourceMark in code called from JvmtiEnvBase::get_vthread_jvf #17332
Conversation
👋 Welcome back sspitsyn! A progress list of the required criteria for merging this PR into |
Webrevs
|
@sspitsyn This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Note, it would be good if the jvmti code added comments explaining why a ResourceMark is needed. For these two cases I had to search around until I stumbled across the following in some unrelated code:
// vframes are resource allocated
Thread* current_thread = Thread::current();
ResourceMark rm(current_thread);
This looks very much like the code you are updating, except the updated code is lacking the comment.
Alex and Chris, thank you for review! |
/integrate |
Going to push as commit 2806ade.
Your commit was automatically rebased without conflicts. |
/backport jdk22 |
@sspitsyn the backport was successfully created on the branch backport-sspitsyn-2806adee in my personal fork of openjdk/jdk22. To create a pull request with this backport targeting openjdk/jdk22:master, just click the following link: The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
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/jdk22:
|
This fix adds a ResourceMark missing in the
SetFramePopClosure::do_thread
andSetFramePopClosure::do_vthread
.Testing:
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/17332/head:pull/17332
$ git checkout pull/17332
Update a local copy of the PR:
$ git checkout pull/17332
$ git pull https://git.openjdk.org/jdk.git pull/17332/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 17332
View PR using the GUI difftool:
$ git pr show -t 17332
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/17332.diff
Webrev
Link to Webrev Comment