commit | 65b4018eee73f75b0ab70d12b78e5e3bb46fb2c9 | [log] [tgz] |
---|---|---|
author | Jayanth Othayoth <ojayanth@gmail.com> | Wed Dec 18 06:35:30 2024 -0600 |
committer | Jayanth Othayoth <ojayanth@gmail.com> | Wed Dec 18 06:35:30 2024 -0600 |
tree | 02709bcd020c1c3ea0674a2b6184f52985807d25 | |
parent | 28b153cbb9ab588b97f801d29f29d2d0ccbce47a [diff] |
clang-tidy: Initial commit The clang-tidy configuration file has been initialized with all recommended C++ category checks. These category checks are currently disabled, except for one, which has been enabled for initial validation. This strategy allows developers to progressively enable the necessary checks over time. Tested: verified build. Change-Id: If85ac3c03ec2f2a22b6434ed8260af7da065fc48 Signed-off-by: Jayanth Othayoth <ojayanth@gmail.com>
This function is to provide the BMC with the ability to record ECC error SELs. The EDAC driver of BMC can detects and corrects memory errors, which helps identify problems before they become catastrophic faulty memory module.
phosphor-sel-logger
package must be installedRun the application and look up the ECC error count every second after service is started. On first start, it resets all correctable ECC counts and uncorrectable ECC counts in the EDAC driver.
it also provide the following path on D-Bus:
xyz.openbmc_project.Memory.ECC
/xyz/openbmc_project/metrics/memory/BmcECC
xyz.openbmc_project.Memory.MemoryECC
The interface with the following properties:
Property | Type | Description |
---|---|---|
isLoggingLimitReached | bool | ECC logging reach limits |
ceCount | int64 | correctable ECC events |
ueCount | int64 | uncorrectable ECC events |
state | string | bmc ECC event state |
It also devised a mechanism to limit the "maximum number" of logs to avoid creating a large number of correctable ECC logs. When the maximum quantity
is reached, the ECC service will stop to record the ECC log. The maximum quantity
(default:100) is saved in the configuration file, and the user can modify the value if necessary.
Use the phosphor-sel-logger
package to record the following logs in BMC SEL format.
ce_count
from EDAC driver parameter and the count exceeds previous count.ue_count
from EDAC driver parameter and the count exceeds previous count.maximum quantity
.