Explorar o código

iommu/ipmmu-vmsa: Fix wrong error handle of ipmmu_add_device

Let's fix the error handle of ipmmu_add_device
when failing to find utlbs, otherwise we take a
risk of pontential memleak.

Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Shawn Lin %!s(int64=9) %!d(string=hai) anos
pai
achega
b1e2afca63
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      drivers/iommu/ipmmu-vmsa.c

+ 1 - 1
drivers/iommu/ipmmu-vmsa.c

@@ -636,7 +636,7 @@ static int ipmmu_add_device(struct device *dev)
 	spin_unlock(&ipmmu_devices_lock);
 
 	if (ret < 0)
-		return -ENODEV;
+		goto error;
 
 	for (i = 0; i < num_utlbs; ++i) {
 		if (utlbs[i] >= mmu->num_utlbs) {