mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-30 10:39:04 +00:00
25 lines
973 B
Diff
25 lines
973 B
Diff
|
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,
|
||
|
};
|