Archive-only list for patches
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Matt Turner <mattst88@gmail.com>,
	Magnus Lindholm <linmag7@gmail.com>
Subject: [PATCH 6.12 011/403] alpha: dont leak hardware-fabricated FP exception bits to user space
Date: Fri,  4 Sep 2026 06:56:54 +0200	[thread overview]
Message-ID: <20260904045735.066791211@linuxfoundation.org> (raw)
In-Reply-To: <20260904045734.806166532@linuxfoundation.org>

6.12-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Matt Turner <mattst88@gmail.com>

commit bcfe3187412e342b4619efb92c945f073855ebc0 upstream.

On EV6 and later the hardware records exception status bits in the FPCR
before delivering a software completion trap, and those bits can be wrong
for the instruction that trapped.  Converting a double that is exactly
representable as a subnormal float sets FPCR_UNF even though the result
is exact, and an underflow trap additionally sets FPCR_INE even when the
emulated operation turns out to be exact.

alpha_fp_emul() only wrote the FPCR when soft-fp raised an exception, so
whenever it determined that the instruction was exact the fabricated bits
stayed in the FPCR and were reported to user space by fetestexcept().

Pass the exception summary register down from do_entArith() so the
handler can tell which exceptions the hardware attributed to the trapping
instruction, and always write the FPCR.  Clear the exceptions that the
trap reported but that soft-fp did not raise.  EXC_SUM reports only the
underflow or overflow when the hardware also set INE, so treat INE as a
candidate in that case, and treat a trap with no reported exception as a
denormal operand trap, for which the hardware can fabricate INE and UNF
as well.  Bits that software has already confirmed in ieee_state belong
to this or an earlier instruction and are never cleared.

The imprecise path passes no summary.  There the trap was taken somewhere
in the trap shadow, so EXC_SUM is not attribution for the instruction
being re-executed -- and only EV6, which traps precisely and so never
takes that path, has fabricated bits to clear.  For the same reason the
clearing is guarded by implver(), matching swcr_update_status().

On an UP1500 (EV68) this takes the glibc math testsuite from 831 failures
to 28, the remainder being unrelated to exception status.

This belongs with the preceding fix to ieee_swcr_to_fpcr(), and should
not be backported without it -- nor it without this.  That fix stops
FPCR_DNOD being set unconditionally, so denormal operand traps start
firing again.  Those traps very often find an exact result, which is
precisely the case where the old code left the FPCR unwritten and the
fabricated bits visible.  Applied alone it would make spurious exception
flags more common, not less.

One case cannot be resolved here: an inexact instruction without the
software completion suffix never traps, so its INE reaches the FPCR
without being recorded anywhere else.  Such a bit is indistinguishable
from an INE the hardware fabricated for a trapping instruction, and is
lost if an underflow or overflow trap with an exact result follows it.
The FPCR is the only record of those instructions and it carries no
attribution.

The bug predates the git history, so there is no commit to reference in a
Fixes tag.

Cc: stable@vger.kernel.org # 5.15+
Signed-off-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Magnus Lindholm <linmag7@gmail.com>
Tested-by: Magnus Lindholm <linmag7@gmail.com>
Link: https://lore.kernel.org/r/20260803-alpha-fp-exceptions-v1-2-c99d75608e60@gmail.com
Signed-off-by: Magnus Lindholm <linmag7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/alpha/kernel/traps.c  |    6 +--
 arch/alpha/math-emu/math.c |   88 +++++++++++++++++++++++++++++++++++++++------
 2 files changed, 80 insertions(+), 14 deletions(-)

--- a/arch/alpha/kernel/traps.c
+++ b/arch/alpha/kernel/traps.c
@@ -166,12 +166,12 @@ static long dummy_emul(void) { return 0;
 long (*alpha_fp_emul_imprecise)(struct pt_regs *regs, unsigned long writemask)
   = (void *)dummy_emul;
 EXPORT_SYMBOL_GPL(alpha_fp_emul_imprecise);
-long (*alpha_fp_emul) (unsigned long pc)
+long (*alpha_fp_emul) (unsigned long pc, unsigned long summary)
   = (void *)dummy_emul;
 EXPORT_SYMBOL_GPL(alpha_fp_emul);
 #else
 long alpha_fp_emul_imprecise(struct pt_regs *regs, unsigned long writemask);
-long alpha_fp_emul (unsigned long pc);
+long alpha_fp_emul (unsigned long pc, unsigned long summary);
 #endif
 
 asmlinkage void
@@ -185,7 +185,7 @@ do_entArith(unsigned long summary, unsig
 		   emulate the instruction.  If the processor supports
 		   precise exceptions, we don't have to search.  */
 		if (!amask(AMASK_PRECISE_TRAP))
-			si_code = alpha_fp_emul(regs->pc - 4);
+			si_code = alpha_fp_emul(regs->pc - 4, summary);
 		else
 			si_code = alpha_fp_emul_imprecise(regs, write_mask);
 		if (si_code == 0)
--- a/arch/alpha/math-emu/math.c
+++ b/arch/alpha/math-emu/math.c
@@ -52,13 +52,13 @@ MODULE_DESCRIPTION("FP Software completi
 MODULE_LICENSE("GPL v2");
 
 extern long (*alpha_fp_emul_imprecise)(struct pt_regs *, unsigned long);
-extern long (*alpha_fp_emul) (unsigned long pc);
+extern long (*alpha_fp_emul) (unsigned long pc, unsigned long summary);
 
 static long (*save_emul_imprecise)(struct pt_regs *, unsigned long);
-static long (*save_emul) (unsigned long pc);
+static long (*save_emul) (unsigned long pc, unsigned long summary);
 
 long do_alpha_fp_emul_imprecise(struct pt_regs *, unsigned long);
-long do_alpha_fp_emul(unsigned long);
+long do_alpha_fp_emul(unsigned long, unsigned long);
 
 static int alpha_fp_emul_init_module(void)
 {
@@ -86,7 +86,22 @@ module_exit(alpha_fp_emul_cleanup_module
 
 
 /*
- * Emulate the floating point instruction at address PC.  Returns -1 if the
+ * Exception bits of the exception summary register (EXC_SUM).  Bit 0 is the
+ * software completion bit; bits 1 through 5 report the exceptions the
+ * hardware attributed to the trapping instruction, and lie at the same
+ * positions as the corresponding IEEE_TRAP_ENABLE_* bits.
+ */
+#define EXC_SUM_INV	(1UL << 1)
+#define EXC_SUM_DZE	(1UL << 2)
+#define EXC_SUM_OVF	(1UL << 3)
+#define EXC_SUM_UNF	(1UL << 4)
+#define EXC_SUM_INE	(1UL << 5)
+#define EXC_SUM_MASK	(EXC_SUM_INV | EXC_SUM_DZE | EXC_SUM_OVF	\
+			 | EXC_SUM_UNF | EXC_SUM_INE)
+
+/*
+ * Emulate the floating point instruction at address PC.  SUMMARY is the
+ * exception summary register the trap was delivered with.  Returns -1 if the
  * instruction to be emulated is illegal (such as with the opDEC trap), else
  * the SI_CODE for a SIGFPE signal, else 0 if everything's ok.
  *
@@ -95,7 +110,7 @@ module_exit(alpha_fp_emul_cleanup_module
  * stick the result of the operation into the appropriate register.
  */
 long
-alpha_fp_emul (unsigned long pc)
+alpha_fp_emul (unsigned long pc, unsigned long summary)
 {
 	FP_DECL_EX;
 	FP_DECL_S(SA); FP_DECL_S(SB); FP_DECL_S(SR);
@@ -300,12 +315,56 @@ done:
 		swcr |= (_fex << IEEE_STATUS_TO_EXCSUM_SHIFT);
 		current_thread_info()->ieee_state
 		  |= (_fex << IEEE_STATUS_TO_EXCSUM_SHIFT);
+	}
 
-		/* Update hardware control register.  */
-		fpcr &= (~FPCR_MASK | FPCR_DYN_MASK);
-		fpcr |= ieee_swcr_to_fpcr(swcr);
-		wrfpcr(fpcr);
+	/*
+	 * EV6 records exception status bits in the FPCR before delivering the
+	 * software completion trap, and swcr_update_status() above merged them
+	 * into SWCR.  Some can be wrong for the instruction we just emulated:
+	 * a CVTTS of a value exactly representable as a subnormal sets FPCR_UNF
+	 * even though the result is exact.  Clear the exceptions the trap
+	 * reported but that soft-fp did not raise.
+	 */
+	if (implver() == IMPLVER_EV6) {
+		unsigned long spurious = summary & EXC_SUM_MASK;
+
+		if (spurious & (EXC_SUM_UNF | EXC_SUM_OVF)) {
+			/*
+			 * EXC_SUM reports only the underflow or overflow,
+			 * but the hardware sets INE alongside it in the FPCR.
+			 */
+			spurious |= EXC_SUM_INE;
+		} else if (!spurious) {
+			/*
+			 * No exception reported, so this was a denormal
+			 * operand trap, for which INE and UNF can be
+			 * fabricated as well.
+			 */
+			spurious = EXC_SUM_INE | EXC_SUM_UNF;
+		}
 
+		/*
+		 * Never clear an exception software has confirmed.  Every
+		 * instruction that genuinely raises one traps for software
+		 * completion and is recorded in ieee_state above, so a bit
+		 * found there -- including one just set from _fex -- belongs
+		 * to this or an earlier instruction and must survive.
+		 */
+		spurious &= ~(current_thread_info()->ieee_state
+			      >> IEEE_STATUS_TO_EXCSUM_SHIFT);
+
+		swcr &= ~(spurious << IEEE_STATUS_TO_EXCSUM_SHIFT);
+	}
+
+	/*
+	 * Update hardware control register.  This has to happen even when
+	 * soft-fp raised nothing, to clear any fabricated bits.
+	 */
+	fpcr &= (~FPCR_MASK | FPCR_DYN_MASK);
+	fpcr |= ieee_swcr_to_fpcr(swcr);
+	wrfpcr(fpcr);
+
+	if (_fex) {
 		/* Do we generate a signal?  */
 		_fex = _fex & swcr & IEEE_TRAP_ENABLE_MASK;
 		si_code = 0;
@@ -387,9 +446,16 @@ alpha_fp_emul_imprecise (struct pt_regs
 			break;
 		}
 		if (!write_mask) {
-			/* Re-execute insns in the trap-shadow.  */
+			/*
+			 * Re-execute insns in the trap-shadow.  Pass no
+			 * exception summary: it describes the trap, which
+			 * was taken anywhere in the shadow, and so is not
+			 * attribution for this instruction.  Nothing is
+			 * lost, since only EV6 -- which traps precisely and
+			 * never comes this way -- needs it.
+			 */
 			regs->pc = trigger_pc + 4;
-			si_code = alpha_fp_emul(trigger_pc);
+			si_code = alpha_fp_emul(trigger_pc, 0);
 			goto egress;
 		}
 		trigger_pc -= 4;



  parent reply	other threads:[~2026-09-04  6:04 UTC|newest]

Thread overview: 429+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  4:56 [PATCH 6.12 000/403] 6.12.109-rc1 review Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 001/403] bnxt_en: Mask the bd_cnt field in the TX BD properly Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 002/403] md: make rdev_addable usable for rcu mode Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 003/403] f2fs: fix potential deadloop in prepare_compress_overwrite() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 004/403] block: mark GFP_NOIO around sysfs ->store() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 005/403] drm/amd/display: Avoid divide by zero by initializing dummy pitch to 1 Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 006/403] perf/x86/intel/uncore: Fix die ID init and look up bugs Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 007/403] wifi: mt76: Fix memory leak after mt76_connac_mcu_alloc_sta_req() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 008/403] wifi: ath11k: fix memory leaks in beacon template setup Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 009/403] drm/amd/display: Avoid NULL dereference in dc_dmub_srv error paths Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 010/403] alpha: fix ieee_swcr_to_fpcr setting FPCR_DNOD unconditionally Greg Kroah-Hartman
2026-09-04  4:56 ` Greg Kroah-Hartman [this message]
2026-09-04  4:56 ` [PATCH 6.12 012/403] clocksource/drivers/timer-sun4i: Advertise a real minimum delta Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 013/403] fs: fix user path of nested backing files Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 014/403] powerpc/pseries/iommu: switch to Default DMA window during kdump Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 015/403] timers/itimer: Zero-init old itimerval before copy to userspace Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 6.12 016/403] rust: cfi: disable function merging if CFI is enabled Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 017/403] apparmor: fix cred UAF caused by begin_current_label_crit_section() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 018/403] apparmor: fix out-of-bounds write when null terminating a label vec Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 019/403] include/linux/list.h: mark list_add and __list_add as __always_inline Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 020/403] mm/kmemleak: avoid soft lockup when scanning task stacks Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 021/403] mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 022/403] mm/migrate: use huge_ptep_get() in remove_migration_pte() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 023/403] mm/page_owner: use memcg_data snapshot to avoid TOCTOU in print_page_owner_memcg() Greg Kroah-Hartman
2026-09-05 16:52   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  4:57 ` [PATCH 6.12 024/403] mm/page_vma_mapped: use huge_ptep_get() for hugetlb Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 025/403] mm/vmscan: report RCU-tasks quiescent states in shrink_lruvec() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 026/403] mm/zswap: fix global shrinker when memory cgroup is disabled Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 027/403] mm: memcg: stop reclaim when a limit update is superseded Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 028/403] mm: mempolicy: fix automatic numa balancing for shmem Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 029/403] tools/compiler: match glibc 2.42 definition of __attribute_const__ Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 030/403] x86/tdx: Fix off-by-one in port I/O handling Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 031/403] x86/insn-eval: Move assign_register() out of KVM as insn_assign_reg() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 032/403] x86/tdx: Fix zero-extension for 32-bit port I/O Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 033/403] hwtracing: hisi_ptt: Propagate DMA reset timeout in trace_start() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 034/403] tracing/user_events: Clear copied tracing state before fork duplication Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 035/403] tracing: Fix crash passing ERR_PTR to kthread_stop() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 036/403] tracing: Fix logged instance name on creation failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 037/403] tracing: Fix use-after-free in trace_pipe read on sub-buffer order change Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 038/403] tracing: Fix use-after-free with same-name named triggers Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 039/403] cdx: Fix double free when sysfs file creation fails Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 040/403] device property: fix infinite loop in fwnode_for_each_child_node() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 041/403] misc: nsm: bound the device-reported response length Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 042/403] powerpc/powermac: fix OF node refcount Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 043/403] rapidio: mport_cdev: fix use-after-free in dma_req_free() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 044/403] Revert "media: v4l2-dev: fix error handling in __video_register_device()" Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 045/403] serial: imx: serialize imx_uart_ports[] lifetime Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 046/403] staging: greybus: hid: fix SET_REPORT return value Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 047/403] usb: dwc2: gadget: Exit partial power down state when changing USB pull-up Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 048/403] usb: gadget: at91_udc: drain polled-VBUS timer/work before udc is freed Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 049/403] USB: phy: fsl-usb: fix missing static keywords Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 050/403] usb: typec: tcpci: pass correct rx_type to tcpm_pd_receive() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 051/403] usb: typec: ucsi: use UCSI_TIMEOUT_MS for sync command completion Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 052/403] usb: gadget: u_audio: Fix use-after-free on sound card disconnect Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 053/403] usb: gadget: snps_udc_plat: clean up PHY on probe deferral Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 054/403] usb: gadget: midi2: remove default configfs groups on teardown Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 055/403] usb: gadget: f_tcm: fix deadlock in usbg_make_tpg() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 056/403] usb: gadget: uvc: fix dangling pointers in uvc_function_bind() and uvc_function_unbind() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 057/403] usb: gadget: f_fs: Prevent deadlock during ep0 read loop Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 058/403] fpga: altera-cvp: Avoid out-of-bounds read in trailing byte write Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 059/403] HID: sensor-hub: Fix out-of-bounds write in sensor_hub_get_feature Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 060/403] lib/ucs2_string.c: fix out-of-bounds read in ucs2_strnlen() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 061/403] media: cec: stm32: prevent out-of-bounds write on RX overflow Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 062/403] media: vicodec: fix out-of-bounds write in FWHT encoder Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 063/403] nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 064/403] of: fix out-of-bounds read in of_alias_scan() stem parser Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 065/403] PCI/sysfs: Fix out-of-bounds read in pci_write_legacy_io() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 066/403] ubifs: fix out-of-bounds read in signature length check Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 067/403] zsmalloc: account for handle size in class lookup Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 068/403] NFSD: check truncate permission under inode lock Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 069/403] NFSD: Encode only the status in NFS-ACL v2 GETACL error replies Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 070/403] NFSD: Fix off-by-one in DRC bucket pruning limit Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 071/403] NFSD: restart ssc_expire_umount walk after dropping nfsd_ssc_lock Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 072/403] NFSD: remove flawed WARN_ON_ONCE from nfsd_mode_check Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 073/403] nfsd: guard nfsd_serv deref in nfsd_file_net_dispose Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 074/403] NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 075/403] pNFS: Fix EBUSY check in pnfs_layout_need_return Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 6.12 076/403] nfsd: release path refs on follow_down() error Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 077/403] nfsd: Reset write verifier when async COPY writeback fails Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 078/403] nfsd: return NFS4ERR_NOTSUPP for unsupported netloc4 types Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 079/403] nfsd: sample writeback error cursor before async COPY loop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 080/403] nfsd: set SC_STATUS_FREED in nfsd4_drop_revoked_stid for delegations Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 081/403] nfsd: size fh_verify server sockaddr slot by xpt_locallen Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 082/403] nfsd: validate symlink target length in NFSv4 CREATE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 083/403] nfsd: add fh_want_write() for early-verified SETATTR in nfsd_proc_setattr() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 084/403] nfsd: add filehandle match check to nfsd4_delegreturn() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 085/403] nfsd: add missing read barrier to rpc_status_get dumpit seqcount retry Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 086/403] nfsd: block non-SAVEFH ops after FOREIGN PUTFH to prevent NULL deref Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 087/403] nfsd: check client ownership when cancelling a copy-notify stateid Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 088/403] nfsd: clear opcnt on compound arg release to prevent OOB read Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 089/403] nfsd: defer vfree of compound ops to fix rpc_status UAF Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 090/403] nfsd: drop the stateid, not the stateowner, on seqid_op replay retry Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 091/403] nfsd: fix BUG_ON in nfsd4_alloc_layout_stateid on racing delegation revoke Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 092/403] nfsd: fix cpntf publish race in nfs4_init_cp_state Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 093/403] nfsd: fix dentry ref leak on V4ROOT export filehandle lookup Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 094/403] nfsd: fix nfsd_file leak on inter-server COPY setup failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 095/403] nfsd: fix reply size estimate for GET_DIR_DELEGATION Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 096/403] nfsd: fix version mismatch loops in nfsd_acl_init_request() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 097/403] nfsd: fix XDR length calculation in nfsd4_ff_encode_layoutget Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 098/403] nfsd: fix XDR padding calculation in ff_encode_getdeviceinfo Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 099/403] nfsd: gate nfs2 setacl by argp->mask Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 100/403] nfsd: gate nfs3 " Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 101/403] nfsd: initialize copy-notify stateid before publishing it Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 102/403] nfsd: initialize DRC hash table before registering shrinker Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 103/403] nfsd: reject out-of-range nseconds in NFSv3 SETATTR and create ops Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 104/403] nfsd: reject out-of-range useconds in NFSv2 SETATTR/CREATE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 105/403] nfsd: reject reclaim LOCK after RECLAIM_COMPLETE Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 106/403] nfsd: revoke copy-notify stateids before dropping their reference Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 107/403] NFSD: Prevent lock owner use-after-free during client teardown Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 108/403] NFSD: Prevent client use-after-free during NFSv4.0 revoked-state cleanup Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 109/403] libceph: validate OSD extent maps before cursor advance Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 110/403] libceph: reject buckets with mismatched CRUSH ids Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 111/403] ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 112/403] ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 113/403] ceph: bound copied dentry name length in NFS export get_name Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 114/403] ceph: bound MDSCapAuth path and fs_name decode in handle_session() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 115/403] ceph: bound num_export_targets array for mds info v2/v3 Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 116/403] ceph: bound xattr value length in __build_xattrs() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 117/403] ceph: do not repeat ceph_trim_dentries() if no progress possible Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 118/403] btrfs: drop recovered reloc root refs on recovery failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 119/403] audit: avoid dropping live tree ref on fsnotify rule autoremove Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 120/403] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0 Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 121/403] smb: client: clear ce->tgthint in free_tgts() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 122/403] smb: client: fix ALIGN() overflow in symlink_data() error context loop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 123/403] smb: client: fix copy-paste error in WSL EA length accounting for $LXDEV Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 124/403] smb: client: harden DFS cache against invalid target hints Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 125/403] HID: picolcd: clamp eeprom debugfs read to bytes actually received Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 126/403] HID: roccat: free buffered reports when destroying device Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 127/403] HID: sensor: custom: Fix field sysfs group cleanup on failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 128/403] HID: mcp2221: stop device IO before hid_hw_stop Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 129/403] HID: mcp2221: validate report size in mcp2221_raw_event() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 130/403] eventfs: Initialize ei->children and ei->list in init_ei() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 131/403] fs/ntfs3: validate dirty page table on log replay Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 132/403] fs/ntfs3: fix info-leak on partial LZNT decompress in ni_read_frame() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 133/403] fs/ntfs3: bound page_lcns[] index by the log record Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 134/403] eCryptfs: bound the packet-length peek to the user buffer Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 135/403] ecryptfs: fix tag 11 packet exact-fit size check Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 6.12 136/403] ecryptfs: hold msg ctx list lock when cleaning daemon queue Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 137/403] ecryptfs: pass packet set buffer size to parser Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 138/403] ecryptfs: reject oversized encrypted_key_size in parse_tag_3_packet Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 139/403] ecryptfs: reject too-small tag 70 packets Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 140/403] ecryptfs: release message context on send failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 141/403] ecryptfs: show filename encryption options Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 142/403] efivarfs: Rate limit statfs() handler Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 143/403] fat: restore original value when fat_ent_write failed Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 144/403] fbdev: omapfb: panel-dsi-cm: initialize lock before registering display Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 145/403] fbdev: pvr2fb: correct user pointer annotation and sentinel initializer Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 146/403] fbdev: ssd1307fb: defer I2C transfers from damage callbacks Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 147/403] fbdev: uvesafb: unregister connector callback on init failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 148/403] forcedeth: fix off-by-one when saving/restoring non-PCI config space Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 149/403] fpga: stratix10-soc: Fix SVC mailbox handling during reconfiguration Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 150/403] hsi: omap_ssi_core: fix missing DMA mask setup for SSI controller device Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 151/403] ACPI: APEI: Fix ERST timeout unit conversion Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 152/403] ACPI: APEI: GHES: fix ARM section length accounting after header Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 153/403] ACPI: pfr_update: fix stack buffer overflow in query_capability() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 154/403] alpha/PCI: Fix I/O port accessor argument order in pci_legacy_write() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 155/403] alpha: marvel: Fix irq_set_status_flags to use correct IRQ number Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 156/403] alpha: marvel: Fix lock ordering in init_io7_irqs() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 157/403] ARM: 9477/1: Disable broken eBPF JIT on the Risc PC Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 158/403] ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 159/403] auxdisplay: charlcd: cancel backlight work on registration failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 160/403] block: set QUEUE_FLAG_DYING unconditionally in blk_mark_disk_dead() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 161/403] Bluetooth: btusb: Add ASUS USB-BT540 for Realtek 8761CU Greg Kroah-Hartman
2026-09-05 17:04   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  4:59 ` [PATCH 6.12 162/403] Bluetooth: btusb: Add ASUS USB-BT600 " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 163/403] Bluetooth: eir: Fix OOB read in eir_get_service_data() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 164/403] bnx2x: fix double free in bnx2x_init_firmware() error path Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 165/403] bpf, x86: Fix per-CPU address resolution into an extended register Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 166/403] bpf: Disable preemption in __bpf_get_stack Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 167/403] bpf: Harden bloom filter sizing and indexing on 32-bit kernels Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 168/403] dm-era: fix shadowed superblock leak on take-snap failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 169/403] dm raid1: reserve space for NUL-terminator in build_constructor_string() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 170/403] dm array: validate array block headers on read Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 171/403] dm array: reject an array block whose value size is not the callers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 172/403] coresight: etm3x: Fix cntr_val_show() to match cntr_val_store() behavior Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 173/403] cpufreq: schedutil: Fix rate limit overflow Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 174/403] cxl/pmem: Format the nvdimm serial number as unsigned decimal Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 175/403] Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378 Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 176/403] Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 177/403] Bluetooth: hci_uart: Fix false success return in hci_uart_setup() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 178/403] Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 179/403] Bluetooth: RFCOMM: serialize security confirmation handling Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 180/403] Bluetooth: hci_conn: re-enable advertising only for peripheral role Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 181/403] Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 182/403] Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 183/403] Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 184/403] Bluetooth: hci_intel: " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 185/403] Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 186/403] kasan: fix cache shrink race with CPU hotplug Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 187/403] jbd2: bound shrinker scans by examined checkpoint buffers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 188/403] jbd2: check need_resched() when skipping busy " Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 189/403] ipip: fix skb leak in collect_md mode when metadata_dst allocation fails Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 190/403] ip6_tunnel: use skb_cow_head() in ip6_tnl_xmit() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 191/403] ip6_gre: fix hardware header length for NBMA tunnels Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 192/403] ipv6: use RCU iterator to dump route exceptions Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 193/403] libnvdimm/labels: Prevent integer overflow in __nd_label_validate() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 194/403] mailbox: qcom-ipcc: fix duplicate channel allocation across holes Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 195/403] md/raid10: fix still_degraded being inverted in raid10_sync_request() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 6.12 196/403] md: do overflow check for sb->bblog_shift in super_1_load() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 197/403] mpls: reload header after pskb_may_pull() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 198/403] mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 199/403] nouveau/gem: reserve the bo in the info ioctl around the vma lookup Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 200/403] params: fix charp corruption on allocation failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 201/403] SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 202/403] SUNRPC: Zero rpc_gss_wire_cred at svcauth_gss_decode_credbody() entry Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 203/403] SUNRPC: svcauth_gss: enforce krb5 token minimum length Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 204/403] sunrpc: route to a populated pool in svc_pool_for_cpu() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 205/403] SUNRPC: always drain cache_cleaner before destroying a cache_detail Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 206/403] SUNRPC: Check svc pool percpu counter allocation Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 207/403] SUNRPC: Guard svcauth_gss_release() dispatch on rq_auth_stat Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 208/403] SUNRPC: harden gss_krb5_unwrap_v2 against short tokens Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 209/403] SUNRPC: harden gss_unwrap_resp_priv length checks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 210/403] sunrpc: init gssp_lock before publishing proc entry Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 211/403] SUNRPC: reject duplicate CREDS_VALUE options Greg Kroah-Hartman
2026-09-05 18:14   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:00 ` [PATCH 6.12 212/403] SUNRPC: Reject krb5 v2 wrap tokens with oversized ec field Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 213/403] SUNRPC: wait for in-flight client TLS handshake callback Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 214/403] svcrdma: Fix offset arithmetic in read_chunk_range Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 215/403] svcrdma: Fix pcl_for_each_segment for empty chunks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 216/403] svcrdma: Fix unmatched rn_unregister on failed accept Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 217/403] svcrdma: Reject connection when transport allocation fails Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 218/403] svcrdma: Reject inline replies that overflow the pull-up buffer Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 219/403] svcrdma: Use svc_xprt_put to free listener on create failure Greg Kroah-Hartman
2026-09-05 18:24   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:00 ` [PATCH 6.12 220/403] svcrdma: Validate Read chunk positions before reconstruction Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 221/403] udf: reject VAT indexes equal to the entry count Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 222/403] wifi: ath6kl: clamp assoc request/response lengths before subtracting IE offsets Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 223/403] staging: media: tegra-video: fix of_node_put() on VIP parse errors Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 224/403] staging: media: tegra-video: vi: fix probe failure on skipped last port Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 225/403] scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 226/403] rpmsg: glink: smem: order FIFO read after availability check Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 227/403] arm64: dts: qcom: sm6115-pro1x: Correct touchscreen GPIO flags Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 228/403] arm64: dts: rockchip: fix eMMC reset polarity on PX30 Ringneck Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 229/403] arm64: dts: rockchip: Fix rk3399-roc-pc-plus analog audio Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 230/403] riscv: acpi: Handle LPI architectural context loss flags Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 231/403] remoteproc: scp: Fix device reference leak on failed lookup Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 232/403] qede: Fix NULL pointer dereference in TPA fragment processing Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 233/403] RDMA/cxgb4: Cancel reg_work before freeing device on remove Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 234/403] RDMA/ucma: Lock the handler in ucma_set_ib_path() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 235/403] regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 236/403] regulator: max8998_pmic_dt_parse_pdata: of_node_put on reg_np after ownership transferred to rdata Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 237/403] regulator: qcom-refgen: correct the regulator type to CURRENT Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 238/403] ring-buffer: Free cpu_buffer::free_page with subbuf_order Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 239/403] ring-buffer: Hold cpu_buffer::lock when resizing a subbuf Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 240/403] orangefs: fix double-free of trailer_buf on readdir copy failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 241/403] orangefs: skip leading spaces before parsing client debug masks Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 242/403] ocfs2: always run deallocs on copy-on-write completion Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 243/403] ocfs2: bound namelen in dlm_migrate_request_handler Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 244/403] ocfs2: validate lengths in dlm_mig_lockres_handler Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 245/403] ocfs2: validate rl_used against rl_count in refcount block validator Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 246/403] ocfs2: cluster: dont sleep while holding o2hb_live_lock in o2hb_region_pin() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 247/403] ocfs2: cluster: avoid lock order inversion in o2hb_region_pin() from drop_item Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 248/403] ocfs2: cluster: fix o2hb_dependent_users leak on pin failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 249/403] ocfs2: fix readdir position truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 250/403] openrisc: fix arbitrary kernel memory access via or1k_atomic syscall Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 251/403] openvswitch: only skb_tx_error() a packet we are about to drop Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 252/403] ALSA: ump: Fix corrupted data bytes at MIDI 1.0 SysEx to UMP conversion Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 253/403] arm64: compat: Fix decrementing LDM/STM alignment emulation Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 254/403] ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 255/403] hwmon: (max6621) fix negative temperature offset and crit readings Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 6.12 256/403] hwmon: (max6621) fix temperature clamp range Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 257/403] lockd: pin next file across nlm_inspect_file lock-drop Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 258/403] lockd: fix NULL dereference on lockowner allocation failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 259/403] nvme: nvme-fc: Fix nvme_fc_create_hw_io_queues() queue deletion in error path Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 260/403] nvme: zero the discard fallback page Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 261/403] nvme-pci: disable controller on admin queue IRQ setup failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 262/403] nvme-tcp: do not accept C2HData based on blk_rq_payload_bytes() alone Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 263/403] nvme-tcp: fix host memory disclosure on R2T for a read command Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 264/403] nvme-tcp: reject a read that transferred too few bytes Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 265/403] sctp: stop processing a packet once its association is deleted Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 266/403] sctp: drop a chunk if its transport was removed Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 267/403] sctp: fix NULL deref on untransmitted RECONF completion Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 268/403] sctp: distinguish sequence zero from wildcard in reconf lookup Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 269/403] sctp: fix stream->outcnt underflow on duplicate RECONF responses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 270/403] power: supply: bq24257: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 271/403] power: supply: bq256xx: drain usb_work before freeing the charger Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 272/403] power: supply: bq25890: Fix power_supply reference leak Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 273/403] power: supply: charger-manager: register regulators before exposing sysfs Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 274/403] power: supply: cros_usbpd-charger: bound the EC-reported port count Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 275/403] power: supply: cros_usbpd: Limit port counts to EC_USB_PD_MAX_PORTS Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 276/403] power: supply: lp8727: fix use-after-free in lp8727_release_irq() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 277/403] power: supply: lp8788-charger: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 278/403] power: supply: qcom_battmgr: terminate the strings from firmware Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 279/403] power: supply: rt9455: quiesce delayed work before teardown Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 280/403] power: supply: twl4030_charger: cancel workers via devm Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 281/403] power: supply: ucs1002: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 282/403] power: supply: max17040: propagate register read errors Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 283/403] power: supply: max17040: drop incorrect I2C functionality check Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 284/403] power: supply: max17040: synchronize work cancellation on suspend Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 285/403] s390/cpum_cf: Handle CPU hotplug via prepare/dead callbacks Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 286/403] s390/dasd: Do not complete a failed ESE read as successful Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 287/403] s390/dasd: Guard sysfs discipline callbacks against unallocated private data Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 288/403] s390/dasd: Propagate partial completion length across ERP recovery Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 289/403] PCI: Fix 32-bit config write in Intel PCH Root Port MPC ACS quirk Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 290/403] PCI: meson: Fix GPIO state while requesting PERST# Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 291/403] PCI: plda: Fix use-after-free of event IRQs during teardown Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 292/403] PCI: plda: Fix IRQ domain leaks in the error paths of plda_init_interrupts() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 293/403] PCI: Add ACS quirk for Pericom PI7C9X2G608 switches [12d8:2608] Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 294/403] PCI/sysfs: Fix read byte order in pci_read_legacy_io() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 295/403] PCI/sysfs: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 296/403] PCI/ASPM: Avoid L0s for Realtek RTS525A Greg Kroah-Hartman
2026-09-05 18:27   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-04  5:01 ` [PATCH 6.12 297/403] PCI/DPC: Allow DPC on all Downstream Ports when OS controls AER Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 298/403] PCI/MSI: Enable memory decoding before restoring MSI-X messages Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 299/403] PCI/proc: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 300/403] PCI/proc: Use file_ns_capable() when checking config space read access Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 301/403] PCI/proc: Warn on writes to kernel-exclusive config space regions Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 302/403] iommu/amd: Put PCI device after handling PPR faults Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 303/403] iommu/sva: Set handle->dev before the SVA handle is visible Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 304/403] iommu/arm-smmu-v3: Manage teardown with devm Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 305/403] iommu/vt-d: Fix no_iommu to disable platform opt-in Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 306/403] iommu/vt-d: Force requesting ACS when tboot is enabled Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 307/403] platform/x86: dell-wmi-sysman: Dont hex dump attribute security buffer Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 308/403] platform/x86: ISST: Validate level in perf mask ioctls Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 309/403] platform/x86: ISST: Validate socket ID in clos_assoc ioctl Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 310/403] mmc: via-sdmmc: stop card-detect handling on probe failure Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 311/403] platform/x86: ISST: Add a NULL check for sst_inst[] Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 312/403] platform/x86: ISST: Just allow 2 bits for SST feature enable Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 313/403] platform/x86: ISST: Use PP level enable mask Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 314/403] platform/x86: ISST: Validate logical CPU id and clos id Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 315/403] platform/x86: ISST: Validate parameter for core power state Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 6.12 316/403] platform/x86: ISST: Validate parameter for frequency and priority Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 317/403] platform/x86: ISST: Return error during profile addition Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 318/403] platform/x86: ishtp_eclite: Fix ACPI device reference leak in probe error path Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 319/403] platform/chrome: sensorhub: Bound the EC-reported sensor number Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 320/403] platform/x86: hp-bioscfg: accept reduced ACPI packages from older HP BIOS Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 321/403] platform/x86: hp-bioscfg: advance elem past consumed array elements Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 322/403] platform/x86: hp-bioscfg: bound ordered-list parsing by the package count Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 323/403] platform/x86: hp-bioscfg: fix heap OOB read in sk_store() and kek_store() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 324/403] platform/x86: hp-bioscfg: fix heap OOB read on empty password write Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 325/403] platform/x86: hp-bioscfg: fix new_password_store() overwriting current_password Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 326/403] platform/x86: hp-bioscfg: fix off-by-one write in hp_get_string_from_buffer() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 327/403] platform/x86: hp-bioscfg: fix ORD_LIST_ELEMENTS never being parsed Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 328/403] platform/x86: hp-bioscfg: pass validated element count to package parsers Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 329/403] platform/x86: hp-bioscfg: warn on element type mismatch instead of failing Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 330/403] interconnect: Fix use after free in icc_get() and of_icc_get_by_index() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 331/403] ipmi: ipmb: validate write message length Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 332/403] ipmi: si: Fix NULL pointer dereference after failed registration Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 333/403] net/iucv: filter frames in afiucv_hs_rcv() by ingress device Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 334/403] xdp: fix zero-copy frame layout Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 335/403] slip: fix use-after-free in sl_sync() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 336/403] net: usb: qmi_wwan: add Telit Cinterion FE990D50 composition Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 337/403] net: tun: bound receive headroom Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 338/403] net: dsa: realtek: use gpiod_set_value_cansleep for reset GPIO Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 339/403] net: ipa: fix stalled modem TX queue after runtime resume Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 340/403] net: l2tp: do not propagate multicast notification errors Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 341/403] net: openvswitch: fix flow mask use-after-free on flow deletion Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 342/403] net: openvswitch: fix nf_connlabels leak in ovs_ct_init Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 343/403] net: ravb: avoid dereferencing an invalid PTP clock Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 344/403] net: ravb: serialize PTP clock teardown Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 345/403] net: thunderbolt: Release the Rx HopID that was handed out on mismatch Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 346/403] net: thunderbolt: Mark the connection down when bringing it up fails Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 347/403] NTB: ntb_transport: Recycle TX entries before client callbacks Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 348/403] NTB: ntb_transport: Fail TX enqueue when the QP link is down Greg Kroah-Hartman
2026-09-05 18:30   ` Harshit Mogalapalli
2026-09-07  1:21     ` Koichiro Den
2026-09-07  1:22     ` Sasha Levin
2026-09-04  5:02 ` [PATCH 6.12 349/403] NTB: ntb_transport: Reject oversized TX buffers Greg Kroah-Hartman
2026-09-05 18:33   ` Harshit Mogalapalli
2026-09-04  5:02 ` [PATCH 6.12 350/403] net: ntb_netdev: Avoid double-accounting netif_rx() drops Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 351/403] net: ntb_netdev: Count packets dropped on RX refill failure Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 352/403] net/smc: do not dereference an unset send buffer on the SMC-D teardown path Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 353/403] net/smc: fix socket refcount leak in smc_switch_conns() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 354/403] net/smc: fix use-after-free in smc_rx_pipe_buf_release() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 355/403] net/smc: unregister the connection before draining the rx tasklet Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 356/403] net: cap advertised IP tunnel headroom Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 357/403] net: fix spurious TX timeout after dev_activate() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 358/403] net: skbuff: dont touch shared zerocopy state in skb_tx_error() Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 359/403] seg6: reset IP6CB after IPv6 decapsulation Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 360/403] mfd: sm501: Fix potential memory leaks during remove Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 361/403] ALSA: 6fire: bound the MIDI event length from the device Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 362/403] ALSA: aloop: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 363/403] ALSA: bcd2000: clear the URB pointers on disconnect Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 364/403] ALSA: mpu401: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 365/403] ALSA: mts64: " Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 366/403] ALSA: pcxhr: initialize mutexes before requesting threaded IRQ Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 367/403] ALSA: portman2x4: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 368/403] ALSA: serial-u16550: " Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 369/403] ALSA: virmidi: " Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 370/403] ring-buffer: Fix subbuf resize race with ring buffer readers Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 371/403] iommu/amd: remove return value of amd_iommu_detect Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 372/403] x86/sev: Fix broken SNP support with KVM module built-in Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 373/403] rust: rust_is_available: warn for `bindgen` < 0.72.1 && libclang >= 22 Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 374/403] KVM: selftests: Remove duplicate LAUNCH_UPDATE_VMSA call in SEV-ES migrate test Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 375/403] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Greg Kroah-Hartman
2026-09-04  5:02 ` [PATCH 6.12 376/403] arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 377/403] dm-stats: fix a crash if allocation of per-cpu data fails Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 378/403] dm-switch: use WRITE_ONCE() in switch_region_table_write() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 379/403] i3c: master: Fix info leak and UAF in device unregister path Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 380/403] i3c: master: svc: bound IBI payload to the requested max_payload_len Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 381/403] i3c: master: Fix potential UAF in i3c_device_uevent() Greg Kroah-Hartman
2026-09-05 18:35   ` Harshit Mogalapalli
2026-09-06 15:02     ` Sasha Levin
2026-09-07  6:42       ` Adrian Hunter
2026-09-08  0:53         ` Sasha Levin
2026-09-04  5:03 ` [PATCH 6.12 382/403] wifi: brcmfmac: Fix memory leak in brcmf_sdio_read_control() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 383/403] wifi: rtl8xxxu: fix use-after-free from rx_urb_wq on stop Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 384/403] crypto: sun8i-ce - Remove crypto_rng interface Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 385/403] crypto: sun8i-ss " Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 386/403] wifi: mwifiex: Detach sync cmd buffer on interrupted wait Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 387/403] wifi: rtl818x: initialize eeprom_93cx6 struct to zero Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 388/403] wifi: rtlwifi: rtl8192du: check QoS TID before indexing tids Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 389/403] wifi: rtlwifi: rtl8192du: Fix possible memory leak in rtl92du_init_sw_vars() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 390/403] wifi: rtw88: Fix potential memory leak in rtw_txq_push_skb() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 391/403] wifi: rtw88: pci: fix resource leak on failed NAPI setup Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 392/403] wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 393/403] vsock/virtio: flush works in dependency order Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 394/403] w1: ds28e17: reject an oversize length on an I2C block read Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 395/403] xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 396/403] tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 397/403] sticon/parisc: Detect default STI graphics card for console output Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 398/403] signal: avoid shared siginfo namespace rewrites Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 399/403] smack: fix cred UAF in smack_file_send_sigiotask() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 400/403] taskstats: fix cpumask parsing cutting off the last character Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 401/403] timer: Keep debugobjects state consistent in migrate_timer_list() Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 402/403] udf: Fix i_lenExtents truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  5:03 ` [PATCH 6.12 403/403] platform/chrome: sensorhub: Fix dropped timestamp events and log spam Greg Kroah-Hartman
2026-09-04  9:07 ` [PATCH 6.12 000/403] 6.12.109-rc1 review Dominique Martinet
2026-09-04 10:34   ` Jon Hunter
2026-09-04 12:55     ` Dominique Martinet
2026-09-04 13:09   ` Pavel Machek
2026-09-04 12:52 ` Brett A C Sheffield
2026-09-04 21:11 ` Shuah Khan
2026-09-05 11:31 ` Miguel Ojeda

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260904045735.066791211@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linmag7@gmail.com \
    --cc=mattst88@gmail.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox