OCPBUGS-104855: Fix PPC example CPU counts for HT compatibility (4.19) - #117457
OCPBUGS-104855: Fix PPC example CPU counts for HT compatibility (4.19)#117457kquinn1204 wants to merge 1 commit into
Conversation
|
@kquinn1204: This pull request references Jira Issue OCPBUGS-104855, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
🤖 Mon Aug 10 15:05:20 - Prow CI generated the docs preview: |
…bility Change --reserved-cpu-count from 1 to 2 and remove --offlined-cpu-count from the example command so it works on hyper-threading systems without error. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2a81c1e to
c700a8c
Compare
|
@kquinn1204: This pull request references Jira Issue OCPBUGS-104855, which is invalid:
Comment DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
@kquinn1204: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Version(s):
4.19
Issue:
https://redhat.atlassian.net/browse/OCPBUGS-104855
Link to docs preview:
QE review:
Additional information:
Cherry-pick of fc42ec6 from PR #117426 (main branch).
The PPC example command used
--reserved-cpu-count=1and--offlined-cpu-count=1, which fails on hyper-threading systems (the default) with:Changes:
--reserved-cpu-countfrom1to2for HT NUMA compatibility.--offlined-cpu-countfrom the example (on a 4-CPU system, 2 reserved + 2 offlined = 0 isolated, which is invalid).Note: This backport retains the
level=info msg="..."log format used by PPC in 4.19. The v4.20+PPC: ...format update is in PR #117426 (main) only.