mirror of
https://github.com/openwrt/openwrt.git
synced 2026-06-17 12:40:16 +04:00
ed4b6ad372
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.18.25 Manually rebased: generic/pending-6.18/795-09-net-ethernet-mtk_ppe-offload-flows-to-MxL862xx-switc.patch All other patches automatically rebased via update_kernel.sh Build system: x86/64 Build-tested: x86/64-glibc Run-tested: x86/64-glibc Signed-off-by: John Audia <therealgraysky@proton.me> Link: https://github.com/openwrt/openwrt/pull/22890 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
22 lines
741 B
Diff
22 lines
741 B
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
|
|
@@ -5315,6 +5315,8 @@ static int mtk_probe(struct platform_dev
|
|
dev_err(eth->dev, "failed to allocated dummy device\n");
|
|
goto err_unreg_netdev;
|
|
}
|
|
+ eth->dummy_dev->threaded = 1;
|
|
+ strcpy(eth->dummy_dev->name, "mtk_eth");
|
|
netif_napi_add(eth->dummy_dev, ð->tx_napi, mtk_napi_tx);
|
|
netif_napi_add(eth->dummy_dev, ð->rx_napi, mtk_napi_rx);
|
|
|