-
Notifications
You must be signed in to change notification settings - Fork 155
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
8270317: Large Allocation in CipherSuite #253
Conversation
👋 Welcome back phh! A progress list of the required criteria for merging this PR into |
This backport pull request has now been updated with issue from the original commit. |
Webrevs
|
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 except for the comment change (which might be a merge artifact?).
@@ -39,7 +35,7 @@ | |||
import static sun.security.ssl.SupportedGroupsExtension.NamedGroupType.*; | |||
|
|||
/** | |||
* Enum for SSL/TLS cipher suites. | |||
* Enum for SSL/(D)TLS cipher suites |
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.
It doesn't look like the original 11u patch changed this comment so I don't think we need this change in 8.
cipherSuiteNames = Collections.unmodifiableMap(names); | ||
allowedCipherSuites = Collections.unmodifiableList(allowedCS); | ||
defaultCipherSuites = Collections.unmodifiableList(defaultCS); | ||
} |
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.
Agree that in this case Collections.unmodifiableMap()
/Collections.unmodifiableList()
are a good replacement for the missing copyOf()
. And it should also be faster, because it avoids a copy :)
@phohensee 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 19 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 |
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.
Hi Paul,
Thanks for your contribution. Looks good to me too.
Martin.-
Thank you, Martin. Now just waiting on maintainer review/approval... |
/integrate Got the approval. |
Going to push as commit aed31d9.
Your commit was automatically rebased without conflicts. |
@phohensee Pushed as commit aed31d9. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Backport for Oracle parity. Backport from 11u is not clean due to lack of CopyOf in 8u. The nearest equivalents are Collections.unmodifiableMap and Collections.unmodifiableList. Also, there is no jmh archive in 8u, so the performance test is not included.
Tier1 and all security tests pass, in production at Amazon for over a year without issues.
Progress
Issue
Reviewers
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk8u-dev pull/253/head:pull/253
$ git checkout pull/253
Update a local copy of the PR:
$ git checkout pull/253
$ git pull https://git.openjdk.org/jdk8u-dev pull/253/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 253
View PR using the GUI difftool:
$ git pr show -t 253
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk8u-dev/pull/253.diff