mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	Changelog: https://cdn.kernel.org/pub/linux/kernel/v5.x/ChangeLog-5.15.132 Removed upstreamed: bcm53xx/patches-5.15/037-v6.6-0006-ARM-dts-BCM53573-Add-cells-sizes-to-PCIe-node.patch[1] bcm53xx/patches-5.15/037-v6.6-0007-ARM-dts-BCM53573-Use-updated-spi-gpio-binding-proper.patch[2] bcm53xx/patches-5.15/037-v6.6-0008-ARM-dts-BCM5301X-Extend-RAM-to-full-256MB-for-Linksy.patch[3] All other patches automatically rebased. 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=b35f3ca1877e024887df205ede952863d65dad36 2. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=2840d9b9c8750be270fb1153ccd5b983cbb5d592 3. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.132&id=f086e859ddc252c32f0438edff241859c0f022ce Build system: x86_64 Build-tested: ramips/tplink_archer-a6-v3 Run-tested: ramips/tplink_archer-a6-v3 Signed-off-by: John Audia <therealgraysky@proton.me>
		
			
				
	
	
		
			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
 | 
						|
@@ -3099,8 +3099,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;
 | 
						|
@@ -3112,8 +3112,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;
 | 
						|
@@ -4887,6 +4887,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,
 |