Move and rename patches which were merged upstream and import follow-up
fixes for MediaTek Ethernet offloading features on MT7622 and Filogic
platforms. Remove patch
793-net-ethernet-mtk_eth_soc-fix-typo-in-__mtk_foe_entry.patch
which breaks hardware flow offloading on MT7622, it will be reverted
upstream as well.
Fixes: c93c5365c0 ("kernel: pick patches for MediaTek Ethernet from linux-next")
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From: Felix Fietkau <nbd@nbd.name>
 | 
						|
Date: Mon, 21 Mar 2022 20:39:59 +0100
 | 
						|
Subject: [PATCH] net: ethernet: mtk_eth_soc: enable threaded NAPI
 | 
						|
 | 
						|
This can improve performance under load by ensuring that NAPI processing is
 | 
						|
not pinned on CPU 0.
 | 
						|
 | 
						|
Signed-off-by: Felix Fietkau <nbd@nbd.name>
 | 
						|
---
 | 
						|
 | 
						|
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
 | 
						|
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
 | 
						|
@@ -2802,8 +2802,8 @@ static irqreturn_t mtk_handle_irq_rx(int
 | 
						|
 
 | 
						|
 	eth->rx_events++;
 | 
						|
 	if (likely(napi_schedule_prep(ð->rx_napi))) {
 | 
						|
-		__napi_schedule(ð->rx_napi);
 | 
						|
 		mtk_rx_irq_disable(eth, eth->soc->txrx.rx_irq_done_mask);
 | 
						|
+		__napi_schedule(ð->rx_napi);
 | 
						|
 	}
 | 
						|
 
 | 
						|
 	return IRQ_HANDLED;
 | 
						|
@@ -2815,8 +2815,8 @@ static irqreturn_t mtk_handle_irq_tx(int
 | 
						|
 
 | 
						|
 	eth->tx_events++;
 | 
						|
 	if (likely(napi_schedule_prep(ð->tx_napi))) {
 | 
						|
-		__napi_schedule(ð->tx_napi);
 | 
						|
 		mtk_tx_irq_disable(eth, MTK_TX_DONE_INT);
 | 
						|
+		__napi_schedule(ð->tx_napi);
 | 
						|
 	}
 | 
						|
 
 | 
						|
 	return IRQ_HANDLED;
 | 
						|
@@ -4114,6 +4114,8 @@ static int mtk_probe(struct platform_dev
 | 
						|
 	 * for NAPI to work
 | 
						|
 	 */
 | 
						|
 	init_dummy_netdev(ð->dummy_dev);
 | 
						|
+	eth->dummy_dev.threaded = 1;
 | 
						|
+	strcpy(eth->dummy_dev.name, "mtk_eth");
 | 
						|
 	netif_napi_add(ð->dummy_dev, ð->tx_napi, mtk_napi_tx,
 | 
						|
 		       NAPI_POLL_WEIGHT);
 | 
						|
 	netif_napi_add(ð->dummy_dev, ð->rx_napi, mtk_napi_rx,
 |