Patch "net: ethernet: mtk_eth_soc: avoid creating duplicate offload entries" has been added to the 5.14-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: ethernet: mtk_eth_soc: avoid creating duplicate offload entries

to the 5.14-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-ethernet-mtk_eth_soc-avoid-creating-duplicate-of.patch
and it can be found in the queue-5.14 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit bef8eaa6c23d53872ae76a333d7ac4d869ac9bbc
Author: Felix Fietkau <nbd@xxxxxxxx>
Date:   Wed Sep 22 16:55:48 2021 -0700

    net: ethernet: mtk_eth_soc: avoid creating duplicate offload entries
    
    [ Upstream commit e68daf61ed13832aef8892200a874139700ca754 ]
    
    Sometimes multiple CLS_REPLACE calls are issued for the same connection.
    rhashtable_insert_fast does not check for these duplicates, so multiple
    hardware flow entries can be created.
    Fix this by checking for an existing entry early
    
    Fixes: 502e84e2382d ("net: ethernet: mtk_eth_soc: add flow offloading support")
    Signed-off-by: Felix Fietkau <nbd@xxxxxxxx>
    Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@xxxxxxxxx>
    Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/ethernet/mediatek/mtk_ppe_offload.c b/drivers/net/ethernet/mediatek/mtk_ppe_offload.c
index b5f68f66d42a..7bb1f20002b5 100644
--- a/drivers/net/ethernet/mediatek/mtk_ppe_offload.c
+++ b/drivers/net/ethernet/mediatek/mtk_ppe_offload.c
@@ -186,6 +186,9 @@ mtk_flow_offload_replace(struct mtk_eth *eth, struct flow_cls_offload *f)
 	int hash;
 	int i;
 
+	if (rhashtable_lookup(&eth->flow_table, &f->cookie, mtk_flow_ht_params))
+		return -EEXIST;
+
 	if (flow_rule_match_key(rule, FLOW_DISSECTOR_KEY_META)) {
 		struct flow_match_meta match;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux