OCPBUGS-104855: Fix PPC example CPU counts for HT compatibility (4.17) - #117455
OCPBUGS-104855: Fix PPC example CPU counts for HT compatibility (4.17)#117455kquinn1204 wants to merge 2 commits into
Conversation
…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>
|
@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. |
…atibility Change --reserved-cpu-count from 1 to 2 and remove --offlined-cpu-count from the wrapper script example so it works on hyper-threading systems. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
🤖 Thu Aug 06 15:38:15 - Prow CI generated the docs preview: |
|
@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.17
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.17. The v4.20+PPC: ...format update is in PR #117426 (main) only.