FreeBSD/src 9315ab3sys/dev/video video.c

video(4): wake the kqueue knote when a buffer completes

selwakeup() only wakes select/poll waiters; it does not notify the kqueue
knote registered on the device, so EVFILT_READ never fired when a frame
became available.
DeltaFile
+2-0sys/dev/video/video.c
+2-01 files

FreeBSD/src bae0845sys/dev/video video.c

video(4): add missing V4L2_CAP_EXT_PIX_FORMAT feature

this fixes, 2 failed v4l2-compliances tests
DeltaFile
+3-2sys/dev/video/video.c
+3-21 files

FreeBSD/src 4161e83sys/kern kern_sysctl.c

sys/kern: Fix a typo in a source code comment

- s/untill/until/

(cherry picked from commit 8255ae9a750f6de312f9b445c25b1c8caf3d95b7)
DeltaFile
+1-1sys/kern/kern_sysctl.c
+1-11 files

FreeBSD/src 3d8b783include/arpa telnet.h

arpa/telnet: Fix a typo in a source code comment

- s/ascic/ASCII/

(cherry picked from commit 16246209d25ac437494ebe92b9819a65f1336594)
DeltaFile
+1-1include/arpa/telnet.h
+1-11 files

FreeBSD/src 9f8836fsys/kern kern_sysctl.c

sys/kern: Fix a typo in a source code comment

- s/untill/until/

(cherry picked from commit 8255ae9a750f6de312f9b445c25b1c8caf3d95b7)
DeltaFile
+1-1sys/kern/kern_sysctl.c
+1-11 files

FreeBSD/src 2150c4cinclude/arpa telnet.h

arpa/telnet: Fix a typo in a source code comment

- s/ascic/ASCII/

(cherry picked from commit 16246209d25ac437494ebe92b9819a65f1336594)
DeltaFile
+1-1include/arpa/telnet.h
+1-11 files

FreeBSD/src 7a03960share/man/man4 asmc.4

asmc.4: clean up/modernize manpage

- sysutils/ataidle is no more: it was superseded by camcontrol(8).
- Sort the models table alphabetically.
- Use the SPDX License ID instead of the longhand licensing tort in the
  manpage header.
- Note that the driver has been heavily modified in 15.1 and later to
  support additional platforms and functionality.
- Trim down SYNOPSIS.

MFC after:      2 weeks
Differential Revision:  https://reviews.freebsd.org/D59470
DeltaFile
+46-70share/man/man4/asmc.4
+46-701 files

FreeBSD/src 8f478e4share/man/man4 Makefile apple_bce.4

apple_bce.4: add a basic manpage describing the driver

This new manpage describes what the apple_bce driver services, how the
driver is configured, and what Apple models the driver claims to
support.

Reviewed by:    seuros
Differential Revision:  https://reviews.freebsd.org/D59467
DeltaFile
+53-0share/man/man4/apple_bce.4
+5-0share/man/man4/Makefile
+58-02 files

FreeBSD/src 7ffc4eccontrib/xz ChangeLog, contrib/xz/src/common my_landlock.h

MFV: xz 5.8.4.

MFC after:      3 days
DeltaFile
+1,488-0contrib/xz/ChangeLog
+172-92contrib/xz/src/liblzma/common/index.c
+76-82contrib/xz/src/xz/xz.1
+49-10contrib/xz/src/liblzma/common/index_decoder.c
+29-12contrib/xz/src/common/my_landlock.h
+20-16contrib/xz/src/liblzma/check/crc32_arm64.h
+1,834-21224 files not shown
+2,016-28730 files

FreeBSD/src 4564e1flib/msun/src s_fmaf.c

lib/msun: use the same algorithm for sw fmaf(3) as for fma(3)

PR:     298260

(cherry picked from commit b08e6a3882b44a09fbda84dd315a431c7a585219)
DeltaFile
+230-24lib/msun/src/s_fmaf.c
+230-241 files

FreeBSD/src 3825e6blib/msun/tests fma_test.c

lib/msun: add tests for fmaf(3) subnormals

PR:     298260

(cherry picked from commit cb82cc9f0e3bdf2b39734851c74b9a13edb0cbdc)
DeltaFile
+27-1lib/msun/tests/fma_test.c
+27-11 files

FreeBSD/src cf46693lib/msun/amd64 Makefile.inc s_fma_avx.S, lib/msun/src s_fmaf.c s_fma.c

lib/msun amd64: use AVX FMA instructions for fma(3) and fmaf(3) when available

(cherry picked from commit 18a5549bcb81ec084f284a98046631db277ad47c)
DeltaFile
+24-0lib/msun/amd64/s_fma_avx.S
+24-0lib/msun/amd64/s_fmaf_avx.S
+10-1lib/msun/src/s_fmaf.c
+10-1lib/msun/src/s_fma.c
+8-1lib/msun/amd64/Makefile.inc
+76-35 files

FreeBSD/src d6c9a08sys/dev/mlx5/mlx5_ib mlx5_ib_qp.c

mlx5ib: use the hardware Toeplitz id when creating an RSS TIR

(cherry picked from commit 36256f77c7de2bbfdff6922648f4d445d7212dc2)
DeltaFile
+2-1sys/dev/mlx5/mlx5_ib/mlx5_ib_qp.c
+2-11 files

FreeBSD/src 2c02bfblib/msun Makefile

lib/msun: move the calculation of LIBC_SRCTOP earlier

(cherry picked from commit b45fd24a3ca666fbb1c754d9de94a9b33fa7949e)
DeltaFile
+5-4lib/msun/Makefile
+5-41 files

FreeBSD/src 77535f9sys/fs/nfs nfs_commonkrpc.c, sys/rpc svc.h clnt_rc.c

nfscl: Yet more fixes for the NFS over RDMA client glue

Yet again.  I was trying to make the svc_vc_backchannel()
operations do double duty and be used by the clnt_rdma.c code
as well.  It got too messy, so this reverts svc_vc.c back to
its pre-glue form and adds the small changes needed to support
a separate set of svc_rdma_backchannel_xxx() functions.

This commit should not affect non-RDMA behaviour.

MFC after:      3 months
Fixes:  884ee8d6c9b4 ("nfscl: Add some glue for client side NFS over RDMA")
DeltaFile
+12-7sys/fs/nfs/nfs_commonkrpc.c
+2-10sys/rpc/svc_vc.c
+2-3sys/rpc/krpc.h
+1-1sys/rpc/clnt_rc.c
+1-0sys/rpc/svc.h
+18-215 files

FreeBSD/src 9a46a14sys/dev/acpica acpi_cpu.c

acpi_cpu: only report unmapped processor objects enabled in the MADT

Firmware expose a DSDT sized for the largest SKU of the platform,
so a verbose boot prints an "ignored" line for every vacant
processor slot. A vacant slot has no enabled MADT entry; a CPU that
failed to come online does.

Reviewed by:    olce, adrian
Differential Revision:  https://reviews.freebsd.org/D59551
DeltaFile
+62-3sys/dev/acpica/acpi_cpu.c
+62-31 files

FreeBSD/src dd9e49ashare/man/man4 Makefile intel_pmc.4, sys/conf files.x86

intel/intelpmc: Add Intel PMC Core driver

Add driver for Intel Power Management Controller (PMC) found on Sunrise Point PCH chipsets.
This device exposes S0ix sleep state residency counters and power management status.

Sysctls provided:
  dev.intelpmc.0.slp_s0_residency_us - Time in deepest sleep (us)
  dev.intelpmc.0.ltr_ignore          - LTR ignore mask
  dev.intelpmc.0.pm_cfg              - PM configuration register
  dev.intelpmc.0.pm_sts              - PM status register
  dev.intelpmc.0.access_denied       - Firmware lock status

Supported devices for now:
  - Sunrise Point-LP (0x9D21)
  - Sunrise Point-H (0xA121)

Note: Later PCH generations (Cannon Lake, Tiger Lake, ect.) have different PMC register layouts according to the datasheet and would need per-generation tables.
I avoided adding untested hardware in case they have a quirk.


    [2 lines not shown]
DeltaFile
+219-0sys/dev/intel/intel_pmc.c
+83-0share/man/man4/intel_pmc.4
+6-0sys/modules/intel_pmc/Makefile
+2-0sys/modules/Makefile
+1-0sys/conf/files.x86
+1-0share/man/man4/Makefile
+312-06 files

FreeBSD/src 416611fsys/cam/nvme nvme_da.c, sys/dev/nvme nvme_ns.c

nvme: reject namespaces formatted with metadata

The active LBA format's MS field was never examined. I/O to a
metadata-formatted namespace carries neither interleaved metadata
nor MPTR, so every command is malformed, yet the namespace attaches
as a disk with the wrong sector size.

Reviewed by:    imp, adrian
Differential Revision:  https://reviews.freebsd.org/D59625
DeltaFile
+9-0sys/dev/nvme/nvme_ns.c
+9-0sys/cam/nvme/nvme_da.c
+18-02 files

FreeBSD/src a22eb75sys/dev/tpm tpm_tis_core.c

tpm_tis: Quiesce interrupts before registering a handler

The current interrupt path uses the IRQ resource value directly as the
LPC SIRQ selector in TPM_INT_VECTOR and already restricts it to 1 through
15. This is a driver limitation: a parent interrupt number need not equal
an LPC SIRQ channel, and SPI TPMs can use a separate parallel interrupt.

On the reported system with ACPI IRQ 45, the existing range check runs
after handler registration and returns before disabling firmware interrupt
delivery. This can leave a polling device with a handler on an asserted
source.

Disable and verify interrupt delivery before registering a handler or
starting common TPM services. Preserve the existing range policy, using
polling without registering a handler for routes rejected by that check,
and release their IRQ resources. Keep a failed setup's potentially stale
output cookie out of the device state; the interrupt framework may
already have removed that handler.


    [19 lines not shown]
DeltaFile
+90-23sys/dev/tpm/tpm_tis_core.c
+90-231 files

FreeBSD/src 9b26803. ChangeLog, src/common my_landlock.h

Vendor import of xz 5.8.4 (trimmed)
DeltaFile
+1,488-0ChangeLog
+172-92src/liblzma/common/index.c
+76-82src/xz/xz.1
+49-10src/liblzma/common/index_decoder.c
+29-12src/common/my_landlock.h
+20-16src/liblzma/check/crc32_arm64.h
+1,834-21223 files not shown
+2,013-28429 files

FreeBSD/src a6b40d7sys/compat/linuxkpi/common/include/linux scatterlist.h, sys/compat/linuxkpi/common/src linux_pci.c

LinuxKPI: Add dma_length field to struct scatterlist

On Linux `dma_length` field of `struct scatterlist` is present on the
arches where DMA mapping code is able to coalesce adjacent segments
of physical address space. It contains total length of coalesced
segments while `length` field contains non-coalesced length of each
segment. On other arches `dma_length` is aliased to `length` field with
`sg_dma_len` macro. As FreeBSD does not merge scatterlist segments it
do not have `dma_length` field. It is appered that at least i915kms
driver depends on existence of `dma_length` field.

Add the field and disable it by default. To enable add to Makefile

.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \\
    ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "powerpc"
CFLAGS+=        -DCONFIG_NEED_SG_DMA_LENGTH
.endif

Reported by:    Ryan Fahy

    [4 lines not shown]
DeltaFile
+17-9sys/compat/linuxkpi/common/include/linux/scatterlist.h
+1-0sys/compat/linuxkpi/common/src/linux_pci.c
+18-92 files

FreeBSD/src f49dc19share/man/man4 tpm.4

tpm.4: Canonicalize SYNOPSIS and HARDWARE
DeltaFile
+13-19share/man/man4/tpm.4
+13-191 files

FreeBSD/src dc867c3share/man/man4 tslog.4

tslog.4: Canonicalize SYNOPSIS

Also, add the missing blank comment line at the top of the file.

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+2-5share/man/man4/tslog.4
+2-51 files

FreeBSD/src 7b70103share/man/man4 udl.4

udl.4: Canonicalize SYNOPSIS

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+4-12share/man/man4/udl.4
+4-121 files

FreeBSD/src bba2aebshare/man/man4 udbp.4

udbp.4: Canonicalize SYNOPSIS, structure, SPDX

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+33-61share/man/man4/udbp.4
+33-611 files

FreeBSD/src 6fe1d51share/man/man4 udav.4

udav.4: Canonicalize SYNOPSIS + "Fast" Ethernet

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+12-20share/man/man4/udav.4
+12-201 files

FreeBSD/src c64f613share/man/man4 ucycom.4

ucycom.4: Canonicalize SYNOPSIS

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+6-14share/man/man4/ucycom.4
+6-141 files

FreeBSD/src 08ab66bshare/man/man4 ucom.4

ucom.4: Canonicalize SYNOPSIS + tag SPDX

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+14-11share/man/man4/ucom.4
+14-111 files

FreeBSD/src 28bbe93share/man/man4 ubtbcmfw.4

ubtbcmfw.4: Canonicalize SYNOPSIS + tag SPDX

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+6-11share/man/man4/ubtbcmfw.4
+6-111 files

FreeBSD/src 01e9a8bshare/man/man4 ubsa.4

ubsa.4: Canonicalize SYNOPSIS + tag SPDX

Event:          EuroBSDcon 2026
MFC after:      3 days
DeltaFile
+7-13share/man/man4/ubsa.4
+7-131 files