mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2025-11-01 05:08:40 +00:00
This is an automatically generated commit. When doing `git bisect`, consider `git bisect --skip`. Signed-off-by: Kenneth Kasilag <kenneth@kasilag.me> Link: https://github.com/openwrt/openwrt/pull/19038 Signed-off-by: Robert Marko <robimarko@gmail.com>
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From c86fac5365d3a068422beeb508f2741f1a2d734d Mon Sep 17 00:00:00 2001
|
|
From: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Date: Mon, 2 Jun 2025 12:55:39 +0200
|
|
Subject: [PATCH 3/3] net: airoha: Fix smac_id configuration in bridge mode
|
|
|
|
Set PPE entry smac_id field to 0xf in airoha_ppe_foe_commit_subflow_entry
|
|
routine for IPv6 traffic in order to instruct the hw to keep original
|
|
source mac address for IPv6 hw accelerated traffic in bridge mode.
|
|
|
|
Fixes: cd53f622611f ("net: airoha: Add L2 hw acceleration support")
|
|
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
|
|
Reviewed-by: Simon Horman <horms@kernel.org>
|
|
Link: https://patch.msgid.link/20250602-airoha-flowtable-ipv6-fix-v2-3-3287f8b55214@kernel.org
|
|
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
|
|
---
|
|
drivers/net/ethernet/airoha/airoha_ppe.c | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/drivers/net/ethernet/airoha/airoha_ppe.c
|
|
+++ b/drivers/net/ethernet/airoha/airoha_ppe.c
|
|
@@ -660,6 +660,11 @@ airoha_ppe_foe_commit_subflow_entry(stru
|
|
if (type >= PPE_PKT_TYPE_IPV6_ROUTE_3T) {
|
|
memcpy(&hwe.ipv6.l2, &e->data.bridge.l2, sizeof(hwe.ipv6.l2));
|
|
hwe.ipv6.ib2 = e->data.bridge.ib2;
|
|
+ /* setting smac_id to 0xf instruct the hw to keep original
|
|
+ * source mac address
|
|
+ */
|
|
+ hwe.ipv6.l2.src_mac_hi = FIELD_PREP(AIROHA_FOE_MAC_SMAC_ID,
|
|
+ 0xf);
|
|
} else {
|
|
memcpy(&hwe.bridge.l2, &e->data.bridge.l2,
|
|
sizeof(hwe.bridge.l2));
|