Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sonic-swss
Submodule sonic-swss updated 85 files
+3 −3 .azure-pipelines/build-template.yml
+1 −1 .azure-pipelines/gcov.yml
+1,259 −22 Cargo.lock
+4 −4 azure-pipelines.yml
+1 −0 cfgmgr/buffer_pool_mellanox.lua
+18 −1 cfgmgr/buffermgrdyn.cpp
+22 −0 crates/countersyncd/Cargo.toml
+1 −0 crates/countersyncd/src/actor/mod.rs
+294 −0 crates/countersyncd/src/actor/otel.rs
+154 −15 crates/countersyncd/src/main.rs
+1 −0 crates/countersyncd/src/message/mod.rs
+441 −0 crates/countersyncd/src/message/otel.rs
+1 −4 debian/rules
+11 −1 fpmsyncd/fpmlink.cpp
+4 −0 fpmsyncd/fpmlink.h
+672 −26 fpmsyncd/routesync.cpp
+38 −1 fpmsyncd/routesync.h
+1 −0 mclagsyncd/mclaglink.cpp
+1 −0 mclagsyncd/mclaglink.h
+1 −0 orchagent/Makefile.am
+30 −4 orchagent/aclorch.cpp
+1 −0 orchagent/aclorch.h
+21 −29 orchagent/bulker.h
+40 −115 orchagent/dash/dashenifwdinfo.cpp
+222 −144 orchagent/dash/dashenifwdorch.cpp
+112 −110 orchagent/dash/dashenifwdorch.h
+51 −2 orchagent/dash/dashhaorch.cpp
+1 −0 orchagent/dash/dashhaorch.h
+171 −53 orchagent/fabricportsorch.cpp
+12 −0 orchagent/fabricportsorch.h
+6 −9 orchagent/high_frequency_telemetry/counternameupdater.cpp
+4 −0 orchagent/high_frequency_telemetry/hftelprofile.cpp
+5 −0 orchagent/intfsorch.cpp
+14 −1 orchagent/mirrororch.cpp
+2 −1 orchagent/mirrororch.h
+1 −0 orchagent/orch.h
+11 −9 orchagent/orchdaemon.cpp
+6 −0 orchagent/p4orch/tests/mock_sai_next_hop.h
+98 −0 orchagent/pfc_detect_clounix.lua
+25 −2 orchagent/port.h
+5 −0 orchagent/port/portcnt.h
+27 −0 orchagent/port/porthlpr.cpp
+8 −0 orchagent/port/porthlpr.h
+1 −0 orchagent/port/portschema.h
+2 −1 orchagent/port_rates.lua
+195 −44 orchagent/portsorch.cpp
+11 −3 orchagent/portsorch.h
+32 −1 orchagent/request_parser.cpp
+13 −1 orchagent/request_parser.h
+58 −0 orchagent/switchorch.cpp
+11 −0 orchagent/switchorch.h
+11 −0 orchagent/tunneldecaporch.cpp
+39 −11 orchagent/vnetorch.cpp
+8 −4 orchagent/vnetorch.h
+21 −0 tests/conftest.py
+1 −1 tests/create_appliance.py
+14 −14 tests/dash/dash_db.py
+1 −1 tests/dash/test_dash_acl.py
+2 −0 tests/mock_tests/Makefile.am
+15 −9 tests/mock_tests/aclorch_rule_ut.cpp
+1 −1 tests/mock_tests/aclorch_ut.cpp
+363 −2 tests/mock_tests/buffermgrdyn_ut.cpp
+115 −0 tests/mock_tests/bulker_ut.cpp
+220 −260 tests/mock_tests/dashenifwdorch_ut.cpp
+42 −0 tests/mock_tests/dashhaorch_ut.cpp
+57 −5 tests/mock_tests/fpmsyncd/receive_srv6_mysids_ut.cpp
+988 −3 tests/mock_tests/fpmsyncd/test_routesync.cpp
+28 −1 tests/mock_tests/fpmsyncd/ut_helpers_fpmsyncd.cpp
+6 −2 tests/mock_tests/fpmsyncd/ut_helpers_fpmsyncd.h
+57 −0 tests/mock_tests/mirrororch_ut.cpp
+4 −0 tests/mock_tests/mock_dbconnector.cpp
+1 −1 tests/mock_tests/mock_orch_test.cpp
+83 −0 tests/mock_tests/mock_sai_api.h
+29 −0 tests/mock_tests/mock_table.cpp
+191 −27 tests/mock_tests/portsorch_ut.cpp
+10 −0 tests/mock_tests/saispy.h
+15 −0 tests/mock_tests/switchorch_ut.cpp
+521 −0 tests/mock_tests/tunneldecaporch_ut.cpp
+182 −0 tests/request_parser_ut.cpp
+17 −1 tests/test_fabric_port_isolation.py
+5 −0 tests/test_port_add_remove.py
+2 −0 tests/test_srv6.py
+72 −56 tests/test_virtual_chassis.py
+52 −1 tests/test_vnet.py
+9 −3 tests/vnet_lib.py
Loading