diff mbox series

[2/2] firmware: arm_ffa: Allow multiple UUIDs per partition

Message ID e7990bc3dc128e5056c3bad381e548a49ab67c81.1737522729.git.viresh.kumar@linaro.org (mailing list archive)
State New
Headers show
Series [1/2] firmware: arm_ffa: Partition info can returns self as well | expand

Commit Message

Viresh Kumar Jan. 22, 2025, 5:23 a.m. UTC
A partition can implement multiple UUIDs and adding the same partition
twice will fail. Don't try to add a partition again, if it is already
added earlier.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
 drivers/firmware/arm_ffa/driver.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox series

Patch

diff --git a/drivers/firmware/arm_ffa/driver.c b/drivers/firmware/arm_ffa/driver.c
index b824c7c024fd..6de941821319 100644
--- a/drivers/firmware/arm_ffa/driver.c
+++ b/drivers/firmware/arm_ffa/driver.c
@@ -1389,6 +1389,10 @@  static int ffa_add_partition_info(int vm_id)
 	struct ffa_dev_part_info *info;
 	int ret;
 
+	/* Already added ? */
+	if (xa_load(&drv_info->partition_info, vm_id))
+		return 0;
+
 	info = kzalloc(sizeof(*info), GFP_KERNEL);
 	if (!info)
 		return -ENOMEM;