mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	Import commits from upstream Linux replacing some downstream patches.
Move accepted patches from pending-{5.15,6.1} to backport-{5.15,6.1}.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
		
	
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			646 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			646 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| From: Felix Fietkau <nbd@nbd.name>
 | |
| Date: Thu, 23 Mar 2023 11:19:14 +0100
 | |
| Subject: [PATCH] net: ethernet: mtk_eth_soc: add missing ppe cache flush when
 | |
|  deleting a flow
 | |
| 
 | |
| The cache needs to be flushed to ensure that the hardware stops offloading
 | |
| the flow immediately.
 | |
| 
 | |
| Signed-off-by: Felix Fietkau <nbd@nbd.name>
 | |
| ---
 | |
| 
 | |
| --- a/drivers/net/ethernet/mediatek/mtk_ppe.c
 | |
| +++ b/drivers/net/ethernet/mediatek/mtk_ppe.c
 | |
| @@ -464,6 +464,7 @@ __mtk_foe_entry_clear(struct mtk_ppe *pp
 | |
|  		hwe->ib1 &= ~MTK_FOE_IB1_STATE;
 | |
|  		hwe->ib1 |= FIELD_PREP(MTK_FOE_IB1_STATE, MTK_FOE_STATE_INVALID);
 | |
|  		dma_wmb();
 | |
| +		mtk_ppe_cache_clear(ppe);
 | |
|  	}
 | |
|  	entry->hash = 0xffff;
 | |
|  
 |