Skip to content
Open
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
Comment on lines 1 to +4
Comment on lines 2 to +4
[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
Comment on lines 11 to +14
Comment on lines +13 to +14
[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 37 files
+1 −0 cfgmgr/Makefile.am
+128 −261 crates/countersyncd/src/actor/ipfix.rs
+1 −1 orchagent/Makefile.am
+0 −5 orchagent/bfdorch.cpp
+2 −35 orchagent/fdborch.cpp
+17 −9 orchagent/high_frequency_telemetry/counternameupdater.cpp
+17 −5 orchagent/high_frequency_telemetry/counternameupdater.h
+2 −2 orchagent/high_frequency_telemetry/hftelgroup.cpp
+1 −1 orchagent/high_frequency_telemetry/hftelgroup.h
+21 −30 orchagent/high_frequency_telemetry/hftelorch.cpp
+6 −11 orchagent/high_frequency_telemetry/hftelprofile.cpp
+0 −5 orchagent/icmporch.cpp
+38 −41 orchagent/muxorch.cpp
+0 −101 orchagent/notificationconsumerstatsorch.cpp
+0 −72 orchagent/notificationconsumerstatsorch.h
+30 −0 orchagent/orch.cpp
+1 −10 orchagent/orchdaemon.cpp
+3 −8 orchagent/p4orch/p4orch.cpp
+0 −3 orchagent/p4orch/p4orch.h
+1 −1 orchagent/p4orch/tests/Makefile.am
+1 −37 orchagent/p4orch/tests/fake_notificationconsumer.cpp
+0 −30 orchagent/p4orch/tests/fake_notificationconsumerstatsorch.cpp
+3 −26 orchagent/portsorch.cpp
+94 −0 orchagent/swssstats.cpp
+83 −0 orchagent/swssstats.h
+0 −5 orchagent/twamporch.cpp
+5 −3 tests/mock_tests/Makefile.am
+0 −84 tests/mock_tests/counternameupdater_ut.cpp
+0 −160 tests/mock_tests/hftelgroup_ut.cpp
+0 −16 tests/mock_tests/hftelorch_is_supported_sai_wrap.cpp
+0 −1 tests/mock_tests/hftelorch_is_supported_sai_wrap.h
+0 −240 tests/mock_tests/hftelorch_notify_ut.cpp
+0 −15 tests/mock_tests/hftelorch_ut.cpp
+0 −267 tests/mock_tests/hftelprofile_ut.cpp
+0 −97 tests/mock_tests/mux_rollback_ut.cpp
+212 −0 tests/mock_tests/swssstats_ut.cpp
+124 −227 tests/test_mux.py
Loading