Omit Slot "Lanes" property if it is equal to 0
In the context of a PCIeSlot the 0 value for the 'Lanes' property
means undefined. According to the bmcweb guidelines, DBus properties
with "unknown"/"unspecified" values should be omitted from the Redfish
tree. Therefore don't populate 'Lanes' property if it is equal to 0.
Tested: validator passed
Change-Id: Ic3d142dd8b10da2367d73c370d5480208ba1510a
Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
diff --git a/redfish-core/lib/pcie.hpp b/redfish-core/lib/pcie.hpp
index 40fcd41..f5c5303 100644
--- a/redfish-core/lib/pcie.hpp
+++ b/redfish-core/lib/pcie.hpp
@@ -190,7 +190,10 @@
res.jsonValue["Slot"]["PCIeType"] = *pcieType;
}
- res.jsonValue["Slot"]["Lanes"] = lanes;
+ if (lanes != 0)
+ {
+ res.jsonValue["Slot"]["Lanes"] = lanes;
+ }
std::optional<pcie_slots::SlotTypes> redfishSlotType =
pcie_util::dbusSlotTypeToRf(slotType);
diff --git a/redfish-core/lib/pcie_slots.hpp b/redfish-core/lib/pcie_slots.hpp
index 62fef3e..4412c41 100644
--- a/redfish-core/lib/pcie_slots.hpp
+++ b/redfish-core/lib/pcie_slots.hpp
@@ -83,7 +83,7 @@
}
}
- if (lanes != nullptr)
+ if (lanes != nullptr && *lanes != 0)
{
slot["Lanes"] = *lanes;
}