FreeBSD/src 91e2d7bsys/conf newvers.sh

15.0: Update to RC4

This will hopefully be the final RC build before the release.

Approved by:    re (implicit)
DeltaFile
+1-1sys/conf/newvers.sh
+1-11 files

FreeBSD/src 76883b7sys/kern vfs_inotify.c

inotify: Work around the vput() bug directly

For 15.0, apply a minimal fix which at least ensures that inotify can't
trigger the latent race described in commit 99cb3dca4773 ("vnode: Rework
vput() to avoid holding the vnode lock after decrementing").

Approved by:    re (cperciva)
Reviewed by:    olce, kib
MFC after:      3 days
Differential Revision:  https://reviews.freebsd.org/D53774

(cherry picked from commit ebc17879f0885ca87644980f6275b9759b311eb3)
(cherry picked from commit 1f6e3abf41718e8e4a309be122f0a6048e9c5772)
DeltaFile
+8-1sys/kern/vfs_inotify.c
+8-11 files

FreeBSD/ports c3eb8b8databases/cego distinfo Makefile, devel/lfcbase distinfo Makefile

devel/lfcbase: 1.22.3 -> 1.22.4, databases/cego: 2.52.43 -> 2.52.44

- Warning elimination for G++ based compiles
DeltaFile
+3-3devel/lfcbase/distinfo
+3-3databases/cego/distinfo
+1-1devel/lfcbase/Makefile
+1-1databases/cego/Makefile
+8-84 files

FreeBSD/ports 2353e6cmultimedia/vlc Makefile, multimedia/vlc/files vlc-3.0.21-fedora_ffmpeg7-1.patch vlc-3.0.21-ffmpeg8-1.patch

multimedia/vlc: fix build with ffmpeg8

Incorporate patches to fix build with ffmpeg 7 and 8

PR:             289056
Obtained from:  Linux From Scatch
DeltaFile
+1,139-0multimedia/vlc/files/vlc-3.0.21-fedora_ffmpeg7-1.patch
+393-0multimedia/vlc/files/vlc-3.0.21-ffmpeg8-1.patch
+3-0multimedia/vlc/Makefile
+1,535-03 files

FreeBSD/src 8a766c9sys/dev/nvme nvme.h

nvme: Fix some comments

Tweak a couple of comments and fix a spelling error.

Sponsored by:           Netflix
DeltaFile
+2-3sys/dev/nvme/nvme.h
+2-31 files

FreeBSD/ports 2da281csecurity/R-cran-digest distinfo Makefile

security/R-cran-digest: Update to 0.6.39

Change WWW to canonical form.

Changelog: https://cran.r-project.org/web/packages/digest/ChangeLog
DeltaFile
+3-3security/R-cran-digest/distinfo
+2-2security/R-cran-digest/Makefile
+5-52 files

FreeBSD/src 828df4dsys/netlink netlink_snl.h

netlink: Fix overallocation of netlink message buffers

Prior to commit 0c511bafdd5b309505c13c8dc7c6816686d1e103, each time
snl_realloc_msg_buffer was called, it called snl_allocz to request a
new buffer.  If an existing linear buffer was used, then after the
call, the linear buffer effectively contained the old buffer contents
followed by the new buffer (so there was definitely wasted memory),
but the linear buffer state was consistent (lb->offset correctly
accounted for both copies).  For example, if the initial linear buffer
was 256 bytes in size, lb->size would be 256.  Using 16 bytes followed
by 32 bytes would first set lb->offset to 16, then the second realloc
would allocate 48 bytes (16 + 32) setting lb->offset to 64 (16 + 48).

Commit 0c511bafdd5b309505c13c8dc7c6816686d1e103 aimed to avoid this
memory waste by resetting the base pointer to the start of the
existing linear buffer if the new allocation was later in the same
linear buffer.  This avoided some of the waste, but broke the
accounting.  Using the same example above, the second realloc would
reuse the pointer at an offset of 0, but the linear buffer would still

    [20 lines not shown]
DeltaFile
+16-11sys/netlink/netlink_snl.h
+16-111 files

FreeBSD/src f7ab908sys/compat/freebsd32 freebsd32_misc.c, sys/sys ucred.h

freebsd32_setcred: Copy all of the setcred fields individually

This is the more typical style used in compat syscalls.  Modern
compilers are smart enough to coalesce multiple member assignments
into a bulk copy.

Reviewed by:    olce, brooks
Obtained from:  CheriBSD
Sponsored by:   AFRL, DARPA
Differential Revision:  https://reviews.freebsd.org/D53757
DeltaFile
+8-4sys/compat/freebsd32/freebsd32_misc.c
+0-2sys/sys/ucred.h
+8-62 files

FreeBSD/src 6292eecsys/compat/freebsd32 freebsd32_misc.c, sys/kern kern_prot.c

setcred: Move initial copyin of struct setcred out to per-ABI syscall

This is the more typical approach used in the tree for system calls
with per-ABI structure layouts.

Reviewed by:    olce, brooks
Obtained from:  CheriBSD
Sponsored by:   AFRL, DARPA
Differential Revision:  https://reviews.freebsd.org/D53756
DeltaFile
+17-35sys/kern/kern_prot.c
+16-2sys/compat/freebsd32/freebsd32_misc.c
+2-2sys/sys/ucred.h
+35-393 files

FreeBSD/src 134d00bsys/kern kern_prot.c, sys/security/mac mac_syscalls.c mac_syscalls.h

MAC: Use the current thread's user ABI to determine the layout of struct mac

This removes mac_label_copyin32() as mac_label_copyin() can now handle
both native and 32-bit struct mac objects.

Reviewed by:    olce, brooks
Obtained from:  CheriBSD
Sponsored by:   AFRL, DARPA
Differential Revision:  https://reviews.freebsd.org/D53755
DeltaFile
+5-20sys/security/mac/mac_syscalls.c
+1-8sys/security/mac/mac_syscalls.h
+1-6sys/kern/kern_prot.c
+7-343 files

FreeBSD/src e928afccddl/lib/libzdb Makefile, cddl/lib/libzfs Makefile

Use ZFSTOP more broadly

Reviewed by:    brooks
Obtained from:  CheriBSD
Differential Revision:  https://reviews.freebsd.org/D53791
DeltaFile
+16-16cddl/lib/libzfs/Makefile
+13-13cddl/lib/libzfs_core/Makefile
+10-10cddl/lib/libzutil/Makefile
+10-10cddl/lib/pam_zfs_key/Makefile
+9-9cddl/lib/libzfsbootenv/Makefile
+9-9cddl/lib/libzdb/Makefile
+67-6731 files not shown
+188-18837 files

FreeBSD/src 7980cf5cddl/lib/libzpool Makefile, cddl/sbin/zfs Makefile

Centralize definition of ZFSTOP

Define this helper variable in one place and make it available while
building the entire base system.

Reviewed by:    sjg
Obtained from:  CheriBSD (mostly)
Differential Revision:  https://reviews.freebsd.org/D53790
DeltaFile
+3-0share/mk/src.sys.mk
+0-2cddl/lib/libzpool/Makefile
+0-2cddl/sbin/zfs/Makefile
+0-2cddl/sbin/zpool/Makefile
+0-2cddl/share/zfs/compatibility.d/Makefile
+0-2cddl/usr.bin/zinject/Makefile
+3-107 files not shown
+3-2413 files

FreeBSD/src 2fe3792sys/net if_loop.c

loopback: Clear hash unconditionally.

Clear the RSS hash on transmit, now that RSS hashing is enabled
unconditionally, and the network stack may want to trust that
it is getting the correct hash on input.

Differential Revision:  https://reviews.freebsd.org/D53090
Reviewed by: zlei
Sponsored by: Netflix
DeltaFile
+0-2sys/net/if_loop.c
+0-21 files

FreeBSD/src 8f94088sys/dev/mlx5/mlx5_en mlx5_en_main.c mlx5_en_rx.c

mlx5: use newly exposed RSS hash key API rather than ad-hoc hashing

Differential Revision:  https://reviews.freebsd.org/D53091
Reviewed by: kib
Sponsored by: Netflix
DeltaFile
+1-29sys/dev/mlx5/mlx5_en/mlx5_en_main.c
+0-4sys/dev/mlx5/mlx5_en/mlx5_en_rx.c
+0-2sys/dev/mlx5/mlx5_en/en.h
+1-353 files

FreeBSD/ports 459aa00x11-wm/bspwm-devel distinfo

x11-wm/bspwm-devel: Fix distinfo

Fixes: 05babdf5f63b5bddeb945cddc54f6af3ef3d2216
DeltaFile
+3-3x11-wm/bspwm-devel/distinfo
+3-31 files

FreeBSD/src bac572busr.sbin/bhyve net_backend_slirp.c

bhyve/slirp: Avoid a nested declaration of environ

Fixes:  0e62ebd20172 ("bhyve: Move the slirp backend out into a separate process")
DeltaFile
+2-1usr.sbin/bhyve/net_backend_slirp.c
+2-11 files

FreeBSD/src b0c7eafusr.sbin/bhyve/slirp slirp-helper.c

bhyve/slirp: Drop privileges before entering capability mode

When in restricted mode, the slirp-helper process enters a capsicum
sandbox, after which we cannot look up the uid for the "nobody" user.
Reverse the order.

Reported by:    kp
Fixes:  0e62ebd20172 ("bhyve: Move the slirp backend out into a separate process")
DeltaFile
+5-5usr.sbin/bhyve/slirp/slirp-helper.c
+5-51 files

FreeBSD/src 6739241krb5/util/ss Makefile

krb5: Use sh to run mk_cmds

Otherwise etcupdate apparently can fail if its private object directory
under /var/db is in a filesystem mounted noexec.  We shouldn't be
building this target at all, but for now, just apply this workaround.

PR:             291043
Reviewed by:    ivy, cy, des
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D53861
DeltaFile
+1-1krb5/util/ss/Makefile
+1-11 files

FreeBSD/ports b38ce0aprint/plutobook distinfo Makefile

print/plutobook: Update to 0.11.1

Changelog: https://github.com/plutoprint/plutobook/releases/tag/v0.11.1
DeltaFile
+3-3print/plutobook/distinfo
+1-1print/plutobook/Makefile
+4-42 files

FreeBSD/ports c7cdc99net-mgmt/victoria-metrics pkg-plist distinfo

net-mgmt/victoria-metrics: update VictoriaMetrics to version 1.130.0

Reported by:    portscout
DeltaFile
+7-2net-mgmt/victoria-metrics/pkg-plist
+3-3net-mgmt/victoria-metrics/distinfo
+2-2net-mgmt/victoria-metrics/Makefile
+12-73 files

FreeBSD/src 0628c25libexec/rtld-elf/powerpc reloc.c, libexec/rtld-elf/powerpc64 reloc.c

rtld: fix powerpc build

In arch_fix_auxv(), remove local variable shadowing the argument,
remove write-only variable, and declare the loop variable.
The wrong patch was committed after series of local reverts and
re-apply.

Fixes:  b2b3d2a962eb00005641546fbe672b95e5d0672a
Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
DeltaFile
+1-3libexec/rtld-elf/powerpc64/reloc.c
+1-3libexec/rtld-elf/powerpc/reloc.c
+2-62 files

FreeBSD/src 8f8b8e4sys/dev/sound/midi midi.c

sound: Fix revents in midi_poll()

Sponsored by:   The FreeBSD Foundation
MFC after:      1 week
Reviewed by:    christos
Pull Request:   https://github.com/freebsd/freebsd-src/pull/1887
DeltaFile
+9-11sys/dev/sound/midi/midi.c
+9-111 files

FreeBSD/ports 6204300databases/couchdb3 pkg-plist distinfo

databases/couchdb3: update to 3.5.1

- https://blog.couchdb.org/2025/11/11/3-5-1/
- https://docs.couchdb.org/en/stable/whatsnew/3.5.html
DeltaFile
+107-42databases/couchdb3/pkg-plist
+3-3databases/couchdb3/distinfo
+1-2databases/couchdb3/Makefile
+111-473 files

FreeBSD/src 4991bb6sys/dev/sound/pci/hda hdaa_patches.c hdac.h

snd_hda: Patch Lenovo V15

PR:             290496
Tested by:      adrian
Sponsored by:   The FreeBSD Foundation
MFC after:      1 week

(cherry picked from commit 5f624d923db0f2fb33990948cffdc24da44deaa8)
DeltaFile
+2-1sys/dev/sound/pci/hda/hdaa_patches.c
+1-0sys/dev/sound/pci/hda/hdac.h
+3-12 files

FreeBSD/src 120f8a4sys/arm/freescale/imx imx6_ssi.c, sys/arm/freescale/vybrid vf_sai.c

arm: Add missing argument in mtx_init() calls

Fixes:          9d18115ca0ab ("sound: Retire snd_mtx* wrappers")
Reported by:    CI
Sponsored by:   The FreeBSD Foundation
MFC after:      4 days
DeltaFile
+1-5sys/arm/freescale/imx/imx6_ssi.c
+1-5sys/arm/freescale/vybrid/vf_sai.c
+2-102 files

FreeBSD/ports 408be98sysutils/mods Makefile distinfo

sysutils/mods: New port: AI for the command line, built for pipelines

PR:             291155
DeltaFile
+58-0sysutils/mods/Makefile
+5-0sysutils/mods/distinfo
+3-0sysutils/mods/pkg-descr
+66-03 files

FreeBSD/doc 0631f74documentation/static/pgpkeys dhw.key

pgpkeys: Update dhw's PGP key

That was sent to clusteradm, and doubled checked with philip
DeltaFile
+15-15documentation/static/pgpkeys/dhw.key
+15-151 files

FreeBSD/doc 28af191documentation/content/ru/articles/fonts _index.po, documentation/content/ru/articles/linux-emulation _index.po

update translation of articles/ to Russian
Reviewed by: andy
Differential Revision: https://reviews.freebsd.org/D53848
DeltaFile
+108-113documentation/content/ru/articles/linux-emulation/_index.po
+92-93documentation/content/ru/articles/new-users/_index.po
+98-84documentation/content/ru/articles/fonts/_index.po
+83-78documentation/content/ru/articles/pam/_index.po
+74-78documentation/content/ru/articles/problem-reports/_index.po
+79-62documentation/content/ru/articles/vm-design/_index.po
+534-50859 files not shown
+1,181-1,10165 files

FreeBSD/doc 9f203cbdocumentation/content/ru/books/handbook glossary.po, documentation/content/ru/books/handbook/advanced-networking _index.po

update translation of books/handbook to Russian
Reviewed by: andy
Differential Revision: https://reviews.freebsd.org/D53847
DeltaFile
+574-601documentation/content/ru/books/handbook/disks/_index.po
+418-418documentation/content/ru/books/handbook/glossary.po
+772-46documentation/content/ru/books/handbook/cutting-edge/_index.po
+339-351documentation/content/ru/books/handbook/mail/_index.po
+293-294documentation/content/ru/books/handbook/l10n/_index.po
+267-317documentation/content/ru/books/handbook/advanced-networking/_index.po
+2,663-2,02774 files not shown
+5,519-4,76280 files

FreeBSD/ports 0b574ecwww/py-granian distinfo Makefile.crates

www/py-granian: Update to 2.6.0
DeltaFile
+151-143www/py-granian/distinfo
+75-71www/py-granian/Makefile.crates
+1-2www/py-granian/Makefile
+227-2163 files