Skip to content

Commit dbce956

Browse files
oem: Check presence for only connector for topology information (ibm-openbmc#663)
Topology information contains GenerationsInUse and LanesInUse details which are populated under PCIeDevice interface. ObjectPaths are created for all the adapters present/absent. Topology data is expected to be populated for all the adapters regardless of their presence. Signed-off-by: Archana Kakani <[email protected]>
1 parent 6077889 commit dbce956

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

oem/ibm/libpldmresponder/utils.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -572,12 +572,16 @@ std::string getObjectPathByLocationCode(const std::string& locationCode,
572572
if (get<std::string>(properties["LocationCode"]) ==
573573
locationCode)
574574
{
575+
// Return the object path for Slots/adapters withoot
576+
// checking its presence.
575577
// Return the object path only if either
576578
// The "xyz.openbmc_project.Inventory.Item" interface is not
577579
// present or
578580
// The "Present" property is not populated or it is present
579581
// and its value is true
580-
if (!interfaces.contains(
582+
if ((inventoryItemType !=
583+
"xyz.openbmc_project.Inventory.Item.Connector") ||
584+
!interfaces.contains(
581585
"xyz.openbmc_project.Inventory.Item") ||
582586
!presentInfo.contains("Present") ||
583587
get<bool>(presentInfo["Present"]))

0 commit comments

Comments
 (0)