libpdbg: Replace POWER10 with POWER #102
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently we see POWER10 prefix for all targets in Nag Dump for power11
systems, changing it to POWER to make it consistent.
Test Results:
Before:
root@p10bmc:/tmp/test# faultlog -f
<6> faultlog app to collect deconfig/guard records details <6> Latest chassis poweron time read is :02/09/2025 08:08:25 [
{
"SYSTEM": {
"SYSTEM_SN": "139F210",
"SYSTEM_TYPE": "9105-22B"
}
},
{
"POLICY": {
"FCO_VALUE": 4,
"MASTER": true,
"PREDICTIVE": true
}
},
{
"MANUAL_ISOLATION": {
"CURRENT_STATE": "DECONFIGURED",
"LOCATION_CODE": "Ufcs-P0-C27",
"PHYS_PATH": "physical:sys-0/node-0/dimm-4",
"REASON_DESCRIPTION": "MANUAL",
"TYPE": "POWER10 DIMM" ---> POWER10 prefix
}
},
After:
root@p10bmc:/tmp/test# faultlog -f
<6> faultlog app to collect deconfig/guard records details <6> Latest chassis poweron time read is :02/09/2025 08:08:25 [
{
"SYSTEM": {
"SYSTEM_SN": "139F210",
"SYSTEM_TYPE": "9105-22B"
}
},
{
"POLICY": {
"FCO_VALUE": 4,
"MASTER": true,
"PREDICTIVE": true
}
},
{
"MANUAL_ISOLATION": {
"CURRENT_STATE": "DECONFIGURED",
"LOCATION_CODE": "Ufcs-P0-C27",
"PHYS_PATH": "physical:sys-0/node-0/dimm-4",
"REASON_DESCRIPTION": "MANUAL",
"TYPE": "POWER DIMM" ---> changed to POWER
}
},
Change-Id: I33822ffffdc942755d1c7cb5b8c480800e89842e