Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 517abe49 authored by Wei Yongjun's avatar Wei Yongjun Committed by Joerg Roedel
Browse files

iommu/amd: Fix error return code in irq_remapping_alloc()



Fix to return a negative error code from the alloc_irq_index() error
handling case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <weiyj.lk@gmail.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent a5604f26
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3886,6 +3886,7 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
	}
	if (index < 0) {
		pr_warn("Failed to allocate IRTE\n");
		ret = index;
		goto out_free_parent;
	}