pdr: Improve error propagation
Enhance error propagation in
pldm_entity_association_pdr_add_from_node_with_record_handle(). Instead
of always returning 0, the function now returns the result from
entity_association_pdr_add to accurately reflect success/failure.
gitlint-ignore: B1, UC1
Fixes: [25ddbccfae0e ("pdr: Add pldm_entity_association_pdr_add_from_node_with_record_handle()")
Change-Id: I4d3711e096b2a90c62a600be89a16b47e6b20f79
Signed-off-by: Archana Kakani <archana.kakani@ibm.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e50d9aa..54e1195 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -194,6 +194,8 @@
### Fixed
1. requester: instance-id: Release read lock on conflict
+2. pdr: Error propagation for
+ pldm_entity_association_pdr_add_from_node_with_record_handle()
## [0.8.0] - 2024-05-23
diff --git a/src/dsp/pdr.c b/src/dsp/pdr.c
index 670e1ed..82b5f89 100644
--- a/src/dsp/pdr.c
+++ b/src/dsp/pdr.c
@@ -970,10 +970,9 @@
return -EINVAL;
}
- entity_association_pdr_add(node, repo, entities, num_entities,
- is_remote, terminus_handle, record_handle);
-
- return 0;
+ return entity_association_pdr_add(node, repo, entities, num_entities,
+ is_remote, terminus_handle,
+ record_handle);
}
static void find_entity_ref_in_tree(pldm_entity_node *tree_node,