-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8372993: Serial: max_eden_size is too small after JDK-8368740 #28630
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
8372993: Serial: max_eden_size is too small after JDK-8368740 #28630
Conversation
|
👋 Welcome back jsikstro! A progress list of the required criteria for merging this PR into |
|
@jsikstro 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 8 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
xmas92
left a comment
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.
|
Thank you for the reviews @albertnetymk @xmas92 @stefank |
|
Going to push as commit c063673.
Your commit was automatically rebased without conflicts. |
Hello,
_max_eden_sizedoes not represent the actual upper-limit of how large eden might grow. The upper-limit was changed in JDK-8368740, so that eden might now grow to be almost as large as the entire young generation. We run into an exception when trying to use this value through the MemoryUsage Java API. If the committed memory in eden is larger than_max_eden_size, we throw an exception in the Java constructor of MemoryUsage: https://github.com/openjdk/jdk/blob/master/src/java.management/share/classes/java/lang/management/MemoryUsage.java#L165-L168Testing:
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/28630/head:pull/28630$ git checkout pull/28630Update a local copy of the PR:
$ git checkout pull/28630$ git pull https://git.openjdk.org/jdk.git pull/28630/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 28630View PR using the GUI difftool:
$ git pr show -t 28630Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/28630.diff
Using Webrev
Link to Webrev Comment