Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[submodule][master] Update submodule sonic-swss/sonic-sairedis to the latest HEAD #16599

Merged
merged 1 commit into from
Sep 26, 2023
Merged
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
2 changes: 1 addition & 1 deletion src/sonic-swss
Submodule sonic-swss updated 50 files
+56 −13 .azure-pipelines/build-docker-sonic-vs-template.yml
+56 −21 .azure-pipelines/build-template.yml
+5 −0 .azure-pipelines/docker-sonic-vs/Dockerfile
+40 −4 .azure-pipelines/test-docker-sonic-vs-template.yml
+1 −0 .gitignore
+75 −0 azure-pipelines-dash.yml
+0 −1 azure-pipelines.yml
+69 −1 cfgmgr/macsecmgr.cpp
+38 −3 cfgmgr/teammgr.cpp
+8 −2 orchagent/Makefile.am
+21 −17 orchagent/aclorch.cpp
+5 −1 orchagent/bufferorch.cpp
+256 −0 orchagent/bulker.h
+283 −20 orchagent/crmorch.cpp
+21 −0 orchagent/crmorch.h
+701 −0 orchagent/dash/dashaclorch.cpp
+100 −0 orchagent/dash/dashaclorch.h
+682 −0 orchagent/dash/dashorch.cpp
+66 −0 orchagent/dash/dashorch.h
+644 −0 orchagent/dash/dashrouteorch.cpp
+99 −0 orchagent/dash/dashrouteorch.h
+765 −0 orchagent/dash/dashvnetorch.cpp
+106 −0 orchagent/dash/dashvnetorch.h
+105 −0 orchagent/dash/pbutils.cpp
+77 −0 orchagent/dash/pbutils.h
+133 −0 orchagent/dash/taskworker.h
+46 −20 orchagent/main.cpp
+8 −1 orchagent/orch.cpp
+3 −0 orchagent/orch.h
+63 −5 orchagent/orchdaemon.cpp
+8 −2 orchagent/orchdaemon.h
+2 −2 orchagent/port/porthlpr.cpp
+101 −33 orchagent/portsorch.cpp
+2 −0 orchagent/portsorch.h
+18 −0 orchagent/saihelper.cpp
+65 −0 orchagent/zmqorch.cpp
+35 −0 orchagent/zmqorch.h
+9 −0 portsyncd/linksync.cpp
+8 −0 portsyncd/portsyncd.cpp
+2 −0 tests/README.md
+484 −0 tests/_test_dash_crm.py
+11 −0 tests/conftest.py
+33 −4 tests/mock_tests/Makefile.am
+1 −1 tests/mock_tests/orchdaemon_ut.cpp
+99 −0 tests/mock_tests/portsorch_ut.cpp
+1 −0 tests/mock_tests/portsyncd/portsyncd_ut.cpp
+78 −0 tests/mock_tests/teammgrd/teammgr_ut.cpp
+510 −0 tests/test_dash_acl.py
+334 −0 tests/test_dash_vnet.py
+30 −0 tests/test_port_fec_override.py
Loading