aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/pending-5.10
diff options
context:
space:
mode:
authorIlya Lipnitskiy <ilya.lipnitskiy@gmail.com>2021-04-19 18:25:27 -0700
committerDaniel Golle <daniel@makrotopia.org>2021-04-20 10:31:06 +0100
commitb96db94fb7775dc05c22d9a9262d75a42443aaeb (patch)
tree648aa2417ed6c55e5ea0dd1fbcbf7a704623a1b4 /target/linux/generic/pending-5.10
parent4dcdc8249c04da01adfc57e5698ccb41dbe3b0fa (diff)
downloadupstream-b96db94fb7775dc05c22d9a9262d75a42443aaeb.tar.gz
upstream-b96db94fb7775dc05c22d9a9262d75a42443aaeb.tar.bz2
upstream-b96db94fb7775dc05c22d9a9262d75a42443aaeb.zip
kernel: move patch to backport after upstreaming
The patch is now in net-next so keep it in backport-5.10 to keep things more organized. Link: https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git/commit/?id=6ecaf81d4ac6365f9284f9d68d74f7c209e74f98 Cc: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
Diffstat (limited to 'target/linux/generic/pending-5.10')
-rw-r--r--target/linux/generic/pending-5.10/615-net-ethernet-mediatek-fix-typo-in-offload-code.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/generic/pending-5.10/615-net-ethernet-mediatek-fix-typo-in-offload-code.patch b/target/linux/generic/pending-5.10/615-net-ethernet-mediatek-fix-typo-in-offload-code.patch
deleted file mode 100644
index 07a0867bba..0000000000
--- a/target/linux/generic/pending-5.10/615-net-ethernet-mediatek-fix-typo-in-offload-code.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From ec21551331bc071ed43c814265f014029fa5f95f Mon Sep 17 00:00:00 2001
-From: DENG Qingfang <dqfext@gmail.com>
-Date: Thu, 15 Apr 2021 17:40:05 +0800
-Subject: [PATCH] net: ethernet: mediatek: fix typo in offload code
-
-.key_offset was assigned to .head_offset instead. Fix the typo.
-
-Fixes: 502e84e2382d ("net: ethernet: mtk_eth_soc: add flow offloading support")
-Signed-off-by: DENG Qingfang <dqfext@gmail.com>
----
- drivers/net/ethernet/mediatek/mtk_ppe_offload.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/drivers/net/ethernet/mediatek/mtk_ppe_offload.c
-+++ b/drivers/net/ethernet/mediatek/mtk_ppe_offload.c
-@@ -44,7 +44,7 @@ struct mtk_flow_entry {
-
- static const struct rhashtable_params mtk_flow_ht_params = {
- .head_offset = offsetof(struct mtk_flow_entry, node),
-- .head_offset = offsetof(struct mtk_flow_entry, cookie),
-+ .key_offset = offsetof(struct mtk_flow_entry, cookie),
- .key_len = sizeof(unsigned long),
- .automatic_shrinking = true,
- };