代码拉取完成,页面将自动刷新
#include <config.h>
#include <CLI/CLI.hpp>
#ifdef WATCHDOG_DUMP_COLLECTION
extern "C"
{
#include <libpdbg.h>
#include <libpdbg_sbe.h>
}
#include <libphal.H>
#include <phosphor-logging/lg2.hpp>
#include <watchdog/watchdog_common.hpp>
#include <watchdog/watchdog_dbus.hpp>
#include <watchdog/watchdog_main.hpp>
#else
#include <org/open_power/Host/Boot/error.hpp>
#include <phosphor-logging/elog-errors.hpp>
#include <phosphor-logging/elog.hpp>
#endif
int main(int argc, char* argv[])
{
CLI::App app{"Hostboot dump collector for watchdog timeout"};
#ifdef WATCHDOG_DUMP_COLLECTION
constexpr uint32_t dumpTimeout = 1500; // in seconds
uint32_t timeout = dumpTimeout;
app.add_option("-t,--timeout", timeout,
"Set timeout interval for watchdog timeout in seconds");
#endif
CLI11_PARSE(app, argc, argv);
#ifdef WATCHDOG_DUMP_COLLECTION
using namespace watchdog::dump;
lg2::info("Host did not respond within watchdog timeout interval");
try
{
using namespace openpower::phal;
// Initialize pdbg library, default parameters are used for init()
pdbg::init();
// Get Primary Proc
struct pdbg_target* procTarget = pdbg::getPrimaryProc();
// Check Primary IPL done
bool primaryIplDone = sbe::isPrimaryIplDone();
if (primaryIplDone)
{
// Collect hostboot dump only if the host is in 'Running' state
if (!isHostStateRunning())
{
lg2::info(
"CurrentHostState is not in 'Running' state. Dump maybe "
"already occurring, skipping this dump request...");
return EXIT_SUCCESS;
}
// SBE boot done, Need to collect hostboot dump
lg2::info("Handle Hostboot boot failure");
triggerHostbootDump(timeout);
}
else
{
// SBE boot window, handle SBE boot failure
lg2::info("Handle SBE boot failure");
handleSbeBootError(procTarget, timeout);
}
}
catch (const std::exception& e)
{
lg2::error("Exception {ERROR} occurred", "ERROR", e);
std::string eventType =
"org.open_power.Host.Boot.Error.WatchdogTimedOut";
auto ffdc = std::vector<FFDCTuple>{};
std::map<std::string, std::string> additionalData;
if (!createPel(eventType, additionalData, ffdc))
{
lg2::error("Failed to create PEL");
}
return EXIT_SUCCESS;
}
#else
using namespace phosphor::logging;
using error =
sdbusplus::org::open_power::Host::Boot::Error::WatchdogTimedOut;
report<error>();
#endif
return EXIT_SUCCESS;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。