#1108430 Kernel Regression between 6.1.0-35 and 6.1.0-37: IPv6 link-local multicast over GRE tunnel is silently dropped

Package:
src:linux
Source:
src:linux
Submitter:
Aiden Yang
Date:
2025-08-28 17:05:04 UTC
Severity:
normal
Tags:
#1108430#5
Date:
2025-06-28 12:49:17 UTC
From:
To:
dropped SEVERITY: normal

===================================================================

Summary:
This report details a regression in the Linux kernel that prevents
IPv6 link-local all-nodes multicast packets (ff02::1) from being
transmitted over a GRE tunnel. The issue is confirmed to have been
introduced between kernel versions 6.1.0-35-cloud-amd64 (working) and
6.1.0-37-cloud-amd64 (failing) on Debian 12 (Bookworm).
On affected kernels, the ping utility reports 100% packet loss, and a
tcpdump on the underlying physical interface confirms that the kernel
is silently dropping the encapsulated GRE packets instead of sending
them. The sendto() system call does not return an error to the
userspace application in the default namespace.

===================================================================

Regression Point:
Last Known Good Version: 6.1.0-35-cloud-amd64
First Failing Version: 6.1.0-37-cloud-amd64
The regression is also present in later kernels tested, including
6.12.33 and 6.15.x on Debian 13 (Trixie).

===================================================================

Steps to Reproduce:
Use a Debian system with an affected kernel (e.g., >= 6.1.0-37).
Establish a GRE tunnel. Replace [PEER_IP] and [LOCAL_IP] with actual
endpoint addresses.
ip tunnel add tun_gre mode gre remote [PEER_IP] local [LOCAL_IP] ttl
255 ip link set tun_gre up
In one terminal, start a tcpdump on the physical interface that
provides the local IP, to monitor for outgoing GRE packets (GRE is IP
protocol 47).
tcpdump -i [PHYSICAL_IFACE] -n 'proto gre'
In a second terminal, attempt to ping the link-local all-nodes
multicast address via the GRE tunnel interface.
ping ff02::1%tun_gre -c 4

===================================================================

Observed Behavior (The Bug):
The ping command runs and reports "4 packets transmitted, 0 received,
100% packet loss".
The tcpdump window on the physical interface shows NO outgoing GRE
packets. This proves the kernel is silently dropping the packets.

===================================================================

Expected Behavior (as observed on kernel 6.1.0-35):
The ping command runs.
The tcpdump window shows outgoing GRE packets being sent from
[LOCAL_IP] to [PEER_IP] for each ICMPv6 echo request. (Receiving a
reply is dependent on the peer configuration, but the packets should
be transmitted).

===================================================================

Additional Diagnostic Information:
VRF Context: When the failing GRE interface (tun_gre) is placed within
a VRF, the failure mode changes. The ping or sendto() system call
fails immediately with an ENETUNREACH (Network is unreachable) error.
This is likely because the VRF routing table does not have a route to
the tunnel's physical peer address, and the kernel correctly
identifies this dependency issue.
veth Control Test: The issue is specific to the gre tunnel interface
type. A control test using a veth pair inside a VRF works perfectly
for link-local multicast, proving the core VRF and multicast logic is
sound.
This detailed bracketing of the regression should provide a strong
starting point for identifying the specific commit that introduced
this behavior.

#1108430#14
Date:
2025-06-28 19:17:14 UTC
From:
To:
Control: tags -1 + moreinfo

since you can reproduce the regression on all newer upstream versions
as well, can you please report in to upstream and report back here the
upstream report so we can follow its status.

Thanks already.

Regards,
Salvatore

Drop this when you send public bugreports, thanks.

#1108430#27
Date:
2025-07-12 14:08:11 UTC
From:
To:
Hello,
Just a follow-up to report that the upstream kernel developers have
now merged a fix for this issue into the 'net' tree.
The official commit is:
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=4e914ef063de40397e25a025c70d9737a9e45a8c
The patch submission cover letter on the mailing list can be found
here, providing additional context:
https://lore.kernel.org/netdev/cover.1752070620.git.gnault@redhat.com/T/
I will be looking forward to seeing this fix in a future Debian kernel update.
Best regards,
Aiden Yang

Debian Bug Tracking System <owner@bugs.debian.org> 于2025年6月28日周六 20:51写道:

#1108430#32
Date:
2025-07-12 14:10:34 UTC
From:
To:
Hello,
Just a follow-up to report that the upstream kernel developers have
now merged a fix for this issue into the 'net' tree.
The official commit is:
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/commit/?id=4e914ef063de40397e25a025c70d9737a9e45a8c
The patch submission cover letter on the mailing list can be found
here, providing additional context:
https://lore.kernel.org/netdev/cover.1752070620.git.gnault@redhat.com/T/
I will be looking forward to seeing this fix in a future Debian kernel update.
Best regards,
Aiden Yang

Salvatore Bonaccorso <carnil@debian.org> 于2025年6月29日周日 03:17写道:

#1108430#41
Date:
2025-07-15 12:52:16 UTC
From:
To:
Hi,

Thanks for this update, it will be in the next experimental upload and
as it will be queued as well for stable updates it will land as well
in a future Debian trixie targeting upload.

Please really stop doing that, in theory we would need to make sure
your emails get removed and not answered othewise, you are posting to
a *public* bug tracking system.

Regards,
Salvatore

#1108430#48
Date:
2025-07-22 18:00:11 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1108430@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Ben Hutchings <benh@debian.org> (supplier of updated linux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Mon, 21 Jul 2025 23:49:25 +0200
Source: linux
Architecture: source
Version: 6.16~rc7-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Ben Hutchings <benh@debian.org>
Closes: 763547 1108430
Changes:
 linux (6.16~rc7-1~exp1) experimental; urgency=medium
 .
   * New upstream release candidate
     - gre: Fix IPv6 multicast route creation. (Closes: #1108430)
 .
   [ Ben Hutchings ]
   * Add linux-misc-tools package for bootconfig, ihex2fw, thermometer, and tmon
     (Closes: #763547)
   * d/patches: Clean up the Android binder patches
   * Update to 6.16-rc5:
     - Drop obsolete patches:
       - "Revert "mmc: sdhci: Disable SD card clock before changing parameters""
         (applied upstream)
       - "dccp: Disable auto-loading as mitigation against local exploits"
         (protocol was removed)
     - Refresh patches:
       - "add sysctl to disallow unprivileged CLONE_NEWUSER by default"
       - "Export symbols needed by binder"
       - "Include package version along with kernel release in stack traces"
   * d/config: Update with the help of kconfigeditor2:
     - crypto: Enable CRYPTO_BENCHMARK instead of CRYPTO_TEST
     - crypto: Enable CRYPTO_SELFTESTS (except on hppa, m68k, sh4) instead of
       disabling CRYPTO_MANAGER_DISABLE_TESTS
     - drivers/net/mdio: Enable MDIO_BUS as module (except on cloud) instead of
       MDIO_DEVICE
     - [armhf] drivers/mfd: Enable MFD_SEC_I2C as built-in instead of
       MFD_SEC_CORE
     - [arm64] drivers/phy: Enable PHY_SNPS_EUSB2 as module instead of
       PHY_QCOM_SNPS_EUSB2
     - crypto: Remove CRYPTO_CHACHA_RISCV64, CRYPTO_MANAGER,
       CRYPTO_SHA256_{ARM,OCTEON,RISCV64,S390,SPARC64,SSSE3},
       CRYPTO_SHA2_ARM{,64}_CE which are now automatic symbols
     - crypto: Remove CRYPTO_POLY1305
     - net: Remove IP_DCCP etc.
     - [alpha,m68k,x86] Remove USELIB
   * linux-kbuild: Update for rewrite of kernel-doc in Python
   * d/rules.d: Delete unused clean targets
   * d/rules.d: Introduce and use srcdir variable for upstream source directory
   * d/rules.d/tools/thermal: Split library and tools builds into subdirs
   * d/rules.d: Introduce and use variables for invoking upstream makefiles
   * d/rules.d, d/rules.real: Build user-space tools with Kbuild where possible
   * [x86] d/rules.d/tools/power/x86: Use upstream makefiles to build programs
   * udeb: Put cros-ec-proto library module in kernel-image
 .
   [ Uwe Kleine-König ]
   * Fix udeb module lists for v6.15 -> v6.16
 .
   [ Aurelien Jarno ]
   * [riscv64] Enable SPACEMIT_CCU, SPACEMIT_K1_CCU and GPIO_SPACEMIT_K1,
     enable I2C_K1, MMC_SDHCI_OF_K1 and PWM_PXA as modules
   * [riscv64] Enable CLK_SOPHGO_SG2044, SOPHGO_CV1800_RTCSYS and
     SOPHGO_SG2044_TOPSYS, enable CLK_SOPHGO_SG2044_PLL as a module
   * [riscv64] Enable TH1520_AON_PROTOCOL, TH1520_PM_DOMAINS and RESET_TH1520
     as modules
Checksums-Sha1:
 fe93b7183d2b66cc6f746d314342e39624712faf 200549 linux_6.16~rc7-1~exp1.dsc
 39c2bdbab4be0fafec0229500014feab42393410 155591772 linux_6.16~rc7.orig.tar.xz
 89dc512473d4ba6acb8b2074a430d026c821b9da 1530700 linux_6.16~rc7-1~exp1.debian.tar.xz
 618fd6e77f936126b4595e5ebfec610f7d72cde6 7990 linux_6.16~rc7-1~exp1_source.buildinfo
Checksums-Sha256:
 a018d5a1e3aeca03a18dd621e9309a0b8040af5f7f217f3caa312f2ea55bb114 200549 linux_6.16~rc7-1~exp1.dsc
 af65e6f7cfa23ae056f2c23f437380a7a99384dd5f7eb67b1105c322a87148d7 155591772 linux_6.16~rc7.orig.tar.xz
 f1f180c7a4017d0c2119f8370e86eb0a7e27ccc751e4c854cbbf206136368ba6 1530700 linux_6.16~rc7-1~exp1.debian.tar.xz
 4ee05d32c615959276e06c4408340738857093443dc28022ffd835b74c587e60 7990 linux_6.16~rc7-1~exp1_source.buildinfo
Files:
 9a55999c9b9cfbebbdc16bc4beabbc42 200549 kernel optional linux_6.16~rc7-1~exp1.dsc
 de45cec64fecd00fd6c9463520c51233 155591772 kernel optional linux_6.16~rc7.orig.tar.xz
 c1eaa633f33c01834cac45475db31e4f 1530700 kernel optional linux_6.16~rc7-1~exp1.debian.tar.xz
 7090e60827f9a93b6c77e5cdb7c87d9f 7990 kernel optional linux_6.16~rc7-1~exp1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEErCspvTSmr92z9o8157/I7JWGEQkFAmh/iRYACgkQ57/I7JWG
EQkutA//aUPO0cz5qXzUp/CiVXnFZuW/8g6PpnWcrhRhW0/WSzcFLIDtv0s8OdYR
ob1wG68VXwuQIAe9XS4PuGsUqbtOAX5kRSxysdlvwtTF1vtC9k7lTx05nmLGfl9F
UtkvEYHChLMRa7+1rHKZ8ulf4i4PN3w79VKBRHBFkP5skTR/VEADw8mPiZpNHIJ1
nGx6Btbqc+Tj5jcay/RGI5/p+cZIAwxfESwkPtSEfu5kTiuBZ56BvKwNAoHcJkra
eEdIzk0fDILECb6DjBAERiW3ZC6wg7IOz5uS1n4scTPqn6oAw4KpjZ6lGTSe5B8O
6ZMhUBShvYXBCR0eArIcAhm20c885bOe8CLcvM4LILCcy6XL0WEReJ25cGkjPuKC
VwLhC1uZThqVxwaqPbN9vSehoJiHDRgr7wgZBlWfJqpcFoGqxidkJsoM0TPoR43C
ZZtfS2TN3hTEwNrIm8S7NFmDmTeBEinq6r9xDRamCUf+KSqjjxEOtl6i5FJAWqnx
eyUJ2kL7VlKtdJgvpP4EbgtWlcfEORjXoJ8mwSTHs14SbLmszi48D5MZWJ37H1ek
PXdrW5NYnCPoHmxWivPv2woUnSKC/BEFNRQYL5NRx/FaAKU9ZzMKuD5DirE8sEiX
Nyd4VnCbhUx+dzeg0FsitS6NhHvZyQLhqRrUIRtErwvjeGlHl2g=
=7oeA
-----END PGP SIGNATURE-----

#1108430#53
Date:
2025-08-17 19:47:26 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1108430@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso <carnil@debian.org> (supplier of updated linux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Sat, 02 Aug 2025 15:13:02 +0200
Source: linux
Architecture: source
Version: 6.1.147-1
Distribution: bookworm-security
Urgency: high
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Salvatore Bonaccorso <carnil@debian.org>
Closes: 1107479 1107511 1108065 1108069 1108430 1109734
Changes:
 linux (6.1.147-1) bookworm-security; urgency=high
 .
   * New upstream stable update:
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.141
     - [arm64,armhf] gpio: pca953x: Add missing header(s)
     - [arm64,armhf] gpio: pca953x: Split pca953x_restore_context() and
       pca953x_save_context()
     - [arm64,armhf] gpio: pca953x: Simplify code with cleanup helpers
     - [arm64,armhf] gpio: pca953x: fix IRQ storm on system wake up
     - [arm64] phy: renesas: rcar-gen3-usb2: Add support to initialize the bus
     - [arm64] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe
     - [arm64] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and
       driver data
     - [arm64] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off
     - scsi: target: iscsi: Fix timeout on deleted connection
     - virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN
     - dma-mapping: avoid potential unused data compilation warning
     - cgroup: Fix compilation issue due to cgroup_mutex not being exported
     - scsi: mpi3mr: Add level check to control event logging
     - [arm64] net: enetc: refactor bulk flipping of RX buffers to separate
       function
     - drm/amdgpu: Allow P2P access through XGMI
     - bpf: fix possible endless loop in BPF map iteration
     - kconfig: merge_config: use an empty file as initfile
     - [s390x] vfio-ap: Fix no AP queue sharing allowed message written to kernel
       log
     - cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES
     - cifs: Fix querying and creating MF symlinks over SMB1
     - cifs: Fix negotiate retry functionality
     - fuse: Return EPERM rather than ENOSYS from link()
     - NFSv4: Check for delegation validity in
       nfs_start_delegation_return_locked()
     - NFS: Don't allow waiting for exiting tasks
     - SUNRPC: Don't allow waiting for exiting tasks
     - [arm64] Add support for HIP09 Spectre-BHB mitigation
     - tracing: Mark binary printing functions with __printf() attribute
     - mailbox: use error ret code of of_parse_phandle_with_args()
     - fbdev: fsl-diu-fb: add missing device_remove_file()
     - fbcon: Use correct erase colour for clearing in fbcon
     - fbdev: core: tileblit: Implement missing margin clearing for tileblit
     - cifs: Fix establishing NetBIOS session for SMB2+ connection
     - NFSv4: Treat ENETUNREACH errors as fatal for state recovery
     - SUNRPC: rpc_clnt_set_transport() must not change the autobind setting
     - SUNRPC: rpcbind should never reset the port to the value '0'
     - [arm64] thermal/drivers/qoriq: Power down TMU on system suspend
     - dql: Fix dql->limit value when reset.
     - lockdep: Fix wait context check on softirq for PREEMPT_RT
     - objtool: Properly disable uaccess validation
     - pNFS/flexfiles: Report ENETDOWN as a connection error
     - [amd64] PCI: vmd: Disable MSI remapping bypass under Xen
     - libnvdimm/labels: Fix divide error in nd_label_data_init()
     - mmc: host: Wait for Vdd to settle on card power off
     - [x86] mm: Check return value from memblock_phys_alloc_range()
     - [arm64] i2c: qup: Vote for interconnect bandwidth to DRAM
     - i2c: pxa: fix call balance of i2c->clk handling routines
     - btrfs: make btrfs_discard_workfn() block_group ref explicit
     - btrfs: avoid linker error in btrfs_find_create_tree_block()
     - btrfs: run btrfs_error_commit_super() early
     - btrfs: fix non-empty delayed iputs list on unmount due to async workers
     - btrfs: get zone unusable bytes while holding lock at
       btrfs_reclaim_bgs_work()
     - btrfs: send: return -ENAMETOOLONG when attempting a path that is too long
     - drm/amd/display: Guard against setting dispclk low for dcn31x
     - dlm: make tcp still work in multi-link env
     - ext4: reorder capability check last
     - scsi: st: Tighten the page format heuristics with MODE SELECT
     - scsi: st: ERASE does not change tape location
     - vfio/pci: Handle INTx IRQ_NOTCONNECTED
     - bpf: Return prog btf_id without capable check
     - tcp: reorganize tcp_in_ack_event() and tcp_count_delivered()
     - rtc: rv3032: fix EERD location
     - [x86] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled
       for retimer
     - kbuild: fix argument parsing in scripts/config
     - dm: restrict dm device size to 2^63-512 bytes
     - net/smc: use the correct ndev to find pnetid by pnetid table
     - xen: Add support for XenServer 6.1 platform device
     - [arm64,armhf] pinctrl-tegra: Restore SFSEL bit when freeing pins
     - [armhf] ASoC: sun4i-codec: support hp-det-gpios property
     - ext4: reject the 'data_err=abort' option in nojournal mode
     - RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject()
     - posix-timers: Add cond_resched() to posix_timer_add() search loop
     - timer_list: Don't use %pK through printk()
     - netfilter: conntrack: Bound nf_conntrack sysctl writes
     - [arm64] mm: Check PUD_TYPE_TABLE in pud_bad()
     - [armhf] mmc: dw_mmc: add exynos7870 DW MMC support
     - mmc: sdhci: Disable SD card clock before changing parameters
     - [x86] hwmon: (dell-smm) Increment the number of fans
     - ipv6: save dontfrag in cork
     - drm/amd/display: calculate the remain segments for all pipes
     - gfs2: Check for empty queue in run_queue
     - auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct
       hd44780_common"
     - [amd64] iommu/amd/pgtbl_v2: Improve error handling
     - crypto: lzo - Fix compression buffer overrun
     - [arm64] tegra: p2597: Fix gpio for vdd-1v8-dis regulator
     - [powerpc*] prom_init: Fixup missing #size-cells on PowerBook6,7
     - ALSA: seq: Improve data consistency at polling
     - tcp: bring back NUMA dispersion in inet_ehash_locks_alloc()
     - rtc: ds1307: stop disabling alarms on probe
     - ieee802154: ca8210: Use proper setters and getters for bitwise types
     - dm cache: prevent BUG_ON by blocking retries on failed device resumes
     - orangefs: Do not truncate file size
     - net: phylink: use pl->link_interface in phylink_expects_phy()
     - remoteproc: qcom_wcnss: Handle platforms with only single power domain
     - drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c
     - media: cx231xx: set device_caps for 417
     - pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned"
     - [armhf] net: ethernet: ti: cpsw_new: populate netdev of_node
     - net: pktgen: fix mpls maximum labels list parsing
     - perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type
     - ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7
     - ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config().
     - drm/rockchip: vop2: Add uv swap for cluster window
     - media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map
     - [arm64] clk: imx8mp: inform CCF of maximum frequency of clocks
     - [x86] bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2
     - [arm*] hwmon: (gpio-fan) Add missing mutex locks
     - [arm64] PCI: brcmstb: Expand inbound window size up to 64GB
     - [arm64] PCI: brcmstb: Add a softdep to MIP MSI-X driver
     - net/mlx5: Avoid report two health errors on same syndrome
     - drm/amdkfd: KFD release_work possible circular locking
     - leds: pwm-multicolor: Add check for fwnode_property_read_u32
     - net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only
     - net: xgene-v2: remove incorrect ACPI_PTR annotation
     - bonding: report duplicate MAC address in all situations
     - [arm64] soc: ti: k3-socinfo: Do not use syscon helper to build regmap
     - [x86] build: Fix broken copy command in genimage.sh when making isoimage
     - drm/amd/display: handle max_downscale_src_width fail check
     - [x86] nmi: Add an emergency handler in nmi_desc & use it in
       nmi_shootdown_cpus()
     - cpuidle: menu: Avoid discarding useful information
     - libbpf: Fix out-of-bound read
     - dm: fix unconditional IO throttle caused by REQ_PREFLUSH
     - [x86] kaslr: Reduce KASLR entropy on most x86 systems
     - [mips*] Use arch specific syscall name match function
     - genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of
       iommu_cookie
     - [mips*] pm-cps: Use per-CPU variables as per-CPU, not per-core
     - [mips*] clocksource: mips-gic-timer: Enable counter when CPUs start
     - scsi: mpt3sas: Send a diag reset if target reset fails
     - wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU
     - wifi: rtw88: Fix rtw_init_ht_cap() for RTL8814AU
     - wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31
     - wifi: rtw89: fw: propagate error code from rtw89_h2c_tx()
     - net: pktgen: fix access outside of user given buffer in
       pktgen_thread_write()
     - [x86] EDAC/ie31200: work around false positive build warning
     - serial: mctrl_gpio: split disable_ms into sync and no_sync APIs
     - RDMA/core: Fix best page size finding when it can cross SG entries
     - [arm64,armhf] pmdomain: imx: gpcv2: use proper helper for property
       detection
     - can: c_can: Use of_property_present() to test existence of DT property
     - eth: mlx4: don't try to complete XDP frames in netpoll
     - PCI: Fix old_size lower bound in calculate_iosize() too
     - ACPI: HED: Always initialize before evged
     - vxlan: Join / leave MC group after remote changes
     - media: test-drivers: vivid: don't call schedule in loop
     - net/mlx5: Modify LSB bitmask in temperature event to include only the
       first bit
     - net/mlx5: Apply rate-limiting to high temperature warning
     - ASoC: ops: Enforce platform maximum on initial value
     - ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot()
     - pinctrl: devicetree: do not goto err when probing hogs in
       pinctrl_dt_to_map
     - kunit: tool: Use qboot on QEMU x86_64
     - net/mlx4_core: Avoid impossible mlx4_db_alloc() order value
     - [arm64] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc
       rate
     - serial: sh-sci: Update the suspend/resume support
     - phy: core: don't require set_mode() callback for phy_get_mode() to work
     - drm/amdgpu: reset psp->cmd to NULL after releasing the buffer
     - drm/amd/display: Initial psr_version with correct setting
     - drm/amdgpu: enlarge the VBIOS binary size limit
     - drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer()
     - net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB
     - net/mlx5e: set the tx_queue_len for pfifo_fast
     - net/mlx5e: reduce rep rxq depth to 256 for ECPF
     - wifi: mac80211: don't unconditionally call drv_mgd_complete_tx()
     - wifi: mac80211: remove misplaced drv_mgd_complete_tx() call
     - [powerpc*] arch/powerpc/perf: Check the instruction type before creating
       sample with perf_mem_data_src
     - ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure().
     - r8152: add vendor/device ID pair for Dell Alienware AW1022z
     - wifi: rtw88: Fix download_firmware_validate() for RTL8814AU
     - [arm64] hwmon: (xgene-hwmon) use appropriate type for the latency value
     - vxlan: Annotate FDB data races
     - r8169: don't scan PHY addresses > 0
     - rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y
     - rcu: handle unstable rdp in rcu_read_unlock_strict()
     - rcu: fix header guard for rcu_all_qs()
     - perf: Avoid the read if the count is already updated
     - ice: count combined queues using Rx/Tx count
     - net/mana: fix warning in the writer of client oob
     - scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine
     - scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector()
       fails
     - scsi: st: Restore some drive settings after reset
     - HID: usbkbd: Fix the bit shift number for LED_KANA
     - drm/ast: Find VBIOS mode from regular display size
     - bpftool: Fix readlink usage in get_fd_type
     - [x86] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt
     - wifi: rtl8xxxu: retry firmware download on error
     - wifi: rtw88: Don't use static local variable in
       rtw8822b_set_tx_power_index_by_rate
     - wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet
     - wifi: ath9k: return by of_get_mac_address
     - drm/atomic: clarify the rules around drm_atomic_state->allow_modeset
     - drm/panel-edp: Add Starry 116KHD024006
     - drm: Add valid clones check
     - [arm64,armhf] pinctrl: meson: define the pull up/down resistor value as 60
       kOhm
     - [x86] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013
     - ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx
     - nvmet-tcp: don't restore null sk_state_change
     - io_uring/fdinfo: annotate racy sq/cq head/tail reads
     - btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref
     - wifi: iwlwifi: add support for Killer on MTL
     - xenbus: Allow PVH dom0 a non-local xenstore
     - __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock
     - espintcp: remove encap socket caching to avoid reference leak
     - [amd64] dmaengine: idxd: add per DSA wq workqueue for processing cr faults
     - [amd64] dmaengine: idxd: add idxd_copy_cr() to copy user completion record
       during page fault handling
     - [amd64] dmaengine: idxd: Fix allowing write() from different address
       spaces
     - remoteproc: qcom_wcnss: Fix on platforms without fallback regulators
     - xfrm: Sanitize marks before insert
     - [amd64] dmaengine: idxd: Fix ->poll() return value
     - Bluetooth: L2CAP: Fix not checking l2cap_chan security level
     - bridge: netfilter: Fix forwarding of fragmented packets
     - ice: fix vf->num_mac count with port representors
     - [arm64,armhf] net: dwmac-sun8i: Use parsed internal PHY address instead of
       1
     - net: lan743x: Restore SGMII CTRL register on resume
     - io_uring: fix overflow resched cqe reordering
     - sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue()
       (CVE-2025-38000)
     - net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done
     - crypto: algif_hash - fix double free in hash_accept
     - padata: do not leak refcount in reorder_work
     - can: slcan: allow reception of short error messages
     - can: bcm: add locking for bcm_op runtime updates
     - can: bcm: add missing rcu read protection for procfs content
     - ALSA: pcm: Fix race of buffer access at PCM OSS layer
     - ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10
     - llc: fix data loss when reading from a socket in llc_ui_recvmsg()
     - [x86] platform/x86: dell-wmi-sysman: Avoid buffer overflow in
       current_password_store()
     - drm/edid: fixed the bug that hdr metadata was not reset
     - smb: client: Fix use-after-free in cifs_fill_dirent
     - smb: client: Reset all search buffer pointers when releasing buffer
     - Revert "drm/amd: Keep display off while going into S4" (Closes: #1107511)
     - memcg: always call cond_resched() after fn()
     - mm/page_alloc.c: avoid infinite retries caused by cpuset race
     - Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection"
     - ksmbd: fix stream write failure
     - [arm64] spi: spi-fsl-dspi: restrict register range for regmap access
     - [arm64] spi: spi-fsl-dspi: Halt the module after a new message transfer
     - [arm64] spi: spi-fsl-dspi: Reset SR flags before sending a new message
     - kbuild: Disable -Wdefault-const-init-unsafe
     - serial: sh-sci: Save and restore more registers
     - [arm64,armhf] pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group()
     - [x86] mm/init: Handle the special case of device private pages in
       add_pages(), to not increase max_pfn and trigger dma_addressing_limited()
       bounce buffers bounce buffers
     - [amd64] dmaengine: idxd: Fix passing freed memory in idxd_cdev_open()
     - hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING
       (CVE-2025-21816)
     - btrfs: check folio mapping after unlock in relocate_one_folio()
       (CVE-2024-56758)
     - af_unix: Kconfig: make CONFIG_UNIX bool
     - af_unix: Return struct unix_sock from unix_get_socket().
     - af_unix: Run GC on only one CPU.
     - af_unix: Try to run GC async.
     - af_unix: Replace BUG_ON() with WARN_ON_ONCE().
     - af_unix: Remove io_uring code for GC.
     - af_unix: Remove CONFIG_UNIX_SCM.
     - af_unix: Allocate struct unix_vertex for each inflight AF_UNIX fd.
     - af_unix: Allocate struct unix_edge for each inflight AF_UNIX fd.
     - af_unix: Link struct unix_edge when queuing skb.
     - af_unix: Bulk update unix_tot_inflight/unix_inflight when queuing skb.
     - af_unix: Iterate all vertices by DFS.
     - af_unix: Detect Strongly Connected Components.
     - af_unix: Save listener for embryo socket.
     - af_unix: Fix up unix_edge.successor for embryo socket.
     - af_unix: Save O(n) setup of Tarjan's algo.
     - af_unix: Skip GC if no cycle exists.
     - af_unix: Avoid Tarjan's algorithm if unnecessary.
     - af_unix: Assign a unique index to SCC.
     - af_unix: Detect dead SCC.
     - af_unix: Replace garbage collection algorithm.
     - af_unix: Remove lock dance in unix_peek_fds().
     - af_unix: Try not to hold unix_gc_lock during accept().
     - af_unix: Don't access successor in unix_del_edges() during GC.
     - af_unix: Add dead flag to struct scm_fp_list.
     - af_unix: Fix garbage collection of embryos carrying OOB with SCM_RIGHTS
     - af_unix: Fix uninit-value in __unix_walk_scc()
     - [arm64] dts: qcom: sm8350: Fix typo in pil_camera_mem node
     - net_sched: hfsc: Address reentrant enqueue adding class to eltree twice
     - [arm64] perf/arm-cmn: Fix REQ2/SNP2 mixup
     - [arm64] perf/arm-cmn: Initialise cmn->cpu earlier
     - coredump: fix error handling for replace_fd()
     - pid: add pidfd_prepare()
     - fork: use pidfd_prepare()
     - coredump: hand a pidfd to the usermode coredump helper
     - HID: quirks: Add ADATA XPG alpha wireless mouse support
     - nfs: don't share pNFS DS connections between net namespaces
     - [x86] platform/x86: thinkpad_acpi: Support also NEC Lavie X1475JAS
     - [armhf] spi: spi-sun4i: fix early activation
     - nvme-pci: add NVME_QUIRK_NO_DEEPEST_PS quirk for SOLIDIGM P44 Pro
     - NFS: Avoid flushing data while holding directory locks in nfs_rename()
     - [x86] platform/x86: fujitsu-laptop: Support Lifebook S2110 hotkeys
     - [x86] platform/x86: thinkpad_acpi: Ignore battery threshold change event
       notification
     - [arm64] net: ethernet: ti: am65-cpsw: Lower random mac address error print
       to info
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.142
     - mm/uffd: fix vma operation where start addr cuts part of vma
     - tracing: Fix compilation warning on arm32
     - [arm64] pinctrl: armada-37xx: use correct OUTPUT_VAL register for GPIOs >
       31
     - [arm64] pinctrl: armada-37xx: set GPIO output value before setting
       direction
     - acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio()
     - rtc: Make rtc_time64_to_tm() support dates before 1970
     - rtc: Fix offset calculation for .start_secs < 0
     - usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE
     - usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device
     - USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB
     - Bluetooth: hci_qca: move the SoC type check to the right place
     - usb: usbtmc: Fix timeout value in get_stb
     - [x86] thunderbolt: Do not double dequeue a configuration request
     - gfs2: gfs2_create_inode error handling fix
     - perf/core: Fix broken throttling when max_samples_per_tick=1
     - [arm64] crypto: sun8i-ce-cipher - fix error handling in
       sun8i_ce_cipher_prepare()
     - [powerpc*] crash: Fix non-smp kexec preparation
     - [x86] cpu: Sanitize CPUID(0x80000000) output
     - [arm*] crypto: marvell/cesa - Handle zero-length skcipher requests
     - [arm*] crypto: marvell/cesa - Avoid empty transfer descriptor
     - crypto: lrw - Only add ecb if it is not already there
     - crypto: xts - Only add ecb if it is not already there
     - [amd64] EDAC/skx_common: Fix general protection fault
     - power: reset: at91-reset: Optimize at91_reset()
     - PM: wakeup: Delete space in the end of string shown by pm_show_wakelocks()
     - [x86] mtrr: Check if fixed-range MTRRs exist in mtrr_save_fixed_ranges()
     - ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions"
     - drm/vmwgfx: Add seqno waiter for sync_files
     - drm/amd/pp: Fix potential NULL pointer dereference in
       atomctrl_initialize_mc_reg_table
     - [arm64] media: rkvdec: Fix frame size enumeration
     - [arm64] fpsimd: Discard stale CPU state when handling SME traps
     - [arm64] fpsimd: Fix merging of FPSIMD state during signal return
     - watchdog: exar: Shorten identity name to fit correctly
     - firmware: psci: Fix refcount leak in psci_dt_init
     - [arm64] Support ARM64_VA_BITS=52 when setting ARCH_MMAP_RND_BITS_MAX
     - [arm64,armhf] drm/tegra: rgb: Fix the unbound reference count
     - firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES
     - scsi: qedf: Use designated initializer for struct qed_fcoe_cb_ops
     - wifi: ath11k: fix node corruption in ar->arvifs list
     - IB/cm: use rwlock for MAD agent lock
     - bpf: fix ktls panic with sockmap
     - bpf, sockmap: fix duplicated data transmission
     - bpf, sockmap: Fix panic when calling skb_linearize
     - f2fs: fix to do sanity check on sbi->total_valid_block_count
     - net: ncsi: Fix GCPS 64-bit member variables
     - libbpf: Fix buffer overflow in bpf_object__init_prog
     - wifi: rtw88: do not ignore hardware read error during DPK
     - [arm64] RDMA/hns: Include hnae3.h in hns_roce_hw_v2.h
     - [arm64] scsi: hisi_sas: Call I_T_nexus after soft reset for SATA disk
     - iommu: Protect against overflow in iommu_pgsize()
     - f2fs: clean up w/ fscrypt_is_bounce_page()
     - f2fs: fix to detect gcing page in f2fs_is_cp_guaranteed()
     - libbpf: Use proper errno value in linker
     - netfilter: bridge: Move specific fragmented packet to slow_path instead of
       dropping it
     - netfilter: nft_quota: match correctly when the quota just depleted
     - RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction
     - bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ
     - [arm64,armhf] clk: bcm: rpi: Add NULL check in raspberrypi_clk_register()
     - efi/libstub: Describe missing 'out' parameter in efi_load_initrd
     - tracing: Rename event_trigger_alloc() to trigger_data_alloc()
     - tracing: Fix error handling in event_trigger_parse()
     - libbpf: Use proper errno value in nlattr
     - bpf: Fix WARN() in get_bpf_raw_tp_regs
     - [s390x] bpf: Store backchain even for leaf progs
     - wifi: rtw88: fix the 'para' buffer size to avoid reading out of bounds
     - iommu: remove duplicate selection of DMAR_TABLE
     - wifi: ath9k_htc: Abort software beacon handling if disabled
     - kernfs: Relax constraint in draining guard
     - netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy
     - vfio/type1: Fix error unwind in migration dirty bitmap allocation
     - Bluetooth: MGMT: iterate over mesh commands in mgmt_mesh_foreach()
     - bpf, sockmap: Avoid using sk_socket after free when sending
     - netfilter: nft_tunnel: fix geneve_opt dump
     - net: usb: aqc111: fix error handling of usbnet read calls
     - RDMA/cma: Fix hang when cma_netevent_callback fails to queue_work
     - bpf: Avoid __bpf_prog_ret0_warn when jit fails
     - net: lan743x: rename lan743x_reset_phy to lan743x_hw_reset_phy
     - net: phy: mscc: Fix memory leak when using one step timestamping
     - calipso: Don't call calipso functions for AF_INET sk.
     - net: openvswitch: Fix the dead loop of MPLS parse
     - net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames
     - f2fs: use d_inode(dentry) cleanup dentry->d_inode
     - f2fs: fix to correct check conditions in f2fs_cross_rename
     - [arm64] dts: qcom: sm8250: Fix CPU7 opp table
     - [arm64] dts: mediatek: mt8195: Reparent vdec1/2 and venc1 power domains
     - [arm64] dts: qcom: sdm660-xiaomi-lavender: Add missing SD card detect GPIO
     - [arm64] dts: imx8mm-beacon: Fix RTC capacitive load
     - [arm64] dts: imx8mn-beacon: Fix RTC capacitive load
     - [arm64] dts: mt6359: Add missing 'compatible' property to regulators node
     - [arm64] dts: qcom: sdm660-lavender: Add missing USB phy supply
     - [arm64] dts: qcom: sda660-ifc6560: Fix dt-validate warning
     - Squashfs: check return result of sb_min_blocksize
     - ocfs2: fix possible memory leak in ocfs2_finish_quota_recovery
     - nilfs2: add pointer check for nilfs_direct_propagate()
     - nilfs2: do not propagate ENOENT error from nilfs_btree_propagate()
     - bus: fsl-mc: fix double-free on mc_dev
     - dt-bindings: vendor-prefixes: Add Liontron name
     - [arm64] dts: rockchip: disable unrouted USB controllers and PHY on RK3399
       Puma with Haikou
     - [armhf] soc: aspeed: lpc: Fix impossible judgment condition
     - [armhf] soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop()
     - fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod()
     - randstruct: gcc-plugin: Remove bogus void member
     - randstruct: gcc-plugin: Fix attribute addition
     - perf build: Warn when libdebuginfod devel files are not available
     - perf ui browser hists: Set actions->thread before calling do_zoom_thread()
     - dm: don't change md if dm_table_set_restrictions() fails
     - dm: free table mempools if not used in __bind
     - backlight: pm8941: Add NULL check in wled_configure()
     - mtd: nand: ecc-mxic: Fix use of uninitialized variable ret
     - hwmon: (asus-ec-sensors) check sensor index in read_string()
     - perf intel-pt: Fix PEBS-via-PT data_src
     - perf scripts python: exported-sql-viewer.py: Fix pattern matching with
       Python 3
     - remoteproc: qcom_wcnss_iris: Add missing put_device() on error in probe
     - remoteproc: k3-r5: Drop check performed in
       k3_r5_rproc_{mbox_callback/kick}
     - perf tests switch-tracking: Fix timestamp comparison
     - perf record: Fix incorrect --user-regs comments
     - nfs: clear SB_RDONLY before getting superblock
     - nfs: ignore SB_RDONLY when remounting nfs
     - [arm64] PCI: cadence: Fix runtime atomic count underflow
     - [arm64] phy: qcom-qmp-usb: Fix an NULL vs IS_ERR() bug
     - [arm64] dmaengine: ti: Add NULL check in udma_probe()
     - PCI/DPC: Initialize aer_err_info before using it
     - usb: renesas_usbhs: Reorder clock handling and power management in probe
     - serial: Fix potential null-ptr-deref in mlb_usio_probe()
     - counter: interrupt-cnt: Protect enable/disable OPs with mutex
     - coresight: prevent deactivate active config while enabling the config
     - vt: remove VT_RESIZE and VT_RESIZEX from vt_compat_ioctl()
     - net: stmmac: platform: guarantee uniqueness of bus_id
     - gve: Fix RX_BUFFERS_POSTED stat to report per-queue fill_cnt
     - net: tipc: fix refcount warning in tipc_aead_encrypt
     - net/mlx4_en: Prevent potential integer overflow calculating Hz
     - Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION
     - ice: create new Tx scheduler nodes for new queues only
     - ice: fix rebuilding the Tx scheduler tree for large queue counts
     - [armhf] net: dsa: tag_brcm: legacy: fix pskb_may_pull length
     - net: stmmac: make sure that ptp_rate is not 0 before configuring
       timestamping
     - net: fix udp gso skb_segment after pull from frag_list
     - vmxnet3: correctly report gso type for UDP tunnels
     - PM: sleep: Fix power.is_suspended cleanup for direct-complete devices
     - gve: add missing NULL check for gve_alloc_pending_packet() in TX DQO
     - netfilter: nf_set_pipapo_avx2: fix initial map fill
     - wireguard: device: enable threaded NAPI
     - seg6: Fix validation of nexthop addresses
     - fix propagation graph breakage by MOVE_MOUNT_SET_GROUP move_mount(2)
     - do_change_type(): refuse to operate on unmounted/not ours mounts
     - xfs: fix interval filtering in multi-step fsmap queries
     - xfs: fix integer overflows in the fsmap rtbitmap and logdev backends
     - xfs: fix getfsmap reporting past the last rt extent
     - xfs: clean up the rtbitmap fsmap backend
     - xfs: fix logdev fsmap query result filtering
     - xfs: validate fsmap offsets specified in the query keys
     - xfs: fix xfs_btree_query_range callers to initialize btree rec fully
     - xfs: fix an agbno overflow in __xfs_getfsmap_datadev
     - xfs: fix the contact address for the sysfs ABI documentation
     - xfs: verify buffer, inode, and dquot items every tx commit
     - xfs: use consistent uid/gid when grabbing dquots for inodes
     - xfs: declare xfs_file.c symbols in xfs_file.h
     - xfs: create a new helper to return a file's allocation unit
     - xfs: Fix xfs_flush_unmap_range() range for RT
     - xfs: Fix xfs_prepare_shift() range for RT
     - xfs: don't walk off the end of a directory data block (CVE-2024-41013)
     - xfs: remove unused parameter in macro XFS_DQUOT_LOGRES
     - xfs: attr forks require attr, not attr2
     - xfs: conditionally allow FS_XFLAG_REALTIME changes if S_DAX is set
     - xfs: Fix the owner setting issue for rmap query in xfs fsmap
     - xfs: use XFS_BUF_DADDR_NULL for daddrs in getfsmap code
     - xfs: take m_growlock when running growfsrt
     - xfs: reset rootdir extent size hint after growfsrt
     - pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id()
     - Input: synaptics-rmi - fix crash with unsupported versions of F34
     - [arm64] serial: sh-sci: Check if TX data was written to device in
       .tx_empty()
     - [arm64] serial: sh-sci: Move runtime PM enable to sci_probe_single()
     - [arm64] serial: sh-sci: Clean sci_ports[0] after at earlycon exit
     - scsi: core: ufs: Fix a hang in the error handler
     - Bluetooth: hci_core: fix list_for_each_entry_rcu usage
     - Bluetooth: MGMT: Fix UAF on mgmt_remove_adv_monitor_complete
     - ptp: remove ptp->n_vclocks check logic in ptp_vclock_in_use()
     - ath10k: snoc: fix unbalanced IRQ enable in crash recovery
     - wifi: ath11k: remove unused function ath11k_tm_event_wmi()
     - wifi: ath11k: fix soc_dp_stats debugfs file permission
     - wifi: ath11k: convert timeouts to secs_to_jiffies()
     - wifi: ath11k: avoid burning CPU in ath11k_debugfs_fw_stats_request()
     - wifi: ath11k: don't use static variables in
       ath11k_debugfs_fw_stats_process()
     - wifi: ath11k: don't wait when there is no vdev started
     - wifi: ath11k: validate ath11k_crypto_mode on top of
       ath11k_core_qmi_firmware_ready
     - regulator: max20086: Fix refcount leak in max20086_parse_regulators_dt()
     - pinctrl: qcom: pinctrl-qcm2290: Add missing pins
     - scsi: iscsi: Fix incorrect error path labels for flashnode operations
     - net_sched: sch_sfq: fix a potential crash on gso_skb handling
     - [powerpc*] powernv/memtrace: Fix out of bounds issue in memtrace mmap
       (CVE-2025-38088)
     - [powerpc*] vas: Return -EINVAL if the offset is non-zero in mmap()
     - [arm64] drm/meson: use unsigned long long / Hz for frequency types
     - [arm64] drm/meson: fix debug log statement when setting the HDMI clocks
     - [arm64] drm/meson: use vclk_freq instead of pixel_freq in debug print
     - [arm64] drm/meson: fix more rounding issues with 59.94Hz modes
     - i40e: return false from i40e_reset_vf if reset is in progress
     - i40e: retry VFLR handling if there is ongoing VF reset
     - ACPI: CPPC: Fix NULL pointer dereference when nosmp is used
     - net: Fix TOCTOU issue in sk_is_readable()
     - macsec: MACsec SCI assignment for ES = 0
     - net: mdio: C22 is now optional, EOPNOTSUPP if not provided
     - net/mdiobus: Fix potential out-of-bounds read/write access
     - Bluetooth: Fix NULL pointer deference on eir_get_service_data
     - Bluetooth: hci_sync: Fix broadcast/PA when using an existing instance
     - Bluetooth: MGMT: Fix sparse errors
     - net/mlx5: Ensure fw pages are always allocated on same NUMA
     - net/mlx5: Fix return value when searching for existing flow group
     - net/mlx5e: Fix leak of Geneve TLV option object
     - net_sched: prio: fix a race in prio_tune() (CVE-2025-38083)
     - net_sched: red: fix a race in __red_change()
     - net_sched: tbf: fix a race in tbf_change()
     - net_sched: ets: fix a race in ets_qdisc_change()
     - fs/filesystems: Fix potential unsigned integer underflow in fs_name()
     - nvmet-fcloop: access fcpreq only when holding reqlock
     - perf: Ensure bpf_perf_link path is properly serialized
     - bio: Fix bio_first_folio() for SPARSEMEM without VMEMMAP
     - tools/resolve_btfids: Fix build when cross compiling kernel with clang.
     - ALSA: usb-audio: Add implicit feedback quirk for RODE AI-1
     - HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse()
     - Revert "io_uring: ensure deferred completions are posted for multishot"
     - posix-cpu-timers: fix race between handle_posix_cpu_timers() and
       posix_cpu_timer_del()
     - drm/amd/display: Do not add '-mhard-float' to dml_ccflags for clang
     - kbuild: Add KBUILD_CPPFLAGS to as-option invocation
     - usb: usbtmc: Fix read_stb function and get_stb ioctl
     - VMCI: fix race between vmci_host_setup_notify and vmci_ctx_unset_notify
     - usb: Flush altsetting 0 endpoints before reinitializating them after
       reset.
     - usb: typec: tcpm/tcpci_maxim: Fix bounds check in process_rx()
     - [arm64] xen/arm: call uaccess_ttbr0_enable for dm_op hypercall
     - [x86] iopl: Cure TIF_IO_BITMAP inconsistencies
     - calipso: unlock rcu before returning -EAFNOSUPPORT
     - net: usb: aqc111: debug info before sanitation
     - [arm64] drm/meson: Use 1000ULL when operating with mode->clock
     - configfs: Do not override creating attribute file failure in
       populate_attrs()
     - crypto: marvell/cesa - Do not chain submitted requests
     - gfs2: move msleep to sleepable context
     - [arm64,armhf] ASoC: meson: meson-card-utils: use of_property_present() for
       DT parsing
     - io_uring: account drain memory to cgroup
     - [powerpc*] pseries/msi: Avoid reading PCI device registers in reduced
       power states
     - regulator: max20086: Fix MAX200086 chip id
     - regulator: max20086: Change enable gpio to optional
     - net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr()
     - net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid()
     - wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback()
     - wifi: ath11k: fix rx completion meta data corruption
     - wifi: ath11k: fix ring-buffer corruption
     - nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request
     - nfsd: Initialize ssc before laundromat_work to prevent NULL dereference
     - jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata()
     - wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723
     - media: cxusb: no longer judge rbuf when the write fails
     - media: gspca: Add error handling for stv06xx_read_sensor()
     - media: omap3isp: use sgtable-based scatterlist wrappers
     - media: v4l2-dev: fix error handling in __video_register_device()
     - media: videobuf2: use sgtable-based scatterlist wrappers
     - media: vidtv: Terminating the subsequent process of initialization failure
     - media: vivid: Change the siize of the composing
     - media: uvcvideo: Return the number of processed controls
     - media: uvcvideo: Send control events for partial succeeds
     - media: uvcvideo: Fix deferred probing error
     - [armel,armhf] 9447/1: arm/memremap: fix arch_memremap_can_ram_remap()
     - bus: mhi: host: Fix conflict between power_up and SYSERR
     - can: tcan4x5x: fix power regulator retrieval during probe
     - ceph: set superblock s_magic for IMA fsmagic matching
     - cgroup,freezer: fix incomplete freezing when attaching tasks
     - ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330
     - bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device
     - bus: fsl-mc: fix GET/SET_TAILDROP command ids
     - ext4: inline: fix len overflow in ext4_prepare_inline_data
     - ext4: fix calculation of credits for extent tree modification
     - ext4: factor out ext4_get_maxbytes()
     - ext4: ensure i_size is smaller than maxbytes
     - Input: ims-pcu - check record size in ims_pcu_flash_firmware()
     - Input: gpio-keys - fix possible concurrent access in gpio_keys_irq_timer()
     - f2fs: prevent kernel warning due to negative i_nlink from corrupted image
     - f2fs: fix to do sanity check on sit_bitmap_size
     - NFC: nci: uart: Set tty->disc_data only in success path
     - net: ftgmac100: select FIXED_PHY
     - fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var
     - vgacon: Add check for vc_origin address range in vgacon_scroll()
     - [arm64] clk: meson-g12a: add missing fclk_div2 to spicc
     - ipc: fix to protect IPCS lookups using RCU
     - RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction
     - mm: fix ratelimit_pages update error in dirty_ratio_handler()
     - [armhf] mtd: rawnand: sunxi: Add randomizer configuration in
       sunxi_nfc_hw_ecc_write_chunk
     - [armhf] mtd: nand: sunxi: Add randomizer configuration before randomizer
       enable
     - [x86] KVM: SVM: Clear current_vmcb during vCPU free for all *possible*
       CPUs
     - dm-mirror: fix a tiny race condition
     - ftrace: Fix UAF when lookup kallsym after ftrace disabled
     - net: ch9200: fix uninitialised access during mii_nway_restart
       (CVE-2025-38086)
     - [s390x] KVM: s390: rename PROT_NONE to PROT_TYPE_DUMMY
     - staging: iio: ad5933: Correct settling cycles encoding per datasheet
     - regulator: max14577: Add error check for max14577_read_reg()
     - remoteproc: core: Cleanup acquired resources when rproc_handle_resources()
       fails in rproc_attach()
     - remoteproc: core: Release rproc->clean_table after rproc_attach() fails
     - cifs: reset connections for all channels when reconnect requested
     - uio_hv_generic: Use correct size for interrupt and monitor pages
     - PCI: cadence-ep: Correct PBA offset in .set_msix() callback
     - PCI: Add ACS quirk for Loongson PCIe
     - PCI: Fix lock symmetry in pci_slot_unlock()
     - PCI: dw-rockchip: Fix PHY function call sequence in
       rockchip_pcie_phy_deinit()
     - iio: accel: fxls8962af: Fix temperature scan element sign
     - iio: imu: inv_icm42600: Fix temperature calculation
     - iio: adc: ad7606_spi: fix reg write value mask
     - ACPICA: fix acpi operand cache leak in dswstate.c
     - [x86] ASoC: amd: yc: Add quirk for Lenovo Yoga Pro 7 14ASP9
     - clocksource: Fix the CPUs' choice in the watchdog per CPU verification
     - mmc: Add quirk to disable DDR50 tuning
     - ACPICA: Avoid sequence overread in call to strncmp()
     - ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change
     - ACPI: bus: Bail out if acpi_kobj registration fails
     - ACPICA: fix acpi parse and parseext cache leaks
     - power: supply: bq27xxx: Retrieve again when busy
     - ACPICA: utilities: Fix overflow check in vsnprintf()
     - PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn()
     - ACPI: battery: negate current when discharging
     - net: macb: Check return value of dma_set_mask_and_coherent()
     - net: lan743x: Modify the EEPROM and OTP size for PCI1xxxx devices
     - tipc: use kfree_sensitive() for aead cleanup
     - bpf: Check rcu_read_lock_trace_held() in bpf_map_lookup_percpu_elem()
     - i2c: designware: Invoke runtime suspend on quick slave re-registration
     - emulex/benet: correct command version selection in be_cmd_get_stats()
     - wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R
     - wifi: mt76: mt7921: add 160 MHz AP for mt7922 device
     - sctp: Do not wake readers in __sctp_write_space()
     - cpufreq: scmi: Skip SCMI devices that aren't used by the CPUs
     - i2c: tegra: check msg length in SMBUS block read
     - i2c: npcm: Add clock toggle recovery
     - net: dlink: add synchronization for stats update
     - wifi: ath11k: Fix QMI memory reuse logic
     - tcp: always seek for minimal rtt in tcp_rcv_rtt_update()
     - tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows
     - [x86] sgx: Prevent attempts to reclaim poisoned pages
     - ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT
     - net: atlantic: generate software timestamp just before the doorbell
     - [arm64] pinctrl: armada-37xx: propagate error from
       armada_37xx_pmx_set_by_name()
     - [arm64] pinctrl: armada-37xx: propagate error from
       armada_37xx_gpio_get_direction()
     - [arm64] pinctrl: armada-37xx: propagate error from
       armada_37xx_pmx_gpio_set_direction()
     - [arm64] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get()
     - net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info
     - net: vertexcom: mse102x: Return code for mse102x_rx_pkt_spi
     - wireless: purelifi: plfxlc: fix memory leak in plfxlc_usb_wreq_asyn()
     - wifi: mac80211: do not offer a mesh path if forwarding is disabled
     - clk: rockchip: rk3036: mark ddrphy as critical
     - libbpf: Add identical pointer detection to btf_dedup_is_equiv()
     - scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands
     - [amd64] iommu/amd: Ensure GA log notifier callbacks finish running before
       module unload
     - wifi: mac80211_hwsim: Prevent tsf from setting if beacon is disabled
     - net: bridge: mcast: update multicast contex when vlan state is changed
     - net: bridge: mcast: re-implement br_multicast_{enable, disable}_port
       functions
     - vxlan: Do not treat dst cache initialization errors as fatal
     - software node: Correct a OOB check in software_node_get_reference_args()
     - pinctrl: mcp23s08: Reset all pins to input at probe
     - scsi: lpfc: Use memcpy() for BIOS version
     - sock: Correct error checking condition for (assign|release)_proto_idx()
     - i40e: fix MMIO write access to an invalid page in i40e_clear_hw
     - ice: fix check for existing switch rule
     - bpf, sockmap: Fix data lost during EAGAIN retries
     - net: ethernet: cortina: Use TOE/TSO on all TCP
     - fbcon: Make sure modelist not set on unregistered console
     - watchdog: da9052_wdt: respect TWDMIN
     - bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value
     - [armhf] OMAP2+: Fix l4ls clk domain handling in STANDBY
     - Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices
       first"
     - [x86] platform/x86: dell_rbu: Fix list usage
     - [x86] platform/x86: dell_rbu: Stop overwriting data buffer
     - [powerpc*] eeh: Fix missing PE bridge reconfiguration during VFIO EEH
       recovery
     - Revert "x86/bugs: Make spectre user default depend on
       MITIGATION_SPECTRE_V2" on v6.6 and older
     - drivers/rapidio/rio_cm.c: prevent possible heap overwrite (CVE-2025-38090)
     - jffs2: check that raw node were preallocated before writing summary
     - jffs2: check jffs2_prealloc_raw_node_refs() result in few other places
     - smb: improve directory cache reuse for readdir operations
     - scsi: storvsc: Increase the timeouts to storvsc_timeout
     - scsi: s390: zfcp: Ensure synchronous unit_add
     - net_sched: sch_sfq: reject invalid perturb period
     - udmabuf: use sgtable-based scatterlist wrappers
     - ksmbd: fix null pointer dereference in destroy_previous_session
     - selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len
     - atm: Revert atm_account_tx() if copy_from_iter_full() fails.
     - Input: sparcspkr - avoid unannotated fall-through
     - wifi: cfg80211: init wiphy_work before allocating rfkill fails
       (CVE-2025-22119)
     - ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound
       card
     - ALSA: hda/intel: Add Thinkpad E15 to PM deny list
     - ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged
     - mm/hugetlb: unshare page tables during VMA split, not before
       (CVE-2025-38084)
     - mm: hugetlb: independent PMD page table shared count (CVE-2024-57883)
     - mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race
     - mm/huge_memory: fix dereferencing invalid pmd migration entry
       (CVE-2025-37958)
     - net: Fix checksum update for ILA adj-transport
     - bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE
     - erofs: remove unused trace event erofs_destroy_inode
     - [arm64] drm/msm/disp: Correct porch timing for SDM845
     - [arm64] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate
     - ionic: Prevent driver/fw getting out of sync on devcmd(s)
     - drm/nouveau/bl: increase buffer size to avoid truncate warning
     - hwmon: (occ) Rework attribute registration for stack usage
     - hwmon: (occ) fix unaligned accesses
     - pldmfw: Select CRC32 when PLDMFW is selected
     - aoe: clean device rq_list in aoedev_downdev()
     - net: ice: Perform accurate aRFS flow match
     - ptp: fix breakage after ptp_vclock_in_use() rework
     - ptp: allow reading of currently dialed frequency to succeed on
       free-running clocks
     - wifi: carl9170: do not ping device which has failed to load firmware
     - mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu().
     - atm: atmtcp: Free invalid length skb in atmtcp_c_send().
     - tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen()
       behavior
     - tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer
     - tcp: fix passive TFO socket having invalid NAPI ID
     - net: microchip: lan743x: Reduce PTP timeout on HW failure
     - net: lan743x: fix potential out-of-bounds write in
       lan743x_ptp_io_event_clock_get()
     - calipso: Fix null-ptr-deref in calipso_req_{set,del}attr().
     - net: atm: add lec_mutex
     - net: atm: fix /proc/net/atm/lec handling
     - dt-bindings: i2c: nvidia,tegra20-i2c: Specify the required properties
     - [x86] platform/x86: ideapad-laptop: add missing Ideapad Pro 5 fn keys
     - [arm64] dts: ti: k3-j721e-sk: Add DT nodes for power regulators
     - serial: sh-sci: Increment the runtime usage counter for the earlycon
       device
     - Revert "cpufreq: tegra186: Share policy per cluster"
     - smb: client: fix first command failure during re-negotiation
     - [s390x] pci: Fix __pcilg_mio_inuser() inline assembly
     - perf: Fix sample vs do_exit()
     - [arm64] ptrace: Fix stack-out-of-bounds read in
       regs_get_kernel_stack_nth()
     - scsi: elx: efct: Fix memory leak in efct_hw_parse_filter()
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.143
     - cifs: Correctly set SMB1 SessionKey field in Session Setup Request
     - cifs: Fix cifs_query_path_info() for Windows NT servers
     - NFSv4: Always set NLINK even if the server doesn't support it
     - NFSv4.2: fix listxattr to return selinux security label
     - [arm*] mailbox: Not protect module_put with spin_lock_irqsave
     - leds: multicolor: Fix intensity setting while SW blinking
     - NFSv4: xattr handlers should check for absent nfs filehandles
     - ksmbd: allow a filename to contain special characters on SMB3.1.1 posix
       extension
     - md/md-bitmap: fix dm-raid max_write_behind setting
     - amd/amdkfd: fix a kfd_process ref leak
     - bcache: fix NULL pointer in cache_set_flush()
     - iio: pressure: zpa2326: Use aligned_s64 for the timestamp
     - [arm64] coresight: Only check bottom two claim bits
     - [arm64,armhf] usb: dwc2: also exit clock_gating when stopping udc while
       suspended
     - iio: adc: ad_sigma_delta: Fix use of uninitialized status_pos
     - usb: potential integer overflow in usbg_make_tpg()
     - usb: common: usb-conn-gpio: use a unique name for usb connector device
     - usb: Add checks for snprintf() calls in usb_alloc_dev()
     - usb: cdc-wdm: avoid setting WDM_READ for ZLP-s
     - usb: typec: displayport: Receive DP Status Update NAK request exit dp
       altmode
     - usb: typec: mux: do not return on EOPNOTSUPP in {mux, switch}_set
     - ALSA: hda: Ignore unsol events for cards being shut down
     - ALSA: hda: Add new pci id for AMD GPU display HD audio controller
     - ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock
     - ceph: fix possible integer overflow in ceph_zero_objects()
     - ovl: Check for NULL d_inode() in ovl_dentry_upper()
     - btrfs: handle csum tree error with rescue=ibadroots correctly
     - [x86] drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on DG1
     - [x86] Revert "drm/i915/gem: Allow EXEC_CAPTURE on recoverable contexts on
       DG1"
     - fs/jfs: consolidate sanity checking in dbMount
     - jfs: validate AG parameters in dbMount() to prevent crashes
       (CVE-2025-38230)
     - media: imx-jpeg: Cleanup after an allocation error (CVE-2025-38225)
     - f2fs: don't over-report free space or inodes in statvfs
     - fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in
       fb_videomode_to_var (CVE-2025-38215)
     - drivers: hv, hyperv_fb: Untangle and refactor Hyper-V panic notifiers
     - Drivers: hv: vmbus: Remove second mapping of VMBus monitor pages
     - Drivers: hv: move panic report code from vmbus to hv early init code
     - Drivers: hv: Change hv_free_hyperv_page() to take void * argument
     - Drivers: hv: vmbus: Leak pages if set_memory_encrypted() fails
       (CVE-2024-36913)
     - Drivers: hv: Allocate interrupt and monitor pages aligned to system page
       boundary
     - Drivers: hv: vmbus: Add utility function for querying ring size
     - uio_hv_generic: Query the ringbuffer size for device
     - uio_hv_generic: Align ring size to system page
     - vgacon: switch vgacon_scrolldelta() and vgacon_restore_screen()
     - vgacon: remove unneeded forward declarations
     - tty: vt: make init parameter of consw::con_init() a bool
     - tty: vt: sanitize arguments of consw::con_clear()
     - tty: vt: make consw::con_switch() return a bool
     - dummycon: Trigger redraw when switching consoles with deferred takeover
     - af_unix: Don't call skb_get() for OOB skb.
     - af_unix: Don't leave consecutive consumed OOB skbs.
     - i2c: tiny-usb: disable zero-length read messages
     - i2c: robotfuzz-osif: disable zero-length read messages
     - [x86] ASoC: amd: yc: Add DMI quirk for Lenovo IdeaPad Slim 5 15
     - [s390x] pkey: Prevent overflow in size calculation for memdup_user()
     - atm: clip: prevent NULL deref in clip_push()
     - ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3()
     - attach_recursive_mnt(): do not lock the covering tree when sliding
       something under it
     - libbpf: Fix null pointer dereference in btf_dump__free on allocation
       failure
     - wifi: mac80211: fix beacon interval calculation overflow
     - af_unix: Don't set -ECONNRESET for consumed OOB skb.
     - vsock/uapi: fix linux/vm_sockets.h userspace compilation errors
     - atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister().
     - ALSA: hda/realtek: Fix built-in mic on ASUS VivoBook X507UAR
       (Closes: #1108069)
     - net: selftests: fix TCP packet checksum
     - [arm64] drm/bridge: ti-sn65dsi86: make use of debugfs_init callback
     - [arm64] drm/bridge: ti-sn65dsi86: Add HPD for DisplayPort connector type
     - staging: rtl8723bs: Avoid memset() in aes_cipher() and aes_decipher()
     - dt-bindings: serial: 8250: Make clocks and clock-frequency exclusive
     - serial: imx: Restore original RXTL for console to fix data loss
     - Bluetooth: L2CAP: Fix L2CAP MTU negotiation
     - dm-raid: fix variable in journal device check
     - btrfs: fix a race between renames and directory logging
     - btrfs: update superblock's device bytes_used when dropping chunk
     - HID: lenovo: Restrict F7/9/11 mode to compact keyboards only
     - HID: wacom: fix memory leak on kobject creation failure
     - HID: wacom: fix memory leak on sysfs attribute creation failure
     - HID: wacom: fix kobject reference count leak
     - scsi: megaraid_sas: Fix invalid node index
     - [arm64,armhf] drm/etnaviv: Protect the scheduler's pending list with its
       lock
     - [arm64,armhf] drm/tegra: Assign plane type before registration
     - [arm64,armhf] drm/tegra: Fix a possible null pointer dereference
     - drm/udl: Unregister device before cleaning up on disconnect
     - [arm64] drm/msm/gpu: Fix crash when throttling GPU immediately during boot
     - drm/amdkfd: Fix race in GWS queue scheduling
     - drm/amd/display: Add null pointer check for get_first_active_display()
     - drm/amdgpu: amdgpu_vram_mgr_new(): Clamp lpfn to total vram
     - drm/amdgpu: Add kicker device detection
     - ksmbd: Use unsafe_memcpy() for ntlm_negotiate
     - ksmbd: remove unsafe_memcpy use in session setup
     - fs: omfs: Use flexible-array member in struct omfs_extent
     - fbdev: hyperv_fb: Convert comma to semicolon
     - eth: bnxt: fix one of the W=1 warnings about fortified memcpy()
     - bnxt_en: Fix W=1 warning in bnxt_dcb.c from fortify memcpy()
     - bnxt_en: Fix W=stringop-overflow warning in bnxt_dcb.c
     - media: uvcvideo: Rollback non processed entities on error
     - [s390x] entry: Fix last breaking event handling in case of stack
       corruption
     - Kunit to check the longest symbol length
     - [x86] tools: Drop duplicate unlikely() definition in insn_decoder_test.c
     - Revert "ipv6: save dontfrag in cork"
     - nvme: always punt polled uring_cmd end_io work to task_work
     - io_uring/kbuf: account ring io_buffer_list memory
     - [arm64] firmware: arm_scmi: Add a common helper to check if a message is
       supported
     - [arm64] firmware: arm_scmi: Ensure that the message-id supports
       fastchannel
     - [arm64] Restrict pagetable teardown to avoid false warning
     - [arm*] 9354/1: ptrace: Use bitfield helpers
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.144
     - rtc: cmos: use spin_lock_irqsave in cmos_interrupt
     - [s390x] pci: Do not try re-enabling load/store if device is disabled
     - vsock/vmci: Clear the vmci transport packet properly when initializing it
     - mmc: sdhci: Add a helper function for dump register in dynamic debug mode
     - Revert "mmc: sdhci: Disable SD card clock before changing parameters"
       (Closes: #1108065)
     - Bluetooth: hci_sync: revert some mesh modifications
     - Bluetooth: MGMT: set_mesh: update LE scan interval and window
     - Bluetooth: MGMT: mesh_send: check instances prior disabling advertising
     - [arm64,armhf] regulator: gpio: Fix the out-of-bounds access to
       drvdata::gpiods
     - usb: typec: altmodes/displayport: do not index invalid pin_assignments
     - [arm64] dts: apple: t8103: Fix PCIe BCM4377 nodename
     - RDMA/mlx5: Initialize obj_event->obj_sub_list before xa_insert
     - nfs: Clean up /proc/net/rpc/nfs when nfs_fs_proc_net_init() fails.
     - NFSv4/pNFS: Fix a race to wake on NFS_LAYOUT_DRAIN
     - scsi: qla2xxx: Fix DMA mapping test in qla24xx_get_port_database()
     - scsi: qla4xxx: Fix missing DMA mapping error in qla4xxx_alloc_pdu()
     - scsi: ufs: core: Fix spelling of a sysfs attribute name
     - RDMA/mlx5: Fix CC counters query for MPV
     - Bluetooth: Prevent unintended pause by checking if advertising is active
     - btrfs: fix missing error handling when searching for inode refs during log
       replay
     - btrfs: fix iteration of extrefs during log replay
     - ethernet: atl1: Add missing DMA mapping error checks and count errors
     - [armhf] drm/exynos: fimd: Guard display clock control with runtime PM
       calls
     - [arm64] spi: spi-fsl-dspi: Clear completion counter before initiating
       transfer
     - [x86] platform/x86: dell-wmi-sysman: Fix WMI data block retrieval in sysfs
       callbacks
     - [x86] drm/i915/gt: Fix timeline left held on VMA alloc error
     - [x86] drm/i915/gsc: mei interrupt top half should be in irq disabled
       context
     - igc: disable L1.2 PCI-E link substate to avoid performance issue
     - [amd64,arm64] amd-xgbe: align CL37 AN sequence as per databook
     - enic: fix incorrect MTU comparison in enic_change_mtu()
     - rose: fix dangling neighbour pointers in rose_rt_device_down()
     - nui: Fix dma_mapping_error() check
     - net/sched: Always pass notifications when child class becomes empty
     - smb: client: fix race condition in negotiate timeout by using more precise
       timing
     - [arm64] drm/msm: Fix a fence leak in submit error path
     - [arm64] drm/msm: Fix another leak in the submit error path
     - ALSA: sb: Don't allow changing the DMA mode during operations
     - ALSA: sb: Force to disable DMAs once when DMA mode is changed
     - ata: libata-acpi: Do not assume 40 wire cable if no devices are enabled
     - ata: pata_cs5536: fix build on 32-bit UML
     - [powerpc*] Fix struct termio related ioctl macros
     - [x86] ASoC: amd: yc: update quirk data for HP Victus
     - scsi: target: Fix NULL pointer dereference in
       core_scsi3_decode_spec_i_port()
     - aoe: defer rexmit timer downdev work to workqueue
     - wifi: mac80211: drop invalid source address OCB frames
     - wifi: ath6kl: remove WARN on bad firmware input
     - ACPICA: Refuse to evaluate a method if arguments are missing
     - mtd: spinand: fix memory leak of ECC engine conf
     - rcu: Return early if callback is not specified
     - virtio-net: ensure the received length does not exceed allocated size
     - [arm64] drm/v3d: Disable interrupts before resetting the GPU
     - NFSv4/flexfiles: Fix handling of NFS level errors in I/O
     - btrfs: use btrfs_record_snapshot_destroy() during rmdir
     - [arm64] dpaa2-eth: fix xdp_rxq_info leak
     - [x86] platform/x86: think-lmi: Fix class device unregistration
     - [x86] platform/x86: dell-wmi-sysman: Fix class device unregistration
     - net: usb: lan78xx: fix WARN in __netif_napi_del_locked on disconnect
     - xhci: dbctty: disable ECHO flag by default
     - xhci: dbc: Flush queued requests before stopping dbc
     - xhci: Disable stream for xHC controller with XHCI_BROKEN_STREAMS
     - usb: cdnsp: do not disable slot for disabled slot
     - dma-buf: fix timeout handling in dma_resv_wait_timeout v2
     - i2c/designware: Fix an initialization issue
     - Logitech C-270 even more broken
     - [x86] platform/x86: think-lmi: Create ksets consecutively
     - [x86] platform/x86: think-lmi: Fix kobject cleanup
     - usb: typec: displayport: Fix potential deadlock
     - [amd64] Mitigations Transitive Scheduler Attacks (TSA) (CVE-2024-36350,
       CVE-2024-36357)
       + x86/bugs: Rename MDS machinery to something more generic
       + x86/bugs: Add a Transient Scheduler Attacks mitigation
       + KVM: SVM: Advertise TSA CPUID bits to guests
       + x86/process: Move the buffer clearing before MONITOR
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.145
     - [amd64] x86/CPU/AMD: Properly check the TSA microcode
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.146
     - [x86] platform/x86: ideapad-laptop: use usleep_range() for EC polling
     - perf: Revert to requiring CAP_SYS_ADMIN for uprobes
     - Bluetooth: hci_sync: Fix not disabling advertising instance
     - fix proc_sys_compare() handling of in-lookup dentries
     - netlink: Fix wraparounds of sk->sk_rmem_alloc.
     - tipc: Fix use-after-free in tipc_conn_close().
     - vsock: Fix transport_{g2h,h2g} TOCTOU
     - vsock: Fix transport_* TOCTOU
     - vsock: Fix IOCTL_VM_SOCKETS_GET_LOCAL_CID to check also `transport_local`
     - net: phy: smsc: Fix Auto-MDIX configuration when disabled by strap
     - net: phy: smsc: Fix link failure in forced mode with Auto-MDIX
     - atm: clip: Fix potential null-ptr-deref in to_atmarpd().
     - atm: clip: Fix memory leak of struct clip_vcc.
     - atm: clip: Fix infinite recursive call of clip_push().
     - atm: clip: Fix NULL pointer dereference in vcc_sendmsg()
     - net/sched: Abort __tc_modify_qdisc if parent class does not exist
     - maple_tree: fix MA_STATE_PREALLOC flag in mas_preallocate()
     - rxrpc: Fix oops due to non-existence of prealloc backlog struct
     - [x86] boot: Compile boot code with -std=gnu11 too
     - ipmi:msghandler: Fix potential memory corruption in ipmi_create_user()
     - [x86] mce/amd: Fix threshold limit reset
     - [x86] mce: Don't remove sysfs if thresholding sysfs init fails
     - [x86] mce: Make sure CMCI banks are cleared during shutdown on Intel
     - [x86] KVM: x86/xen: Allow 'out of range' event channel ports in IRQ
       routing table.
     - [x86] KVM: SVM: Reject SEV{-ES} intra host migration if vCPU creation is
       in-flight
     - gre: Fix IPv6 multicast route creation. (Closes: #1108430)
     - md/md-bitmap: fix GPF in bitmap_get_stats() (Closes: #1109734)
     - [arm64] pinctrl: qcom: msm: mark certain pins as invalid for interrupts
     - wifi: prevent A-MSDU attacks in mesh networks (CVE-2025-27558)
     - drm/sched: Increment job count before swapping tail spsc queue
     - drm/ttm: fix error handling in ttm_buffer_object_transfer
     - drm/gem: Fix race in drm_gem_handle_create_tail()
     - usb: gadget: u_serial: Fix race condition in TTY wakeup
     - Revert "ACPI: battery: negate current when discharging"
     - kallsyms: fix build without execinfo
     - maple_tree: fix mt_destroy_walk() on root leaf node
     - pwm: mediatek: Ensure to disable clocks in error path
     - smb: server: make use of rdma_destroy_qp()
     - ksmbd: fix a mount write count leak in ksmbd_vfs_kern_path_locked()
     - netlink: Fix rmem check in netlink_broadcast_deliver().
     - netlink: make sure we allow at least one dump skb
     - fs: export anon_inode_make_secure_inode() and fix secretmem LSM bypass
     - btrfs: propagate last_unlink_trans earlier when doing a rmdir
     - xhci: Allow RPM on the USB controller (1022:43f7) by default
     - usb: xhci: quirk for data loss in ISOC transfers
     - Input: xpad - support Acer NGR 200 Controller
     - [arm64,armhf] usb: dwc3: Abort suspend on soft disconnect failure
     - wifi: zd1211rw: Fix potential NULL pointer dereference in
       zd_mac_tx_to_dev()
     - [arm64,armhf] drm/tegra: nvdec: Fix dma_alloc_coherent error check
     - md/raid1: Fix stack memory use after return in raid1_reshape
     - raid10: cleanup memleak at raid10_make_request
     - nbd: fix uaf in nbd_genl_connect() error path
     - erofs: remove the member readahead from struct z_erofs_decompress_frontend
     - erofs: clean up z_erofs_pcluster_readmore()
     - erofs: allocate extra bvec pages directly instead of retrying
     - erofs: avoid on-stack pagepool directly passed by arguments
     - erofs: adapt folios for z_erofs_read_folio()
     - erofs: fix to add missing tracepoint in erofs_read_folio()
     - netfilter: flowtable: account for Ethernet header in nf_flow_pppoe_proto()
     - net: appletalk: Fix device refcount leak in atrtr_create()
     - ibmvnic: Fix hardcoded NUM_RX_STATS/NUM_TX_STATS with dynamic sizeof
     - net: phy: microchip: limit 100M workaround to link-down events on LAN88xx
     - can: m_can: m_can_handle_lost_msg(): downgrade msg lost in rx message to
       debug level
     - net: ll_temac: Fix missing tx_pending check in ethtools_set_ringparam()
     - bnxt_en: Fix DCB ETS validation
     - bnxt_en: Set DMA unmap len correctly for XDP_REDIRECT
     - atm: idt77252: Add missing `dma_map_error()`
     - [x86] ASoC: amd: yc: add quirk for Acer Nitro ANV15-41 internal mic
     - ALSA: hda/realtek - Enable mute LED on HP Pavilion Laptop 15-eg100
     - net: usb: qmi_wwan: add SIMCom 8230C composition
     - HID: lenovo: Add support for ThinkPad X1 Tablet Thin Keyboard Gen2
     - btrfs: fix assertion when building free space tree
     - vt: add missing notification when switching back to text mode
     - HID: Add IGNORE quirk for SMARTLINKTECHNOLOGY
     - HID: quirks: Add quirk for 2 Chicony Electronics HP 5MP Cameras
     - Input: atkbd - do not skip atkbd_deactivate() when skipping
       ATKBD_CMD_GETID
     - vhost-scsi: protect vq->log_used with vq->mutex (CVE-2025-38074)
     - [x86] mm: Disable hugetlb page table sharing on 32-bit
     - [x86] Fix X86_FEATURE_VERW_CLEAR definition
     - ksmbd: fix potential use-after-free in oplock/lease break ack
     - rseq: Fix segfault on registration when rseq_cs is non-zero
       (CVE-2025-38067)
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.147
     - USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition
     - USB: serial: option: add Foxconn T99W640
     - USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI
     - usb: gadget: configfs: Fix OOB read on empty string write
     - [armhf] i2c: stm32: fix the device used for the DMA map
     - [x86] thunderbolt: Fix bit masking in tb_dp_port_set_hops()
     - Input: xpad - set correct controller type for Acer NGR200
     - pch_uart: Fix dma_sync_sg_for_device() nents value
     - HID: core: ensure the allocated report buffer can contain the reserved
       report ID
     - HID: core: ensure __hid_request reserves the report ID as the first byte
     - HID: core: do not bypass hid_hw_raw_request
     - tracing: Add down_write(trace_event_sem) when adding trace event
     - io_uring/poll: fix POLLERR handling
     - phonet/pep: Move call to pn_skb_get_dst_sockaddr() earlier in
       pep_sock_accept()
     - net/mlx5: Update the list of the PCI supported devices
     - af_packet: fix the SO_SNDTIMEO constraint not effective on tpacked_snd()
     - af_packet: fix soft lockup issue caused by tpacket_snd()
     - isofs: Verify inode mode when loading from disk
     - memstick: core: Zero initialize id_reg in h_memstick_read_dev_id()
     - [arm64,armhf] mmc: bcm2835: Fix dma_unmap_sg() nents value
     - mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based
       Positivo models
     - [arm64] mmc: sdhci_am654: Workaround for Errata i2312
     - pmdomain: governor: Consider CPU latency tolerance from pm_domain_cpu_gov
     - smb: client: fix use-after-free in crypt_message when using async crypto
     - [armhf] soc: aspeed: lpc-snoop: Cleanup resources in stack-order
     - [armhf] soc: aspeed: lpc-snoop: Don't disable channels that aren't enabled
     - iio: accel: fxls8962af: Fix use after free in fxls8962af_fifo_flush
     - iio: adc: max1363: Fix MAX1363_4X_CHANS/MAX1363_8X_CHANS[]
     - iio: adc: max1363: Reorder mode_list[] entries
     - iio: adc: stm32-adc: Fix race in installing chained IRQ handler
     - [i386] comedi: pcl812: Fix bit shift out of bounds
     - [i386] comedi: aio_iiro_16: Fix bit shift out of bounds
     - [i386] comedi: das16m1: Fix bit shift out of bounds
     - [i386] comedi: das6402: Fix bit shift out of bounds
     - [i386] comedi: Fail COMEDI_INSNLIST ioctl if n_insns is too large
     - [i386] comedi: Fix some signed shift left operations
     - [i386] comedi: Fix use of uninitialized data in insn_rw_emulate_bits()
     - [i386] comedi: Fix initialization of data for instructions that write to
       subdevice
     - bpf: Reject %p% format string in bprintf-like helpers
     - cachefiles: Fix the incorrect return value in __cachefiles_write()
     - net/sched: sch_qfq: Fix race condition on qfq_aggregate
     - rpl: Fix use-after-free in rpl_do_srh_inline().
     - smb: client: fix use-after-free in cifs_oplock_break
     - nvme: fix misaccounting of nvme-mpath inflight I/O
     - [x86] hwmon: (corsair-cpro) Validate the size of the received input buffer
     - usb: net: sierra: check for no status endpoint
     - Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb()
     - Bluetooth: hci_sync: fix connectable extended advertising when using
       static random address
     - Bluetooth: SMP: If an unallowed command is received consider it a failure
     - Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
     - Bluetooth: btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant
       without board ID
     - net/mlx5: Correctly set gso_size when LRO is used
     - ipv6: mcast: Delay put pmc->idev in mld_del_delrec()
     - netfilter: nf_conntrack: fix crash due to removal of uninitialised entry
     - Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU
     - tls: always refresh the queue when reading sock
     - net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during
       runtime
     - net: bridge: Do not offload IGMP/MLD messages
     - net/sched: Return NULL when htb_lookup_leaf encounters an empty rbtree
     - Revert "cgroup_freezer: cgroup_freezing: Check if not frozen"
     - sched: Change nr_uninterruptible type to unsigned long
     - HID: mcp2221: Set driver data before I2C adapter add
     - clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right
       userns
     - usb: hub: fix detection of high tier USB3 devices behind suspended hubs
     - usb: hub: Fix flushing and scheduling of delayed work that tunes runtime
       pm
     - usb: hub: Fix flushing of delayed work used for post resume purposes
     - usb: hub: Don't try to recover devices lost during warm reset.
     - usb: musb: Add and use inline functions musb_{get,set}_state
     - usb: musb: fix gadget state on disconnect
     - [arm64] usb: dwc3: qcom: Don't leave BCR asserted
     - [arm64] ASoC: fsl_sai: Force a software reset when starting in consumer
       mode
     - Bluetooth: HCI: Set extended advertising data synchronously
     - mm/vmalloc: leave lazy MMU mode on PTE mapping error
     - nvmem: layouts: u-boot-env: remove crc32 endianness conversion
 .
   [ Uwe Kleine-König ]
   * Disable CONFIG_CDROM_PKTCDVD for all archs as this driver is
     orphaned, buggy and not needed. (Closes: #1107479)
 .
   [ Salvatore Bonaccorso ]
   * [amd64] drivers/acpi: Make ACPI_HED built-in
   * Bump ABI to 38
   * [rt] Update to 6.1.141-rt52
   * net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in
     qfq_delete_class
   * [amd64] x86/bugs: Fix use of possibly uninit value in
     amd_check_tsa_microcode()
 .
   [ Kevin P. Fleming ]
   * test-patches: Add defaults for DEBEMAIL and DEBFULLNAME
Checksums-Sha1:
 744010b35c5cad4621458c2dcd0aa5805172216a 290931 linux_6.1.147-1.dsc
 b4de6e21c88a28dfd829b6523250805b34b0093f 137834576 linux_6.1.147.orig.tar.xz
 a00454930c8a8f16040c8057572b6ba8476cadd1 1771736 linux_6.1.147-1.debian.tar.xz
 5bbbec96872d6a8a022d97e3840f6dbf61716eb3 6691 linux_6.1.147-1_source.buildinfo
Checksums-Sha256:
 4d9fafd10424203e46c918802aea63d6448bb3f902b712e84e36b512031b3bc5 290931 linux_6.1.147-1.dsc
 d7d3456dcabe4bb188112a664c21830de479ac86a09fbc11029a8d9da102d319 137834576 linux_6.1.147.orig.tar.xz
 1ec9a92bb0c8e6d64b2d951bf406d2adaf8a526fb6f745f7b6817f012a4e7d7b 1771736 linux_6.1.147-1.debian.tar.xz
 0d6b4f78ababaff48e3c0466c47b28c8a8c2618db614ede156209654d728a1f7 6691 linux_6.1.147-1_source.buildinfo
Files:
 134476f6e222d881c40d012a08da2093 290931 kernel optional linux_6.1.147-1.dsc
 fda001c7d2b3d230f4308357e40591a5 137834576 kernel optional linux_6.1.147.orig.tar.xz
 189db29e338b463c8b82806b49b2c9ee 1771736 kernel optional linux_6.1.147-1.debian.tar.xz
 63888971c02fa205d6db0df2f5b231a1 6691 kernel optional linux_6.1.147-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAmiOD0RfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89ErS0QAI5Okj0LPZ5d2lHd2NIuDwDshYCyzm5s
mCCuIrSzUdJVwv4kbfh/xHXG50ks6hAoQZTdB+AxTvB0kCNYgzyg2Y+5Cjj8l++N
vhZp/TkBOUOEluZx9dQwiO0TEbyMITjRskYm+Nq8KiwCvExi6Q613Ta1U0RL4hmY
GE9XHCOZS9soZtAGNbvOh0xWeUnOSKScrQe7KpuxvNdC6vAeqakZyBdDNS2b5KXn
Y7shuYd+AtAHmQBztPeSzdU9Wh3NGtqi2MqepmFWQSOlTZreH+T+z6AAVBJtVM6P
fFLs+FExVhbhFplTryVsGeZWklcSFqXEeOB6ofgstd4j4oFlbmGLc5o92/XourrT
6bVzWKQVcHQkYiC1uWmqe9zhDkNUXVFpBmmUnp6YFA5abXuhjYLvN8FS6YalW351
TxxyYWpjrCTiV0bKXqF4YIDFSswdjr0GyI1WTto8hSvbsPNtJ7cTjQD6cflrRyJ+
JJPN8SyFd3Xmp5OqpJyk3XllK+onX4oHyIvflEPFpaOBIGzMYofXspFFEg6ljJtB
7/dKQArG6C71TLuItGN3Z98wVb1goXETT7naUiHD0TsqJE8t0sV66ZE2S9TcLXLH
XfBoUPpmB4RAuOzwSkXjSHMbb47PJLBPSvbVFmiTnT2L3qiOVpRe/9OR6pU1tx/s
WgUP7liRW1r/
=0WX3
-----END PGP SIGNATURE-----

#1108430#58
Date:
2025-08-28 17:02:29 UTC
From:
To:
We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 1108430@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso <carnil@debian.org> (supplier of updated linux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)
Format: 1.8
Date: Tue, 12 Aug 2025 05:28:04 +0200
Source: linux
Architecture: source
Version: 6.12.41-1
Distribution: trixie-security
Urgency: high
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Salvatore Bonaccorso <carnil@debian.org>
Closes: 1088522 1108430 1109344 1109676 1109734 1109799
Changes:
 linux (6.12.41-1) trixie-security; urgency=high
 .
   * New upstream stable update:
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.39
     - eventpoll: don't decrement ep refcount while still holding the ep mutex
       (CVE-2025-38349)
     - drm/amdgpu/discovery: use specific ip_discovery.bin for legacy asics
     - drm/amdgpu/ip_discovery: add missing ip_discovery fw
     - [s390x] crypto: s390/sha - Fix uninitialized variable in SHA-1 and SHA-2
     - drm/amdgpu: Replace Mutex with Spinlock for RLCG register access to avoid
       Priority Inversion in SRIOV (CVE-2025-38104)
     - [amd64] ASoC: Intel: SND_SOC_INTEL_SOF_BOARD_HELPERS select
       SND_SOC_ACPI_INTEL_MATCH
     - [amd64] ASoC: Intel: soc-acpi: arl: Correct naming of a cs35l56 address
       struct
     - [amd64] ASoC: Intel: soc-acpi: arl: Add match entries for new cs42l43
       laptops
     - [amd64] ASoC: soc-acpi: add get_function_tplg_files ops
     - [amd64] ASoC: Intel: add sof_sdw_get_tplg_files ops
     - [amd64] ASoC: Intel: soc-acpi-intel-arl-match: set get_function_tplg_files
       ops
     - [amd64] ASoC: Intel: soc-acpi: arl: Correct order of cs42l43 matches
     - perf/core: Fix the WARN_ON_ONCE is out of lock protected region
     - irqchip/irq-msi-lib: Select CONFIG_GENERIC_MSI_IRQ
     - sched/core: Fix migrate_swap() vs. hotplug
     - perf: Revert to requiring CAP_SYS_ADMIN for uprobes
     - ASoC: cs35l56: probe() should fail if the device ID is not recognized
     - Bluetooth: hci_sync: Fix not disabling advertising instance
     - Bluetooth: hci_event: Fix not marking Broadcast Sink BIS as connected
     - pinctrl: amd: Clear GPIO debounce for suspend
     - fix proc_sys_compare() handling of in-lookup dentries
     - sched/deadline: Fix dl_server runtime calculation formula
     - bnxt_en: eliminate the compile warning in bnxt_request_irq due to
       CONFIG_RFS_ACCEL
     - [arm64] poe: Handle spurious Overlay faults
     - [arm64] net: phy: qcom: move the WoL function to shared library
     - [arm64] net: phy: qcom: qca808x: Fix WoL issue by utilizing
       at8031_set_wol()
     - netlink: Fix wraparounds of sk->sk_rmem_alloc.
     - vsock: fix `vsock_proto` declaration
     - tipc: Fix use-after-free in tipc_conn_close().
     - tcp: Correct signedness in skb remaining space calculation
     - vsock: Fix transport_{g2h,h2g} TOCTOU
     - vsock: Fix transport_* TOCTOU
     - vsock: Fix IOCTL_VM_SOCKETS_GET_LOCAL_CID to check also `transport_local`
     - net: stmmac: Fix interrupt handling for level-triggered mode in DWC_XGMAC2
     - net: phy: smsc: Fix Auto-MDIX configuration when disabled by strap
     - net: phy: smsc: Force predictable MDI-X state on LAN87xx
     - net: phy: smsc: Fix link failure in forced mode with Auto-MDIX
     - atm: clip: Fix potential null-ptr-deref in to_atmarpd().
     - atm: clip: Fix memory leak of struct clip_vcc.
     - atm: clip: Fix infinite recursive call of clip_push().
     - atm: clip: Fix NULL pointer dereference in vcc_sendmsg()
     - [arm64] net: ethernet: ti: am65-cpsw-nuss: Fix skb size by accounting for
       skb_shared_info
     - net/sched: Abort __tc_modify_qdisc if parent class does not exist
     - rxrpc: Fix bug due to prealloc collision
     - rxrpc: Fix oops due to non-existence of prealloc backlog struct
     - ipmi:msghandler: Fix potential memory corruption in ipmi_create_user()
     - [amd64] x86/mce/amd: Add default names for MCA banks and blocks
     - [amd64] x86/mce/amd: Fix threshold limit reset
     - [amd64] x86/mce: Don't remove sysfs if thresholding sysfs init fails
     - [amd64] x86/mce: Ensure user polling settings are honored when restarting
       timer
     - [amd64] x86/mce: Make sure CMCI banks are cleared during shutdown on Intel
     - [amd64] KVM: x86/xen: Allow 'out of range' event channel ports in IRQ
       routing table.
     - [amd64] KVM: SVM: Add missing member in SNP_LAUNCH_START command structure
     - [amd64] KVM: SVM: Reject SEV{-ES} intra host migration if vCPU creation is
       in-flight
     - KVM: Allow CPU to reschedule while setting per-page memory attributes
     - ASoC: fsl_sai: Force a software reset when starting in consumer mode
     - gre: Fix IPv6 multicast route creation. (Closes: #1108430)
     - md/md-bitmap: fix GPF in bitmap_get_stats() (Closes: #1109734)
     - [arm64] pinctrl: qcom: msm: mark certain pins as invalid for interrupts
     - pwm: Fix invalid state detection
     - pwm: mediatek: Ensure to disable clocks in error path
     - wifi: prevent A-MSDU attacks in mesh networks (CVE-2025-27558)
     - wifi: mwifiex: discard erroneous disassoc frames on STA interface
     - wifi: mt76: mt7921: prevent decap offload config before STA initialization
     - wifi: mt76: mt7925: prevent NULL pointer dereference in
       mt7925_sta_set_decap_offload()
     - wifi: mt76: mt7925: fix the wrong config for tx interrupt
     - wifi: mt76: mt7925: fix invalid array index in ssid assignment during hw
       scan
     - drm/imagination: Fix kernel crash when hard resetting the GPU
     - drm/amdkfd: Don't call mmput from MMU notifier callback
     - drm/gem: Acquire references on GEM handles for framebuffers
     - drm/sched: Increment job count before swapping tail spsc queue
     - drm/ttm: fix error handling in ttm_buffer_object_transfer
     - drm/gem: Fix race in drm_gem_handle_create_tail()
     - drm/xe/bmg: fix compressed VRAM handling
     - Revert "drm/xe/xe2: Enable Indirect Ring State support for Xe2"
     - usb: gadget: u_serial: Fix race condition in TTY wakeup
     - Revert "usb: gadget: u_serial: Add null pointer check in gs_start_io"
     - drm/framebuffer: Acquire internal references on GEM handles
     - drm/xe: Allocate PF queue size on pow2 boundary
     - Revert "ACPI: battery: negate current when discharging" (Closes: #1109344)
     - Revert "PCI/ACPI: Fix allocated memory release on error in
       pci_acpi_scan_root()"
     - kallsyms: fix build without execinfo
     - maple_tree: fix mt_destroy_walk() on root leaf node
     - mm: fix the inaccurate memory statistics issue for users
     - mm/vmalloc: leave lazy MMU mode on PTE mapping error
     - lib/alloc_tag: do not acquire non-existent lock in alloc_tag_top_users()
     - [amd64] x86/rdrand: Disable RDSEED on AMD Cyan Skillfish
     - [amd64] x86/mm: Disable hugetlb page table sharing on 32-bit
     - [arm64] clk: scmi: Handle case where child clocks are initialized before
       their parents
     - smb: server: make use of rdma_destroy_qp()
     - ksmbd: fix a mount write count leak in ksmbd_vfs_kern_path_locked()
     - erofs: fix to add missing tracepoint in erofs_read_folio()
     - erofs: address D-cache aliasing
     - [amd64] ASoC: Intel: sof-function-topology-lib: Print out the unsupported
       dmic count
     - netlink: Fix rmem check in netlink_broadcast_deliver().
     - netlink: make sure we allow at least one dump skb
     - netfs: Fix ref leak on inserted extra subreq in write retry
     - wifi: cfg80211: fix S1G beacon head validation in nl80211
     - wifi: zd1211rw: Fix potential NULL pointer dereference in
       zd_mac_tx_to_dev()
     - drm/tegra: nvdec: Fix dma_alloc_coherent error check
     - md/raid1: Fix stack memory use after return in raid1_reshape
     - raid10: cleanup memleak at raid10_make_request
     - wifi: mac80211: correctly identify S1G short beacon
     - wifi: mac80211: fix non-transmitted BSSID profile search
     - wifi: rt2x00: fix remove callback type mismatch
     - drm/nouveau/gsp: fix potential leak of memory used during acpi init
     - wifi: mt76: mt7925: Fix null-ptr-deref in mt7925_thermal_init()
     - nbd: fix uaf in nbd_genl_connect() error path
     - drm/xe/pf: Clear all LMTT pages on alloc
     - erofs: free pclusters if no cached folio is attached
     - erofs: get rid of `z_erofs_next_pcluster_t`
     - erofs: tidy up zdata.c
     - erofs: refine readahead tracepoint
     - erofs: fix to add missing tracepoint in erofs_readahead()
     - netfilter: flowtable: account for Ethernet header in nf_flow_pppoe_proto()
     - net: appletalk: Fix device refcount leak in atrtr_create()
     - ibmvnic: Fix hardcoded NUM_RX_STATS/NUM_TX_STATS with dynamic sizeof
     - net: phy: microchip: Use genphy_soft_reset() to purge stale LPA bits
     - net: phy: microchip: limit 100M workaround to link-down events on LAN88xx
     - drm/xe/pm: Correct comment of xe_pm_set_vram_threshold()
     - can: m_can: m_can_handle_lost_msg(): downgrade msg lost in rx message to
       debug level
     - net/mlx5e: Fix race between DIM disable and net_dim()
     - net/mlx5e: Add new prio for promiscuous mode
     - net: ll_temac: Fix missing tx_pending check in ethtools_set_ringparam()
     - bnxt_en: Fix DCB ETS validation
     - bnxt_en: Set DMA unmap len correctly for XDP_REDIRECT
     - ublk: sanity check add_dev input for underflow
     - atm: idt77252: Add missing `dma_map_error()`
     - ASoC: SOF: Intel: hda: Use devm_kstrdup() to avoid memleak.
     - [amd64] ALSA: hda/realtek: Add mic-mute LED setup for ASUS UM5606
     - io_uring: make fallocate be hashed work
     - [amd64] ASoC: amd: yc: add quirk for Acer Nitro ANV15-41 internal mic
     - ALSA: hda/realtek - Enable mute LED on HP Pavilion Laptop 15-eg100
     - ALSA: hda/realtek: Add quirks for some Clevo laptops
     - net: usb: qmi_wwan: add SIMCom 8230C composition
     - driver: bluetooth: hci_qca:fix unable to load the BT driver
     - HID: lenovo: Add support for ThinkPad X1 Tablet Thin Keyboard Gen2
     - net: mana: Record doorbell physical address in PF mode
     - btrfs: fix assertion when building free space tree
     - vt: add missing notification when switching back to text mode
     - bpf: Adjust free target to avoid global starvation of LRU map
     - [riscv64] vdso: Exclude .rodata from the PT_DYNAMIC segment
     - HID: Add IGNORE quirk for SMARTLINKTECHNOLOGY
     - HID: quirks: Add quirk for 2 Chicony Electronics HP 5MP Cameras
     - HID: nintendo: avoid bluetooth suspend/resume stalls
     - erofs: fix rare pcluster memory leak after unmounting
     - net: wangxun: revert the adjustment of the IRQ vector sequence
     - kasan: remove kasan_find_vm_area() to prevent possible deadlock
     - ksmbd: fix potential use-after-free in oplock/lease break ack
     - [arm64] Filter out SME hwcaps when FEAT_SME isn't implemented
     - crypto: ecdsa - Harden against integer overflows in DIV_ROUND_UP()
       (CVE-2025-37984)
     - rseq: Fix segfault on registration when rseq_cs is non-zero
       (CVE-2025-38067)
     - [amd64] KVM: SVM: Set synthesized TSA CPUID flags
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.40
     - USB: serial: option: add Telit Cinterion FE910C04 (ECM) composition
     - USB: serial: option: add Foxconn T99W640
     - USB: serial: ftdi_sio: add support for NDI EMGUIDE GEMINI
     - usb: musb: fix gadget state on disconnect
     - [arm*] usb: dwc2: gadget: Fix enter to hibernation for UTMI+ PHY
     - usb: gadget: configfs: Fix OOB read on empty string write
     - [armhf] i2c: stm32: fix the device used for the DMA map
     - [armhf] i2c: stm32f7: unmap DMA mapped buffer
     - [amd64] thunderbolt: Fix wake on connect at runtime
     - [amd64] thunderbolt: Fix bit masking in tb_dp_port_set_hops()
     - Revert "staging: vchiq_arm: Create keep-alive thread during probe"
     - nvmem: imx-ocotp: fix MAC address byte length
     - nvmem: layouts: u-boot-env: remove crc32 endianness conversion
     - Input: xpad - set correct controller type for Acer NGR200
     - pch_uart: Fix dma_sync_sg_for_device() nents value
     - spi: Add check for 8-bit transfer with 8 IO mode support
     - dm-bufio: fix sched in atomic context
     - HID: core: ensure the allocated report buffer can contain the reserved
       report ID
     - HID: core: ensure __hid_request reserves the report ID as the first byte
     - HID: core: do not bypass hid_hw_raw_request
     - tracing/probes: Avoid using params uninitialized in parse_btf_arg()
     - tracing: Add down_write(trace_event_sem) when adding trace event
     - tracing/osnoise: Fix crash in timerlat_dump_stack()
     - drm/amdgpu/gfx8: reset compute ring wptr on the GPU on resume
     - drm/amdgpu: Increase reset counter only on success
     - drm/amd/display: Disable CRTC degamma LUT for DCN401
     - drm/amd/display: Free memory allocation
     - ALSA: hda/realtek - Fix mute LED for HP Victus 16-r0xxx
     - ALSA: hda/realtek: Add quirk for ASUS ROG Strix G712LWS
     - io_uring/poll: fix POLLERR handling
     - mptcp: make fallback action and fallback decision atomic
     - mptcp: plug races between subflow fail and subflow creation
     - mptcp: reset fallback status gracefully at disconnect() time
     - phonet/pep: Move call to pn_skb_get_dst_sockaddr() earlier in
       pep_sock_accept()
     - net/mlx5: Update the list of the PCI supported devices
     - [arm64] dts: imx8mp-venice-gw74xx: fix TPM SPI frequency
     - [arm64] dts: add big-endian property back into watchdog node
     - [arm64] dts: freescale: imx8mm-verdin: Keep LDO5 always on
     - [arm64] dts: imx8mp-venice-gw71xx: fix TPM SPI frequency
     - [arm64] dts: imx8mp-venice-gw72xx: fix TPM SPI frequency
     - [arm64] dts: imx8mp-venice-gw73xx: fix TPM SPI frequency
     - [arm64] dts: rockchip: use cs-gpios for spi1 on ringneck
     - af_packet: fix the SO_SNDTIMEO constraint not effective on tpacked_snd()
     - af_packet: fix soft lockup issue caused by tpacket_snd()
     - Bluetooth: btintel: Check if controller is ISO capable on
       btintel_classify_pkt_type
     - cpuidle: psci: Fix cpuhotplug routine with PREEMPT_RT=y
     - isofs: Verify inode mode when loading from disk
     - memstick: core: Zero initialize id_reg in h_memstick_read_dev_id()
     - [arm*] mmc: bcm2835: Fix dma_unmap_sg() nents value
     - mmc: sdhci-pci: Quirk for broken command queuing on Intel GLK-based
       Positivo models
     - [arm64] mmc: sdhci_am654: Workaround for Errata i2312
     - [amd64] net: stmmac: intel: populate entire system_counterval_t in
       get_time_fn() callback
     - pmdomain: governor: Consider CPU latency tolerance from pm_domain_cpu_gov
     - [s390x] bpf: Fix bpf_arch_text_poke() with new_addr == NULL again
     - smb: client: fix use-after-free in crypt_message when using async crypto
     - [armhf] soc: aspeed: lpc-snoop: Cleanup resources in stack-order
     - [armhf] soc: aspeed: lpc-snoop: Don't disable channels that aren't enabled
     - iio: accel: fxls8962af: Fix use after free in fxls8962af_fifo_flush
     - iio: adc: axp20x_adc: Add missing sentinel to AXP717 ADC channel maps
     - iio: adc: max1363: Fix MAX1363_4X_CHANS/MAX1363_8X_CHANS[]
     - iio: adc: max1363: Reorder mode_list[] entries
     - iio: adc: stm32-adc: Fix race in installing chained IRQ handler
     - iio: backend: fix out-of-bound write
     - iio: common: st_sensors: Fix use of uninitialize device structs
     - [arm64] dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi CM5
     - [arm64] dts: rockchip: Add cd-gpios for sdcard detect on Cool Pi 4B
     - [arm64] dts: imx95: Correct the DMA interrupter number of pcie0_ep
     - bpf: Reject %p% format string in bprintf-like helpers
     - cachefiles: Fix the incorrect return value in __cachefiles_write()
     - block: fix kobject leak in blk_unregister_queue
     - net/sched: sch_qfq: Fix race condition on qfq_aggregate
     - rpl: Fix use-after-free in rpl_do_srh_inline().
     - smb: client: fix use-after-free in cifs_oplock_break
     - fix a leak in fcntl_dirnotify()
     - nvme: fix inconsistent RCU list manipulation in nvme_ns_add_to_ctrl_list()
     - nvme: fix endianness of command word prints in nvme_log_err_passthru()
     - smc: Fix various oops due to inet_sock type confusion.
     - net: phy: Don't register LEDs for genphy
     - nvme: fix misaccounting of nvme-mpath inflight I/O
     - nvmet-tcp: fix callback lock for TLS handshake
     - wifi: cfg80211: remove scan request n_channels counted_by
     - [amd64] hwmon: (corsair-cpro) Validate the size of the received input
       buffer
     - ice: add NULL check in eswitch lag check
     - ice: check correct pointer in fwlog debugfs
     - usb: net: sierra: check for no status endpoint
     - loop: use kiocb helpers to fix lockdep warning
     - [riscv64] Enable interrupt during exception handling
     - [riscv64] traps_misaligned: properly sign extend value in misaligned load
       handler
     - Bluetooth: Fix null-ptr-deref in l2cap_sock_resume_cb()
     - Bluetooth: hci_sync: fix connectable extended advertising when using
       static random address
     - Bluetooth: SMP: If an unallowed command is received consider it a failure
     - Bluetooth: SMP: Fix using HCI_ERROR_REMOTE_USER_TERM on timeout
     - Bluetooth: hci_core: add missing braces when using macro parameters
     - Bluetooth: btusb: QCA: Fix downloading wrong NVM for WCN6855 GF variant
       without board ID
     - net/mlx5: Correctly set gso_size when LRO is used
     - ipv6: mcast: Delay put pmc->idev in mld_del_delrec()
     - net: fix segmentation after TCP/UDP fraglist GRO
     - netfilter: nf_conntrack: fix crash due to removal of uninitialised entry
     - drm/xe/pf: Sanitize VF scratch registers on FLR
     - drm/xe/pf: Move VFs reprovisioning to worker
     - drm/xe/pf: Prepare to stop SR-IOV support prior GT reset
     - Bluetooth: L2CAP: Fix attempting to adjust outgoing MTU
     - [amd64,arm64] hv_netvsc: Set VF priv_flags to IFF_NO_ADDRCONF before open
       to prevent IPv6 addrconf
     - virtio-net: fix recursived rtnl_lock() during probe()
     - tls: always refresh the queue when reading sock
     - net: vlan: fix VLAN 0 refcount imbalance of toggling filtering during
       runtime
     - net: bridge: Do not offload IGMP/MLD messages
     - net/sched: Return NULL when htb_lookup_leaf encounters an empty rbtree
     - rxrpc: Fix recv-recv race of completed call
     - rxrpc: Fix transmission of an abort in response to an abort
     - Revert "cgroup_freezer: cgroup_freezing: Check if not frozen"
     - drm/mediatek: Add wait_event_timeout when disabling plane
     - drm/mediatek: only announce AFBC if really supported
     - libbpf: Fix handling of BPF arena relocations
     - efivarfs: Fix memory leak of efivarfs_fs_info in fs_context error paths
     - sched: Change nr_uninterruptible type to unsigned long
     - clone_private_mnt(): make sure that caller has CAP_SYS_ADMIN in the right
       userns
     - btrfs: fix block group refcount race in
       btrfs_create_pending_block_groups() (CVE-2025-22115)
     - usb: hub: fix detection of high tier USB3 devices behind suspended hubs
     - usb: hub: Fix flushing and scheduling of delayed work that tunes runtime
       pm
     - usb: hub: Fix flushing of delayed work used for post resume purposes
     - usb: hub: Don't try to recover devices lost during warm reset.
     - [arm64] usb: dwc3: qcom: Don't leave BCR asserted
     - [arm64,armhf] i2c: omap: Add support for setting mux
     - [arm64,armhf] i2c: omap: Fix an error handling path in omap_i2c_probe()
     - [arm64,armhf] i2c: omap: Handle omap_i2c_init() errors in omap_i2c_probe()
     - [arm64,armhf] i2c: omap: fix deprecated of_property_read_bool() use
     - sched,freezer: Remove unnecessary warning in __thaw_task
     - drm/xe/mocs: Initialize MOCS index early
     - drm/xe: Move page fault init after topology init
     - smb: client: let smbd_post_send_iter() respect the peers max_send_size and
       transmit all data
     - [amd64] iommu/vt-d: Fix misplaced domain_attached assignment
       (Closes: #1109676)
     - [amd64] KVM: x86/xen: Fix cleanup logic in emulation of Xen schedop poll
       hypercalls
https://www.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.41
     - [amd64] x86/traps: Initialize DR7 by writing its architectural reset value
     - Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT
       (CVE-2025-38335)
     - virtio_net: Enforce minimum TX ring size for reliability
     - virtio_ring: Fix error reporting in virtqueue_resize
     - regulator: core: fix NULL dereference on unbind due to stale coupling data
     - [amd64] platform/x86: asus-nb-wmi: add DMI quirk for ASUS Zenbook Duo
       UX8406CA
     - RDMA/core: Rate limit GID cache warning messages
     - [arm64] interconnect: qcom: sc7280: Add missing num_links to xm_pcie3_1
       node
     - iio: adc: ad7949: use spi_is_bpw_supported()
     - regmap: fix potential memory leak of regmap_bus
     - [amd64] x86/hyperv: Fix usage of cpu_online_mask to get valid cpu
     - [amd64] platform/x86: Fix initialization order for
       firmware_attributes_class
     - [arm*] staging: vchiq_arm: Make vchiq_shutdown never fail
     - xfrm: state: initialize state_ptrs earlier in xfrm_state_find
     - xfrm: state: use a consistent pcpu_id in xfrm_state_find
     - xfrm: Set transport header to fix UDP GRO handling
     - xfrm: interface: fix use-after-free after changing collect_md xfrm
       interface
     - [arm64] net: ti: icssg-prueth: Fix buffer allocation for ICSSG
     - net/mlx5: Fix memory leak in cmd_exec()
     - net/mlx5: E-Switch, Fix peer miss rules to use peer eswitch
     - i40e: report VF tx_dropped with tx_errors instead of tx_discards
     - i40e: When removing VF MAC filters, only check PF-set MAC
     - net: appletalk: Fix use-after-free in AARP proxy probe
     - net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in
       qfq_delete_class
     - can: netlink: can_changelink(): fix NULL pointer deref of struct
       can_priv::do_set_mode
     - [arm64] drm/bridge: ti-sn65dsi86: Remove extra semicolon in
       ti_sn_bridge_probe()
     - ALSA: hda/realtek: Fix mute LED mask on HP OMEN 16 laptop
     - [s390x] ism: fix concurrency management in ism_cmd()
     - [arm64] net: hns3: fix concurrent setting vlan filter issue
     - [arm64] net: hns3: disable interrupt when ptp init failed
     - [arm64] net: hns3: fixed vf get max channels bug
     - [arm64] net: hns3: default enable tx bounce buffer when smmu enabled
     - [amd64] platform/x86: ideapad-laptop: Fix FnLock not remembered among
       boots
     - [amd64] platform/x86: ideapad-laptop: Fix kbd backlight not remembered
       among boots
     - drm/amdgpu: Reset the clear flag in buddy during resume
     - drm/sched: Remove optimization that causes hang when killing dependent
       jobs
     - mm/ksm: fix -Wsometimes-uninitialized from clang-21 in advisor_mode_show()
     - timekeeping: Zero initialize system_counterval when querying time from phc
       drivers
     - [arm64] i2c: qup: jump out of the loop in case of timeout
     - [arm64,armhf] i2c: tegra: Fix reset error handling with ACPI
     - i2c: virtio: Avoid hang by using interruptible completion wait
     - bus: fsl-mc: Fix potential double device reference in
       fsl_mc_get_endpoint()
     - sprintf.h requires stdarg.h
     - ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx
     - ALSA: hda/realtek - Add mute LED support for HP Victus 15-fa0xxx
     - [arm64] entry: Mask DAIF in cpu_switch_to(), call_on_irq_stack()
     - [arm64] dpaa2-eth: Fix device reference count leak in MAC endpoint
       handling
     - e1000e: disregard NVM checksum on tgp when valid checksum bit is not set
     - e1000e: ignore uninitialized checksum word on tgp
     - gve: Fix stuck TX queue for DQ queue format
     - ice: Fix a null pointer dereference in ice_copy_and_init_pkg()
     - nilfs2: reject invalid file types when reading inodes
     - resource: fix false warning in __request_region()
     - mm/vmscan: fix hwpoisoned large folio handling in shrink_folio_list
     - mm/zsmalloc: do not pass __GFP_MOVABLE if CONFIG_COMPACTION=n
     - [amd64,arm64] usb: typec: tcpm: allow to use sink in accessory mode
     - [amd64,arm64] usb: typec: tcpm: allow switching to mode accessory to mux
       properly
     - [amd64,arm64] usb: typec: tcpm: apply vbus before data bringup in
       tcpm_src_attach
     - spi: cadence-quadspi: fix cleanup of rx_chan on failure paths
     - [amd64] x86/bugs: Fix use of possibly uninit value in
       amd_check_tsa_microcode()
     - jfs: reject on-disk inodes of an unsupported type (CVE-2025-37925)
     - [amd64] comedi: comedi_test: Fix possible deletion of uninitialized timers
     - [arm64] dts: qcom: x1e78100-t14s: mark l12b and l15b always-on
     - erofs: simplify z_erofs_load_compact_lcluster()
     - erofs: refine z_erofs_get_extent_compressedlen()
     - erofs: use Z_EROFS_LCLUSTER_TYPE_MAX to simplify switches
     - erofs: simplify tail inline pcluster handling
     - erofs: clean up header parsing for ztailpacking and fragments
     - erofs: fix large fragment handling
     - ext4: don't explicit update times in ext4_fallocate()
     - ext4: refactor ext4_punch_hole()
     - ext4: refactor ext4_zero_range()
     - ext4: refactor ext4_collapse_range()
     - ext4: refactor ext4_insert_range()
     - ext4: factor out ext4_do_fallocate()
     - ext4: move out inode_lock into ext4_fallocate()
     - ext4: move out common parts into ext4_fallocate()
     - ext4: fix incorrect punch max_end
     - ext4: correct the error handle in ext4_fallocate()
     - ext4: fix out of bounds punch offset
     - [amd64] KVM: x86: drop x86.h include from cpuid.h
     - [amd64] KVM: x86: Route non-canonical checks in emulator through
       emulate_ops
     - [amd64] KVM: x86: Add X86EMUL_F_MSR and X86EMUL_F_DT_LOAD to aid canonical
       checks
     - [amd64] KVM: x86: model canonical checks more precisely
     - [amd64] KVM: x86/hyper-v: Skip non-canonical addresses during PV TLB flush
       (CVE-2025-38351)
     - [amd64] x86/hyperv: Fix APIC ID and VP index confusion in hv_snp_boot_ap()
     - [arm64] dts: qcom: x1-crd: Fix vreg_l2j_1p2 voltage
     - Revert "wifi: mt76: mt7925: Update mt7925_mcu_uni_[tx,rx]_ba for MLO"
     - wifi: mt76: mt7925: adjust rm BSS flow to prevent next connection failure
     - iio: hid-sensor-prox: Restore lost scale assignments
     - iio: hid-sensor-prox: Fix incorrect OFFSET calculation
     - [amd64,arm64] Drivers: hv: Make the sysfs node size for the ring buffer
       dynamic
     - ALSA: hda/tegra: Add Tegra264 support
     - ALSA: hda: Add missing NVIDIA HDA codec IDs
     - [amd64] drm/i915/dp: Fix 2.7 Gbps DP_LINK_BW value on g4x
     - Revert "drm/xe/gt: Update handling of xe_force_wake_get return"
       (Closes: #1109799)
     - Revert "drm/xe/tests/mocs: Update xe_force_wake_get() return handling"
     - Revert "drm/xe/devcoredump: Update handling of xe_force_wake_get return"
     - Revert "drm/xe/forcewake: Add a helper xe_force_wake_ref_has_domain()"
     - [amd64] KVM: x86: Free vCPUs before freeing VM state
     - mm: khugepaged: fix call hpage_collapse_scan_file() for anonymous vma
 .
   [ Bastian Blank ]
   * Store build time signing key encrypted.
   * Enable CRYPTO_ECDSA.
 .
   [ Aurelien Jarno ]
   * Fix installation of DTB files
 .
   [ Tj ]
   * drivers/gpu/drm/nouveau: Enable DRM_NOUVEAU_GSP_DEFAULT (Closes: #1088522)
 .
   [ Uwe Kleine-König ]
   * [armhf] Add phy-gmii-sel module to nic-shared-modules udeb for
     ti/omap/am335x based machines (e.g. BeagleBone black).
 .
   [ Salvatore Bonaccorso ]
   * d/salsa-ci.yml: Update for trixie: Set RELEASE to trixie
Checksums-Sha1:
 4c27cc03165101daa02730a246b5db5edfd2578e 219407 linux_6.12.41-1.dsc
 accbbe886f7ee7058c827f6ea981e6c57fca8285 151148292 linux_6.12.41.orig.tar.xz
 9580fbacfe8e5e345f4770237739808dfcc6af45 1672664 linux_6.12.41-1.debian.tar.xz
 fba82022a1f26b217e65612bfc2686a3fe0ec4c4 6694 linux_6.12.41-1_source.buildinfo
Checksums-Sha256:
 65bbf4e35635465326c9470605da1886ce3d3cf7e2a6d93392c4c6245d895b34 219407 linux_6.12.41-1.dsc
 78afa637ca891174c22b332e4c1f87cf6aaa81861a6cca3b529e861843fa2fd3 151148292 linux_6.12.41.orig.tar.xz
 b62680107fc155ad3d2c421ba0af1d5848812674fe767fcd40ba81a414e4ce2a 1672664 linux_6.12.41-1.debian.tar.xz
 59c0b9af69e550237710e6c56c67f7d9f62f35283af553196a4d0a1ec1ced78c 6694 linux_6.12.41-1_source.buildinfo
Files:
 26aa7b0334cd1d40085838b157601a02 219407 kernel optional linux_6.12.41-1.dsc
 a005fb8810c0ef34fc27bc5edf92d128 151148292 kernel optional linux_6.12.41.orig.tar.xz
 fa713a42314b7a9d99fb1e053e9fc824 1672664 kernel optional linux_6.12.41-1.debian.tar.xz
 1ae397aa6aee8bfccf80d08c11fd330b 6694 kernel optional linux_6.12.41-1_source.buildinfo
-----BEGIN PGP SIGNATURE-----

iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAmiatddfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89EqiUP/RMw7zcTvXowime5vF7mRR9pK5UWBUtT
RwIKg8OtrO7GYc22RJUTZrBeAH0YS7vN5/89h38i0EUElv02S0YgRSxZJ8rYmNnF
yhaskB+OZ/uu5AOMHukBO7CTxu8eTlEWfZ5x47xfl9Dm5EgCzD+Sy+KK72A8ORe9
6se6QjUlpY6+LfcMjWjdojAmAdFDR49AT63yWQAyD7PcE42puh/1CPNB64XB/DCL
Q8zGC8VtOAa/VWb7Fxi0HVA1tBwQWXyYZNl+ssrqlxPpO3zKZsrS/hxYgo1G/1QL
22Hu5ljImERn/m9uooqX32+btycv8xuH0lFkprKUpbLmoJmwEto6tfkb//S6xwLw
m8Qg6r2gPTphQv/be3zA2pSJYFEd5+altLqOXrZjV0X/xIm+dKN5ksCh1UOMOQ6j
wkfBl2DHKd4Q+gmEdrMhiZ/aERjQwmngiImhlOvCSkHRFdKZg2p1o9EHoGUt2RPN
t6ygp4H/cLKHkwBJsmlx4UW5MtnhB+7ZjMMjyqgHeMkTxkhW8slDEhmW6dVQAuvY
e5H45fFoS+dpDDhtJU22UghalXV9KX3icyvrerAOtcORVR43ZXQSNZAFqfWxyEmw
8AnweMKUWLJ5QidZedu7ELlMD2I6qUpKyAJyEN5LGB9/AYSjcIROEnpJThJvomK4
7VbBVT3mM5dF
=LGVy
-----END PGP SIGNATURE-----