Skip to content

Ipv6 rr semantics#3605

Closed
preetham-singh wants to merge 2 commits intosonic-net:masterfrom
preetham-singh:IPv6-RR-semantics
Closed

Ipv6 rr semantics#3605
preetham-singh wants to merge 2 commits intosonic-net:masterfrom
preetham-singh:IPv6-RR-semantics

Conversation

@preetham-singh
Copy link
Contributor

- What I did
Enable IPv6 Route semantics in zebra by starting zebra with command line option --v6-rr-semantics
This enables IPv6 routes are updated in kernel with NLM_F_REPLACE flag
whenever there is route update from zebra instead of treating route update as
delete and add.
- How I did it
Adding --v6-rr-semantics option to frr docker supervisor.conf
- How to verify it
Create ECMP IPv6 static routes with multiple nhops.
- Description for the changelog

- Steps to recreate
In FRR:

ipv6 route 2222::2/128 100::2
ipv6 route 2222::2/128 100::3
ipv6 route 2222::2/128 100::4
ipv6 route 2222::2/128 100::5
ipv6 route 2222::2/128 100::6
ipv6 route 2222::2/128 100::7
ipv6 route 2222::2/128 100::8
ipv6 route 2222::2/128 100::9
ipv6 route 2222::2/128 100::10
ipv6 route 2222::2/128 100::11
ipv6 route 2222::2/128 100::12
ipv6 route 2222::2/128 100::13
ipv6 route 2222::2/128 100::14
ipv6 route 2222::2/128 100::15
ipv6 route 2222::2/128 100::16
ipv6 route 2222::2/128 100::17
ipv6 route 2222::2/128 100::18
ipv6 route 2222::2/128 100::19
ipv6 route 2222::2/128 100::20
!
line vty
!
end
VS1#
root@VS1:~# ip -6 route show 2222::2/128
2222::2 via 100::9 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::10 dev Vlan100 proto 196 metric 20 pref medium

root@VS1:# ps -aef | grep -i zebra
300 4208 2937 0 Sep17 pts/0 00:02:04 /usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M fpm -M snmp
root 28292 28226 0 09:48 pts/0 00:00:00 grep -i zebra
root@VS1:#

After fix:

root@VS1:# ps -aef | grep -i zebra
300 3456 3379 0 09:34 pts/0 00:00:00 /usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M fpm -M snmp --v6-rr-semantics
root 3964 31001 0 09:36 pts/0 00:00:00 grep -i zebra
root@VS1:#

sonic(config)# ipv6 route 2222::2/128 100::2
ipv6 route 2222::2/128 100::4
sonic(config)# ipv6 route 2222::2/128 100::3
sonic(config)# ipv6 route 2222::2/128 100::4
sonic(config)# ipv6 route 2222::2/128 100::5
sonic(config)# ipv6 route 2222::2/128 100::6
sonic(config)# ipv6 route 2222::2/128 100::7
sonic(config)# ipv6 route 2222::2/128 100::8
sonic(config)# ipv6 route 2222::2/128 100::9
sonic(config)# ipv6 route 2222::2/128 100::10
sonic(config)# ipv6 route 2222::2/128 100::11
sonic(config)# ipv6 route 2222::2/128 100::12
sonic(config)# ipv6 route 2222::2/128 100::13
sonic(config)# ipv6 route 2222::2/128 100::14
sonic(config)# ipv6 route 2222::2/128 100::15
sonic(config)# ipv6 route 2222::2/128 100::16
sonic(config)# ipv6 route 2222::2/128 100::17
sonic(config)# ipv6 route 2222::2/128 100::18
sonic(config)# ipv6 route 2222::2/128 100::19
sonic(config)# ipv6 route 2222::2/128 100::20
sonic(config)# end
sonic#
root@VS1:~# ip -6 route show 2222::2/128
2222::2 via 100::2 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::3 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::4 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::5 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::6 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::7 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::8 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::9 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::10 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::11 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::12 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::13 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::14 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::15 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::16 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::17 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::18 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::19 dev Vlan100 proto 196 metric 20 pref medium
2222::2 via 100::20 dev Vlan100 proto 196 metric 20 pref medium

This enables IPv6 routes are updated in kernel with NLM_F_REPLACE flag
whenever there is route update instead of treating route update as
delete and add.
@preetham-singh
Copy link
Contributor Author

Will resolve conflicts and create new PR.

@preetham-singh preetham-singh deleted the IPv6-RR-semantics branch October 15, 2019 10:01
mssonicbld added a commit that referenced this pull request Dec 23, 2024
…atically (#21194)

#### Why I did it
src/sonic-utilities
```
* 2f8508f - (HEAD -> master, origin/master, origin/HEAD) Revert PR: Add scope to field validator (#3689) (3 days ago) [xwjiang-ms]
* 5481d0e - Optimize techsupport reducing number of vtysh calls in scale sceario (#3605) (5 days ago) [Sudharsan Dhamal Gopalarathnam]
* 7e2e59c - add sonic_asic_platform in the render context when rendering docker_image_ctl.j2 (#3672) (5 days ago) [Changrong Wu]
* d85e1db - Disable routeCheck monit as part of config reload/minigraph stop service and enable it back as part of service start. (#3682) (6 days ago) [abdosi]
* 139983a - platform/marvell renaming to platform/marvell-prestera (#3622) (6 days ago) [krismarvell]
* e3991d5 - Add scope to field validator. (#3675) (7 days ago) [Xincun Li]
```
#### How I did it
#### How to verify it
#### Description for the changelog
VladimirKuk pushed a commit to Marvell-switching/sonic-buildimage that referenced this pull request Jan 21, 2025
…atically (sonic-net#21194)

#### Why I did it
src/sonic-utilities
```
* 2f8508f - (HEAD -> master, origin/master, origin/HEAD) Revert PR: Add scope to field validator (sonic-net#3689) (3 days ago) [xwjiang-ms]
* 5481d0e - Optimize techsupport reducing number of vtysh calls in scale sceario (sonic-net#3605) (5 days ago) [Sudharsan Dhamal Gopalarathnam]
* 7e2e59c - add sonic_asic_platform in the render context when rendering docker_image_ctl.j2 (sonic-net#3672) (5 days ago) [Changrong Wu]
* d85e1db - Disable routeCheck monit as part of config reload/minigraph stop service and enable it back as part of service start. (sonic-net#3682) (6 days ago) [abdosi]
* 139983a - platform/marvell renaming to platform/marvell-prestera (sonic-net#3622) (6 days ago) [krismarvell]
* e3991d5 - Add scope to field validator. (sonic-net#3675) (7 days ago) [Xincun Li]
```
#### How I did it
#### How to verify it
#### Description for the changelog
mssonicbld added a commit that referenced this pull request Dec 7, 2025
…lly (#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (#3847)" (#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (#3822)" (#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog
kewei-arista pushed a commit to kewei-arista/sonic-buildimage that referenced this pull request Dec 8, 2025
…lly (sonic-net#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (sonic-net#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847)" (sonic-net#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (sonic-net#3822)" (sonic-net#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (sonic-net#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (sonic-net#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (sonic-net#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (sonic-net#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (sonic-net#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (sonic-net#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (sonic-net#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (sonic-net#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (sonic-net#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (sonic-net#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (sonic-net#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (sonic-net#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (sonic-net#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (sonic-net#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (sonic-net#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (sonic-net#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (sonic-net#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (sonic-net#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (sonic-net#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (sonic-net#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (sonic-net#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (sonic-net#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (sonic-net#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (sonic-net#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (sonic-net#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (sonic-net#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (sonic-net#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog
hdwhdw pushed a commit to hdwhdw/sonic-buildimage that referenced this pull request Dec 18, 2025
…lly (sonic-net#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (sonic-net#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847)" (sonic-net#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (sonic-net#3822)" (sonic-net#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (sonic-net#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (sonic-net#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (sonic-net#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (sonic-net#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (sonic-net#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (sonic-net#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (sonic-net#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (sonic-net#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (sonic-net#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (sonic-net#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (sonic-net#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (sonic-net#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (sonic-net#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (sonic-net#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (sonic-net#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (sonic-net#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (sonic-net#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (sonic-net#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (sonic-net#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (sonic-net#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (sonic-net#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (sonic-net#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (sonic-net#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (sonic-net#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (sonic-net#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (sonic-net#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (sonic-net#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Dawei Huang <daweihuang@microsoft.com>
xwjiang-ms pushed a commit to xwjiang-ms/sonic-buildimage that referenced this pull request Dec 22, 2025
…lly (sonic-net#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (sonic-net#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847)" (sonic-net#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (sonic-net#3822)" (sonic-net#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (sonic-net#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (sonic-net#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (sonic-net#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (sonic-net#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (sonic-net#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (sonic-net#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (sonic-net#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (sonic-net#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (sonic-net#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (sonic-net#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (sonic-net#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (sonic-net#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (sonic-net#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (sonic-net#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (sonic-net#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (sonic-net#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (sonic-net#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (sonic-net#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (sonic-net#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (sonic-net#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (sonic-net#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (sonic-net#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (sonic-net#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (sonic-net#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (sonic-net#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (sonic-net#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (sonic-net#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: xiaweijiang <xiaweijiang@microsoft.com>
jasonbridges pushed a commit to jasonbridges/sonic-buildimage that referenced this pull request Jan 22, 2026
…lly (sonic-net#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (sonic-net#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847)" (sonic-net#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (sonic-net#3822)" (sonic-net#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (sonic-net#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (sonic-net#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (sonic-net#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (sonic-net#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (sonic-net#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (sonic-net#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (sonic-net#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (sonic-net#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (sonic-net#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (sonic-net#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (sonic-net#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (sonic-net#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (sonic-net#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (sonic-net#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (sonic-net#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (sonic-net#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (sonic-net#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (sonic-net#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (sonic-net#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (sonic-net#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (sonic-net#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (sonic-net#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (sonic-net#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (sonic-net#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (sonic-net#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (sonic-net#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (sonic-net#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog
FengPan-Frank pushed a commit to FengPan-Frank/sonic-buildimage that referenced this pull request Mar 6, 2026
…lly (sonic-net#24534)

#### Why I did it
src/sonic-swss
```
* dabbd57c - (HEAD -> master, origin/master, origin/HEAD) Disable test_Srv6MySidUNTunnelDscpMode and test_Srv6MySidUNTunnelDscpModeAmbiguity (sonic-net#4033) (31 hours ago) [Changrong Wu]
* a7198d1a - Revert "Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847)" (sonic-net#4035) (2 days ago) [Ying Xie]
* 83adbd96 - Revert "Avoid nhgroup update when mux state changes (sonic-net#3822)" (sonic-net#4030) (2 days ago) [Ying Xie]
* f34f624b - Respect Cargo.lock for dependencies version (sonic-net#4028) (3 days ago) [Qi Luo]
* d644d2e4 - [bulker] Add support for bulk set object attributes (sonic-net#3703) (4 days ago) [Nikola Dancejic]
* eae91a23 - [Dash] Update ENI Based Forwarding Orchagent (sonic-net#3905) (9 days ago) [Vivek]
* 48e28b64 - Populate the Voq system Port information for the local port when the Port is removed and created when the Speed is changed dynamically via GCU (sonic-net#3976) (9 days ago) [saksarav-nokia]
* 4d397121 - [DPB]: Fix stale queue counter maps in COUNTERS_DB after port breakout (sonic-net#3982) (9 days ago) [Ravi Minnikanti(Marvell)]
* e2cc8ce0 - Add support for platform based on Clounix asic (sonic-net#3846) (9 days ago) [clounix-sw]
* 10df75b4 - Change DB that DPU orchagents listens to for all orchs (sonic-net#3827) (9 days ago) [prabhataravind]
* a2decc5a - Support SAI_PORT_SERDES_ATTR_CUSTOM_COLLECTION (sonic-net#3764) (10 days ago) [longhuan-cisco]
* c5caf506 - [SmartSwitch-HA] Support peer_ip update in ha set. (sonic-net#3964) (11 days ago) [dypet]
* 7119c2b5 - Enable output queue for HFT (sonic-net#3962) (11 days ago) [Ze Gan]
* 4c6457e8 - [SmartSwitch-HA] Set pending flags back to false. (sonic-net#3997) (12 days ago) [dypet]
* 2ed250d4 - Set egress mirror headroom to 0 on SN6600 platform (sonic-net#4005) (12 days ago) [Stephen Sun]
* 1c7ab034 - [HFT OTEL]: OTEL conversion init (sonic-net#3920) (12 days ago) [Janet Cui]
* 7c9315a3 - [buffermgrd] Optimize fast-reboot startup (sonic-net#3952) (12 days ago) [Jianyue Wu]
* 7d540cb7 - [fpmsyncd]: Fix uA SID programming for link-local adjacencies (sonic-net#3958) (12 days ago) [Carmine Scarpitta]
* 85412005 - [vnetorch] missing handling of rx and tx interval of monitoring session (sonic-net#3878) (12 days ago) [Jing Zhang]
* 46daad09 - [syncd] Fix the error log while running lua plugin (sonic-net#3974) (12 days ago) [Vivek]
* 5671e08b - Orchagent changes needed to support single ASIC VOQ Fixed-System (sonic-net#3847) (2 weeks ago) [lakshmi-nexthop]
* b017bd38 - Permanent isolate a fabric port if it repeatedly flapping. (sonic-net#3933) (2 weeks ago) [jfeng-arista]
* b426b2bb - Support checking capabilities of the mirror (sonic-net#3934) (2 weeks ago) [Stephen Sun]
* 25647cdf - [fpmsyncd]: Add Support for SRv6 VPN Route and PIC Context Processing (sonic-net#3605) (2 weeks ago) [Yuqing Zhao(Alibaba Inc)]
* 820eb74a - Allow state db to take modified entries made to the tunnel decap table (sonic-net#3960) (2 weeks ago) [Dev Ojha]
* 56856536 - Temporarily skip failing port tests to unblock pipeline runs (sonic-net#4010) (2 weeks ago) [prabhataravind]
* a4ed9594 - Avoid nhgroup update when mux state changes (sonic-net#3822) (3 weeks ago) [manamand2020]
* 42929d82 - dot3 Stats collection (sonic-net#3615) (3 weeks ago) [Brad House - NextHop]
* ffea522b - [portsorch] fix crash when number of PGs returned 0 (sonic-net#3966) (3 weeks ago) [Stepan Blyshchak]
* ea54ff84 - [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (sonic-net#3987) (3 weeks ago) [Liu Shilong]
* 0adab60c - [fpmsyncd] skip routes for eth1-midplane (sonic-net#3724) (3 weeks ago) [arista-nwolfe]
```
#### How I did it
#### How to verify it
#### Description for the changelog

Signed-off-by: Feng Pan <fenpan@microsoft.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant