mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-14 00:22:09 -05:00
Changelog: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.26 All patches automatically rebased. Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com> Link: https://github.com/openwrt/openwrt/pull/18695 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
|
|
@@ -5135,6 +5135,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);
|
|
|