Skip to content

Commit

Permalink
[submodules]: update swss/sairedis/utilities
Browse files Browse the repository at this point in the history
swss:
* f354798 2019-11-09 | [tests] fix build agains real SAI (sonic-net#1123) (HEAD, origin/master, origin/HEAD) [Stepan Blyshchak]
* 56d66a1 2019-11-07 | Sub port interface implementation (sonic-net#969) [Wenda Ni]
* c57fc34 2019-11-07 | [bufferorch] Fixed buffer and buffer profile attributes types accoring to changes in SAI 1.5 (sonic-net#1120) [Vitaliy Senchyshyn]
* 85ff17d 2019-11-07 | [VRF]: submit vrf feature  (sonic-net#943) [Tyler Li]
* 5604566 2019-11-06 | [vs_test] fix fdb test failed randomly (sonic-net#1118) [Tyler Li]
* 038d994 2019-11-05 | [vnet]: Correct VNET route table size for BITMAP implementation (sonic-net#1115) [Volodymyr Samotiy]
* bb4e19c 2019-11-04 | Not wait till kernel net_devices are created for all physical ports to (sonic-net#1109) [Wenda Ni]
* bab7b93 2019-11-02 | [portsorch] fix PortsOrch::allPortsReady() returns true when it should not (sonic-net#1103) [Stepan Blyshchak]
* 5ab3f6b 2019-10-31 | Updating pytest for sflow (sonic-net#1095) [Sudharsan D.G]
* d4ccdc3 2019-10-29 | Quote input strings before constructing a command line (sonic-net#1098) [Qi Luo]
* 5516ec4 2019-10-29 | Check RIF/Port exists only for add entries (sonic-net#1110) [Prince Sunny]
* 59440f2 2019-10-29 | Allow buffer profile apply after init (sonic-net#1099) [Wenda Ni]

sairedis:
* d9faa58 2019-10-24 | Copp changes for supporting genetlink in vs (sonic-net#522) [Sudharsan D.G]

utiltiies:
* e4a5e4c 2019-11-07 | Do not start pfcwd for M0 devices (sonic-net#726) (HEAD, origin/master, origin/HEAD) [Neetha John]
* 2c0af8a 2019-11-07 | Add an on/off knob for BGP EOIU pulling on warm restart (sonic-net#655) [heidinet2007]
* 2bce9ce 2019-11-07 | Make configlet application script idempotent for updates. (sonic-net#728) [Renuka Manavalan]
* 4740617 2019-11-06 | Revert "show BPS, PPS, UTIL rates w/o previous clear (sonic-net#508)" (sonic-net#718) [Mykola F]
  • Loading branch information
lguohan authored and zhenggen-xu committed Jan 9, 2020
1 parent f36b761 commit b3c0665
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/sonic-sairedis
2 changes: 1 addition & 1 deletion src/sonic-swss
Submodule sonic-swss updated 86 files
+377 −40 cfgmgr/intfmgr.cpp
+17 −3 cfgmgr/intfmgr.h
+1 −0 cfgmgr/intfmgrd.cpp
+2 −21 cfgmgr/nbrmgr.cpp
+24 −3 cfgmgr/portmgr.cpp
+1 −0 cfgmgr/portmgr.h
+9 −0 cfgmgr/shellcmd.h
+31 −8 cfgmgr/teammgr.cpp
+1 −0 cfgmgr/teammgr.h
+18 −18 cfgmgr/vlanmgr.cpp
+62 −12 cfgmgr/vrfmgr.cpp
+3 −2 cfgmgr/vrfmgr.h
+106 −58 cfgmgr/vxlanmgr.cpp
+4 −1 cfgmgr/vxlanmgr.h
+1 −1 configure.ac
+26 −2 doc/swss-schema.md
+22 −5 fpmsyncd/routesync.cpp
+1 −1 fpmsyncd/routesync.h
+5 −0 neighsyncd/neighsync.cpp
+6 −2 orchagent/Makefile.am
+1 −1 orchagent/aclorch.cpp
+8 −8 orchagent/bufferorch.cpp
+112 −0 orchagent/debug_counter/debug_counter.cpp
+64 −0 orchagent/debug_counter/debug_counter.h
+372 −0 orchagent/debug_counter/drop_counter.cpp
+54 −0 orchagent/debug_counter/drop_counter.h
+65 −0 orchagent/debug_counter/drop_reasons.h
+588 −0 orchagent/debugcounterorch.cpp
+97 −0 orchagent/debugcounterorch.h
+2 −1 orchagent/fdborch.cpp
+225 −0 orchagent/flex_counter/flex_counter_manager.cpp
+77 −0 orchagent/flex_counter/flex_counter_manager.h
+93 −0 orchagent/flex_counter/flex_counter_stat_manager.cpp
+33 −0 orchagent/flex_counter/flex_counter_stat_manager.h
+3 −0 orchagent/flexcounterorch.cpp
+246 −156 orchagent/intfsorch.cpp
+4 −7 orchagent/intfsorch.h
+15 −15 orchagent/neighorch.cpp
+1 −0 orchagent/orch.h
+10 −4 orchagent/orchdaemon.cpp
+1 −0 orchagent/orchdaemon.h
+1 −1 orchagent/pfcactionhandler.cpp
+5 −0 orchagent/pfcwdorch.cpp
+30 −2 orchagent/port.h
+306 −27 orchagent/portsorch.cpp
+16 −2 orchagent/portsorch.h
+1 −1 orchagent/qosorch.cpp
+2 −2 orchagent/request_parser.cpp
+185 −95 orchagent/routeorch.cpp
+17 −10 orchagent/routeorch.h
+3 −0 orchagent/saihelper.cpp
+3 −3 orchagent/vnetorch.cpp
+2 −2 orchagent/vnetorch.h
+11 −4 orchagent/vrforch.cpp
+63 −3 orchagent/vrforch.h
+10 −6 portsyncd/linksync.cpp
+6 −1 tests/Makefile.am
+38 −2 tests/conftest.py
+1 −0 tests/mock_tests/.gitignore
+48 −31 tests/mock_tests/Makefile.am
+11 −11 tests/mock_tests/aclorch_ut.cpp
+1 −1 tests/mock_tests/mock_consumerstatetable.cpp
+2 −2 tests/mock_tests/mock_dbconnector.cpp
+56 −0 tests/mock_tests/mock_orchagent_main.h
+74 −0 tests/mock_tests/mock_table.cpp
+6 −0 tests/mock_tests/mock_table.h
+313 −0 tests/mock_tests/portsorch_ut.cpp
+8 −0 tests/mock_tests/ut_helper.h
+163 −0 tests/mock_tests/ut_saihelper.cpp
+28 −20 tests/port_dpb.py
+40 −0 tests/quoted_ut.cpp
+88 −0 tests/test_acl.py
+705 −0 tests/test_drop_counters.py
+14 −6 tests/test_fdb.py
+71 −7 tests/test_fdb_update.py
+1,649 −150 tests/test_interface.py
+390 −0 tests/test_neighbor.py
+2 −0 tests/test_port_dpb.py
+178 −0 tests/test_port_dpb_vlan.py
+181 −0 tests/test_port_mac_learn.py
+597 −30 tests/test_route.py
+199 −26 tests/test_sflow.py
+381 −0 tests/test_sub_port_intf.py
+11 −4 tests/test_vnet.py
+205 −142 tests/test_vrf.py
+123 −0 tests/test_warm_reboot.py
2 changes: 1 addition & 1 deletion src/sonic-utilities

0 comments on commit b3c0665

Please sign in to comment.