Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 4 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[submodule "sonic-swss-common"]
path = src/sonic-swss-common
url = https://github.com/sonic-net/sonic-swss-common
url = https://github.com/yutongzhang-microsoft/sonic-swss-common
branch = feature/component-stats
[submodule "sonic-linux-kernel"]
path = src/sonic-linux-kernel
url = https://github.com/sonic-net/sonic-linux-kernel
Expand All @@ -9,7 +10,8 @@
url = https://github.com/sonic-net/sonic-sairedis
[submodule "sonic-swss"]
path = src/sonic-swss
url = https://github.com/sonic-net/sonic-swss
url = https://github.com/yutongzhang-microsoft/sonic-swss
branch = swss-stats-use-componentstats
[submodule "src/p4c-bm/p4c-bm"]
path = platform/p4/p4c-bm/p4c-bm
url = https://github.com/krambn/p4c-bm
Expand Down
2 changes: 1 addition & 1 deletion src/sonic-swss
Submodule sonic-swss updated 63 files
+1 −1 .azure-pipelines/build-docker-sonic-vs-template.yml
+1 −1 .azure-pipelines/build-template.yml
+1 −0 cfgmgr/Makefile.am
+1 −5 cfgmgr/stpmgr.cpp
+2 −2 cfgmgr/stpmgr.h
+0 −2 fpmsyncd/routesync.cpp
+1 −310 lib/recorder.cpp
+0 −61 lib/recorder.h
+1 −0 orchagent/Makefile.am
+2 −39 orchagent/aclorch.cpp
+0 −4 orchagent/aclorch.h
+0 −2 orchagent/dash/dashhaorch.cpp
+32 −28 orchagent/dash/dashrouteorch.cpp
+4 −5 orchagent/fdborch.cpp
+6 −5 orchagent/flexcounterorch.cpp
+13 −2 orchagent/flexcounterorch.h
+1 −1 orchagent/icmporch.cpp
+1 −1 orchagent/intfsorch.cpp
+4 −77 orchagent/main.cpp
+1 −1 orchagent/neighorch.cpp
+40 −54 orchagent/orch.cpp
+0 −4 orchagent/orch.h
+23 −45 orchagent/orchdaemon.cpp
+2 −2 orchagent/p4orch/p4orch.cpp
+2 −2 orchagent/p4orch/p4orch_util.h
+1 −1 orchagent/p4orch/tests/Makefile.am
+0 −24 orchagent/p4orch/tests/fake_routeorch.cpp
+5 −5 orchagent/p4orch/tests/p4orch_util_test.cpp
+0 −2 orchagent/p4orch/tests/test_main.cpp
+156 −130 orchagent/p4orch/tests/tunnel_decap_group_manager_test.cpp
+56 −33 orchagent/p4orch/tunnel_decap_group_manager.cpp
+17 −10 orchagent/p4orch/tunnel_decap_group_manager.h
+32 −35 orchagent/portsorch.cpp
+5 −7 orchagent/retrycache.h
+1 −1 orchagent/routeorch.cpp
+1 −64 orchagent/saihelper.cpp
+0 −11 orchagent/saihelper.h
+2 −3 orchagent/srv6orch.cpp
+94 −0 orchagent/swssstats.cpp
+73 −0 orchagent/swssstats.h
+0 −12 orchagent/vrforch.cpp
+11 −44 teamsyncd/teamsync.cpp
+1 −9 tests/evpn_tunnel.py
+8 −8 tests/mock_tests/Makefile.am
+0 −205 tests/mock_tests/aclorch_rule_ut.cpp
+0 −91 tests/mock_tests/aclorch_ut.cpp
+4 −82 tests/mock_tests/consumer_ut.cpp
+21 −59 tests/mock_tests/dashrouteorch_ut.cpp
+1 −235 tests/mock_tests/fdborch/flush_syncd_notif_ut.cpp
+16 −28 tests/mock_tests/flexcounter_ut.cpp
+0 −18 tests/mock_tests/mock_dash_orch_test.cpp
+0 −3 tests/mock_tests/mock_dash_orch_test.h
+0 −8 tests/mock_tests/mock_saihelper.cpp
+0 −9 tests/mock_tests/neighorch_ut.cpp
+0 −29 tests/mock_tests/orchdaemon_ut.cpp
+0 −20 tests/mock_tests/portphyserdesattr_ut.cpp
+0 −154 tests/mock_tests/portsorch_ut.cpp
+0 −81 tests/mock_tests/saihelper_ut.cpp
+212 −0 tests/mock_tests/swssstats_ut.cpp
+0 −68 tests/mock_tests/teamsync_ut.cpp
+31 −0 tests/mock_tests/test_failure_handling.cpp
+41 −37 tests/p4rt/test_p4rt_tunnel_decap.py
+1 −302 tests/quoted_ut.cpp
Loading