-
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.
[202205][linkmgrd][utilities][swss][swss-common][sairedis][platform-d…
…aemons] advance submodule head (#13755) linkmgrd: * e191338 2023-02-10 | Fix the warning of unused variables (#167) (HEAD -> 202205) [Longxiang Lyu] utilities: * 2c933b0a 2023-02-07 | [sai_failure_dump]Invoking dump during SAI failure (#2633) (HEAD -> 202205) [Sudharsan Dhamal Gopalarathnam] * e949f318 2023-02-07 | [show] add support for gRPC show commands for `active-active` (#2629) [vdahiya12] * 77723927 2023-01-30 | Fixed admin state config CLI for Backport interfaces (#2557) [anamehra] * 32b1d4d6 2023-02-01 | [masic support] 'show run bgp' support for multi-asic (#2427) [wenyiz2021] * a2252d8a 2022-10-11 | Filter port invalid MTU configuration (#2378) [pettershao-ragilenetworks] * 0ffb4b6a 2023-02-09 | Add Transceiver PM basic CLI support to show output from TRANSCEIVER_PM table for ZR (#2655) (github/202205) [longhuan-cisco] * 496a0774 2023-02-09 | Add asic id for linecards so "show fabric counters queue/port" can work for single chip systems (#2656) [jfeng-arista] * 2591e8b5 2023-02-03 | multi asic support for show queue counter (#2647) [zhixzhu] swss: * e0373a4 2023-02-07 | [autoneg]Fixing adv interface types to be set when AN is disabled (#2638) (HEAD -> 202205, github/202205) [Sudharsan Dhamal Gopalarathnam] * 62a09a0 2023-02-09 | [sai_failure_dump]Invoking dump during SAI failure (#2644) (#2661) [Sudharsan Dhamal Gopalarathnam] * 076f63e 2023-02-08 | [202205] Revert "Revert "[voq][chassis]Add show fabric counters port/queue commands (#2522)" (#2612)" (#2655) [kenneth-arista] * a35e074 2023-02-06 | [202205][voq][chassis] Remove created ports from the default vlan. (#2651) [arista-nwolfe] swss-common: * b9d4284 2023-02-08 | [202205] Fix epoll and socket resource leak issue. (#651) (#741) (github/202205) [Kevin Petremann] sairedis: * 9d8e731 2023-02-08 | [Mellanox] Enable DSCP remapping by using SAI attribute (#1188) (HEAD -> 202205, github/202205) [Stephen Sun] * 272a8bd 2023-02-10 | Fixing race condition for rif counters #1136 (#1202) [Suman Kumar] * 211365a 2023-02-08 | [202205][submodule][SAI]Advance SAI header (#1207) [Richard.Yu] * 939c14b 2023-02-08 | [Submodule][upgrade]Upgrade SAI submodule (#1203) [Richard.Yu] platform-daemons: * e5ccd40 2022-10-03 | [ycabled] fix naming error for error condition for CLI handling (#302) (HEAD -> 202205, github/202205) [vdahiya12] * cdd354d 2022-09-29 | [ycabled] add some exception catching logic to some vendor specific API's (#301) [vdahiya12] * cf58c08 2023-02-01 | Chassisd do an explicit stop of the config_manager (#328) (#336) [judyjoseph] Signed-off-by: Ying Xie <[email protected]>
- Loading branch information
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
Submodule linkmgrd
updated
3 files
+0 −2 | src/link_prober/LinkProber.cpp | |
+0 −1 | src/link_prober/LinkProberStateMachineActiveActive.cpp | |
+0 −1 | test/FakeLinkProber.cpp |
Submodule sonic-platform-daemons
updated
8 files
Submodule sonic-sairedis
updated
4 files
+1 −1 | SAI | |
+33 −0 | syncd/FlexCounter.cpp | |
+5 −0 | syncd/FlexCounter.h | |
+8 −0 | syncd/scripts/syncd_init_common.sh |
Submodule sonic-swss
updated
10 files
+7 −8 | orchagent/main.cpp | |
+1 −1 | orchagent/orchdaemon.cpp | |
+9 −2 | orchagent/portsorch.cpp | |
+37 −7 | orchagent/saihelper.cpp | |
+1 −1 | orchagent/saihelper.h | |
+1 −0 | tests/mock_tests/Makefile.am | |
+81 −0 | tests/mock_tests/portsorch_ut.cpp | |
+82 −0 | tests/mock_tests/test_failure_handling.cpp | |
+42 −0 | tests/test_port_an.py | |
+59 −0 | tests/test_virtual_chassis.py |
Submodule sonic-utilities
updated
25 files
+1 −1 | config/main.py | |
+25 −1 | doc/Command-Reference.md | |
+14 −6 | scripts/fabricstat | |
+51 −13 | scripts/generate_dump | |
+18 −4 | scripts/queuestat | |
+129 −0 | scripts/sfpshow | |
+23 −0 | show/interfaces/__init__.py | |
+39 −5 | show/main.py | |
+287 −34 | show/muxcable.py | |
+26 −0 | tests/config_int_mtu_test.py | |
+17 −0 | tests/conftest.py | |
+30 −0 | tests/fabricstat_test.py | |
+22 −0 | tests/interfaces_test.py | |
+582 −64 | tests/mock_tables/asic0/counters_db.json | |
+1 −0 | tests/mock_tables/asic0/show_not_running_bgp.txt | |
+12 −0 | tests/mock_tables/asic0/show_run_bgp.txt | |
+12 −0 | tests/mock_tables/asic1/show_run_bgp.txt | |
+140 −0 | tests/mock_tables/counters_db.json | |
+64 −0 | tests/mock_tables/show_run_bgp.txt | |
+198 −0 | tests/mock_tables/state_db.json | |
+151 −0 | tests/multi_asic_queue_counter_test.py | |
+187 −0 | tests/muxcable_test.py | |
+50 −7 | tests/sfp_test.py | |
+228 −0 | tests/show_run_bgp_test.py | |
+14 −2 | utilities_common/intf_filter.py |