- Loading...
...
/backport jdk11u-dev"git checkout -b my-backport-branch master""git backport --from https://github.com/openjdk/jdk <commit-sha>". See the SKARA Wiki for more info.git checkout -b my-backport-branch master""git fetch --no-tags https://github.com/openjdk/jdk <commit-sha>"git cherry-pick --no-commit <commit-sha>"git commit -a -m "Backport <commit sha>""make run-test TEST=tier1" to run"make run-test TEST=tier2" to run"make run-test TEST=<path-to-tests>" to run specific testsgit pr create --publish". If it is a backport, make sure the title of the PR is "Backport <SHA hash of original commit>" to have the bots correctly recognize your change as a backport.clean by the bots), get the change reviewed by some jdk-updates reviewer/label command.It is helpful to state in the PR description what changes were needed and why: the difference against original patch, motivations for doing things differently, etc.
| Code Block | ||||
|---|---|---|---|---|
| ||||
Hi, This is a backport of JDK-8888888: My Hovercraft Is Full Of Eels Original patch does not apply cleanly to 11u, because eels are all different sizes and shapes. Notably, I had to change the com/antioch/holy/Grenade.cpp to avoid API that only exists in 12+. Testing: x86_64 build, affected tests, tier1 Thanks, -Monty |
jdk11u-fix-request label and add a "Fix Request" comment on the issue, that explains why the fix should be backported, the dependencies on other backports (if any), shows what testing was done to verify the backport, gives a risk estimate, etc. The goal for the "Fix Request" comment is to give maintainers all the information about the backport to make an informed decision for inclusion into the update release.Wait for maintainer approval, which would manifest as jdk11u-fix-yes label on the issue.
| Code Block | ||||
|---|---|---|---|---|
| ||||
Fix Request Backporting this patch eliminates the critical eel overflow. Patch does not apply cleanly to 11u and requires adjustments. Backport requires JDK-8423421 and JDK-8771177 to be applied first. PR was acked by monty. |
| Code Block | ||||
|---|---|---|---|---|
| ||||
Fix Request Backporting this patch eliminates the critical eel overflow. Patch applies cleanly to 11u. New test fails without the product patch, and passes with it. Backport requires JDK-8423421 and JDK-8771177 to be applied first. tier1 and tier2 tests pass with the patch. |
11-pool. This issue will be resolved when the change is pushed....