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.
Update submodule swss and swss-common (sonic-net#235)
swss ``` 04ce7c9a [Fixbug]: Fix vnet attribute miss if route action is vnet_direct and vnet test cases (sonic-net#2873) daa1fc71 [dash]: Refactor DASH orch by protobuf format (sonic-net#2722) 12ad49cd [tests]: Change DVS ENV HWKSU to DPU-2P for DASH vstest (sonic-net#2847) ``` swss-common ``` be425ed [redisCommand]: Not store the error return code of redisFormat (sonic-net#809) 5966d8b Fix binary serializer can't deserialize protopuf buffer content issue (sonic-net#810) 7ff768a Revert "Fix the issue of ignoring callback calls for removed keys. (sonic-net#789)" (sonic-net#804) 82581cf Make sure new binaries replace existing binaries in docker-sonic-vs (sonic-net#807) 62e8d80 Producer/Consumer table binary support (sonic-net#801) e0f394c Fix the issue of ignoring callback calls for removed keys. (sonic-net#789) 00db81f Fix the sairedis build target not found issue (sonic-net#802) dffd76a [Ci] Fix collect log error in azp template (sonic-net#799) d6453bc Add SEND_TO_INGRESS port table in schema.h (sonic-net#792) c3a77cc add semgrep (sonic-net#798) ```
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule sonic-swss
updated
19 files
+4 −0 | .azure-pipelines/build-template.yml | |
+16 −0 | .azure-pipelines/test-docker-sonic-vs-template.yml | |
+3 −2 | orchagent/Makefile.am | |
+309 −483 | orchagent/dash/dashaclorch.cpp | |
+22 −47 | orchagent/dash/dashaclorch.h | |
+62 −95 | orchagent/dash/dashorch.cpp | |
+13 −32 | orchagent/dash/dashorch.h | |
+54 −59 | orchagent/dash/dashrouteorch.cpp | |
+9 −15 | orchagent/dash/dashrouteorch.h | |
+29 −63 | orchagent/dash/dashvnetorch.cpp | |
+7 −13 | orchagent/dash/dashvnetorch.h | |
+105 −0 | orchagent/dash/pbutils.cpp | |
+77 −0 | orchagent/dash/pbutils.h | |
+133 −0 | orchagent/dash/taskworker.h | |
+2 −0 | tests/README.md | |
+4 −2 | tests/mock_tests/Makefile.am | |
+216 −54 | tests/test_dash_acl.py | |
+1 −1 | tests/test_dash_crm.py | |
+67 −19 | tests/test_dash_vnet.py |
Submodule sonic-swss-common
updated
20 files
+1 −1 | .azure-pipelines/build-sairedis-template.yml | |
+4 −0 | .azure-pipelines/docker-sonic-vs/Dockerfile | |
+3 −1 | .azure-pipelines/test-docker-sonic-vs-template.yml | |
+22 −0 | .github/workflows/semgrep.yml | |
+6 −5 | common/binaryserializer.h | |
+3 −3 | common/consumerstatetable.cpp | |
+2 −10 | common/luatable.cpp | |
+6 −30 | common/producerstatetable.cpp | |
+1 −9 | common/redisapi.h | |
+33 −14 | common/rediscommand.cpp | |
+12 −4 | common/rediscommand.h | |
+1 −1 | common/redispipeline.h | |
+6 −6 | common/redisreply.cpp | |
+3 −0 | common/schema.h | |
+58 −0 | common/stringutility.h | |
+56 −0 | pyext/swsscommon.i | |
+2 −1 | tests/Makefile.am | |
+46 −1 | tests/binary_serializer_ut.cpp | |
+12 −0 | tests/redis_command_ut.cpp | |
+12 −0 | tests/stringutility_ut.cpp |