mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	irqchip/alpine-msi: Fix freeing of interrupts on allocation error path
The alpine-msi driver has an interesting allocation error handling,
where it frees the same interrupts repeatedly. Hilarity follows.
This code is probably never executed, but let's fix it nonetheless.
Fixes: e6b78f2c3e ("irqchip: Add the Alpine MSIX interrupt controller")
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Antoine Tenart <atenart@kernel.org>
Cc: Tsahee Zidenberg <tsahee@annapurnalabs.com>
Cc: Antoine Tenart <atenart@kernel.org>
Link: https://lore.kernel.org/r/20201129135525.396671-1-maz@kernel.org
			
			
This commit is contained in:
		
							parent
							
								
									9898a59358
								
							
						
					
					
						commit
						3841245e84
					
				
					 1 changed files with 1 additions and 2 deletions
				
			
		| 
						 | 
					@ -165,8 +165,7 @@ static int alpine_msix_middle_domain_alloc(struct irq_domain *domain,
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
err_sgi:
 | 
					err_sgi:
 | 
				
			||||||
	while (--i >= 0)
 | 
						irq_domain_free_irqs_parent(domain, virq, i - 1);
 | 
				
			||||||
		irq_domain_free_irqs_parent(domain, virq, i);
 | 
					 | 
				
			||||||
	alpine_msix_free_sgi(priv, sgi, nr_irqs);
 | 
						alpine_msix_free_sgi(priv, sgi, nr_irqs);
 | 
				
			||||||
	return err;
 | 
						return err;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue