-
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][platform-daemons][li…
…nux-kernel] advance submodule head (#13906) linkmgrd: * 3e7a9df 2023-02-19 | [active-active] Toggle to standby if default route is missing (#171) (HEAD -> 202205) [Longxiang Lyu] * 8ab1b2b 2023-02-15 | [active-active] fix issue that interfaces get stuck in `active` if service starts up with link state down (#169) [Jing Zhang] * df862ad 2023-02-11 | Fix mux config when gRPC connection is lost (#166) [Longxiang Lyu] utilities: * 8aa7930c 2023-02-13 | [portstat CLI] don't print reminder if use json format (#2670) (HEAD -> 202205, github/202205) [wenyiz2021] * 4e3bb6fa 2023-02-21 | Add "show fabric reachability" command. (#2672) [jfeng-arista] * 3587a94b 2023-02-18 | [202205][dhcp_relay] Remove add field of vlanid to DHCP_RELAY table while adding vlan (#2680) [Yaqiang Zhu] * 4f07f7f0 2023-02-10 | Skip saidump for Spine Router as this can take more than 5 sec (#2637) (#2671) [kenneth-arista] * e61c5ec4 2023-02-10 | [vlan] Refresh dhcpv6_relay config while adding/deleting a vlan (#2660) (#2669) [Yaqiang Zhu] swss: * 1bbf725 2023-02-14 | [Workaround] EvpnRemoteVnip2pOrch warmboot check failure (#2626) (HEAD -> 202205) [jcaiMR] * 380f72b 2023-02-20 | Support for tc-dot1p and tc-dscp qosmap (#2559) [Divya Mukundan] * dbf6fcc 2022-11-01 | Added LAG member check on addLagMember() (#2464) [Andriy Kokhan] swss-common: * b31391b 2023-02-21 | Prevent sonic-db-cli generate core dump (#749) (HEAD -> 202205) [Hua Liu] * 16ff689 2022-12-13 | Support for TC-DOT1p qos map (#721) [Divya Mukundan] platform-daemons: * fb92af4 2023-02-09 | [ycabled] add more coverage to ycabled; add minor name change for vendor API CLI return key-values pairs (#338) (HEAD -> 202205) [vdahiya12] linux-kernel: * 4e62401 2023-02-09 | Update linux kernel for hw-mgmt V.7.0020.4104 (#305) (HEAD -> 202205) [Stephen Sun] Signed-off-by: Ying Xie <ying.xie@microsoft.com>
- 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
+66 −3 | src/link_manager/LinkManagerStateMachineActiveActive.cpp | |
+18 −0 | src/link_manager/LinkManagerStateMachineActiveActive.h | |
+119 −0 | test/LinkManagerStateMachineActiveActiveTest.cpp |
Submodule sonic-linux-kernel
updated
16 files
Submodule sonic-platform-daemons
updated
2 files
+979 −19 | sonic-ycabled/tests/test_y_cable_helper.py | |
+5 −4 | sonic-ycabled/ycable/ycable_utilities/y_cable_helper.py |
Submodule sonic-swss
updated
6 files
+13 −2 | cfgmgr/teammgr.cpp | |
+1 −0 | orchagent/orchdaemon.cpp | |
+64 −4 | orchagent/qosorch.cpp | |
+10 −0 | orchagent/qosorch.h | |
+10 −9 | orchagent/vxlanorch.cpp | |
+183 −0 | tests/test_qos_map.py |
Submodule sonic-swss-common
updated
5 files
+1 −0 | common/schema.h | |
+2 −1 | sonic-db-cli/main.cpp | |
+32 −0 | sonic-db-cli/sonic-db-cli.cpp | |
+6 −0 | sonic-db-cli/sonic-db-cli.h | |
+32 −0 | tests/cli_ut.cpp |
Submodule sonic-utilities
updated
11 files
+29 −6 | config/vlan.py | |
+37 −1 | scripts/fabricstat | |
+4 −1 | scripts/generate_dump | |
+5 −4 | scripts/portstat | |
+12 −0 | show/fabric.py | |
+11 −0 | tests/conftest.py | |
+44 −0 | tests/fabricstat_test.py | |
+2 −2 | tests/mclag_test.py | |
+52 −6 | tests/vlan_test.py | |
+2 −2 | utilities_common/cli.py | |
+20 −0 | utilities_common/dhcp_relay_util.py |