mirror of
https://github.com/torvalds/linux.git
synced 2024-11-29 15:41:36 +00:00
iommu/amd: Prevent NULL pointer dereference
Dereferencing irq_data before checking it for NULL is suboptimal. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Joerg Roedel <jroedel@suse.de>
This commit is contained in:
parent
856deb866d
commit
23357b61f8
@ -3731,8 +3731,8 @@ static int irq_remapping_alloc(struct irq_domain *domain, unsigned int virq,
|
||||
|
||||
for (i = 0; i < nr_irqs; i++) {
|
||||
irq_data = irq_domain_get_irq_data(domain, virq + i);
|
||||
cfg = irqd_cfg(irq_data);
|
||||
if (!irq_data || !cfg) {
|
||||
cfg = irq_data ? irqd_cfg(irq_data) : NULL;
|
||||
if (!cfg) {
|
||||
ret = -EINVAL;
|
||||
goto out_free_data;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user