mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	net: ti: icssg-prueth: Fix signedness bug in prueth_init_rx_chns()
The rx_chn->irq[] array is unsigned int but it should be signed for the
error handling to work.  Also if k3_udma_glue_rx_get_irq() returns zero
then we should return -ENXIO instead of success.
Fixes: 128d5874c0 ("net: ti: icssg-prueth: Add ICSSG ethernet driver")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: MD Danish Anwar <danishanwar@ti.com>
Link: https://lore.kernel.org/r/05282415-e7f4-42f3-99f8-32fde8f30936@moroto.mountain
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
			
			
This commit is contained in:
		
							parent
							
								
									46bf0c9ab7
								
							
						
					
					
						commit
						4dcd0e83ea
					
				
					 1 changed files with 5 additions and 3 deletions
				
			
		| 
						 | 
					@ -421,12 +421,14 @@ static int prueth_init_rx_chns(struct prueth_emac *emac,
 | 
				
			||||||
		if (!i)
 | 
							if (!i)
 | 
				
			||||||
			fdqring_id = k3_udma_glue_rx_flow_get_fdq_id(rx_chn->rx_chn,
 | 
								fdqring_id = k3_udma_glue_rx_flow_get_fdq_id(rx_chn->rx_chn,
 | 
				
			||||||
								     i);
 | 
													     i);
 | 
				
			||||||
		rx_chn->irq[i] = k3_udma_glue_rx_get_irq(rx_chn->rx_chn, i);
 | 
							ret = k3_udma_glue_rx_get_irq(rx_chn->rx_chn, i);
 | 
				
			||||||
		if (rx_chn->irq[i] <= 0) {
 | 
							if (ret <= 0) {
 | 
				
			||||||
			ret = rx_chn->irq[i];
 | 
								if (!ret)
 | 
				
			||||||
 | 
									ret = -ENXIO;
 | 
				
			||||||
			netdev_err(ndev, "Failed to get rx dma irq");
 | 
								netdev_err(ndev, "Failed to get rx dma irq");
 | 
				
			||||||
			goto fail;
 | 
								goto fail;
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
							rx_chn->irq[i] = ret;
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return 0;
 | 
						return 0;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue