Build date: 1781647203 - Tue Jun 16 22:00:03 UTC 2026 Build cvs date: 1781638165 - Tue Jun 16 19:29:25 UTC 2026 Build id: 2026-06-17.1 Build tags: amd64-regress ports sysupgrade Applied the following diff(s): /home/anton/tmp/robsd/src-sys-em.diff /home/anton/tmp/robsd/src-sys-uhidev-sispm.diff /home/anton/tmp/robsd/src-sysupgrade.diff P regress/usr.bin/ssh/sshsig.sh P regress/usr.bin/ssh/unittests/crypto/test_ed25519.c P regress/usr.bin/ssh/unittests/crypto/test_mldsa.c P regress/usr.bin/ssh/unittests/crypto/tests.c P sbin/isakmpd/message.c M sys/dev/usb/uhidev.c P sys/kern/kern_synch.c P usr.bin/tmux/Makefile P usr.bin/tmux/cmd-break-pane.c P usr.bin/tmux/cmd-display-panes.c P usr.bin/tmux/cmd-new-window.c P usr.bin/tmux/cmd-resize-pane.c P usr.bin/tmux/layout.c P usr.bin/tmux/screen-redraw.c P usr.bin/tmux/screen-write.c P usr.bin/tmux/server-client.c P usr.bin/tmux/tmux.1 P usr.bin/tmux/tmux.h P usr.bin/tmux/window-copy.c U usr.bin/tmux/window-visible.c P usr.bin/vi/ex/ex.c P usr.bin/vi/vi/v_sentence.c M usr.sbin/bgpd/session.c commit JwI9P99FGVemDJGU Author: bluhm Date: 2026/06/16 19:29:25 When releasing, read trace index before reference counter decrement. When btrace(8) is active, refcounting is traced using an index field to the dt(4) backend. When two CPU simultaneously decrement the reference count, one could free the object while the other is still reading the index. Move the load before the dec separated by a membar. Crashes seen while testing an experimental diff from dlg@. OK cludwig@ sys/kern/kern_synch.c commit tNmTVXpGu2CPXvkf Author: hshoexer Date: 2026/06/16 11:50:53 isakmpd: Fix NULL dereference in message_validate_sa() When the responder cookie is non-zero but sa_lookup_by_header() finds no matching SA, msg->isakmp_sa is NULL. Thus check before dereferencing. sbin/isakmpd/message.c commit mLQrmbpjU7SN4jFn Author: dtucker Date: 2026/06/16 10:58:42 Use awk instead of cut to help -portable. Some platforms have size limits on cut. regress/usr.bin/ssh/sshsig.sh commit 9aC4R2pqDp5yVjNm Author: nicm Date: 2026/06/16 10:47:35 Rename the visible ranges functions since they really relate to windows and put them nto a new file. usr.bin/tmux/Makefile usr.bin/tmux/cmd-display-panes.c usr.bin/tmux/screen-redraw.c usr.bin/tmux/screen-write.c usr.bin/tmux/server-client.c usr.bin/tmux/tmux.h usr.bin/tmux/window-visible.c commit RRwNTqaydH2soVkv Author: nicm Date: 2026/06/16 09:28:17 Allow rectangle selection to extend past end of current line to behave the same as vi with virtualedit=block set. From Mark Kelly in GitHub issue 5227. usr.bin/tmux/window-copy.c commit XtZdJAwSetq4LDyu Author: dtucker Date: 2026/06/16 09:00:47 Include stdarg.h for va_list (needed for xmalloc.h). regress/usr.bin/ssh/unittests/crypto/test_ed25519.c regress/usr.bin/ssh/unittests/crypto/test_mldsa.c commit 19HqmoRllVlL7lna Author: nicm Date: 2026/06/16 09:00:25 Initialize wname so it we are not freeing garbage if it is not used. usr.bin/tmux/cmd-new-window.c commit oIkN1Ay2NqsZzzPQ Author: nicm Date: 2026/06/16 08:57:07 Fix resizing floating pane with a left scrollbar, from Michael Grant. usr.bin/tmux/cmd-resize-pane.c usr.bin/tmux/server-client.c commit HF7BBhi9g6n1ibqN Author: nicm Date: 2026/06/16 08:53:14 Fix missing border when drawing floating panes. From Michael Grant. usr.bin/tmux/screen-redraw.c commit lZ6G99UyMCQk6rrD Author: dtucker Date: 2026/06/16 08:15:35 Include stdlib.h for malloc/free and sort headers. regress/usr.bin/ssh/unittests/crypto/tests.c commit 1045MhhZ9faTowJU Author: nicm Date: 2026/06/16 07:07:49 Fix default window check in break-pane, from Dane Jensen. usr.bin/tmux/cmd-break-pane.c commit GnvZKraTyjpAxqju Author: nicm Date: 2026/06/16 07:06:32 Add layout_cell_is_tiled and layout_cell_has_tiled_child helper functions, from Dane Jensen. usr.bin/tmux/layout.c commit D3tWv2JC1bxYTk3K Author: jsg Date: 2026/06/16 05:01:56 botton -> bottom usr.bin/tmux/tmux.1 commit 2jKiU8aoSMyjTTtx Author: millert Date: 2026/06/16 02:15:14 Fix behavior of ')' used in a range when setence reaches EOF. For a sentence spanning more than one line at the end of the file, when the cursor is placed at the first character of any line except for the last one, running '!)' won't affect the last line. From Walter Alejandro Iglesias usr.bin/vi/vi/v_sentence.c commit Gp9AvQMljowgOsQZ Author: millert Date: 2026/06/16 02:03:35 Check for E_CLRFLAG in ecp->cmd->flags, not ecp->iflags. Fixes a problem where an extra line is printed at the end of the output when the "number" command is given the "l" (literal display) flag. From Jeremy Mates Walter Alejandro Iglesias and usr.bin/vi/ex/ex.c