mips/asm.h: Tidy typography of SYNC_PLUNGER comment block.
And fix a misquoted register number to make it make sense.
The CN78XX manual's typography got all screwed up; the CN50XX manual
is clearer (and maybe we should just quote from that one instead but
whatever).
improve table load error in npf
an EEXIST should clearly state already defined and a load failure should
also clearly be stated. do not class all error returns under EEXIST
since npf_table_insert can return other errors aside EEXIST.
Import unbound-1.26.1 (previous was unbound-1.25.1)
Unbound 1.26.1
==============
This release has a number of security fixes.
The release is signed with the OpenPGP software signing key that is
in use since Jan 1st 2026:
User ID: NLnet Labs releases signing key G2 releases at nlnetlabs.nl
Key ID: A144 323D EAAC DF45
Fingerprint: 2310 1869 0C4D 903E F419 146A A144 323D EAAC DF45
The key is available from https://nlnetlabs.nl/signing-keys .
This release consolidates security fixes for issues reported over
a period of time. There are fixes for CVE-2026-77860, CVE-2026-77955,
CVE-2026-78227, CVE-2026-80225, CVE-2026-81634, CVE-2026-81642,
CVE-2026-82717, CVE-2026-82720 and CVE-2026-85501.
Bug Fixes
Fix CVE-2026-81642, Heap buffer overflow and possible Remote Code
[325 lines not shown]
www/drupal11: update to 11.4.7
This is security update.
11.4.5 (2026-08-06)
This is a patch (bugfix) release of Drupal 11 and is ready for use on
production sites. Learn more about the latest version of Drupal.
https://www.drupal.org/project/drupal/releases/11.4.5
11.4.6 (2026-09-03)
This is a patch (bugfix) release of Drupal 11 and is ready for use on
production sites. Learn more about the latest version of Drupal.
https://www.drupal.org/project/drupal/releases/11.4.6
11.4.7 (2026-09-16)
[12 lines not shown]
yices2: update to 2.7.0.
To fix build on -current.
New Features
Finite Fields support in the MCSat Solver
Yices2 Portfolio Python script
New cache mechanism in the MCSat Solver: Target cache and Best cache
New decision heuristics in the MCSat Solver
Partial restarts option in the MCSat solver
Print models in the SMT2 format by default
And many bug fixes
ntfy: Add ntfy version 2.28.0.
ntfy is an open source, self-hostable push notification service.
It's written in Go, so the package is relatively straightforward.
The Go build command was copied from their Makefile development target to avoid using goreleaser.
Tested on Debian and FreeBSD.
uipc_usrreq: Fix unix-domain socket inode assignment.
1. `if (unp->unp_ino == 0) unp->unp_ino = unp_ino++' would assign
zero the first time around by mistake, and then assign nonzero
after that. `if (unp->unp_ino == 0) unp->unp_ino = ++unp_ino'
avoids this silliness.
2. Make the ++unp_ino part atomic.
PR kern/60729: incosistent st_ino from the first stat(2) on a socket