-
Notifications
You must be signed in to change notification settings - Fork 232
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
8326101: [PPC64] Need to bailout cleanly if creation of stubs fails when code cache is out of space #2604
8326101: [PPC64] Need to bailout cleanly if creation of stubs fails when code cache is out of space #2604
Conversation
👋 Welcome back mdoerr! A progress list of the required criteria for merging this PR into |
@TheRealMDoerr This change now passes all automated pre-integration checks. 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 1 new commit pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
This backport pull request has now been updated with issue from the original commit. |
|
Searching through the 11u-dev sources, I find a lot of nullptr usages. So why not allow it in 11u(_dev) hotspot too ? Would make life easier for backporters. |
/approval request JDK 11 is affected by this bug. The fix is small, only touches two PPC64 files and the version from 22u applies cleanly, but 11u requires a trivial adaptation which has been reviewed. The fix has been tested in head for some time and retested in 22u, 21u-dev, 17u-dev and 11u-dev. No regression found. |
GHA test failure is obviously unrelated. |
The JDK allows usage of nullptr, but hotspot doesn't: "error: 'nullptr' was not declared in this scope" |
@TheRealMDoerr |
/integrate |
Going to push as commit c5ba4b5.
Your commit was automatically rebased without conflicts. |
@TheRealMDoerr Pushed as commit c5ba4b5. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Backport of JDK-8326101. Version from 22u applies cleanly, but 11u uses
NULL
instead ofnullptr
(replaced by 2nd commit).Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk11u-dev.git pull/2604/head:pull/2604
$ git checkout pull/2604
Update a local copy of the PR:
$ git checkout pull/2604
$ git pull https://git.openjdk.org/jdk11u-dev.git pull/2604/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 2604
View PR using the GUI difftool:
$ git pr show -t 2604
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk11u-dev/pull/2604.diff
Webrev
Link to Webrev Comment