forked from sonoble/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 5
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 to v1.19.2 (sonic-net#8618)
- Why I did it Advance to Mellanox SAI ver 1.19.2 to pick up dynamic Policy Based Hashing support. For this version above the static Policy Based Hashing is no longer supported. For detailed release notes check https://github.com/Mellanox/SAI-Implementation/blob/sonic2111/release%20notes.txt - How I did it Updated SAI-Implementation submodule - How to verify it 1. make configure PLATFORM=mellanox 2. make target/sonic-mellanox.bin Run full regression as well as new dynamic PBH tests 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.19.1 | ||
MLNX_SAI_VERSION = SAIRel1.19.2 | ||
|
||
export MLNX_SAI_VERSION | ||
|
||
|
Submodule SAI-Implementation
updated
22 files
+1 −1 | mlnx_sai/debian/changelog | |
+151 −8 | mlnx_sai/inc/mlnx_sai.h | |
+2 −0 | mlnx_sai/mlnx_sai.vcxproj | |
+6 −0 | mlnx_sai/mlnx_sai.vcxproj.filters | |
+2 −0 | mlnx_sai/src/Makefile.am | |
+138 −0 | mlnx_sai/src/dbgdump/mlnx_sai_dbg_gp_reg.c | |
+4 −2 | mlnx_sai/src/dbgdump/mlnx_sai_dbg_hash.c | |
+13 −1 | mlnx_sai/src/dbgdump/mlnx_sai_dbg_udf.c | |
+40 −40 | mlnx_sai/src/fx_base_api.c | |
+1,173 −592 | mlnx_sai/src/mlnx_sai_acl.c | |
+6 −1 | mlnx_sai/src/mlnx_sai_bfd.c | |
+2 −2 | mlnx_sai/src/mlnx_sai_counter.c | |
+2,108 −7 | mlnx_sai/src/mlnx_sai_hash.c | |
+1 −1 | mlnx_sai/src/mlnx_sai_host_interface.c | |
+3 −0 | mlnx_sai/src/mlnx_sai_interfacequery.c | |
+1,393 −0 | mlnx_sai/src/mlnx_sai_issu_storage.c | |
+1 −1 | mlnx_sai/src/mlnx_sai_nexthopgroup.c | |
+1 −12 | mlnx_sai/src/mlnx_sai_port.c | |
+94 −44 | mlnx_sai/src/mlnx_sai_switch.c | |
+759 −73 | mlnx_sai/src/mlnx_sai_udf.c | |
+2 −0 | mlnx_sai/src/mlnx_sai_utils.c | |
+1 −1 | release notes.txt |