summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarter Chen <carter.chen.wiwynn@gmail.com>2025-08-08 11:39:32 +0300
committerPatrick Williams <patrick@stwcx.xyz>2025-08-21 19:50:41 +0300
commit173bebbd3b1b23b3ca598b5031ceeb88fbd68f08 (patch)
tree9bdd7afbf8ae4bfe64e50d4f7e5579ad9815ec1c
parentdbb3a1c978b7736b7191be659bef5b4bd035f91c (diff)
downloadopenbmc-173bebbd3b1b23b3ca598b5031ceeb88fbd68f08.tar.xz
meta-facebook: yosemite4: Removed the fixed MTU 64 setting from the MCTP config
# Description Fixed MCTP configuration: Changed MTU (Maximum Transmission Unit) from a fixed 68 bytes to the default setting. According to the MCTP specification, if the MTU is not explicitly set, it defaults to the MTU of the network card. # Motivation According to the DFT specification, the WF CXL update time meets the requirement of completing within five minutes. This modification reduces the CXL firmware update duration to under five minutes. Change-Id: Ice3e80618ec8a821871288c4814dd671008127f0 Signed-off-by: Carter Chen <carter.chen.wiwynn@gmail.com>
-rw-r--r--meta-facebook/meta-yosemite4/recipes-networking/mctp/files/mctp-config8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-facebook/meta-yosemite4/recipes-networking/mctp/files/mctp-config b/meta-facebook/meta-yosemite4/recipes-networking/mctp/files/mctp-config
index 043daaffab..5f1cdbae2c 100644
--- a/meta-facebook/meta-yosemite4/recipes-networking/mctp/files/mctp-config
+++ b/meta-facebook/meta-yosemite4/recipes-networking/mctp/files/mctp-config
@@ -15,10 +15,10 @@ do
slot=$((busnum * 4 + i))
eidBase=$((slot * 10))
lladdr=$(printf "0x07:ec:80:01:00:%02x" $(((slot - 1) * 5)))
- mctp route add $((eidBase + 0)) via mctpi3c${busnum} mtu 68
- mctp route add $((eidBase + 2)) via mctpi3c${busnum} mtu 68
- mctp route add $((eidBase + 4)) via mctpi3c${busnum} mtu 68
- mctp route add $((eidBase + 5)) via mctpi3c${busnum} mtu 68
+ mctp route add $((eidBase + 0)) via mctpi3c${busnum}
+ mctp route add $((eidBase + 2)) via mctpi3c${busnum}
+ mctp route add $((eidBase + 4)) via mctpi3c${busnum}
+ mctp route add $((eidBase + 5)) via mctpi3c${busnum}
mctp neigh add $((eidBase + 0)) dev mctpi3c${busnum} lladdr "$lladdr"
mctp neigh add $((eidBase + 2)) dev mctpi3c${busnum} lladdr "$lladdr"
mctp neigh add $((eidBase + 4)) dev mctpi3c${busnum} lladdr "$lladdr"