Update cisco-8000.ini to use 202205-v0.1#12
Merged
abdosi merged 1 commit intoAzure:202205from Aug 24, 2022
Merged
Conversation
Contributor
Author
|
@abdosi , please review. Thanks |
Contributor
|
@gechiang for viz |
Contributor
jon-nokia
pushed a commit
to jon-nokia/sonic-buildimage-msft
that referenced
this pull request
May 3, 2024
…tically (#17847) #### Why I did it src/sonic-dash-api ``` * 8f481de - (HEAD -> master, origin/master, origin/HEAD) [misc]: Add utils CLI (Azure#12) (24 hours ago) [Ze Gan] ``` #### How I did it #### How to verify it #### Description for the changelog
r12f
pushed a commit
that referenced
this pull request
Dec 19, 2024
#### Why I did it To fix errors that happen when writing to the queue: ``` Jun 5 23:04:41.798613 r-leopard-56 NOTICE healthd: Caught SIGTERM - exiting... Jun 5 23:04:41.798985 r-leopard-56 NOTICE healthd: Caught SIGTERM - exiting... Jun 5 23:04:41.799535 r-leopard-56 NOTICE healthd: Caught SIGTERM - exiting... Jun 5 23:04:41.806010 r-leopard-56 NOTICE healthd: Caught SIGTERM - exiting... Jun 5 23:04:41.814075 r-leopard-56 ERR healthd: system_service[Errno 104] Connection reset by peer Jun 5 23:04:41.824135 r-leopard-56 ERR healthd: Traceback (most recent call last):#12 File "/usr/local/lib/python3.9/dist-packages/health_checker/sysmonitor.py", line 484, in system_service#012 msg = self.myQ.get(timeout=QUEUE_TIMEOUT)#12 File "<string>", line 2, in get#012 File "/usr/lib/python3.9/multiprocessing/managers.py", line 809, in _callmethod#012 kind, result = conn.recv()#12 File "/usr/lib/python3.9/multiprocessing/connection.py", line 255, in recv#012 buf = self._recv_bytes()#12 File "/usr/lib/python3.9/multiprocessing/connection.py", line 419, in _recv_bytes#012 buf = self._recv(4)#12 File "/usr/lib/python3.9/multiprocessing/connection.py", line 384, in _recv#012 chunk = read(handle, remaining)#012ConnectionResetError: [Errno 104] Connection reset by peer Jun 5 23:04:41.826489 r-leopard-56 INFO healthd[8494]: ERROR:dbus.connection:Exception in handler for D-Bus signal: Jun 5 23:04:41.826591 r-leopard-56 INFO healthd[8494]: Traceback (most recent call last): Jun 5 23:04:41.826640 r-leopard-56 INFO healthd[8494]: File "/usr/lib/python3/dist-packages/dbus/connection.py", line 232, in maybe_handle_message Jun 5 23:04:41.826686 r-leopard-56 INFO healthd[8494]: self._handler(*args, **kwargs) Jun 5 23:04:41.826738 r-leopard-56 INFO healthd[8494]: File "/usr/local/lib/python3.9/dist-packages/health_checker/sysmonitor.py", line 82, in on_job_removed Jun 5 23:04:41.826785 r-leopard-56 INFO healthd[8494]: self.task_notify(msg) Jun 5 23:04:41.826831 r-leopard-56 INFO healthd[8494]: File "/usr/local/lib/python3.9/dist-packages/health_checker/sysmonitor.py", line 110, in task_notify Jun 5 23:04:41.826877 r-leopard-56 INFO healthd[8494]: self.task_queue.put(msg) Jun 5 23:04:41.826923 r-leopard-56 INFO healthd[8494]: File "<string>", line 2, in put Jun 5 23:04:41.826973 r-leopard-56 INFO healthd[8494]: File "/usr/lib/python3.9/multiprocessing/managers.py", line 808, in _callmethod Jun 5 23:04:41.827018 r-leopard-56 INFO healthd[8494]: conn.send((self._id, methodname, args, kwds)) Jun 5 23:04:41.827065 r-leopard-56 INFO healthd[8494]: File "/usr/lib/python3.9/multiprocessing/connection.py", line 211, in send Jun 5 23:04:41.827115 r-leopard-56 INFO healthd[8494]: self._send_bytes(_ForkingPickler.dumps(obj)) Jun 5 23:04:41.827158 r-leopard-56 INFO healthd[8494]: File "/usr/lib/python3.9/multiprocessing/connection.py", line 416, in _send_bytes Jun 5 23:04:41.827199 r-leopard-56 INFO healthd[8494]: self._send(header + buf) Jun 5 23:04:41.827254 r-leopard-56 INFO healthd[8494]: File "/usr/lib/python3.9/multiprocessing/connection.py", line 373, in _send Jun 5 23:04:41.827322 r-leopard-56 INFO healthd[8494]: n = write(self._handle, buf) Jun 5 23:04:41.827368 r-leopard-56 INFO healthd[8494]: BrokenPipeError: [Errno 32] Broken pipe Jun 5 23:04:42.800216 r-leopard-56 NOTICE healthd: Caught SIGTERM - exiting... ``` When the multiprocessing.Manager is shutdown the queue will raise the above errors. This happens during shutdown - fast-reboot, warm-reboot. With the fix, system-health service does not hang: ``` root@sonic:/home/admin# sudo systemctl start system-health ; sleep 10; echo "$(date): Stopping..."; sudo systemctl stop system-health; echo "$(date): Stopped" Thu Oct 17 01:07:56 PM IDT 2024: Stopping... Thu Oct 17 01:07:58 PM IDT 2024: Stopped root@sonic:/home/admin# sudo systemctl start system-health ; sleep 10; echo "$(date): Stopping..."; sudo systemctl stop system-health; echo "$(date): Stopped" Thu Oct 17 01:08:13 PM IDT 2024: Stopping... Thu Oct 17 01:08:14 PM IDT 2024: Stopped root@sonic:/home/admin# sudo systemctl start system-health ; sleep 10; echo "$(date): Stopping..."; sudo systemctl stop system-health; echo "$(date): Stopped" Thu Oct 17 01:09:05 PM IDT 2024: Stopping... Thu Oct 17 01:09:06 PM IDT 2024: Stopped ``` ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it Remove the call to shutdown, the cleanup will happen automatically when GC runs as per documentation - https://docs.python.org/3/library/multiprocessing.html #### How to verify it <!-- If PR needs to be backported, then the PR must be tested against the base branch and the earliest backport release branch and provide tested image version on these two branches. For example, if the PR is requested for master, 202211 and 202012, then the requester needs to provide test results on master and 202012. --> Run warm-reboot, fast-reboot multiple times and verify no errors in the log. #### Which release branch to backport (provide reason below if selected) <!-- - Note we only backport fixes to a release branch, *not* features! - Please also provide a reason for the backporting below. - e.g. - [x] 202006 --> - [ ] 201811 - [ ] 201911 - [ ] 202006 - [ ] 202012 - [ ] 202106 - [ ] 202111 - [x] 202205 - [x] 202311 - [x] 202405 #### Tested branch (Please provide the tested image version) <!-- - Please provide tested image version - e.g. - [x] 20201231.100 --> - [ ] <!-- image version 1 --> - [ ] <!-- image version 2 --> #### Description for the changelog <!-- Write a short (one line) summary that describes the changes in this pull request for inclusion in the changelog: --> <!-- Ensure to add label/tag for the feature raised. example - PR#2174 under sonic-utilities repo. where, Generic Config and Update feature has been labelled as GCU. --> #### Link to config_db schema for YANG module changes <!-- Provide a link to config_db schema for the table for which YANG model is defined Link should point to correct section on https://github.com/Azure/sonic-buildimage/blob/master/src/sonic-yang-models/doc/Configuration.md --> #### A picture of a cute animal (not mandatory but encouraged)
liushilongbuaa
pushed a commit
that referenced
this pull request
Dec 26, 2024
To fix a statistical issue. The original fix was done in FRRouting/frr#17297. However to accommodate 8.5.4 the patch in the PR was added. [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Core was generated by `/usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M dplane_fpm_nl -M snmp'. Program terminated with signal SIGABRT, Aborted. #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 [Current thread is 1 (Thread 0x7fccd6faf7c0 (LWP 36))] (gdb) bt #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007fccd7302fb2 in raise () from /lib/x86_64-linux-gnu/libc.so.6 #2 0x00007fccd72ed472 in abort () from /lib/x86_64-linux-gnu/libc.so.6 #3 0x00007fccd75bb3a9 in _zlog_assert_failed (xref=xref@entry=0x7fccd7652380 <_xref.16>, extra=extra@entry=0x0) at ../lib/zlog.c:678 #4 0x00007fccd759b2fe in route_node_delete (node=<optimized out>) at ../lib/table.c:352 #5 0x00007fccd759b445 in route_unlock_node (node=0x0) at ../lib/table.h:258 #6 route_next (node=<optimized out>) at ../lib/table.c:436 #7 route_next (node=node@entry=0x56029d89e560) at ../lib/table.c:410 #8 0x000056029b6b6b7a in if_lookup_by_name_per_ns (ns=ns@entry=0x56029d873d90, ifname=ifname@entry=0x7fccc0029340 "PortChannel1020") at ../zebra/interface.c:312 #9 0x000056029b6b8b36 in zebra_if_dplane_ifp_handling (ctx=0x7fccc0029310) at ../zebra/interface.c:1867 #10 zebra_if_dplane_result (ctx=0x7fccc0029310) at ../zebra/interface.c:2221 #11 0x000056029b7137a9 in rib_process_dplane_results (thread=<optimized out>) at ../zebra/zebra_rib.c:4810 #12 0x00007fccd75a0e0d in thread_call (thread=thread@entry=0x7ffe8e553cc0) at ../lib/thread.c:1990 #13 0x00007fccd7559368 in frr_run (master=0x56029d65a040) at ../lib/libfrr.c:1198 #14 0x000056029b6ac317 in main (argc=9, argv=0x7ffe8e5540d8) at ../zebra/main.c:478
mssonicbld
added a commit
to mssonicbld/sonic-buildimage-msft
that referenced
this pull request
Jan 7, 2025
<!--
Please make sure you've read and understood our contributing guidelines:
https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md
** Make sure all your commits include a signature generated with `git commit -s` **
If this is a bug fix, make sure your description includes "fixes #xxxx", or
"closes #xxxx" or "resolves #xxxx"
Please provide the following information:
-->
#### Why I did it
Adding the below fix from FRR FRRouting/frr#17297
This is to fix the following crash which is a statistical issue
```
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `/usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M dplane_fpm_nl -M snmp'.
Program terminated with signal SIGABRT, Aborted.
#0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6
[Current thread is 1 (Thread 0x7fccd6faf7c0 (LWP 36))]
(gdb) bt
#0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6
Azure#1 0x00007fccd7302fb2 in raise () from /lib/x86_64-linux-gnu/libc.so.6
Azure#2 0x00007fccd72ed472 in abort () from /lib/x86_64-linux-gnu/libc.so.6
Azure#3 0x00007fccd75bb3a9 in _zlog_assert_failed (xref=xref@entry=0x7fccd7652380 <_xref.16>, extra=extra@entry=0x0) at ../lib/zlog.c:678
Azure#4 0x00007fccd759b2fe in route_node_delete (node=<optimized out>) at ../lib/table.c:352
Azure#5 0x00007fccd759b445 in route_unlock_node (node=0x0) at ../lib/table.h:258
Azure#6 route_next (node=<optimized out>) at ../lib/table.c:436
Azure#7 route_next (node=node@entry=0x56029d89e560) at ../lib/table.c:410
Azure#8 0x000056029b6b6b7a in if_lookup_by_name_per_ns (ns=ns@entry=0x56029d873d90, ifname=ifname@entry=0x7fccc0029340 "PortChannel1020")
at ../zebra/interface.c:312
Azure#9 0x000056029b6b8b36 in zebra_if_dplane_ifp_handling (ctx=0x7fccc0029310) at ../zebra/interface.c:1867
Azure#10 zebra_if_dplane_result (ctx=0x7fccc0029310) at ../zebra/interface.c:2221
Azure#11 0x000056029b7137a9 in rib_process_dplane_results (thread=<optimized out>) at ../zebra/zebra_rib.c:4810
Azure#12 0x00007fccd75a0e0d in thread_call (thread=thread@entry=0x7ffe8e553cc0) at ../lib/thread.c:1990
Azure#13 0x00007fccd7559368 in frr_run (master=0x56029d65a040) at ../lib/libfrr.c:1198
Azure#14 0x000056029b6ac317 in main (argc=9, argv=0x7ffe8e5540d8) at ../zebra/main.c:478
```
##### Work item tracking
- Microsoft ADO **(number only)**:
#### How I did it
Added patch.
#### How to verify it
Running BGP tests.
<!--
If PR needs to be backported, then the PR must be tested against the base branch and the earliest backport release branch and provide tested image version on these two branches. For example, if the PR is requested for master, 202211 and 202012, then the requester needs to provide test results on master and 202012.
-->
#### Which release branch to backport (provide reason below if selected)
<!--
- Note we only backport fixes to a release branch, *not* features!
- Please also provide a reason for the backporting below.
- e.g.
- [x] 202006
-->
- [ ] 201811
- [ ] 201911
- [ ] 202006
- [ ] 202012
- [ ] 202106
- [ ] 202111
- [ ] 202205
- [ ] 202211
- [ ] 202305
#### Tested branch (Please provide the tested image version)
<!--
- Please provide tested image version
- e.g.
- [x] 20201231.100
-->
- [ ] <!-- image version 1 -->
- [ ] <!-- image version 2 -->
#### Description for the changelog
<!--
Write a short (one line) summary that describes the changes in this
pull request for inclusion in the changelog:
-->
<!--
Ensure to add label/tag for the feature raised. example - PR#2174 under sonic-utilities repo. where, Generic Config and Update feature has been labelled as GCU.
-->
#### Link to config_db schema for YANG module changes
<!--
Provide a link to config_db schema for the table for which YANG model
is defined
Link should point to correct section on https://github.com/Azure/sonic-buildimage/blob/master/src/sonic-yang-models/doc/Configuration.md
-->
#### A picture of a cute animal (not mandatory but encouraged)
r12f
pushed a commit
that referenced
this pull request
Jan 18, 2025
<!-- Please make sure you've read and understood our contributing guidelines: https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md failure_prs.log skip_prs.log Make sure all your commits include a signature generated with `git commit -s` ** If this is a bug fix, make sure your description includes "fixes #xxxx", or "closes #xxxx" or "resolves #xxxx" Please provide the following information: --> #### Why I did it Adding the below fix from FRR FRRouting/frr#17297 This is to fix the following crash which is a statistical issue ``` [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Core was generated by `/usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M dplane_fpm_nl -M snmp'. Program terminated with signal SIGABRT, Aborted. #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 [Current thread is 1 (Thread 0x7fccd6faf7c0 (LWP 36))] (gdb) bt #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007fccd7302fb2 in raise () from /lib/x86_64-linux-gnu/libc.so.6 #2 0x00007fccd72ed472 in abort () from /lib/x86_64-linux-gnu/libc.so.6 #3 0x00007fccd75bb3a9 in _zlog_assert_failed (xref=xref@entry=0x7fccd7652380 <_xref.16>, extra=extra@entry=0x0) at ../lib/zlog.c:678 #4 0x00007fccd759b2fe in route_node_delete (node=<optimized out>) at ../lib/table.c:352 #5 0x00007fccd759b445 in route_unlock_node (node=0x0) at ../lib/table.h:258 #6 route_next (node=<optimized out>) at ../lib/table.c:436 #7 route_next (node=node@entry=0x56029d89e560) at ../lib/table.c:410 #8 0x000056029b6b6b7a in if_lookup_by_name_per_ns (ns=ns@entry=0x56029d873d90, ifname=ifname@entry=0x7fccc0029340 "PortChannel1020") at ../zebra/interface.c:312 #9 0x000056029b6b8b36 in zebra_if_dplane_ifp_handling (ctx=0x7fccc0029310) at ../zebra/interface.c:1867 #10 zebra_if_dplane_result (ctx=0x7fccc0029310) at ../zebra/interface.c:2221 #11 0x000056029b7137a9 in rib_process_dplane_results (thread=<optimized out>) at ../zebra/zebra_rib.c:4810 #12 0x00007fccd75a0e0d in thread_call (thread=thread@entry=0x7ffe8e553cc0) at ../lib/thread.c:1990 #13 0x00007fccd7559368 in frr_run (master=0x56029d65a040) at ../lib/libfrr.c:1198 #14 0x000056029b6ac317 in main (argc=9, argv=0x7ffe8e5540d8) at ../zebra/main.c:478 ``` ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it Added patch. #### How to verify it Running BGP tests. <!-- If PR needs to be backported, then the PR must be tested against the base branch and the earliest backport release branch and provide tested image version on these two branches. For example, if the PR is requested for master, 202211 and 202012, then the requester needs to provide test results on master and 202012. --> #### Which release branch to backport (provide reason below if selected) <!-- - Note we only backport fixes to a release branch, *not* features! - Please also provide a reason for the backporting below. - e.g. - [x] 202006 --> - [ ] 201811 - [ ] 201911 - [ ] 202006 - [ ] 202012 - [ ] 202106 - [ ] 202111 - [ ] 202205 - [ ] 202211 - [ ] 202305 #### Tested branch (Please provide the tested image version) <!-- - Please provide tested image version - e.g. - [x] 20201231.100 --> - [ ] <!-- image version 1 --> - [ ] <!-- image version 2 --> #### Description for the changelog <!-- Write a short (one line) summary that describes the changes in this pull request for inclusion in the changelog: --> <!-- Ensure to add label/tag for the feature raised. example - PR#2174 under sonic-utilities repo. where, Generic Config and Update feature has been labelled as GCU. --> #### Link to config_db schema for YANG module changes <!-- Provide a link to config_db schema for the table for which YANG model is defined Link should point to correct section on https://github.com/Azure/sonic-buildimage/blob/master/src/sonic-yang-models/doc/Configuration.md --> #### A picture of a cute animal (not mandatory but encouraged)
mssonicbld
added a commit
to mssonicbld/sonic-buildimage-msft
that referenced
this pull request
Feb 7, 2025
<!-- Please make sure you've read and understood our contributing guidelines: https://github.com/Azure/SONiC/blob/gh-pages/CONTRIBUTING.md failure_prs.log skip_prs.log Make sure all your commits include a signature generated with `git commit -s` ** If this is a bug fix, make sure your description includes "fixes #xxxx", or "closes #xxxx" or "resolves #xxxx" Please provide the following information: --> #### Why I did it During smartswitch initialization, an error is observed during switch bootup. ztp disable runs decode-eeprom. ``` sonic ERR decode-syseeprom: Failed to obtain EEPROM object due to ValueError("invalid literal for int() with base 10: ''"), Traceback: Traceback (most recent call last): Azure#12 File "/usr/local/bin/decode-syseeprom", line 35, in instantiate_eeprom_object#012 eeprom = sonic_platform.platform.Platform().get_chassis().get_eeprom() Azure#12 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/platform.py", line 35, in __init__ Azure#12 self._chassis = SmartSwitchChassis()Azure#12 ^^^^^^^^^^^^^^^^^^^^ Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/chassis.py", line 1207, in __init__ Azure#12 self.initialize_modules()Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/chassis.py", line 1244, in initialize_modules Azure#12 self.initialize_single_module(index=index) Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/chassis.py", line 1235, in initialize_single_module Azure#12 from .module import DpuModule#012 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/module.py", line 24, in <module> Azure#12 from .dpuctlplat import DpuCtlPlat, BootProgEnum Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/dpuctlplat.py", line 29, in <module> Azure#12 from .inotify_helper import InotifyHelper Azure#12 File "/usr/local/lib/python3.11/dist-packages/sonic_platform/inotify_helper.py", line 21, in <module> Azure#12 import inotify.adapters#012 File "/usr/local/lib/python3.11/dist-packages/inotify/adapters.py", line 37, in <module> Azure#12 _IS_DEBUG = bool(int(os.environ.get('DEBUG', '0'))) Azure#12 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ #012ValueError: invalid literal for int() with base 10: '' ``` Happens during ztp because, ztp sets DEBUG="" here https://github.com/sonic-net/sonic-ztp/blob/202411/src/etc/default/ztp#L6 #### How I did it Fixed the import in inotify #### How to verify it Verified by running decode-eeprom during init <!-- If PR needs to be backported, then the PR must be tested against the base branch and the earliest backport release branch and provide tested image version on these two branches. For example, if the PR is requested for master, 202211 and 202012, then the requester needs to provide test results on master and 202012. --> #### Which release branch to backport (provide reason below if selected) <!-- - Note we only backport fixes to a release branch, *not* features! - Please also provide a reason for the backporting below. - e.g. - [x] 202006 --> - [ ] 201811 - [ ] 201911 - [ ] 202006 - [ ] 202012 - [ ] 202106 - [ ] 202111 - [ ] 202205 - [ ] 202211 - [ ] 202305 #### Tested branch (Please provide the tested image version) <!-- - Please provide tested image version - e.g. - [x] 20201231.100 --> - [ ] <!-- image version 1 --> - [ ] <!-- image version 2 --> #### Description for the changelog <!-- Write a short (one line) summary that describes the changes in this pull request for inclusion in the changelog: --> <!-- Ensure to add label/tag for the feature raised. example - PR#2174 under sonic-utilities repo. where, Generic Config and Update feature has been labelled as GCU. --> #### Link to config_db schema for YANG module changes <!-- Provide a link to config_db schema for the table for which YANG model is defined Link should point to correct section on https://github.com/Azure/sonic-buildimage/blob/master/src/sonic-yang-models/doc/Configuration.md --> #### A picture of a cute animal (not mandatory but encouraged)
mssonicbld
added a commit
that referenced
this pull request
Feb 18, 2025
…tically (#636) #### Why I did it src/sonic-sairedis ``` * adaa609 - (HEAD -> 202412, origin/HEAD, origin/202412) [code sync] Merge code from sonic-net/sonic-sairedis:202411 to 202412 (#13) (7 hours ago) [mssonicbld] * 7153b15 - [code sync] Merge code from sonic-net/sonic-sairedis:202411 to 202412 (#12) (31 hours ago) [mssonicbld] * 0a2f3d8 - [code sync] Merge code from sonic-net/sonic-sairedis:202411 to 202412 (#11) (2 days ago) [mssonicbld] ``` #### How I did it #### How to verify it #### Description for the changelog
mssonicbld
added a commit
that referenced
this pull request
Feb 20, 2025
…omatically (#647) #### Why I did it src/sonic-swss-common ``` * 9d80355 - (HEAD -> 202412, origin/HEAD, origin/202412) [code sync] Merge code from sonic-net/sonic-swss-common:202411 to 202412 (#12) (21 hours ago) [mssonicbld] ``` #### How I did it #### How to verify it #### Description for the changelog
mssonicbld
added a commit
that referenced
this pull request
Feb 20, 2025
…tomatically (#646) #### Why I did it src/sonic-linux-kernel ``` * b4829d4 - (HEAD -> 202412, origin/HEAD, origin/202412) [optoe] Reset page select byte to 0 before upper memory access on page 0h (#464) (#12) (21 hours ago) [mssonicbld] ``` #### How I did it #### How to verify it #### Description for the changelog
r12f
added a commit
that referenced
this pull request
Mar 28, 2025
…test HEAD automatically (#953) #### Why I did it src/sonic-platform-daemons ``` * 30e63a6 - (HEAD -> 202412, origin/202412) Merge pull request #12 from mihirpat1/wait_maxduration_txturnoff_202412 (8 hours ago) [Prince George] * 6fb2374 - [xcvrd] Add wait based on MaxDurationDPTxTurnOff after disabling Tx (#602) (9 hours ago) [mihirpat1] ``` #### How I did it #### How to verify it #### Description for the changelog
prabhataravind
pushed a commit
that referenced
this pull request
Jul 7, 2025
Adding the below fix from FRR FRRouting/frr#17297 This is to fix the following crash which is a statistical issue [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". Core was generated by `/usr/lib/frr/zebra -A 127.0.0.1 -s 90000000 -M dplane_fpm_nl -M snmp'. Program terminated with signal SIGABRT, Aborted. #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 [Current thread is 1 (Thread 0x7fccd6faf7c0 (LWP 36))] (gdb) bt #0 0x00007fccd7351e2c in ?? () from /lib/x86_64-linux-gnu/libc.so.6 #1 0x00007fccd7302fb2 in raise () from /lib/x86_64-linux-gnu/libc.so.6 #2 0x00007fccd72ed472 in abort () from /lib/x86_64-linux-gnu/libc.so.6 #3 0x00007fccd75bb3a9 in _zlog_assert_failed (xref=xref@entry=0x7fccd7652380 <_xref.16>, extra=extra@entry=0x0) at ../lib/zlog.c:678 #4 0x00007fccd759b2fe in route_node_delete (node=<optimized out>) at ../lib/table.c:352 #5 0x00007fccd759b445 in route_unlock_node (node=0x0) at ../lib/table.h:258 #6 route_next (node=<optimized out>) at ../lib/table.c:436 #7 route_next (node=node@entry=0x56029d89e560) at ../lib/table.c:410 #8 0x000056029b6b6b7a in if_lookup_by_name_per_ns (ns=ns@entry=0x56029d873d90, ifname=ifname@entry=0x7fccc0029340 "PortChannel1020") at ../zebra/interface.c:312 #9 0x000056029b6b8b36 in zebra_if_dplane_ifp_handling (ctx=0x7fccc0029310) at ../zebra/interface.c:1867 #10 zebra_if_dplane_result (ctx=0x7fccc0029310) at ../zebra/interface.c:2221 #11 0x000056029b7137a9 in rib_process_dplane_results (thread=<optimized out>) at ../zebra/zebra_rib.c:4810 #12 0x00007fccd75a0e0d in thread_call (thread=thread@entry=0x7ffe8e553cc0) at ../lib/thread.c:1990 #13 0x00007fccd7559368 in frr_run (master=0x56029d65a040) at ../lib/libfrr.c:1198 #14 0x000056029b6ac317 in main (argc=9, argv=0x7ffe8e5540d8) at ../zebra/main.c:478
prabhataravind
pushed a commit
that referenced
this pull request
Jul 31, 2025
… automatically (#1433) #### Why I did it src/sonic-dash-ha ``` * 32a080e - (HEAD -> 202506, origin/202506) move Semgrep to workflows directory (#12) (8 minutes ago) [mssonicbld] * 670293b - Rename disable to disabled in ha_scope table (#11) (9 minutes ago) [mssonicbld] * 504134c - Add semgrep static analysis tool to find security vulnerabilities. (#10) (10 minutes ago) [mssonicbld] * 5b93b22 - Use vnet_name from DASH_HA_GLOBAL_CONFIG to create vnet route (#9) (11 minutes ago) [mssonicbld] * 84554b0 - Move swss-common/swss-common-testing to sonic-swss-common repo (#8) (12 minutes ago) [mssonicbld] * 498d5a6 - Add test case to verify zmq reconnect behaviour (#6) (2 hours ago) [mssonicbld] * 37ffe96 - Remove fvs and rename backup_fvs to fields in show hamgrd actor command (#7) (2 hours ago) [mssonicbld] ``` #### How I did it #### How to verify it #### Description for the changelog
bingwang-ms
pushed a commit
that referenced
this pull request
Jan 16, 2026
…tener (#23419)
Why I did it
It found the following KeyError in syslog, not only for lldp, but also for snmp and bgp.
2025 Jul 19 18:13:00.240397 vlab-01 ERR lldp#supervisor-proc-exit-listener: Exception: 'len', trace: Traceback (most recent call last):
File "/usr/bin/supervisor-proc-exit-listener", line 249, in <module>
main(sys.argv[1:])
File "/usr/bin/supervisor-proc-exit-listener", line 182, in main
payload = sys.stdin.read(int(headers['len']))
KeyError: 'len'
The context syslog is:
2025 Jul 19 18:12:59.505711 vlab-01 INFO lldp#supervisord 2025-07-19 18:12:59,504 INFO waiting for supervisor-proc-exit-listener, rsyslogd, lldpd, lldp-syncd, lldpmgrd to die
2025 Jul 19 18:12:59.761223 vlab-01 INFO containerd[684]: time="2025-07-19T18:12:59.759992163Z" level=info msg="shim disconnected" id=cd6e41a2cc82aae25d2d65801984943311b3f025c98ca865ea79be95194abc95
2025 Jul 19 18:12:59.762463 vlab-01 INFO containerd[684]: time="2025-07-19T18:12:59.760103279Z" level=warning msg="cleaning up after shim disconnected" id=cd6e41a2cc82aae25d2d65801984943311b3f025c98ca865ea79be95194abc95 namespace=moby
2025 Jul 19 18:12:59.765745 vlab-01 INFO containerd[684]: time="2025-07-19T18:12:59.760116062Z" level=info msg="cleaning up dead shim"
2025 Jul 19 18:12:59.767134 vlab-01 INFO dockerd[752]: time="2025-07-19T18:12:59.760554606Z" level=info msg="ignoring event" container=cd6e41a2cc82aae25d2d65801984943311b3f025c98ca865ea79be95194abc95 module=libcontainerd namespace=moby topic=/tasks/delete type="*events.TaskDelete"
2025 Jul 19 18:12:59.784436 vlab-01 INFO containerd[684]: time="2025-07-19T18:12:59.783563921Z" level=warning msg="cleanup warnings time=\"2025-07-19T18:12:59Z\" level=info msg=\"starting signal loop\" namespace=moby pid=42053 runtime=io.containerd.runc.v2\n"
2025 Jul 19 18:12:59.826676 vlab-01 INFO systemd[1]: var-lib-docker-overlay2-472b96da162023c3bc1e0d4132486ad7c122b23acf07f93d0e5b0a9538d7cebe-merged.mount: Deactivated successfully.
2025 Jul 19 18:12:59.840815 vlab-01 INFO container: docker cmd: wait for teamd
2025 Jul 19 18:12:59.843934 vlab-01 INFO container: docker cmd: stop for teamd
2025 Jul 19 18:12:59.861044 vlab-01 DEBUG container: container_stop: END
2025 Jul 19 18:12:59.906677 vlab-01 NOTICE admin: Stopped teamd service...
2025 Jul 19 18:12:59.938168 vlab-01 INFO systemd[1]: teamd.service: Deactivated successfully.
2025 Jul 19 18:12:59.938548 vlab-01 INFO systemd[1]: Stopped teamd.service - TEAMD container.
2025 Jul 19 18:12:59.939901 vlab-01 NOTICE rsyslog_plugin: :- publish: EVENT_PUBLISHED: {"sonic-events-host:event-stopped-ctr":{"ctr_name":"TEAMD","timestamp":"2025-07-19T18:12:59.939561Z"}}
2025 Jul 19 18:13:00.196745 vlab-01 INFO dockerd[752]: time="2025-07-19T18:13:00.196382391Z" level=info msg="Container failed to exit within 10s of signal 15 - using the force" container=2188a8952aa8d602224b78e325295831aceb8f14d1b6ec8869cc153b7eafef6a
2025 Jul 19 18:13:00.240397 vlab-01 ERR lldp#supervisor-proc-exit-listener: Exception: 'len', trace: Traceback (most recent call last):#12 File "/usr/bin/supervisor-proc-exit-listener", line 249, in <module>#12 main(sys.argv[1:])#12 File "/usr/bin/supervisor-proc-exit-listener", line 182, in main#012 payload = sys.stdin.read(int(headers['len']))#12 ~~~~~~~^^^^^^^#012KeyError: 'len'
During shutdown, supervisor is sending termination events to the event listener, but the shutdown process is interrupting the event stream.
The container is being forcibly killed (Container failed to exit within 10s of signal 15 - using the force), which can interrupt the supervisor event protocol mid-stream.
Supervisor starts sending an event header
Before it can complete sending the full header (including len: field), the process gets interrupted
The listener receives a partial/malformed header without the len field
Work item tracking
Microsoft ADO 33409727:
How I did it
Check if 'len' exists before using it, if there is no len, it can't process the further steps.
bingwang-ms
pushed a commit
that referenced
this pull request
Jan 16, 2026
…atically (#23557) #### Why I did it src/sonic-utilities ``` * e59bbfce - (HEAD -> master, origin/master, origin/HEAD) Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (#4064) (9 hours ago) [rameshraghupathy] * 93869631 - Improve set/get cmdline to support uefi (#4062) (3 days ago) [Hua Liu] * 3a7d0b43 - [dhcp_relay] Update show cli sample for dhcp_relay (#4070) (4 days ago) [Balakrishna-goshika] * 89c9aef2 - FEC histogram with ability to clear stat (#4075) (7 days ago) [Prince George] * b247e936 - Skip speed validation for chassis. (#4076) (10 days ago) [Xincun Li] * 70926dd5 - [FRR]Adding additional FRR dumps (#4073) (11 days ago) [Sudharsan Dhamal Gopalarathnam] * d7c16c3d - Fix incorrect output format for pre-fec ber in sfpshow pm (#4066) (2 weeks ago) [Changrong Wu] * 80a20e7b - [doc][dhcp_server] Update cli doc for dhcp_server #4069 (3 weeks ago) [Balakrishna-goshika] * c1843fa1 - Issue #22759: Prevent CLI from adding invalid routed interfaces (#3901) (3 weeks ago) [Anders Linn] * 7c5378ed - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (#4061) (3 weeks ago) [Anders Linn] * 28dfb294 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (#4049) (4 weeks ago) [Stephen Sun] * e276765e - Support multi-asic in gcu.py (#4057) (5 weeks ago) [ganglv] * d2c697f7 - Add sonic-error-report tool for structured error reporting (#4037) (5 weeks ago) [Dawei Huang] * ed5afd80 - Add python wheels for GCU (#4042) (5 weeks ago) [ganglv] * 98e49161 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (#4055) (5 weeks ago) [rick-arista] * 9e9a65be - Issue #22420: Modify 'config route add' command not to include empty elements (#12) (#3862) (5 weeks ago) [Anders Linn] * 0edb592e - Mux cable show config command Added prober_type and fixed one format (#4013) (5 weeks ago) [harjotsinghpawra] * 2657ee3d - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (#4029) (6 weeks ago) [saksarav-nokia] * d1c9d1a6 - [show][config] Add CLI support for configurable drop monitor feature (#3756) (6 weeks ago) [HP] * 7baa75b6 - [spm] Rename entry tag variable to docker_image_reference (#4019) (6 weeks ago) [DavidZagury] * 63364a3a - Add BlockingMode for Reboot script (#3958) (6 weeks ago) [Litao Yu] * ee8113f3 - Support for platforms based on Clounix net device (#3970) (6 weeks ago) [LongWuuu] * f53a5c16 - [config show]BGP Suppress fib pending config and display for multi-asic (#3948) (7 weeks ago) [vganesan-nokia] * b3de0afb - Add Arista 7800 platforms to GCU validator (#4038) (7 weeks ago) [Xincun Li] * 13a0cb26 - Add check_pfc_storm_active() to fast-reboot script (#3969) (7 weeks ago) [Dawei Huang] * f45d8960 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (#4041) (7 weeks ago) [Vasundhara Volam] * ea33ef3c - [nvidia-bluefield] Add CLI for packet-drop and config-record (#4002) (8 weeks ago) [Vivek] * ffc891d3 - [dhcp_server] Add CLI sample for dhcp_server (#4033) (8 weeks ago) [Yaqiang Zhu] * 1e9d04c9 - Update doc to including dhcp_server ipv4 counter related CLI (#4028) (9 weeks ago) [Yaqiang Zhu] * 19594b99 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (#4020) (9 weeks ago) [mihirpat1] * 0f8ac9b6 - Added MAX pre-fec_ber for FEC counter (#4027) (9 weeks ago) [Prince George] * 732dc09e - Added json support for show platform temperature (#3874) (9 weeks ago) [Vinod Kumar] * bacff45e - Add Arista 7800 platforms to GCU validator (#4030) (9 weeks ago) [Xincun Li] * c63e9ea7 - [trim]: Add Packet Trimming Drop Counters CLI (#3993) (9 weeks ago) [Nazarii Hnydyn] * 50df9ea0 - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (#4007) (9 weeks ago) [manamand2020] * 868189cc - Pr json support queue and priority-group watermark and persistent-watermark (#3875) (9 weeks ago) [Vinod Kumar] * 53477577 - Revert "[SPM] Rename the variable tag to docker-image-reference (#3998)" (#4024) (9 weeks ago) [Jianquan Ye] * 1418f218 - Added json support intfutil (#3906) (10 weeks ago) [Vinod Kumar] * ec01962b - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (#4010) (10 weeks ago) [mihirpat1] * c0838d7f - CLI for Configuring PFC Historical Statistics (#3779) (2 months ago) [Peter Bailey] * d623c250 - [Mellanox][Smartswitch]Added dpu status output to dump (#3959) (2 months ago) [Gagan Punathil Ellath] * a3101eae - Fix for #23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (#3984) (2 months ago) [rameshraghupathy] * d3bc688c - CLI addition for PFC counters --history (#3778) (2 months ago) [Peter Bailey] * 3282ab35 - DOM for flat memory transceiver modules (#3950) (2 months ago) [Ariz Zubair] * 6f1a794b - Add queuestat changes for aggregate VOQ counters (#3617) (2 months ago) [Vivek Verma] * d86b2b6e - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (#3938) (2 months ago) [Junchao-Mellanox] * 252a6435 - [SPM] Rename the variable tag to docker-image-reference (#3998) (2 months ago) [DavidZagury] ``` #### How I did it #### How to verify it #### Description for the changelog
bingwang-ms
pushed a commit
that referenced
this pull request
Jan 16, 2026
…atically (#24272) #### Why I did it src/sonic-utilities ``` * 8d2bc08d - (HEAD -> master, origin/master, origin/HEAD) Add pfc_stat_history support (#4102) (6 hours ago) [Xincun Li] * 7a046d63 - [trim]: Fix GCU trimming eligibility modification (#4087) (28 hours ago) [Nazarii Hnydyn] * f4e5de3d - [GCU] Handle duplicate array entries and auto-create empty tables during patch application (#4095) (2 days ago) [Xincun Li] * a1310612 - [fast/warm-reboot] Fix timers query (#4022) (2 days ago) [Stepan Blyshchak] * 3bf5c272 - [Mellanox] Update generate_dump to include SDK sysfs files (#4071) (2 days ago) [Noa Or] * d4eb8ec6 - [portstat] Add FEC FLR statistics support to port counters (#4054) (3 days ago) [Apoorv Sachan] * 55b665bf - Secureboot: Image signing verification enhancements (#3989) (7 days ago) [Brad House - NextHop] * e59bbfce - Fixing state_db not having delete_field attribute causing a crash when DPUs in bad state (#4064) (12 days ago) [rameshraghupathy] * 93869631 - Improve set/get cmdline to support uefi (#4062) (2 weeks ago) [Hua Liu] * 3a7d0b43 - [dhcp_relay] Update show cli sample for dhcp_relay (#4070) (2 weeks ago) [Balakrishna-goshika] * 89c9aef2 - FEC histogram with ability to clear stat (#4075) (3 weeks ago) [Prince George] * b247e936 - Skip speed validation for chassis. (#4076) (3 weeks ago) [Xincun Li] * 70926dd5 - [FRR]Adding additional FRR dumps (#4073) (3 weeks ago) [Sudharsan Dhamal Gopalarathnam] * d7c16c3d - Fix incorrect output format for pre-fec ber in sfpshow pm (#4066) (4 weeks ago) [Changrong Wu] * 80a20e7b - [doc][dhcp_server] Update cli doc for dhcp_server #4069 (4 weeks ago) [Balakrishna-goshika] * c1843fa1 - Issue #22759: Prevent CLI from adding invalid routed interfaces (#3901) (4 weeks ago) [Anders Linn] * 7c5378ed - Issue 23798: Wrap getpass.getpass in a signal handler to avoid SIGTTOU (#4061) (5 weeks ago) [Anders Linn] * 28dfb294 - Fix issue that dynamic/static threshold 0 can not be configured using mmuconfig (#4049) (5 weeks ago) [Stephen Sun] * e276765e - Support multi-asic in gcu.py (#4057) (6 weeks ago) [ganglv] * d2c697f7 - Add sonic-error-report tool for structured error reporting (#4037) (6 weeks ago) [Dawei Huang] * ed5afd80 - Add python wheels for GCU (#4042) (6 weeks ago) [ganglv] * 98e49161 - Add Arista-7060X6-64PE-B-O128S2, Arista-7060X6-16PE-384C-B-O128S2 to GCU (#4055) (6 weeks ago) [rick-arista] * 9e9a65be - Issue #22420: Modify 'config route add' command not to include empty elements (#12) (#3862) (7 weeks ago) [Anders Linn] * 0edb592e - Mux cable show config command Added prober_type and fixed one format (#4013) (7 weeks ago) [harjotsinghpawra] * 2657ee3d - Fixed cli command for ECN config on voq switch to set the WRED_PROFILE for all Voqs (#4029) (7 weeks ago) [saksarav-nokia] * d1c9d1a6 - [show][config] Add CLI support for configurable drop monitor feature (#3756) (7 weeks ago) [HP] * 7baa75b6 - [spm] Rename entry tag variable to docker_image_reference (#4019) (8 weeks ago) [DavidZagury] * 63364a3a - Add BlockingMode for Reboot script (#3958) (8 weeks ago) [Litao Yu] * ee8113f3 - Support for platforms based on Clounix net device (#3970) (8 weeks ago) [LongWuuu] * f53a5c16 - [config show]BGP Suppress fib pending config and display for multi-asic (#3948) (8 weeks ago) [vganesan-nokia] * b3de0afb - Add Arista 7800 platforms to GCU validator (#4038) (9 weeks ago) [Xincun Li] * 13a0cb26 - Add check_pfc_storm_active() to fast-reboot script (#3969) (9 weeks ago) [Dawei Huang] * f45d8960 - [smartswitch] Update get_gnmi_port() based on smartswitch config updates (#4041) (9 weeks ago) [Vasundhara Volam] * ea33ef3c - [nvidia-bluefield] Add CLI for packet-drop and config-record (#4002) (9 weeks ago) [Vivek] * ffc891d3 - [dhcp_server] Add CLI sample for dhcp_server (#4033) (10 weeks ago) [Yaqiang Zhu] * 1e9d04c9 - Update doc to including dhcp_server ipv4 counter related CLI (#4028) (2 months ago) [Yaqiang Zhu] * 19594b99 - Fix show int transceiver EEPROM crash for for Backplane cartridge + enhance EEPROM CLI output (#4020) (2 months ago) [mihirpat1] * 0f8ac9b6 - Added MAX pre-fec_ber for FEC counter (#4027) (2 months ago) [Prince George] * 732dc09e - Added json support for show platform temperature (#3874) (2 months ago) [Vinod Kumar] * bacff45e - Add Arista 7800 platforms to GCU validator (#4030) (2 months ago) [Xincun Li] * c63e9ea7 - [trim]: Add Packet Trimming Drop Counters CLI (#3993) (3 months ago) [Nazarii Hnydyn] * 50df9ea0 - Adapt 'show muxcable tunnel-route' for prefix route based mux neighbors (#4007) (3 months ago) [manamand2020] * 868189cc - Pr json support queue and priority-group watermark and persistent-watermark (#3875) (3 months ago) [Vinod Kumar] * 53477577 - Revert "[SPM] Rename the variable tag to docker-image-reference (#3998)" (#4024) (3 months ago) [Jianquan Ye] * 1418f218 - Added json support intfutil (#3906) (3 months ago) [Vinod Kumar] * ec01962b - sfputil and sfpshow eeprom and DOM CLI enhancement to display data for all CMIS transceivers (#4010) (3 months ago) [mihirpat1] * c0838d7f - CLI for Configuring PFC Historical Statistics (#3779) (3 months ago) [Peter Bailey] * d623c250 - [Mellanox][Smartswitch]Added dpu status output to dump (#3959) (3 months ago) [Gagan Punathil Ellath] * a3101eae - Fix for #23205 [Smartswitch] Issues caused due to introduction of the chassisd/sonic-utiltiies changes for consecutive admin state changes (#3984) (3 months ago) [rameshraghupathy] * d3bc688c - CLI addition for PFC counters --history (#3778) (3 months ago) [Peter Bailey] * 3282ab35 - DOM for flat memory transceiver modules (#3950) (3 months ago) [Ariz Zubair] * 6f1a794b - Add queuestat changes for aggregate VOQ counters (#3617) (3 months ago) [Vivek Verma] * d86b2b6e - g[sfputil debug] Fix issue: do not check output status when CMIS version is lower than 5.0 (#3938) (3 months ago) [Junchao-Mellanox] * 252a6435 - [SPM] Rename the variable tag to docker-image-reference (#3998) (3 months ago) [DavidZagury] ``` #### How I did it #### How to verify it #### Description for the changelog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Signed-off-by: anamehra anamehra@cisco.com
Update cisco-8000.ini to use platform release version 202205-v0.1
Why I did it
How I did it
How to verify it
Which release branch to backport (provide reason below if selected)
Description for the changelog
A picture of a cute animal (not mandatory but encouraged)