Lines Matching full:pel

21 #include "pel.hpp"
82 // If a PEL was passed in via a filename or in an ESEL, in create()
118 "Filesystem error reading a raw PEL. File = {FILE}, obmcLogID = {LOGID}", in addRawPEL()
134 "Raw PEL file from BMC event log does not exit. File = {FILE}, obmcLogID = {LOGID}", in addRawPEL()
141 auto pel = std::make_unique<openpower::pels::PEL>(pelData, obmcLogID); in addPEL() local
142 if (pel->valid()) in addPEL()
145 pel->setCommitTime(); in addPEL()
147 // Assign Id other than to Hostbot PEL in addPEL()
148 if ((pel->privateHeader()).creatorID() != in addPEL()
151 pel->assignID(); in addPEL()
155 const Repository::LogID id{Repository::LogID::Pel(pel->id())}; in addPEL()
160 "Duplicate HostBoot PEL ID {ID} found, moving it to archive folder", in addPEL()
161 "ID", lg2::hex, pel->id()); in addPEL()
163 _repo.archivePEL(*pel); in addPEL()
172 pel->updateSysInfoInExtendedUserDataSection(*_dataIface); in addPEL()
175 updateProgressSRC(pel); in addPEL()
179 lg2::debug("Adding external PEL {ID} (BMC ID {BMCID}) to repo", in addPEL()
180 "ID", lg2::hex, pel->id(), "BMCID", obmcLogID); in addPEL()
181 _repo.add(pel); in addPEL()
190 policy->activate(*pel); in addPEL()
195 lg2::error("Unable to add PEL {ID} to Repository", "ID", lg2::hex, in addPEL()
196 pel->id()); in addPEL()
199 updateEventId(pel); in addPEL()
200 updateResolution(*pel); in addPEL()
205 checkPelAndQuiesce(pel); in addPEL()
209 lg2::error("Invalid PEL received from the host. BMC ID = {ID}", "ID", in addPEL()
213 ad.add("PLID", getNumberString("0x%08X", pel->plid())); in addPEL()
218 auto src = pel->primarySRC(); in addPEL()
230 // Not adding it to the PEL because it could already be max size in addPEL()
231 // and don't want to truncate an already invalid PEL. in addPEL()
245 lg2::debug("Adding PEL from ESEL. BMC ID = {ID}", "ID", obmcLogID); in addESELPEL()
266 // characters per raw byte, and since the actual PEL data starts in eselToRawData()
267 // at the 16th byte, the code will grab the PEL data starting at in eselToRawData()
383 // to this AD. This way, there will at least be a PEL, in createPEL()
385 // issue that caused the error even without its own PEL. in createPEL()
386 lg2::error("Event not found in PEL message registry: {MSG}", "MSG", in createPEL()
392 lg2::error("Default event not found in PEL message registry"); in createPEL()
399 auto pel = std::make_unique<openpower::pels::PEL>( in createPEL() local
403 _repo.add(pel); in createPEL()
410 auto src = pel->primarySRC(); in createPEL()
418 lg2::info("Created PEL {ID} (BMC ID {BMCID}) with SRC {SRC}", "ID", in createPEL()
419 lg2::hex, pel->id(), "BMCID", pel->obmcLogID(), "SRC", in createPEL()
424 updateProgressSRC(pel); in createPEL()
428 policy->activate(*pel); in createPEL()
430 updateDBusSeverity(*pel); in createPEL()
431 updateEventId(pel); in createPEL()
432 updateResolution(*pel); in createPEL()
437 checkPelAndQuiesce(pel); in createPEL()
442 Repository::LogID id{Repository::LogID::Pel(pelID)}; in getPEL()
505 Repository::LogID id{Repository::LogID::Pel(pelID)}; in hostAck()
522 Repository::LogID id{Repository::LogID::Pel(pelID)}; in hostReject()
603 // An event for 1 PEL uses 48B. When all PELs are deleted at once, in pelFileDeleted()
625 // Get the PEL ID from the filename and tell the in pelFileDeleted()
636 Repository::LogID id{Repository::LogID::Pel(pelID)}; in pelFileDeleted()
645 lg2::info("Could not find PEL ID from its filename {NAME}", in pelFileDeleted()
699 void Manager::checkPelAndQuiesce(std::unique_ptr<openpower::pels::PEL>& pel) in checkPelAndQuiesce() argument
701 if ((pel->userHeader().severity() == in checkPelAndQuiesce()
703 (pel->userHeader().severity() == in checkPelAndQuiesce()
707 "PEL severity informational or recovered. no quiesce needed"); in checkPelAndQuiesce()
716 CreatorID creatorID{pel->privateHeader().creatorID()}; in checkPelAndQuiesce()
727 if (pel->isHwCalloutPresent()) in checkPelAndQuiesce()
730 "QuiesceOnHwError enabled, PEL severity not nonError or recovered, " in checkPelAndQuiesce()
733 _logManager.quiesceOnError(pel->obmcLogID()); in checkPelAndQuiesce()
737 std::string Manager::getEventId(const openpower::pels::PEL& pel) const in getEventId()
740 auto src = pel.primarySRC(); in getEventId()
762 void Manager::updateEventId(std::unique_ptr<openpower::pels::PEL>& pel) in updateEventId() argument
764 std::string eventIdStr = getEventId(*pel); in updateEventId()
766 auto entryN = _logManager.entries.find(pel->obmcLogID()); in updateEventId()
784 std::string Manager::getResolution(const openpower::pels::PEL& pel) const in getResolution()
788 auto src = pel.primarySRC(); in getResolution()
850 bool Manager::updateResolution(const openpower::pels::PEL& pel) in updateResolution() argument
852 std::string callouts = getResolution(pel); in updateResolution()
853 auto entryN = _logManager.entries.find(pel.obmcLogID()); in updateResolution()
871 void Manager::updateDBusSeverity(const openpower::pels::PEL& pel) in updateDBusSeverity() argument
873 // The final severity of the PEL may not agree with the in updateDBusSeverity()
877 // log for an informational or recovered PEL (or vice versa). in updateDBusSeverity()
882 static_cast<SeverityType>(pel.userHeader().severity() & 0xF0); in updateDBusSeverity()
884 auto entryN = _logManager.entries.find(pel.obmcLogID()); in updateDBusSeverity()
892 "to {NEW} to match PEL", in updateDBusSeverity()
973 // Path to create PELEntry Interface is same as PEL in createPELEntry()
1001 Repository::LogID id{Repository::LogID::Pel(pelId)}; in getBMCLogIdFromPELId()
1013 std::unique_ptr<openpower::pels::PEL>& pel) const in updateProgressSRC()
1015 // Check for pel severity of type - 0x51 = critical error, system in updateProgressSRC()
1017 if (pel->userHeader().severity() == 0x51) in updateProgressSRC()
1019 auto src = pel->primarySRC(); in updateProgressSRC()
1053 lg2::info("Removing event log with no PEL: {BMCID}", "BMCID", obmcLogID); in deleteObmcLog()
1059 openpower::pels::PEL& pel) in clearPowerThermalDeconfigFlag() argument
1066 pel.privateHeader().header().componentID) == compIDs.end()) in clearPowerThermalDeconfigFlag()
1071 auto src = pel.primarySRC(); in clearPowerThermalDeconfigFlag()
1098 "Clearing deconfig flag in PEL {ID} with SRC {SRC} because {LOC} was replaced", in clearPowerThermalDeconfigFlag()
1099 "ID", lg2::hex, pel.id(), "SRC", (*src)->asciiString().substr(0, 8), in clearPowerThermalDeconfigFlag()
1110 [locationCode](openpower::pels::PEL& pel) { in hardwarePresent() argument
1111 return Manager::clearPowerThermalDeconfigFlag(locationCode, pel); in hardwarePresent()
1114 // If the PEL was created by the BMC and has the deconfig flag set, in hardwarePresent()
1137 "Could not find PEL Entry D-Bus object for {PATH}", in hardwarePresent()