summaryrefslogtreecommitdiffstats
path: root/types.hpp
diff options
context:
space:
mode:
authorDhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>2017-08-22 07:40:27 -0500
committerDhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>2017-10-11 04:28:11 -0500
commite84841ce7e833d527709c557e9e25829f4e3893c (patch)
treed4b3ce2d8a849da1b9b64f2ee3446fce0bd28277 /types.hpp
parentd12ae758516436376bb3b918671acc49a2c630ff (diff)
downloadphosphor-host-ipmid-e84841ce7e833d527709c557e9e25829f4e3893c.tar.gz
phosphor-host-ipmid-e84841ce7e833d527709c557e9e25829f4e3893c.zip
IPMI changes to skip updating non present cores
Cores which are not present need not to be updated to inventory. This change is for skipping several updates to inventory based on skipOn value. Change-Id: I29e005a715ccae1df6eeaf35561a20896ecde0ac Signed-off-by: Dhruvaraj Subhashchandran <dhruvaraj@in.ibm.com>
Diffstat (limited to 'types.hpp')
-rw-r--r--types.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/types.hpp b/types.hpp
index 41dddd9..d3be704 100644
--- a/types.hpp
+++ b/types.hpp
@@ -32,8 +32,20 @@ namespace sensor
using Offset = uint8_t;
+/**
+ * @enum SkipAssertion
+ * Matching value for skipping the update
+ */
+enum class SkipAssertion
+{
+ NONE, //No skip defined
+ ASSERT, //Skip on Assert
+ DEASSERT, //Skip on Deassert
+};
+
struct Values
{
+ SkipAssertion skip;
Value assert;
Value deassert;
};
OpenPOWER on IntegriCloud