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,
	Kimi Security Team <bug-report@moonshot.ai>,
	Peter Zijlstra <peterz@infradead.org>,
	Weiming Shi <shiweiming@moonshot.ai>,
	Yilin Zhang <yilinzhang@moonshot.ai>
Subject: [PATCH 7.2 140/556] perf: Fix use-after-free when perf mmap() revival races with the last munmap()
Date: Wed,  9 Sep 2026 15:37:00 +0200	[thread overview]
Message-ID: <20260909134235.377569751@linuxfoundation.org> (raw)
In-Reply-To: <20260909134230.441546314@linuxfoundation.org>

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

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

From: Yilin Zhang <yilinzhang@moonshot.ai>

commit 58a8108bc73de0740d5b88150465d6690ea5f85f upstream.

perf_mmap_close() drops rb->mmap_count *without* holding
event->mmap_mutex (the refcount_dec_and_test() right before the
refcount_dec_and_mutex_lock() of event->mmap_count). A concurrent
perf_mmap_rb() can slot its entire "revival" path into that window
(perf_mmap holds event->mmap_mutex for its whole duration, including
rb_alloc):

  munmap side (perf_mmap_close)          mmap side (perf_mmap_rb)
  -----------------------------------    --------------------------------
  rb->mmap_count 1 -> 0   (no lock)      (holds event->mmap_mutex)
                                         inc_not_zero(rb->mmap_count) fails
                                         ring_buffer_attach(event, NULL)
                                         rb_alloc() + attach new rb
                                         refcount_set(&event->mmap_count, 1)
  lock; event->mmap_count 1 -> 0
  ring_buffer_attach(event, NULL)
  ring_buffer_put() -> frees the *new* rb

The revival's refcount_set(&event->mmap_count, 1) is an invisible
1 -> 1 write: the close frees the just-revived buffer although the
other process still has it mapped -- a page-level use-after-free
allowing local privilege escalation to root by any unprivileged user
(default kernel.perf_event_paranoid=2).

Swap the order of the two counter updates: event->mmap_count is
dropped first via refcount_dec_and_mutex_lock(), so its 1 -> 0
transition and the ring_buffer_attach() stay serialized with
perf_mmap(). rb->mmap_count == 0 then implies every event using the
buffer is detached already, so the result of the rb->mmap_count drop
can gate the remaining teardown directly and detach_rest is no longer
needed.

An earlier fix for this race from Kyle Zeng and David Lee takes
event->mmap_mutex around both counter updates [0]; here the not-last
close stays lockless.

Fixes: 59741451b49c ("perf: Identify the 0->1 transition for event::mmap_count")
Reported-by: Kimi Security Team <bug-report@moonshot.ai>
Suggested-by: Peter Zijlstra <peterz@infradead.org>
Co-developed-by: Weiming Shi <shiweiming@moonshot.ai>
Signed-off-by: Weiming Shi <shiweiming@moonshot.ai>
Signed-off-by: Yilin Zhang <yilinzhang@moonshot.ai>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/linux-perf-users/20260804060931.711308-1-david.lee@trailofbits.com/ [0]
Cc: <stable@vger.kernel.org>
Cc: stable@vger.kernel.org # 6.18+
Link: https://patch.msgid.link/20260831162155.1437652-1-yilinzhang@moonshot.ai
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 kernel/events/core.c |   20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -7029,7 +7029,6 @@ static void perf_mmap_close(struct vm_ar
 	mapped_f unmapped = get_mapped(event, event_unmapped);
 	struct perf_buffer *rb = ring_buffer_get(event);
 	struct user_struct *mmap_user = rb->mmap_user;
-	bool detach_rest = false;
 
 	/* FIXIES vs perf_pmu_unregister() */
 	if (unmapped)
@@ -7060,17 +7059,18 @@ static void perf_mmap_close(struct vm_ar
 		mutex_unlock(&rb->aux_mutex);
 	}
 
-	if (refcount_dec_and_test(&rb->mmap_count))
-		detach_rest = true;
-
-	if (!refcount_dec_and_mutex_lock(&event->mmap_count, &event->mmap_mutex))
-		goto out_put;
-
-	ring_buffer_attach(event, NULL);
-	mutex_unlock(&event->mmap_mutex);
+	/*
+	 * Drop references in reverse order of perf_mmap() to prevent
+	 * rb revival after rb->mmap_count reaches zero.
+	 */
+	if (refcount_dec_and_mutex_lock(&event->mmap_count,
+					&event->mmap_mutex)) {
+		ring_buffer_attach(event, NULL);
+		mutex_unlock(&event->mmap_mutex);
+	}
 
 	/* If there's still other mmap()s of this buffer, we're done. */
-	if (!detach_rest)
+	if (!refcount_dec_and_test(&rb->mmap_count))
 		goto out_put;
 
 	/*



  parent reply	other threads:[~2026-09-09 13:53 UTC|newest]

Thread overview: 570+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-09 13:34 [PATCH 7.2 000/556] 7.2.5-rc1 review Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 001/556] net: skbuff: dont skb_tx_error() the source skb in skb_zerocopy() Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 002/556] fs/ntfs3: fix slab-out-of-bounds write in ni_create_attr_list() Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 003/556] drm/xe: Dont hand out the flat CCS storage as usable VRAM Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 004/556] mm/page_alloc: dont spin_trylock() in NMI on UP Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 005/556] USB: gadget: ffs: fix mm lifetime handling Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 006/556] usb: gadget: f_fs: Fix Use-After-Free in AIO error path Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 007/556] zram: move lockmap to be per-zram instead per table Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 008/556] zram: fix slot lock bit position on big-endian 64-bit Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 009/556] ceph: properly decrypt filenames in vmalloc() buffers Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 010/556] HID: sony: use guard() and scoped_guard() Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 011/556] HID: sony: clean up device list on probe failure Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 012/556] ACPI: battery: Use kstrtoul() over sscanf("%lu\n") Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 013/556] ACPI: battery: Protect all properties with a separated mutex Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 014/556] KVM: x86/mmu: Fold kvm_mmu_zap_memslot() into kvm_arch_flush_shadow_memslot() Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 015/556] KVM: x86/mmu: Split kvm_mmu_zap_all_fast() into "front" and "back" halves Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 016/556] KVM: x86/mmu: Use split "zap all fast" helpers when invalidating memslot Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 017/556] KVM: SEV: Forcefully invalidate SNP VMSA if its backing gmem page is zapped Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 018/556] NFSD: Annotate caller preconditions for the state-table walkers Greg Kroah-Hartman
2026-09-09 13:34 ` [PATCH 7.2 019/556] NFSD: Guard admin state-revocation walks with NFSD_NET_UP Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 020/556] NFSD: Prevent client use-after-free during export state revocation Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 021/556] NFSD: Consolidate the revocation-path client unpin Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 022/556] NFSD: Prevent client use-after-free during close_lru reaping Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 023/556] NFSD: Prevent client use-after-free during blocked-lock reaping Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 024/556] drm/amd/display: fix division by zero in get_estimated_bw() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 025/556] usb: image: mdc800: change kmalloc() to kzalloc() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 026/556] ALSA: usb-audio: fix OOB write in snd_usbmidi_us122l_output() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 027/556] clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 028/556] media: usbtv: keep device alive while ALSA card exists Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 029/556] usb-storage: ene_ub6250: fix race between scan work and probe Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 030/556] usb: cdnsp: fix wakeup from S3 after controller context loss Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 031/556] usb: f_mass_storage: Bump local buffer size in fsg_common_create_luns() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 032/556] usb: dwc3: google: Initialise probe properties with DWC3_DEFAULT_PROPERTIES Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 033/556] usb: dwc3: clear forceRM when issuing EndTransfer Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 034/556] usb: storage: realtek_cr: fix use-after-free on disconnect Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 035/556] usb: typec: hd3ss3220: track VBUS enable state per consumer Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 036/556] usb: typec: mux: avoid duplicated mux switches Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 037/556] usb: typec: mux: Fix typec_switch_match() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 038/556] usb: typec: qcom-pmic-typec: disable cc_debounce_dwork on stop Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 039/556] usb: typec: qcom-pmic-typec: drain cc_debounce_dwork if port_start() fails Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 040/556] usb: typec: qcom-pmic: cancel reset_work on stop Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 041/556] usb: typec: tcpm: constrain TCPM_SOURCING_VBUS event handling Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 042/556] usb: typec: tipd: Fix Thunderbolt altmode VDOs for cd321x Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 043/556] usb: typec: ucsi: displayport: Fix OOB altmode array index Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 044/556] usb: gadget: midi2: Fix null-pointer dereference in f_midi2_free_ep_reqs Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 045/556] usb: gadget: f_mass_storage: fix null pointer dereference in fsg_common_set_num_buffers() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 046/556] usb: gadget: f_midi2: fix use-after-free in string attribute show path Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 047/556] usb: gadget: f_midi: initialize work in f_midi_alloc() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 048/556] USB: gadget: fix NULL pointer dereference in gadget_dev_ioctl() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 049/556] usb: gadget: fix null pointer dereference in usb_put_function_instance() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 050/556] staging: rtl8723bs: fix OOB read / stack overflow in rtw_get_wps_attr() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 051/556] staging: rtl8723bs: fix OOB read in rtw_action_frame_parse() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 052/556] staging: rtl8723bs: fix OOB read in rtw_restruct_wmm_ie() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 053/556] xhci: fix lost bounce buffers on TDs spanning several ring segments Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 054/556] thermal/drivers/imx: Disable clock on runtime resume failure Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 055/556] thermal/drivers/qoriq: Disable clock on " Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 056/556] tracing/probes: Fix anon_stack check for unnamed bitfields in btf_find_struct_member Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 057/556] tracing: Have show_event_filters/triggers files take trace array ref Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 058/556] tracing: Take trace_array reference when opening options file Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 059/556] userfaultfd: reset err to be 0 when move_pages_ptes succeeded Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 060/556] ublk: clear VM_MAYWRITE on read-only ublk char device mmap Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 061/556] soc: fsl: qe: Add chained_irq_{enter,exit}() calls in cascade handler Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 062/556] soc: qcom: geni-se: Use HW PROG_RAM_DEPTH to validate firmware size Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 063/556] spi: bcm63xx-hsspi: disable clocks on resume failure Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 064/556] spi: bcm63xx: disable clock " Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 065/556] spi: bcmbca-hsspi: disable clocks " Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 066/556] spi: Fix DMA mapping ownership on partial map failure Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 067/556] scsi: target: iscsi: Reserve a terminator byte for the login payload Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 068/556] scsi: bsg: Cap io_uring sense copy to max_response_len Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 069/556] scsi: bsg: Fix TOCTOU in io_uring passthrough command setup Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 070/556] scsi: megaraid_sas: Limit NVMe request size to the PRP chain frame Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 071/556] scsi: pm8001: Use rollback index when freeing MSI-X vectors Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 072/556] Docs/ABI/damon: fix typo in intervals_goal sysfs path Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 073/556] mm/damon/sysfs: read addr_unit only once in damon_sysfs_apply_inputs() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 074/556] mm/damon/sysfs: read ops_id " Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 075/556] mm/damon/tests/core-kunit: catch test failure in test_merge_regions_of() Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 076/556] mm/damon/vaddr-kunit: check region count in three_regions test Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 077/556] samples/damon/mtier: handle damon_start() failure Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 078/556] samples/damon/mtier: handle damon_stop() failure Greg Kroah-Hartman
2026-09-09 13:35 ` [PATCH 7.2 079/556] samples/damon/prcl: handle damon_start() failure Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 080/556] samples/damon/prcl: stop and free damon ctx when damon_call() fails Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 081/556] samples/damon/wsse: handle damon_start() failure Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 082/556] samples/damon/wsse: stop and free damon ctx when damon_call() fails Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 083/556] mm/damon/sysfs-schemes: kobject_del() scheme action destination dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 084/556] mm/damon/sysfs-schemes: kobject_del() scheme dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 085/556] mm/damon/sysfs-schemes: kobject_del() scheme filter dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 086/556] mm/damon/sysfs-schemes: kobject_del() scheme quota goal dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 087/556] mm/damon/sysfs-schemes: kobject_del() scheme region dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 088/556] mm/damon/sysfs: kobject_del() region and target (error) dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 089/556] mm/damon/sysfs: kobject_del() target (normal), context and kdamond dirs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 090/556] mm/damon/core-kunit: check region count before testing in split_at() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 091/556] mm/damon/core-kunit: handle region split failure in filter_out() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 092/556] mm/damon/core-kunit: skip wrong dest walk in commit_dests_for() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 093/556] mm/damon/core-kunit: skip wrong quota goal walk in commit_quota_goals() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 094/556] mm/damon/core-kunit: skip wrong region walk in commit_target_regions() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 095/556] mm/damon/core: handle region split failure in apply_min_nr_regions() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 096/556] mm/damon/core: initialize damos->last_applied Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 097/556] mm/secretmem: properly account locked pages Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 098/556] futex: Prevent rcuwait use-after-free during requeue PI Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 099/556] futex: Provide rt_mutex_.*_schedule() equivalents for futex scheduling Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 100/556] ftrace: Take trace_array reference before accessing its ftrace_ops Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 101/556] ftrace: Synchronize the initialization of ftrace_ops Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 102/556] HID: bpf: serialize device reference release in struct_ops destroy path Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 103/556] HID: rmi: fix OOB access with undersized RMI reports Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 104/556] HID: wacom: validate report length in wacom_intuos_pro2_bt_irq Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 105/556] dm: fix race when loading and unloading a table Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 106/556] dm: fix resume-vs-remove race Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 107/556] dma-buf: dma-heap: dont publish fd before copy_to_user() succeeds Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 108/556] dma-direct: return struct page from dma_direct_alloc_from_pool() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 109/556] dmaengine: fsl-edma: tracing: no ptr dereference during log output Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 110/556] dmaengine: dw-edma: Fix HDMA channel status register access Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 111/556] dmaengine: dw-edma: Complete descriptors before pausing Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 112/556] dmaengine: dw-edma: Initialize IRQ data before requesting IRQs Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 113/556] dmaengine: dw-edma: Mark emulated IRQ as level-triggered Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 114/556] cpuidle: dt_idle_genpd: kfree() the original name allocation Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 115/556] cpuidle: psci: Fix support for probe deferral by dropping the faux device Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 116/556] block: flag zoned disks with GENHD_FL_NO_PART Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 117/556] bpf, riscv: Make arena support depend on ZACAS Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 118/556] bpf: Fix infinite loop in pcpu_freelist push with one possible CPU Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 119/556] ceph: lock mutex in ceph_mds_check_access() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 120/556] ata: ahci: work around lost interrupts on Marvell 88SE61xx Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 121/556] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 122/556] irqchip/stm32mp-exti: Fix the unit of the hwspinlock timeout Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 123/556] kprobes: Protect kprobe_blacklist with RCU Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 124/556] misc: fastrpc: dont publish fd before copy_to_user() succeeds Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 125/556] mm/huge_memory: transfer the pmd dirty bit to the folio on zap Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 126/556] mm/mempolicy: fix sleeping allocation in alloc_pages_bulk_weighted_interleave() Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 127/556] memcg: keep folios objcg same as its node Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 128/556] memcg: bypass the reclaim and oom killer for dying tasks once oom_reaper is done Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 129/556] memcg: make the v1 soft limit knob inert Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 130/556] rtc: rzn1: Handle EPROBE_DEFER for optional pps interrupt Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 131/556] rtc: rzn1: Fix weekday underflow when alarm crosses month boundary Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 132/556] rtc: rzn1: Handle unset alarm weekday in rzn1_rtc_read_alarm Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 133/556] rtc: rzn1: Disable alarm interrupt before reprogramming alarm registers Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 134/556] perf/x86/intel: Fix kernel address leakages in LBR stack Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 135/556] perf/x86/intel: Remove anythread_deprecated bit from perf_capabilities Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 136/556] perf trace: Factor out BPF loop body Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 137/556] perf trace: Refactor augmented_raw_syscalls using bpf_for Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 138/556] perf hisi-ptt: Fix PTT trace TLP header parsing Greg Kroah-Hartman
2026-09-09 13:36 ` [PATCH 7.2 139/556] perf build: Add clang and rust target flags for LoongArch Greg Kroah-Hartman
2026-09-09 13:37 ` Greg Kroah-Hartman [this message]
2026-09-09 13:37 ` [PATCH 7.2 141/556] i2c: designware: Enable interrupt mask workaround for HJMC3001 Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 142/556] i2c: qcom-geni: update frequency table to fix timing parameters Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 143/556] i2c: core: fix debugfs UAF on adapter removal Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 144/556] i2c: mux: Fix channel node leak on adapter add failure Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 145/556] i2c: qcom-cci: fix autosuspend cleanup Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 146/556] arm64: mm: Fix the lockless page-table walk in show_pte() Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 147/556] arm64: Dont read GMID_EL1 when MTE is disabled Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 148/556] arm64: errata: pass REVIDR when matching target implementation CPUs Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 149/556] ALSA: rawmidi: Return the error from snd_rawmidi_input_params() Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 150/556] ALSA: harmony: initialize locks before requesting IRQ Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 151/556] ALSA: pcm: Fix race between non-atomic ops and trigger-start Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 152/556] ring-buffer: Allow splice reads on static buffers Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 153/556] accel/amdxdna: return early from a zero-length flush Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 154/556] accel/ethosu: check MMIO mapping errors in probe Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 155/556] accel/ethosu: fix job completion fence cleanup Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 156/556] nvme-fabrics: fix DHCHAP secret leak on parse failure Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 157/556] nvme-fc: fix double free of fabrics options when nvme_add_ctrl() fails Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 158/556] nvme-tcp: check the data direction of a C2HData PDU Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 159/556] nvme: add missing SRCU grace period in error path Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 160/556] nvme: skip the zoned limits update if the zone info query failed Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 161/556] nvmet-auth: Synchronize timeout work during SQ teardown Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 162/556] nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 163/556] nvmet-tcp: reject unsolicited H2CData PDUs Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 164/556] pmdomain: airoha: fix unselectable AIROHA_CPU_PM_DOMAIN kconfig Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 165/556] Revert "irqchip/mbigen: Fix mbigen node address layout" Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 166/556] Revert "once: dont use a work queue to reset sleepable static key" Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 167/556] Revert "pmdomain: qcom: rpmhpd: Add missing MXC and MMCX power domains for Eliza" Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 168/556] mm: fix incorrect vm_flags usage when checking allowable orders for tmpfs Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 169/556] mm/migrate_device: avoid out-of-bounds writes for compound folios Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 170/556] mm/hugetlb: fix missing migratable flag on same-node hugetlb migration Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 171/556] mm/hugetlb_cma: fix null nodemask dereference in hugetlb_cma_alloc_frozen_folio Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 172/556] mm/hugetlb: keep max_huge_pages when dissolving surplus folios Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 173/556] mm/hugetlb_cgroup: call page_counter_set_max() outside VM_BUG_ON() Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 174/556] nvdimm/btt: reject an arena whose nfree is below the lane count Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 175/556] parisc: eisa: Fix infinite loop when parsing invalid IRQ value Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 176/556] parisc: Fix alignment of asm statements in head.S Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 177/556] powerpc/kexec_file: Fix null-ptr-def in extra size calculation Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 178/556] powerpc/kexec_file: Prevent kexec range truncation Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 179/556] powerpc/mm: fix wrong addr_pfn tracking in compound vmemmap population Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 180/556] powerpc/pseries: Handle and log pseries-wdt registration failures Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 181/556] powerpc/pseries: Move H_WATCHDOG definitions to a common header Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 182/556] powerpc/crash: stop watchdogs before booting kdump kernel Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 183/556] s390/vfio-ap: fix stale pqap_hook pointer on error in vfio_ap_mdev_set_kvm() Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 184/556] s390/vfio-ap: Fix stale do_remove flag across iterations in vfio_ap_mdev_cfg_remove Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 185/556] s390/vfio-ap: Fix control domain removal " Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 186/556] s390/vfio-ap: Fix dereference matrix_mdev->kvm without checking for NULL Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 187/556] s390/vfio-ap: Fix hot-unplug skipped when last AP adapter or domain removed Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 188/556] s390/vfio-ap: Fix missing lock required to access list of ap_matrix_mdev objects Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 189/556] s390/vfio-ap: Fix NULL deref in status_show() during queue probe Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 190/556] s390/vfio-ap: fix potential use of uninitialized apm_filtered bitmap Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 191/556] s390/vfio-ap: Fix required lock not held during update of ap_matrix_mdev object Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 192/556] mtd: afs: validate v2 image info bounds Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 193/556] mtd: mtdoops: free page bitmap when the backing MTD is removed Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 194/556] mtd: nand: realtek-ecc: add missing MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 195/556] mtd: rawnand: pl353: Make sure we use the monolithic helpers for raw accesses Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 196/556] mtd: rawnand: sunxi: group controller delay tables Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 197/556] mtd: rawnand: sunxi: describe tADL and tWHR delays Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 198/556] mtd: rawnand: sunxi: fix H6/H616 controller timings Greg Kroah-Hartman
2026-09-09 13:37 ` [PATCH 7.2 199/556] mtd: rawnand: validate ONFI extended parameter page sections Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 200/556] batman-adv: fix stale receive device on merged fragments Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 201/556] batman-adv: fix TX priority extraction for BATADV_FORW_MCAST Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 202/556] batman-adv: mcast: ensure unshared skb for multicast packets Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 203/556] batman-adv: mcast: linearize skbuff for packet generation Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 204/556] batman-adv: dat: avoid unaligned fault in IP extraction Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 205/556] batman-adv: bla: fix freeing of claims on meshif deletion Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 206/556] batman-adv: bla: prevent CRC corruptions after claim flush Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 207/556] clk: clocking-wizard: fix integer overflow in rate calculation Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 208/556] clk: mediatek: mt8196: Select REGMAP_MMIO for vlpckgen Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 209/556] clk: meson: align gxbb_32k_clk_sel number of parents with actual count Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 210/556] clk: microchip: mpfs: fix regmap_update_bits() mask/val order Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 211/556] clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 212/556] clk: qcom: gcc-msm8939: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 213/556] clk: rockchip: rk3588: Dont change PLL rates when setting dclk_vop2_src Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 214/556] clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 215/556] clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 216/556] clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 217/556] clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 218/556] clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 219/556] i2c: mux: demux-pinctrl: fix OF node leak on kstrdup failure Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 220/556] ASoC: adau1761: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 221/556] ASoC: cs35l33: drain threaded IRQ before runtime suspend Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 222/556] ASoC: cs35l34: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 223/556] ASoC: cx2072x: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 224/556] ASoC: fsl: mpc5200-i2s: Free DMA resources on probe failure Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 225/556] ASoC: fsl_easrc: Use div64_u64 for 64-by-64 division Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 226/556] ASoC: fsl_easrc: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 227/556] ASoC: hdac_hda: Fix hlink refcount leak on component registration failure Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 228/556] AsoC: intel: sst: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 229/556] ASoC: loongson: Fix error handling in ACPI property parsing Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 230/556] ASoC: max9860: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 231/556] ASoC: ml26124: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 232/556] ASoC: pcm512x: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 233/556] ASoC: pm4125-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 234/556] ASoC: rt1017-sdca-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 235/556] ASoC: rt1316-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 236/556] ASoC: rt1318-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 237/556] ASoC: rt1318: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 238/556] ASoC: rt274: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 239/556] ASoC: rt286: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 240/556] ASoC: rt298: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 241/556] ASoC: rt700: drop duplicate reg_default entry Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 242/556] ASoC: rt700: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 243/556] ASoC: rt711-sdca: sort the register default tables Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 244/556] ASoC: rt711: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 245/556] ASoC: rt712-sdca-dmic: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 246/556] ASoC: rt712-sdca-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 247/556] ASoC: rt715-sdca: drop duplicate reg_default entries Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 248/556] ASoC: rt715-sdca: sort the register default tables Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 249/556] ASoC: rt715: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 250/556] ASoC: rt721-sdca-sdw: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 251/556] ASoC: samsung: aries_audio_probe: double of_node_put due to direct assignment without of_node_get Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 252/556] ASoC: sgtl5000: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 253/556] ASoC: sti-sas: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 254/556] ASoC: tas2552: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 255/556] ASoC: tas2764: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 256/556] ASoC: tas2780: " Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 257/556] ASoC: tas2783-sdw: drop duplicate reg_default entry Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 258/556] ASoC: tas2783-sdw: sort the register default table Greg Kroah-Hartman
2026-09-09 13:38 ` [PATCH 7.2 259/556] iio: adc: ad4080: configure backend data size Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 260/556] iio: adc: adi-axi-adc: add data size support for AD408X backend Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 261/556] iio: adc: max14001: add missing select REGMAP to Kconfig Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 262/556] iio: adc: max34408: add missing select REGMAP_I2C " Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 263/556] iio: adc: pac1921: fix wrong channel used in trigger handler read Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 264/556] iio: buffer: Fix potential use-after-free in anonymous buffer release Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 265/556] iio: buffer: Make IIO DMA fence release RCU-safe Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 266/556] iio: buffer: Tie IIO dma fence lock lifetime to the fence Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 267/556] iio: chemical: atlas-sensor: fix PM reference leak in buffer postenable Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 268/556] iio: chemical: atlas-sensor: use iio_trigger_poll_nested() to fix remove UAF Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 269/556] iio: chemical: sgp30: Handle IAQ thread creation failure Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 270/556] iio: dac: ad3552r-hs: fix scnprintf() buffer bound in data source show Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 271/556] iio: dac: ad5446: fix OF module device table Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 272/556] iio: dac: m62332: Fix regulator reference count imbalance Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 273/556] iio: dac: mcp47feb02: add missing select REGMAP_I2C to Kconfig Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 274/556] iio: gyro: mpu3050: fix sign of raw angular velocity readings Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 275/556] iio: imu: st_lsm6dsx: Update enable mask when using sensor fusion Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 276/556] iio: light: apds9306: fix PM reference leak in apds9306_read_data() Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 277/556] iio: light: cm32181: return zero after writing calibscale Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 278/556] iio: light: gp2ap002: Disable regulators on resume failure Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 279/556] iio: light: ltrf216a: fix runtime PM reference leak in error path Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 280/556] iio: pressure: dps310: fix NULL pointer dereference on ACPI probe Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 281/556] iio: pressure: mpl115: Fix runtime PM cleanup Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 282/556] iio: srf04: fix pm_runtime handling on probe error path Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 283/556] iio: temperature: hid-sensor-temperature: switch to non-devm iio_device_register() Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 284/556] iio: ti-ads7138: Disable STATS_EN bit while reading conversion results Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 285/556] iio: light: opt4060: Reject integration times with a non-zero seconds part Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 286/556] iio: light: opt4060: Fix incorrect register name in threshold read error message Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 287/556] iio: light: opt4001: Fix power down clearing bits of the wrong register Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 288/556] iio: light: opt4001: Fix incompatible pointer type passed to div_u64_rem() Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 289/556] iio: light: opt4001: Reject integration times with a non-zero seconds part Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 290/556] iio: light: opt4001: Fix reversed GENMASK() arguments in fault count mask Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 291/556] KVM: PPC: Book3S HV: Validate arch_compat against host compatibility mode Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 292/556] KVM: nVMX: Always flush vpid02 on first use Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 293/556] KVM: nVMX: Decouple INVVPID operand checks from flushing of vpid02 Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 294/556] KVM: nVMX: Ensure KVM_REQ_GET_NESTED_STATE_PAGES is cleared on VM-Exit Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 295/556] KVM: nVMX: Service local TLB flushes on failed nested VM-Enter Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 296/556] KVM: nVM: Ensure INVVPID is emulated on the correct physical CPU Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 297/556] KVM: x86/mmu: Use CMPXCHG when clearing Accessed bit in TDP MMU Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 298/556] KVM: x86/mmu: Consume the locked rmap value in the lockless rmap walk Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 299/556] KVM: x86: hyper-v: Clamp stimer deadline to avoid livelock Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 300/556] KVM: x86: Serialize writes to disabled_quirks using kvm->lock Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 301/556] KVM: x86: Ensure runtime reads of disabled_quirks are resolved once Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 302/556] KVM: x86: Move enabling EFER.SVME and EFER.LMSLE to generic EFER setup Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 303/556] KVM: s390: Fix length check __import_wp_info() Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 304/556] KVM: s390: Fix memory leak in guest debug handling Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 305/556] KVM: s390: Fix old_data leak in guest debug error path Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 306/556] KVM: s390: Free guest debug data on vcpu destroy Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 307/556] KVM: s390: Take srcu when importing watchpoint data Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 308/556] KVM: s390: Zero initialize data structures for inject_pfault_token Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 309/556] KVM: s390: Zero initialize irq in reinject_machine_check Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 310/556] KVM: s390: Fix memory corruption by not reinjecting CK machine checks Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 311/556] KVM: s390: keyop: use mmu_lock to read gmap->asce Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 312/556] KVM: s390: pv: Fix rc/rrc offset for PVM_DUMP Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 313/556] KVM: s390: Restore sigset on error path Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 314/556] KVM: arm64: Consider SCTLR_EL2.M when mapping the L1 VNCR page Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 315/556] KVM: arm64: Handle negative S1 walk levels in VNCR TLB size evaluation Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 316/556] KVM: arm64: Correctly handle end of VA space TLBI invalidation Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 317/556] KVM: arm64: Handle VNCR TLB invalidation race with vcpu_put() VNCR unmapping Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 318/556] KVM: arm64: Make VNCR invalidation participate in MMU invalidation retry Greg Kroah-Hartman
2026-09-09 13:39 ` [PATCH 7.2 319/556] KVM: arm64: Remove VM-wide VNCR mapping counter Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 320/556] KVM: arm64: Sign-extend VA for range-based TLBI invalidation Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 321/556] KVM: arm64: vgic-v3: take an LPI reference in vgic_v3_save_pending_tables Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 322/556] KVM: arm64: vgic: Fix detection of MI on no pending LR Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 323/556] KVM: arm64: vgic: Reset in_kernel on private IRQ allocation failure Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 324/556] KVM: arm64: vgic-its: Dont dereference a NULL collection on ITT save Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 325/556] KVM: arm64: Correctly cap TLBI Range to the architural limit Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 326/556] LoongArch: KVM: Set vcpu->cpu before IN_GUEST_MODE is set Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 327/556] LoongArch: KVM: Fix uninitialized stack variable issue with dmsintc Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 328/556] LoongArch: KVM: Fix PC double advance in kernel MMIO read fast path Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 329/556] LoongArch: KVM: Add unregister helpers for the KVM interrupt devices Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 330/556] LoongArch: KVM: Fix resource leak in kvm_loongarch_env_init() error path Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 331/556] LoongArch: KVM: Fix TOCTOU race on pv_features Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 332/556] LoongArch: KVM: Free init resources if kvm_init() fails Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 333/556] LoongArch: KVM: Preserve memslot arch flags on KVM_MR_FLAGS_ONLY Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 334/556] LoongArch: KVM: Validate MSI data before routing it to EIOINTC Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 335/556] LoongArch: Add DIRECT_MAP_PHYSMEM_END definition Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 336/556] LoongArch: BPF: Optimize redundant TCC loads in epilogue Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 337/556] LoongArch: BPF: Refactor jump offset calculation in tail call Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 338/556] LoongArch: Expand module virtual address space to 2GB Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 339/556] LoongArch: BPF: Move arena register slot below TCC context Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 340/556] LoongArch: BPF: Fix off-by-one error for insn_is_cast_user() Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 341/556] LoongArch: Fix acpi_package_ids[] array overflow Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 342/556] LoongArch: Do not select HAVE_RUST when KASAN is enabled Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 343/556] LoongArch: Do not save/restore percpu base register in rethook trampoline Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 344/556] LoongArch: Avoid preempt count underflow without probe Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 345/556] rust: drm: ioctl: fix unbounded lifetimes in ioctl handler arguments Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 346/556] media: airspy: use vb2_video_unregister_device() on disconnect to fix NULL deref Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 347/556] media: amphion: Remove obsolete frame_count check in venc_start_session Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 348/556] media: bcm2835-unicam: Fix pipeline wrong validation for unpacked formats Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 349/556] media: cec: core: Fix kmemleak due to missed rc_free_device() call Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 350/556] media: cec: disable delayed work before freeing an interrupted transmit Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 351/556] media: cec: extron-da-hd-4k-plus: add sanity check Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 352/556] media: cec: meson: ao-cec-g12a: name the CEC core regmap to avoid debugfs clash Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 353/556] media: cec: Serialize exclusive follower delivery Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 354/556] media: cedrus: fix memory leak in cedrus_init_ctrls() Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 355/556] media: cobalt: Avoid freeing ALSA private data twice Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 356/556] media: cx231xx: reject geometry changes while the VBI queue is busy Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 357/556] media: cx23885: cancel NetUP CI work before teardown Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 358/556] media: dt-bindings: nxp,imx8-isi: Drop fsl,blk-ctrl requirement for i.MX8ULP Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 359/556] media: em28xx: defer audio-only extension registration Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 360/556] media: em28xx: fix use-after-free of dev_next->devlist on disconnect Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 361/556] media: go7007: defer the ALSA v4l2 put until card release Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 362/556] media: i2c: alvium: Fix: Correct name of register in alvium_set_ctrl_auto_exposure Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 363/556] media: i2c: imx415: Release runtime PM reference on VBLANK error Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 364/556] media: i2c: imx415: Return test pattern write errors Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 365/556] media: i2c: ov02a10: fix endpoint parsing use-after-free Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 366/556] media: i2c: ov7740: fix use-after-destroy in remove Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 367/556] media: i2c: ov9282: restore flash duration calculation Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 368/556] media: i2c: vd55g1: Fix manual digital gain on color variant Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 369/556] media: i2c: vd55g1: Fix media bus code initialization Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 370/556] media: imx355: Avoid calling imx355_power_off twice in error path Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 371/556] media: intel/ipu6: fix async notifier cleanup leak on parse error Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 372/556] media: ipu-bridge: check all DMI entries when overriding sensor rotation Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 373/556] media: iris: Enumerate cap->bus_info to differentiate between encoder and decoder Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 374/556] media: meson: vdec: fix NULL pointer deref in vdec_try_fmt_common Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 375/556] media: platform: mtk-mdp3: Fix SCP device refcounting Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 376/556] media: platform: mtk-mdp3: fix NULL deref on failed SCP lookup Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 377/556] media: nxp: imx8-isi: Fix stream ID validation bypass in crossbar routing Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 378/556] media: nxp: imx8-isi: Correct color map between V4L2 and ISI Greg Kroah-Hartman
2026-09-09 13:40 ` [PATCH 7.2 379/556] media: nxp: imx8-isi: Use BIT_ULL() for 64-bit stream masks Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 380/556] media: mali-c55: fix dropped last AEC histogram zone weight Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 381/556] media: mali-c55: Fix clock leak on reset deassert failure Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 382/556] media: mali-c55: Fix AEXP IHIST disable bit shift Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 383/556] media: mali-c55: Fix scaler factor overflow for large crop sizes Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 384/556] media: rc: sunxi-cir: Unregister rc device on probe failure Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 385/556] media: rockchip: rga: dont change RGB quantization Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 386/556] media: rkvdec: Propagate platform_get_irq() errors Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 387/556] media: rkvdec: hevc: tighten EXT SPS RPS control dimensions Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 388/556] media: rkvdec: hevc: guard INTER_REF_PIC_SET_PRED index underflow Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 389/556] media: rtl2832_sdr: use vb2_video_unregister_device() on remove to fix DMA leak Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 390/556] media: rtl2832_sdr: release URBs and stream buffers on start_streaming() failure Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 391/556] media: rzg2l-cru: Align bytesperline to hardware DMA stride requirement Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 392/556] media: s2255: bound JPEG frame size before copying into the buffer Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 393/556] media: s2255: check firmware size before reading trailing marker Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 394/556] media: saa7164: fix cleanup on resource allocation failure Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 395/556] media: tda18250: fix possible integer overflow Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 396/556] media: ti: vpe: quiesce overflow recovery before freeing streams Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 397/556] media: v4l2-async: avoid deleting unlinked ASC entry on link error Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 398/556] media: v4l2-ctrls: validate HEVC EXT SPS RPS counts Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 399/556] media: v4l2-ctrls: Allow unknown HDR10 white point and luminance Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 400/556] media: v4l2-fwnode: Fix fwnode leak in v4l2_fwnode_parse_link Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 401/556] media: venus: fix payload size returned by parse_caps() and parse_alloc_mode() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 402/556] media: venus: fix payload size calculation in parse_raw_formats() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 403/556] media: video-i2c: fix kthread error pointer left in kthread_vid_cap on failure Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 404/556] media: vimc: fix pixel format lookup in enum_framesizes Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 405/556] media: zoran: Avoid freeing a registered video_device twice Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 406/556] media: qcom: iris: fix state-change debug log printing stale value Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 407/556] media: qcom: iris: use disable_irq() during power-off Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 408/556] media: qcom: iris: fix missing hfi_id in gen1 GOP_SIZE cap Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 409/556] media: chips-media: wave5: Guard bit depth check with initial_info_obtained Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 410/556] media: chips-media: wave5: Set inst->std during default format initialization Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 411/556] media: chips-media: wave5: avoid skipping device_run while VPU has work Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 412/556] media: chips-media: wave5: Add timeout while stop_streaming Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 413/556] media: chips-media: wave5: Defer job_finish() only when a DEC_PIC was queued Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 414/556] media: chips-media: wave5: Fix pipeline stall when queuing fails Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 415/556] media: chips-media: wave5: Resume device before setting EOS flag Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 416/556] scsi: qla2xxx: Zero SFP DMA buffer in FRU/I2C bsg handlers Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 417/556] scsi: qla2xxx: Bound i2c->length in I2C " Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 418/556] scsi: qla2xxx: edif: Fix NULL pointer deref in RX SA delete check Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 419/556] scsi: qla2xxx: Fix Name Server logout detection on FWI2 adapters Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 420/556] scsi: qla2xxx: Fix BSG job leak on validate flash image error path Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 421/556] scsi: qla2xxx: Hold vport reference in qla24xx_report_id_acquisition() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 422/556] scsi: qla2xxx: Initialize NVMe abort_work once at submission Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 423/556] scsi: qla2xxx: Check entry_status in qla24xx_modify_vp_config() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 424/556] scsi: qla2xxx: Zero dport diagnostics buffer to avoid info leak Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 425/556] scsi: qla2xxx: Bound image count in qla2x00_update_fru_versions() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 426/556] scsi: qla2xxx: Hold qpair lock when sending NVMe LS reject Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 427/556] scsi: qla2xxx: Clamp MSI-X derived queue counts to avoid truncation Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 428/556] scsi: qla2xxx: Serialize flash version read in reset handler Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 429/556] scsi: qla2xxx: Fix cs84xx use-after-free on host teardown Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 430/556] scsi: qla2xxx: Fix FCE trace use-after-free during firmware dump Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 431/556] scsi: qla2xxx: Zero mailbox struct in qla2x00_get_firmware_state() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 432/556] scsi: qla2xxx: Fix FCE trace enable parsing in debugfs Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 433/556] scsi: qla2xxx: Dont query firmware state while chip is down Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 434/556] scsi: qla2xxx: Reject non-SCSI SRB on status IOCB fast path Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 435/556] scsi: qla2xxx: Fix response queue over-consumption in __qla_consume_iocb() Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 436/556] scsi: qla2xxx: Quiesce response IRQ before freeing request queue Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 437/556] scsi: qla2xxx: Avoid double completion in async IOCB timeout Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 438/556] scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read Greg Kroah-Hartman
2026-09-09 13:41 ` [PATCH 7.2 439/556] scsi: qla2xxx: Avoid req_q_map double-read in qla2x00_error_entry() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 440/556] scsi: qla2xxx: Fix NVMe abort reference leak on repeated abort Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 441/556] scsi: qla2xxx: Drop vport reference under lock in report ID acquisition Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 442/556] scsi: qla2xxx: Hold vport_slock for host map update " Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 443/556] scsi: qla2xxx: Use coherent DMA buffer for D_Port diagnostics Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 444/556] scsi: qla2xxx: Zero-init bsg stack buffers to avoid info leak Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 445/556] scsi: qla2xxx: Skip NVMe LS reject IOCB when FW not started Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 446/556] f2fs: return symlink writeback errors Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 447/556] f2fs: reject overlapping move range after len expansion Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 448/556] f2fs: only redirty pinned folios in redirty_blocks Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 449/556] f2fs: fix to avoid move_range and defragment on device_alias file Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 450/556] f2fs: validate MOVE_RANGE destination size Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 451/556] f2fs: dirty directory inodes on mtime/ctime update Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 452/556] f2fs: use the mount idmap for the owner check in f2fs_xattr_advise_set() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 453/556] f2fs: return writeback error from collapse range Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 454/556] f2fs: limit recovery filename logging to stored length Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 455/556] f2fs: dont drop the top folio order in the f2fs_iostat tracepoint Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 456/556] f2fs: fix to avoid potential section-unaligned pinfile Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 457/556] f2fs: embed f2fs_gc_kthread in f2fs_sb_info Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 458/556] f2fs: fix dentry folio leak in find_in_level Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 459/556] f2fs: fix folio_nr_pages() race after put in large folio invalidate Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 460/556] f2fs: avoid NULL checkpoint thread access in sysfs Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 461/556] f2fs: fix to migrate all curseg types during free_segment_range Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 462/556] f2fs: fix to avoid potential deadloop in f2fs_fsync_node_pages() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 463/556] f2fs: fix i_size when pinned fallocate partially fails Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 464/556] f2fs: fix to return -EFSCORRUPTED in f2fs_get_node_info() correctly Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 465/556] f2fs: fix to off-by-one issue in f2fs_zero_post_eof_page() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 466/556] f2fs: fix to clear dirty flag on folio in error path Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 467/556] f2fs: protect critical_task_priority updates with s_umount Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 468/556] f2fs: fix valid block count leak on data block allocation failure Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 469/556] f2fs: fix to reclaim space in f2fs_allocate_pinning_section() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 470/556] f2fs: fix to pass folio->index to f2fs_sanity_check_node_footer() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 471/556] f2fs: fix to zero post-EOF data when extending file size Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 472/556] drm/amdgpu: Fix init ordering in amdgpu_vram_mgr_init() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 473/556] drm/amdgpu: avoid force-completing uninitialized UVD rings Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 474/556] drm/xe/vram: report FLAT_CCS base misalignment Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 475/556] drm/panthor: harden firmware build-info bounds checks Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 476/556] drm/panthor: fix firmware control interface " Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 477/556] drm/bridge: dw-hdmi: fix i2c adapter leak on probe failure Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 478/556] drm/panel-edp: " Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 479/556] drm: fix race between partial drm_dev_register() failure and ioctl Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 480/556] drm/i915/display: Clear SEL_FETCH_PLANE_CTL on plane disable Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 481/556] drm/i915: Guard against NULL driver_data in i915_pci_probe() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 482/556] drm/ssd130x: fix column and row end address in partial updates for ssd132x Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 483/556] drm/sun4i: fix refcount leak in sun4i_backend_init_sat() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 484/556] drm/ssd130x: fix column and row end address in partial updates in ssd133x Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 485/556] drm/nouveau/disp/r535: Add scanline position support + head state support Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 486/556] drm/hibmc: Fix list of formats on the primary plane Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 487/556] drm/hibmc: Use drm_atomic_helper_check_plane_state() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 488/556] drm/amd/display: avoid divide-by-zero in __is_lut_linear() Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 489/556] drm/amd/display: fix dc_lock leak on GPU reset error paths Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 490/556] drm/amd/display: Fix HPD consideration for VGA/LVDS connectors on DCE Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 491/556] drm/amd/display: validate plane degamma LUT size for private color prop Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 492/556] drm/amd/display: Remove const Qualifier From Non-Pointer Fields Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 493/556] drm/amd/display: Set gpuvm min page size to 4K on dcn35/36 Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 494/556] drm/amdgpu/gfx8: only apply compute quantums to KCQs Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 495/556] drm/amdgpu/vcn: fix integer overflow in dec_msg buffer count check Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 496/556] drm/gud: NUL-terminate TV mode names read from the device Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 497/556] drm/gud: validate TV mode names before creating enum property Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 498/556] drm/msm/dsi: round 6G byte clock rate to the PLL-achievable value Greg Kroah-Hartman
2026-09-09 13:42 ` [PATCH 7.2 499/556] drm: Fix drm_crtc_commit leak if signaled when PAGE_FLIP_EVENT is used Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 500/556] drm/ttm: Drop tt->restore after successful restore Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 501/556] drm/amdgpu: check thunderbolt before switcheroo registration Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 502/556] drm/amdgpu: delay ttm buffer func enablement on xgmi Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 503/556] drm/amdgpu: clamp the isolation index for rings outside a partition Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 504/556] drm/amdgpu: Disable runtime PM for externally attached dGPUs Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 505/556] drm/amdgpu: fix autosuspend cleanup during removal Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 506/556] drm/amdgpu: fix byte/dword unit mismatch in coredump IB dump Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 507/556] drm/amdgpu: fix Idle BOs list in VM debugfs status info Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 508/556] drm/amdgpu: force complete the KIQ ring fences on reset Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 509/556] drm/amdgpu: force complete the MES " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 510/556] drm/amdgpu: Skip accessing psp rum time db for APUs Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 511/556] drm/amdgpu: update the fw version for gfx11 userqueues Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 512/556] drm/amdgpu: update the fw version for gfx12 userqueues Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 513/556] drm/amdgpu: use AMDGPU_GPU_PAGE_SHIFT instead of PAGE_SHIFT Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 514/556] drm/amdkfd: Add TLB flush after MES queue eviction/suspension Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 515/556] drm/amdkfd: Fix error path at svm_migrate_copy_to_ram Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 516/556] drm/amdkfd: fix scope of mqd_mgr dereference in pqm_debugfs_mqds Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 517/556] drm/amdkfd: Fix the case that vm range is hole at svm_migrate_copy_to_vram Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 518/556] drm/amdkfd: guard against NULL restore_mqd in CRIU queue restore Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 519/556] drm/amdkfd: Reject zero-sized AQL queue allocations after size halving Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 520/556] drm/sysfb: simpledrm: Improve framebuffer-size validation Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 521/556] drm/sysfb: simpledrm: Improve panel-size validation Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 522/556] drm/sysfb: simpledrm: Improve stride validation Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 523/556] drm/sysfb: ofdrm: Fix integer overflow in fb_size calculation Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 524/556] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 525/556] drm/pagemap: Fix folio allocation fallback and use-after-put Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 526/556] drm/nouveau/dmem: fix callocated underflow on large folio split Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 527/556] drm/nouveau/dmem: fix mismatched DMA unmap size for large folios Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 528/556] drm/nouveau/gsp: use per-version DP_CONFIG_STREAM params on r570 firmware Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 529/556] drm/nouveau: unsubscribe the channel-kill event before the fence context Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 530/556] drm/nouveau: Use write-combined maps for coherent Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 531/556] drm/nouveau/uvmm: fix NULL deref unwinding an OP_MAP_SPARSE op Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 532/556] drm/nouveau/uvmm: fix premature region free on failed OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 533/556] drm/nouveau/uvmm: clear the dirty flag when unwinding an OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 534/556] drm/nouveau/disp: move GSP head-timing ISR and vblank helpers to tu102.c Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 535/556] drm/nouveau/disp: move the GSP HDMI GCP AVMute write to engine/disp Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 536/556] drm/nouveau/disp: route GSP-RM display MMIO through nvkm_disp_func hooks Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 537/556] drm/nouveau/disp: fix HDMI vendor infoframes on GB20x Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 538/556] drm/nouveau/disp: fix HDMI GCP AVMute register offsets " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 539/556] drm/nouveau/disp: fix head state readback " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 540/556] drm/nouveau/gsp: fix vblank interrupts " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 541/556] ksmbd: fix use-after-free in oplock break notification Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 542/556] bpf: Factor stackid_init function from __bpf_get_stackid Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 543/556] bpf: Factor stackid_fastpath " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 544/556] bpf: Factor stackid_new_bucket " Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 545/556] bpf: Use stack id functions instead of __bpf_get_stackid Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 546/556] bpf: Disable preemption in bpf_get_stackid Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 547/556] rpcrdma: arm rn_done before publishing the notification Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 548/556] remoteproc: qcom: pas: Guard dtb metadata release with dtb_pas_id check Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 549/556] power: supply: ab8500_fg: Remove redundant dev_err()/dev_err_probe() Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 550/556] power: supply: ab8500_fg: fix use-after-free on remove Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 551/556] mm/damon/core: avoid infinite kdamond_merge_regions() internal loop Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 552/556] mm/damon/ops-common: use nr_accesses moving sum for quota score Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 553/556] mm/damon/paddr: drop last same folio access check reuse optimization Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 554/556] mm/damon/vaddr: drop last same folio access check optimization Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 555/556] PCI: Introduce PCI_SLOT_PLACEHOLDER constant for slot_nr placeholder value Greg Kroah-Hartman
2026-09-09 13:43 ` [PATCH 7.2 556/556] PCI: Allow per function PCI slots to fix slot reset on s390 Greg Kroah-Hartman
2026-09-09 15:51 ` [PATCH 7.2 000/556] 7.2.5-rc1 review Ronald Warsow
2026-09-09 16:06 ` Brett A C Sheffield
2026-09-09 18:44 ` Florian Fainelli
2026-09-09 22:23 ` Shuah Khan
2026-09-09 22:52 ` Miguel Ojeda
2026-09-09 23:08 ` Takeshi Ogasawara
2026-09-10 12:07 ` Dileep malepu
2026-09-10 12:23 ` Wentao Guan
2026-09-10 13:51 ` Justin Forbes
2026-09-10 14:57 ` Ron Economos
2026-09-10 17:36 ` Barry K. Nathan
2026-09-10 21:08 ` Benjamin Boortz
2026-09-11  8:24 ` Peter Schneider

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=20260909134235.377569751@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bug-report@moonshot.ai \
    --cc=patches@lists.linux.dev \
    --cc=peterz@infradead.org \
    --cc=shiweiming@moonshot.ai \
    --cc=stable@vger.kernel.org \
    --cc=yilinzhang@moonshot.ai \
    /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