-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mellanox] Update SAI version 1.21.2.0 (#11326)
- Why I did it Advance to new SAI version for bugs fixes as well as new features/enhacements: New: - ARM64 support - FG ECMP performance optimization - Support setting empty list for port ingress/egress buffer profile list - Add service port for SN5600 - Add CR8/SR8/LR8/KR8 interface type - Disable mlxtrace during debug dump Fixes: - Fix SAI_ACL_ENTRY_ATTR_FIELD_TC - Fix Packets loop back if no member in portchannel - Fix optimize descriptors apply time (and fast boot time) - Add flush fdb entries for vxlan tunnel bridge port - Don't disable used tunnel underlay interfaces - How I did it Advanced SAI submodule - How to verify it make configure PLATFORM=mellanox make target/sonic-mellanox.bin Signed-off-by: Nazarii Hnydyn <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Mellanox SAI | ||
|
||
MLNX_SAI_VERSION = SAIRel1.21.1.0 | ||
MLNX_SAI_VERSION = SAIRel1.21.2.0 | ||
|
||
export MLNX_SAI_VERSION | ||
|
||
|
Submodule SAI-Implementation
updated
20 files
+1 −1 | mlnx_sai/configure.ac | |
+1 −1 | mlnx_sai/debian/changelog | |
+21 −3 | mlnx_sai/inc/mlnx_sai.h | |
+2 −2 | mlnx_sai/src/Makefile.am | |
+2 −2 | mlnx_sai/src/dbgdump/mlnx_sai_dbg_nhg_nhgm.c | |
+0 −0 | mlnx_sai/src/meta/gensairpc.pl | |
+38 −0 | mlnx_sai/src/mlnx_sai_acl.c | |
+28 −0 | mlnx_sai/src/mlnx_sai_bridge.c | |
+233 −74 | mlnx_sai/src/mlnx_sai_buffer.c | |
+9 −3 | mlnx_sai/src/mlnx_sai_fdb.c | |
+1 −1 | mlnx_sai/src/mlnx_sai_host_interface.c | |
+23 −8 | mlnx_sai/src/mlnx_sai_interfacequery_eth.c | |
+26 −1 | mlnx_sai/src/mlnx_sai_lag.c | |
+45 −52 | mlnx_sai/src/mlnx_sai_nexthopgroup.c | |
+25 −5 | mlnx_sai/src/mlnx_sai_port.c | |
+55 −0 | mlnx_sai/src/mlnx_sai_rif.c | |
+85 −33 | mlnx_sai/src/mlnx_sai_tunnel.c | |
+1 −1 | mlnx_sai/src/mlnx_sai_vlan.c | |
+8 −1 | mlnx_sai/src/sai_5600.xml | |
+1 −0 | release notes.txt |