-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mellanox] Update SDK/FW to 4.5.1208/2010.1218 and SAI version to 1.2…
…0.2.5 (#9619) - Why I did it To include latest SDK fixes: 1. On CMIS modules, after low power configuration, the firmware waited for the module state to be ModuleReady instead of ModuleLowPower causing delays. 2. When connecting SN4600C, 100GbE port with CWDM4 module (Gen 3.0), link up time is 30 seconds. and to include SAI fixes \ changes: 1. Reduce verbosity for resource check vendor data not found 2. Fix metadata validation, check default value on conditions check 3. Add 100MB, 10MB to 2201 system 4. L3 VXLAN overlay ECMP 5. VXLAN srcport API implementation 6. Fix scheduler profile null (default values) when set on sub group scheduler group 7. Fix ACL binding restoration when port leaves a LAG 8. Fix route logic for set next hop/action and reference counter for ECMP overlay - How I did it 1. Updated SDK/FW submodule and relevant makefiles with the required versions. 2. Update SAI submodule and relevant makefile with the required version. - How to verify it Build an image and run tests from "sonic-mgmt".
- Loading branch information
1 parent
fac0b11
commit 7351112
Showing
5 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Mellanox SAI | ||
|
||
MLNX_SAI_VERSION = SAIRel1.20.1.1 | ||
MLNX_SAI_VERSION = SAIRel1.20.2.5 | ||
|
||
export MLNX_SAI_VERSION | ||
|
||
|
Submodule SAI-Implementation
updated
25 files
+1 −1 | mlnx_sai/debian/changelog | |
+217 −61 | mlnx_sai/inc/mlnx_sai.h | |
+4 −0 | mlnx_sai/mlnx_sai.vcxproj | |
+12 −0 | mlnx_sai/mlnx_sai.vcxproj.filters | |
+4 −0 | mlnx_sai/src/Makefile.am | |
+284 −0 | mlnx_sai/src/dbgdump/mlnx_sai_dbg_nhg_nhgm.c | |
+56 −5 | mlnx_sai/src/fx_base_api.c | |
+455 −33 | mlnx_sai/src/mlnx_sai_acl.c | |
+65 −99 | mlnx_sai/src/mlnx_sai_counter.c | |
+5 −452 | mlnx_sai/src/mlnx_sai_interfacequery.c | |
+496 −0 | mlnx_sai/src/mlnx_sai_interfacequery_eth.c | |
+349 −93 | mlnx_sai/src/mlnx_sai_nexthop.c | |
+2,111 −1,261 | mlnx_sai/src/mlnx_sai_nexthopgroup.c | |
+2 −108 | mlnx_sai/src/mlnx_sai_object.c | |
+137 −0 | mlnx_sai/src/mlnx_sai_object_eth.c | |
+93 −53 | mlnx_sai/src/mlnx_sai_port.c | |
+147 −102 | mlnx_sai/src/mlnx_sai_route.c | |
+15 −0 | mlnx_sai/src/mlnx_sai_scheduler.c | |
+444 −10 | mlnx_sai/src/mlnx_sai_switch.c | |
+565 −31 | mlnx_sai/src/mlnx_sai_tunnel.c | |
+42 −795 | mlnx_sai/src/mlnx_sai_utils.c | |
+822 −0 | mlnx_sai/src/mlnx_sai_utils_eth.c | |
+49 −49 | mlnx_sai/src/sai_2201.xml | |
+1 −1 | mlnx_sai/src/sdk/sx_api_bmtor.c | |
+2 −2 | release notes.txt |
Submodule Switch-SDK-drivers
updated
95 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters