summaryrefslogtreecommitdiffstats
path: root/app/watchdog.cpp
diff options
context:
space:
mode:
authorTom Joseph <tomjoseph@in.ibm.com>2019-09-24 17:52:14 +0530
committerTom Joseph <tomjoseph@in.ibm.com>2020-01-14 12:12:45 +0000
commitc665652df4c6d05f34ae1af49b2e7756629abbe3 (patch)
tree898c308c3371c7066242b4c794765193ec78d34a /app/watchdog.cpp
parent0b993fd4508b06ff9427ccd947d7813965155925 (diff)
downloadphosphor-host-ipmid-c665652df4c6d05f34ae1af49b2e7756629abbe3.tar.gz
phosphor-host-ipmid-c665652df4c6d05f34ae1af49b2e7756629abbe3.zip
Don't report serviceable action if the watchdog service is not present
There were a few cases where a service action was reported because the watchdog service was not present. It was because of a race condition where the power down operation is trigerred and the watchdog service is shutdown but if was followed by a watchdog reset. Since the watchdog service is absent it resulted in an error log which calls for serviceable action. The IPMI error response code will report the failure to the host platform software. Change-Id: Iaf0a860b53fbd85dc451fc4d4a337406ba74e0d6 Signed-off-by: Tom Joseph <tomjoseph@in.ibm.com>
Diffstat (limited to 'app/watchdog.cpp')
-rw-r--r--app/watchdog.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/watchdog.cpp b/app/watchdog.cpp
index cb71115..03c373e 100644
--- a/app/watchdog.cpp
+++ b/app/watchdog.cpp
@@ -69,13 +69,11 @@ ipmi::RspType<> ipmiAppResetWatchdogTimer()
{
const std::string e_str = std::string("wd_reset: ") + e.what();
log<level::ERR>(e_str.c_str());
- reportError();
return ipmi::responseUnspecifiedError();
}
catch (...)
{
log<level::ERR>("wd_reset: Unknown Error");
- reportError();
return ipmi::responseUnspecifiedError();
}
}
@@ -268,13 +266,11 @@ ipmi::RspType<>
{
const std::string e_str = std::string("wd_set: ") + e.what();
log<level::ERR>(e_str.c_str());
- reportError();
return ipmi::responseUnspecifiedError();
}
catch (...)
{
log<level::ERR>("wd_set: Unknown Error");
- reportError();
return ipmi::responseUnspecifiedError();
}
}
@@ -434,13 +430,11 @@ ipmi::RspType<uint3_t, // timerUse - timer use
{
const std::string e_str = std::string("wd_get: ") + e.what();
log<level::ERR>(e_str.c_str());
- reportError();
return ipmi::responseUnspecifiedError();
}
catch (...)
{
log<level::ERR>("wd_get: Unknown Error");
- reportError();
return ipmi::responseUnspecifiedError();
}
}
OpenPOWER on IntegriCloud