forked from sonic-net/sonic-buildimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[202205][utilities][swss][sairedis][platform-daemon][platform-common]…
… advance submodule heads utilities: * 0157086 2022-11-22 | [VXLAN]Fixing traceback in show remotemac when mac moves during command execution (sonic-net#2506) [Sudharsan Dhamal Gopalarathnam] * 1f26c8c 2022-11-17 | avoid printing error if no neighbors are present (sonic-net#2502) [arlakshm] * 2573aae 2022-11-19 | [sfp] Fix issue: Application Advertisement is not well formatted (sonic-net#2491) [Junchao-Mellanox] * 1d96b55 2022-11-10 | [show][muxcable] Catch port Value error exception (sonic-net#2076) (sonic-net#2486) [Isabella de Leon] * 6ed2afb 2022-11-09 | bugfix[2024] vnet route check exit code fix. (sonic-net#2480) [siqbal1986] * d8c49dc 2022-11-17 | Fixed SONIC_CLI_IFACE_MODE=alias show ip|ipv6 route output in default mode issue (sonic-net#2422) [Marty Y. Lok] * 166739e 2022-11-11 | Accept 0 for queue and dscp (sonic-net#2494) (github/202205) [bingwang-ms] swss: * 7e274a4 2022-11-18 | [Fdbsyncd] Bug Fix for remote MAC move to local MAC and Fix for Static MAC advertisement in EVPN. (sonic-net#2521) (HEAD -> 202205, github/202205) [KISHORE KUNAL] * 434e80c 2022-11-02 | Fix vs test issue: failed to remove vlan due to referenced by vlan interface (sonic-net#2504) [Stephen Sun] * 11bef87 2022-11-27 | [dual-tor] add missing SAI attribte in order to create IPNIP tunnel (sonic-net#2503) [Andriy Yurkiv] * 11aba29 2022-11-09 | [SWSS] Innovium platform specific changes in PFC Detect lua script (sonic-net#2493) [maulik_patel_marvell] * 4a165ee 2022-11-14 | Revert "[vlanmgr] Disable `arp_evict_nocarrier` for vlan host intf (sonic-net#2469)" (sonic-net#2518) [Longxiang Lyu] sairedis: * 98def2d 2022-11-16 | [Recorder]: Acquire lock for ofstream changes (sonic-net#1145) (HEAD -> 202205, github/202205) [Lawrence Lee] platform-daemon: * 9983106 2022-11-15 | [chassisd] update chassisd to write fabric and lc asics on sep erate table (sonic-net#311) (HEAD -> 202205) [arlakshm] * 8324c26 2022-11-10 | [ycabled] fix exception-handling logic for ycabled (sonic-net#306) [vdahiya12] * eaf73f8 2022-11-07 | [ycabled] move swsscommon API's from subroutines to call them exactly once per task_worker/thread (sonic-net#303) [vdahiya12] platform-common: * 4b528a0 2022-11-21 | Add missing PM and VDM related EEPROM read (sonic-net#326) (HEAD -> 202205) [mihirpat1] * 8ca6c17 2022-11-14 | Initial commit (sonic-net#323) [mihirpat1] * 47f87d9 2022-11-23 | EEPROM/DOM Info: The Compliance Code will show "unknown" by using FINISAR 10G LR XCVR (sonic-net#319) [ChiouRung Haung] * 6273850 2022-06-01 | [ssd_generic] Fix innodisk health regex (sonic-net#287) [Alexander Allen] Signed-off-by: Ying Xie <ying.xie@microsoft.com>
- Loading branch information
Showing
5 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
Submodule sonic-platform-common
updated
15 files
Submodule sonic-platform-daemons
updated
7 files
Submodule sonic-swss
updated
7 files
+0 −5 | cfgmgr/vlanmgr.cpp | |
+12 −8 | fdbsyncd/fdbsync.cpp | |
+8 −0 | orchagent/muxorch.cpp | |
+1 −1 | orchagent/pfc_detect_innovium.lua | |
+4 −0 | tests/dvslib/dvs_vlan.py | |
+4 −0 | tests/test_mux.py | |
+2 −42 | tests/test_vlan.py |
Submodule sonic-utilities
updated
24 files
+2 −2 | config/main.py | |
+4 −19 | scripts/sfpshow | |
+2 −2 | scripts/vnet_route_check.py | |
+14 −29 | sfputil/main.py | |
+4 −10 | show/bgp_common.py | |
+4 −4 | show/vxlan.py | |
+36 −0 | tests/bgp_commands_test.py | |
+13 −4 | tests/config_mirror_session_test.py | |
+29 −11 | tests/conftest.py | |
+16 −0 | tests/ip_show_routes_multi_asic_test.py | |
+21 −5 | tests/ip_show_routes_test.py | |
+10 −0 | tests/mock_tables/appl_db.json | |
+11 −0 | tests/mock_tables/asic0/config_db.json | |
+24 −2 | tests/mock_tables/state_db.json | |
+20 −0 | tests/muxcable_test.py | |
+39 −14 | tests/sfp_test.py | |
+15 −4 | tests/sfputil_test.py | |
+202 −0 | tests/show_ip_route_common.py | |
+25 −7 | tests/vnet_route_check_test.py | |
+64 −0 | tests/vxlan_test.py | |
+21 −2 | utilities_common/bgp_util.py | |
+3 −1 | utilities_common/cli.py | |
+10 −7 | utilities_common/platform_sfputil_helper.py | |
+53 −0 | utilities_common/sfp_helper.py |