Skip to content

Commit 56a5cf5

Browse files
danish-tiPaolo Abeni
authored andcommitted
net: ti: icssg-prueth: Fix start counter for ft1 filter
The start counter for FT1 filter is wrongly set to 0 in the driver. FT1 is used for source address violation (SAV) check and source address starts at Byte 6 not Byte 0. Fix this by changing start counter to ETH_ALEN in icssg_ft1_set_mac_addr(). Fixes: e9b4ece ("net: ti: icssg-prueth: Add Firmware config and classification APIs.") Signed-off-by: MD Danish Anwar <danishanwar@ti.com> Link: https://lore.kernel.org/r/20240527063015.263748-1-danishanwar@ti.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
1 parent 4b4647a commit 56a5cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/ethernet/ti/icssg/icssg_classifier.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ void icssg_ft1_set_mac_addr(struct regmap *miig_rt, int slice, u8 *mac_addr)
455455
{
456456
const u8 mask_addr[] = { 0, 0, 0, 0, 0, 0, };
457457

458-
rx_class_ft1_set_start_len(miig_rt, slice, 0, 6);
458+
rx_class_ft1_set_start_len(miig_rt, slice, ETH_ALEN, ETH_ALEN);
459459
rx_class_ft1_set_da(miig_rt, slice, 0, mac_addr);
460460
rx_class_ft1_set_da_mask(miig_rt, slice, 0, mask_addr);
461461
rx_class_ft1_cfg_set_type(miig_rt, slice, 0, FT1_CFG_TYPE_EQ);

0 commit comments

Comments
 (0)