Skip to content

Commit

Permalink
Update sonic-swss ptr
Browse files Browse the repository at this point in the history
6185324 dereg acl-rule counters during acl-table del (sonic-net#2574)
b865352 Align watermark flow with port configuration (sonic-net#2525)
f2d2fb3 L3 / L3 V6  Egress ACL table creation failure (sonic-net#2561)
577f696 [muxorch] Skip programming ACL for standby `active-active` ports (sonic-net#2569)
242ee11 [muxorch] Skip programming SoC IP kernel tunnel route (sonic-net#2557)
6695113 [gearbox] Support setting tx taps on gearbox ports (sonic-net#2158)
872f7bf [portinit] Do not call GET on SAI_PORT_ATTR_SPEED when AUTONEG is enabled (sonic-net#2484)
6afefe1 [vstest][virtual chassis] Removed dvs.runcmd using click commands (sonic-net#2214)
b8521cc [p4orch]: PINS Extension tables support (sonic-net#2506)
d0419dc sonic-swss: Fix orchagent crash in generateQueueMapPerPort. (sonic-net#2552)
bd652a0 [muxorch] Adding case for maintaining current state (sonic-net#2280)
6b6dda6 [Centec]for support mclag of centec to configure port isolate-group sonic-net#2529
ec507a4 [ACL] Support ACTION_COUNTER action in custom ACL table type (sonic-net#2550)
1a74604 Use github code scanning instead of LGTM (sonic-net#2546)
bc3c894 [dual-tor] add missing SAI attribte in order to create IPNIP tunnel (sonic-net#2503)
dca78d8 (origin/202211) [Fdbsyncd] Bug Fix for remote MAC move to local MAC and Fix for Static MAC advertisement in EVPN. (sonic-net#2521)

Signed-off-by: Vivek Reddy Karri <vkarri@nvidia.com>
  • Loading branch information
vivekrnv committed Dec 17, 2022
1 parent 2c7dea4 commit cbdba5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sonic-swss
Submodule sonic-swss updated 71 files
+4 −0 .github/codeql/codeql-config.yml
+141 −0 .github/workflows/codeql-analysis.yml
+12 −8 fdbsyncd/fdbsync.cpp
+23 −1 gearsyncd/gearboxparser.cpp
+5 −0 lib/gearboxutils.cpp
+19 −0 lib/gearboxutils.h
+2 −1 mclagsyncd/mclaglink.cpp
+1 −0 mclagsyncd/mclaglink.h
+3 −1 orchagent/Makefile.am
+87 −9 orchagent/aclorch.cpp
+4 −0 orchagent/aclorch.h
+20 −16 orchagent/bufferorch.cpp
+30 −4 orchagent/flexcounterorch.cpp
+6 −2 orchagent/flexcounterorch.h
+65 −22 orchagent/muxorch.cpp
+30 −7 orchagent/muxorch.h
+6 −1 orchagent/p4orch/acl_rule_manager.cpp
+2 −1 orchagent/p4orch/acl_rule_manager.h
+6 −1 orchagent/p4orch/acl_table_manager.cpp
+2 −1 orchagent/p4orch/acl_table_manager.h
+873 −0 orchagent/p4orch/ext_tables_manager.cpp
+96 −0 orchagent/p4orch/ext_tables_manager.h
+6 −1 orchagent/p4orch/gre_tunnel_manager.cpp
+2 −1 orchagent/p4orch/gre_tunnel_manager.h
+6 −1 orchagent/p4orch/l3_admit_manager.cpp
+3 −2 orchagent/p4orch/l3_admit_manager.h
+28 −1 orchagent/p4orch/mirror_session_manager.cpp
+3 −1 orchagent/p4orch/mirror_session_manager.h
+38 −1 orchagent/p4orch/neighbor_manager.cpp
+2 −1 orchagent/p4orch/neighbor_manager.h
+28 −1 orchagent/p4orch/next_hop_manager.cpp
+2 −1 orchagent/p4orch/next_hop_manager.h
+5 −1 orchagent/p4orch/object_manager_interface.h
+44 −12 orchagent/p4orch/p4orch.cpp
+22 −2 orchagent/p4orch/p4orch.h
+53 −0 orchagent/p4orch/p4orch_util.cpp
+97 −1 orchagent/p4orch/p4orch_util.h
+6 −1 orchagent/p4orch/route_manager.cpp
+2 −1 orchagent/p4orch/route_manager.h
+28 −1 orchagent/p4orch/router_interface_manager.cpp
+2 −1 orchagent/p4orch/router_interface_manager.h
+687 −0 orchagent/p4orch/tables_definition_manager.cpp
+78 −0 orchagent/p4orch/tables_definition_manager.h
+2 −0 orchagent/p4orch/tests/Makefile.am
+21 −12 orchagent/p4orch/tests/acl_manager_test.cpp
+6 −1 orchagent/p4orch/tests/fake_portorch.cpp
+2 −2 orchagent/p4orch/tests/gre_tunnel_manager_test.cpp
+2 −2 orchagent/p4orch/tests/l3_admit_manager_test.cpp
+1 −1 orchagent/p4orch/tests/mirror_session_manager_test.cpp
+1 −1 orchagent/p4orch/tests/neighbor_manager_test.cpp
+1 −1 orchagent/p4orch/tests/next_hop_manager_test.cpp
+18 −18 orchagent/p4orch/tests/route_manager_test.cpp
+2 −2 orchagent/p4orch/tests/router_interface_manager_test.cpp
+3 −0 orchagent/p4orch/tests/test_main.cpp
+1 −1 orchagent/p4orch/tests/wcmp_manager_test.cpp
+28 −1 orchagent/p4orch/wcmp_manager.cpp
+2 −1 orchagent/p4orch/wcmp_manager.h
+338 −120 orchagent/portsorch.cpp
+46 −3 orchagent/portsorch.h
+3 −0 orchagent/saihelper.cpp
+25 −2 tests/dvslib/dvs_acl.py
+2 −0 tests/mock_tests/Makefile.am
+35 −0 tests/p4rt/tables_definition.py
+247 −0 tests/p4rt/test_viplb.py
+74 −0 tests/p4rt/viplb.py
+18 −4 tests/test_acl.py
+5 −2 tests/test_acl_egress_table.py
+45 −1 tests/test_flex_counters.py
+23 −0 tests/test_gearbox.py
+85 −25 tests/test_mux.py
+1 −1 tests/test_virtual_chassis.py

0 comments on commit cbdba5a

Please sign in to comment.