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, Fan Wu <fanwu01@zju.edu.cn>,
	Sebastian Reichel <sebastian.reichel@collabora.com>
Subject: [PATCH 7.2 504/713] power: supply: lp8727: fix use-after-free in lp8727_release_irq()
Date: Fri,  4 Sep 2026 06:57:52 +0200	[thread overview]
Message-ID: <20260904045815.120810808@linuxfoundation.org> (raw)
In-Reply-To: <20260904045803.810145556@linuxfoundation.org>

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

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

From: Fan Wu <fanwu01@zju.edu.cn>

commit ceb6ac43b0f591722401922ceb958ce2616935e0 upstream.

lp8727_isr_func(), the threaded IRQ handler, is the only caller that arms
pchg->work via schedule_delayed_work().  lp8727_release_irq() currently
cancels the work before freeing the IRQ, so an IRQ delivered in between
can re-arm the work through the threaded handler.  After .remove returns
the devm layer frees pchg while lp8727_delayed_func() may still run and
dereference it.

Free the IRQ first so the threaded handler is quiesced and can no longer
queue work, then cancel the delayed work to drain the final generation.

This issue was found by an in-house static analysis tool.

Fixes: d71fda016102 ("lp8727_charger: Clean up the interrupt handler")
Cc: stable@vger.kernel.org
Assisted-by: Codex:gpt-5.6
Signed-off-by: Fan Wu <fanwu01@zju.edu.cn>
Link: https://patch.msgid.link/20260807033520.8551-1-fanwu01@zju.edu.cn
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/power/supply/lp8727_charger.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

--- a/drivers/power/supply/lp8727_charger.c
+++ b/drivers/power/supply/lp8727_charger.c
@@ -280,10 +280,10 @@ static int lp8727_setup_irq(struct lp872
 
 static void lp8727_release_irq(struct lp8727_chg *pchg)
 {
-	cancel_delayed_work_sync(&pchg->work);
-
 	if (pchg->irq)
 		free_irq(pchg->irq, pchg);
+
+	cancel_delayed_work_sync(&pchg->work);
 }
 
 static enum power_supply_property lp8727_charger_prop[] = {



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

Thread overview: 727+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-04  4:49 [PATCH 7.2 000/713] 7.2.4-rc1 review Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 001/713] drm/amd/display: Skip Update HDCP Config In Transition State Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 002/713] ASoC: tegra210_i2s: sort the register default table Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 003/713] ASoC: tegra210_i2s: sort the Tegra264 " Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 004/713] ASoC: tegra210_mixer: sort the " Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 005/713] ASoC: tegra: Fix the I2S enable default value Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 006/713] ASoC: tegra: Fix the MIXER " Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 007/713] ASoC: tegra: Sort ADMAIF register defaults Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 008/713] ASoC: tegra: Sort MBDRC " Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 009/713] btrfs: write-protect folios during data writeback Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 010/713] ring-buffer: Fix subbuf resize race with ring buffer readers Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 011/713] drm/amd/display: hide Apple Studio Display secondary tile Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 012/713] drm/amd/display: Prune per-tile Timing from Apple Studio Display Primary Tile Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 013/713] alpha: fix ieee_swcr_to_fpcr setting FPCR_DNOD unconditionally Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 014/713] iomap: dont free integrity payload that doesnt exist Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 015/713] rust: time: fix as_micros_ceil() rounding near i64::MAX Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 016/713] alpha: dont leak hardware-fabricated FP exception bits to user space Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 017/713] clocksource/drivers/nxp-pit: Fix IRQ leak on cpuhp_setup_state error path Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 018/713] clocksource/drivers/timer-sun4i: Advertise a real minimum delta Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 019/713] fs: fix user path of nested backing files Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 020/713] ovl: fix double end_creating() on the casefold-mismatch path Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 021/713] pidfd: hold exec_update_lock around namespace ioctl Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 022/713] powerpc/pseries/iommu: switch to Default DMA window during kdump Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 023/713] rust: fmt: fix {:p} printing stack addresses Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 024/713] timers/itimer: Zero-init old itimerval before copy to userspace Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 025/713] objtool/rust: add one more `noreturn` Rust function for Rust 1.99.0 Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 026/713] rust: kbuild: disambiguate `zerocopy` for `rusttest` Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 027/713] rust: bug: skip arch-specific asm in `testlib` builds Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 028/713] rust: bug: fix warn_on macro build error on UML Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 029/713] rust: bug: prevent dead_code warning from warn_on!s flags constant Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 030/713] rust: rust_is_available: warn for `bindgen` < 0.72.1 && libclang >= 22 Greg Kroah-Hartman
2026-09-04  4:49 ` [PATCH 7.2 031/713] rust: dma: return zero for Coherent reads past EOF Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 032/713] rust: devres: fix race between concurrent revokers Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 033/713] rust: devres: ensure revocation is complete before device finishes unbinding Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 034/713] rust: kbuild: disambiguate `zerocopy_derive` for `rusttest` Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 035/713] rust: kernel: list: fix incorrect pop_back example comment Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 036/713] objtool/rust: add one more `noreturn` Rust function Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 037/713] rust: num: restrict bool conversion to unsigned Bounded Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 038/713] rust: cfi: disable function merging if CFI is enabled Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 039/713] kbuild: rust: preserve unreachable traps with inline helpers Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 040/713] kbuild: rust: keep Rust objects out of Clang LTO " Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 041/713] KEYS: trusted: Fix TPM teardown ordering Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 042/713] apparmor: fix cred UAF caused by begin_current_label_crit_section() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 043/713] apparmor: fix out-of-bounds write when null terminating a label vec Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 044/713] include/linux/list.h: mark list_add and __list_add as __always_inline Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 045/713] mm, swap: dont free a hibernation slot that is in the swap cache Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 046/713] mm, swap: ratelimit bad swap entry reports Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 047/713] mm/gup: fix always draining LRU caches in collect_longterm_unpinnable_folios() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 048/713] mm/huge_memory: skip device-private PMDs in madvise_free_huge_pmd Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 049/713] mm/huge_memory: use folios memcg inside __folio_split() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 050/713] mm/hugetlb: fix boot panic with CONFIG_DEBUG_VM and HVO bootmem pages Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 051/713] mm/hugetlb: initialize gigantic bootmem hugepage struct pages earlier Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 052/713] mm/hugetlb_vmemmap: fix __hugetlb_vmemmap_optimize_folios() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 053/713] mm/kmemleak: avoid soft lockup when scanning task stacks Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 054/713] mm/madvise: skip device-private PMDs in cold and pageout walks Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 055/713] mm/mempolicy: skip non-present PMDs when queueing folios Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 056/713] mm/mglru: fix and remove redundant unevictable folio handling Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 057/713] mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 058/713] mm/migrate: use huge_ptep_get() in remove_migration_pte() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 059/713] mm/migrate_device: clear stale mapping after freeing swapcache Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 060/713] mm/mm_init: deferred_grow_zone(): fix out-of-range first_deferred_pfn Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 061/713] mm/page_owner: use memcg_data snapshot to avoid TOCTOU in print_page_owner_memcg() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 062/713] mm/page_vma_mapped: use huge_ptep_get() for hugetlb Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 063/713] mm/pagewalk: fix stale walk->action escaping walk_pmd_range() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 064/713] mm/rmap: use huge_ptep_get() in try_to_unmap_one() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 065/713] mm/rmap: use huge_ptep_get() in try_to_migrate_one() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 066/713] mm/slub: fix missing debugfs entries for caches created before sysfs init Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 067/713] mm/slub: prevent pfmemalloc objects from entering the barn Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 068/713] mm/vmalloc: make vm_struct.nr_pages an unsigned long Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 069/713] mm/vmscan: report RCU-tasks quiescent states in shrink_lruvec() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 070/713] mm/zswap: fix global shrinker when memory cgroup is disabled Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 071/713] mm: compaction: support non-movable compaction for pageblock requests Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 072/713] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 073/713] mm: memcg-v1: fix memsw and TCP failcnt accounting Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 074/713] mm: memcg: stop reclaim when a limit update is superseded Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 075/713] mm: memcontrol: update state_local when flushing NMI stats Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 076/713] mm: mempolicy: fix automatic numa balancing for shmem Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 077/713] mm: page_alloc: __GFP_FS lockdep annotation for direct compaction Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 078/713] mm: page_alloc: move capture_control to the page allocator Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 079/713] mm: page_alloc: fix non-movable reclaim storm in defrag_mode Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 080/713] mm: vmscan: fix node reclaim ignoring swappiness parameter Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 081/713] tools/compiler: match glibc 2.42 definition of __attribute_const__ Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 082/713] x86/locking: Use sfence for wmb() if SSE is available Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 083/713] x86/insn-eval: Move assign_register() out of KVM as insn_assign_reg() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 084/713] x86/tdx: Fix off-by-one in port I/O handling Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 085/713] x86/tdx: Fix zero-extension for 32-bit port I/O Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 086/713] x86/xen: fix init of balloon stats again Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 087/713] hwtracing: hisi_ptt: Propagate DMA reset timeout in trace_start() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 088/713] tracing/user_events: Clear copied tracing state before fork duplication Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 089/713] tracing: Fix crash passing ERR_PTR to kthread_stop() Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 090/713] tracing: Fix logged instance name on creation failure Greg Kroah-Hartman
2026-09-04  4:50 ` [PATCH 7.2 091/713] tracing: Fix retry exhaustion in simple ring buffer reader swap Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 092/713] tracing: Fix use-after-free in trace_pipe read on sub-buffer order change Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 093/713] tracing: Fix use-after-free with same-name named triggers Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 094/713] cdx: Fix double free when sysfs file creation fails Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 095/713] debugfs: Fix lockdown check for mmap_prepare Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 096/713] device property: fix infinite loop in fwnode_for_each_child_node() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 097/713] misc: nsm: bound the device-reported response length Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 098/713] powerpc/powermac: fix OF node refcount Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 099/713] rapidio: mport_cdev: fix use-after-free in dma_req_free() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 100/713] Revert "media: v4l2-dev: fix error handling in __video_register_device()" Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 101/713] serial: imx: serialize imx_uart_ports[] lifetime Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 102/713] staging: greybus: hid: fix SET_REPORT return value Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 103/713] usb: dwc2: gadget: Exit partial power down state when changing USB pull-up Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 104/713] usb: dwc3: gadget: Fix use-after-free in dwc3_gadget_free_endpoints due to race condition Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 105/713] usb: gadget: at91_udc: drain polled-VBUS timer/work before udc is freed Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 106/713] USB: phy: fsl-usb: fix missing static keywords Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 107/713] usb: typec: hd3ss3220: fix VBUS regulator error message Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 108/713] usb: typec: tcpci: pass correct rx_type to tcpm_pd_receive() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 109/713] usb: typec: thunderbolt: Disable work before freeing tbt on remove Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 110/713] usb: typec: ucsi: use UCSI_TIMEOUT_MS for sync command completion Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 111/713] usb: gadget: u_audio: Fix use-after-free on sound card disconnect Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 112/713] usb: gadget: snps_udc_plat: clean up PHY on probe deferral Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 113/713] usb: gadget: midi2: remove default configfs groups on teardown Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 114/713] usb: gadget: f_tcm: fix deadlock in usbg_make_tpg() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 115/713] usb: gadget: uvc: Fix null pointer dereference in uvcg_video_init() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 116/713] usb: gadget: uvc: fix dangling pointers in uvc_function_bind() and uvc_function_unbind() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 117/713] usb: gadget: f_fs: Prevent deadlock during ep0 read loop Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 118/713] cxl/ras: Fix cxl_rch_get_aer_info() out-of-bounds AER register read Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 119/713] fpga: altera-cvp: Avoid out-of-bounds read in trailing byte write Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 120/713] HID: sensor-hub: Fix out-of-bounds write in sensor_hub_get_feature Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 121/713] i3c: renesas: Fix out-of-bounds access for newdevs mask Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 122/713] KVM: arm64: GICv2: Dont WARN on out-of-range GICV_DIR INTID Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 123/713] lib/ucs2_string.c: fix out-of-bounds read in ucs2_strnlen() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 124/713] media: cec: stm32: prevent out-of-bounds write on RX overflow Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 125/713] media: vicodec: fix out-of-bounds write in FWHT encoder Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 126/713] nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 127/713] of: fix out-of-bounds read in of_alias_scan() stem parser Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 128/713] PCI/sysfs: Fix out-of-bounds read in pci_write_legacy_io() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 129/713] phy: rockchip-samsung-dcphy: fix out-of-range max_register Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 130/713] ubifs: fix out-of-bounds read in signature length check Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 131/713] zram: fix out-of-bounds access in read_block_state() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 132/713] zram: fix out-of-bounds access in writeback_store() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 133/713] zram: set default primary compressor in zram_destroy_comps() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 134/713] zram: validate deflate params Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 135/713] zsmalloc: account for handle size in class lookup Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 136/713] NFS/localio: fix ref leak on nfs_uuid_add_file failure Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 137/713] NFS: fix delegation_hash_table leak when nfs4_server_common_setup() fails Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 138/713] NFSD: check truncate permission under inode lock Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 139/713] NFSD: Encode only the status in NFS-ACL v2 GETACL error replies Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 140/713] NFSD: Fix off-by-one in DRC bucket pruning limit Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 141/713] NFSD: fix up error returned by write_threads() Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 142/713] NFSD: restart ssc_expire_umount walk after dropping nfsd_ssc_lock Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 143/713] NFSD: remove flawed WARN_ON_ONCE from nfsd_mode_check Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 144/713] nfsd: guard nfsd_serv deref in nfsd_file_net_dispose Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 145/713] NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 146/713] pNFS: Fix EBUSY check in pnfs_layout_need_return Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 147/713] lockd, nfsd: RCU-protect nlmsvc_ops dispatch Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 148/713] nfsd: RCU-protect cl_cb_session to fix use-after-free on session teardown Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 149/713] nfsd: release path refs on follow_down() error Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 150/713] nfsd: Reset write verifier when async COPY writeback fails Greg Kroah-Hartman
2026-09-04  4:51 ` [PATCH 7.2 151/713] nfsd: restore rq_status_counter to even on all nfsd_dispatch() exit paths Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 152/713] nfsd: return NFS4ERR_NOTSUPP for unsupported netloc4 types Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 153/713] nfsd: sample writeback error cursor before async COPY loop Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 154/713] nfsd: set SC_STATUS_FREED in nfsd4_drop_revoked_stid for delegations Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 155/713] nfsd: size fh_verify server sockaddr slot by xpt_locallen Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 156/713] nfsd: validate nseconds in TIME_DELEG decode paths Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 157/713] nfsd: validate sockaddr length per family in listener_set Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 158/713] nfsd: validate symlink target length in NFSv4 CREATE Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 159/713] nfsd: widen nfsd_genl_rqstp address fields to sockaddr_storage Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 160/713] nfsd: add fh_want_write() for early-verified SETATTR in nfsd_proc_setattr() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 161/713] nfsd: add filehandle match check to nfsd4_delegreturn() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 162/713] nfsd: add missing read barrier to rpc_status_get dumpit seqcount retry Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 163/713] nfsd: block non-SAVEFH ops after FOREIGN PUTFH to prevent NULL deref Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 164/713] nfsd: cap decoded POSIX ACL count to bound sort cost Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 165/713] nfsd: check client ownership when cancelling a copy-notify stateid Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 166/713] nfsd: check nfsd4_acl_to_attr() return value in nfsd4_create() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 167/713] nfsd: clear CALLBACK_RUNNING on failed delegation recall queue Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 168/713] nfsd: clear opcnt on compound arg release to prevent OOB read Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 169/713] nfsd: convert nfsd_net boolean flags to unsigned long flags word Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 170/713] nfsd: dedup nfs4_client_to_reclaim inserts Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 171/713] nfsd: defer setting NFSD4_CALLBACK_RUNNING in deleg_reaper Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 172/713] nfsd: defer vfree of compound ops to fix rpc_status UAF Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 173/713] nfsd: dont free session slots that are still in use Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 174/713] nfsd: drop the stateid, not the stateowner, on seqid_op replay retry Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 175/713] nfsd: ensure nfsd_file_do_acquire() does not use a non-opened file Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 176/713] nfsd: fix BUG_ON in nfsd4_alloc_layout_stateid on racing delegation revoke Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 177/713] nfsd: fix clock domain mismatch in clients_still_reclaiming() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 178/713] nfsd: fix cpntf publish race in nfs4_init_cp_state Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 179/713] nfsd: fix dentry ref leak on V4ROOT export filehandle lookup Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 180/713] nfsd: fix fcache_disposal UAF by inlining dispose state into nfsd_net Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 181/713] nfsd: fix FL_SLEEP being set unconditionally for all LOCK types Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 182/713] nfsd: fix layout fence worker double-reference race Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 183/713] nfsd: fix netlink dumpit error handling for rpc_status_get Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 184/713] nfsd: fix nfsd_file leak on inter-server COPY setup failure Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 185/713] nfsd: fix null dereference in nfsd4_setattr for deleg timestamp attrs Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 186/713] nfsd: fix partial-write detection in nfsd_direct_write Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 187/713] nfsd: fix possible fh_compose of wrong dentry in nfsd4_create_file() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 188/713] nfsd: fix refcount leak in nfsd_file_lru_add on insertion failure Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 189/713] nfsd: fix reply size estimate for GET_DIR_DELEGATION Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 190/713] nfsd: fix stale s2s_cp_stateids IDR entry for async COPY Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 191/713] nfsd: fix UAF in async copy cancel and shutdown Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 192/713] nfsd: fix version mismatch loops in nfsd_acl_init_request() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 193/713] nfsd: fix XDR length calculation in nfsd4_ff_encode_layoutget Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 194/713] nfsd: fix XDR padding calculation in ff_encode_getdeviceinfo Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 195/713] nfsd: gate nfs2 setacl by argp->mask Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 196/713] nfsd: gate nfs3 " Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 197/713] nfsd: hold rcu across localio cmpxchg retry Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 198/713] nfsd: initialize copy-notify stateid before publishing it Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 199/713] nfsd: initialize DRC hash table before registering shrinker Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 200/713] nfsd: move nfsd_debugfs_init() after nfsd4_init_slabs() in init_nfsd() Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 201/713] nfsd: close shrinker/GC/fsnotify vs per-net shutdown race in filecache Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 202/713] nfsd: reject out-of-range nseconds in NFSv3 SETATTR and create ops Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 203/713] nfsd: reject out-of-range useconds in NFSv2 SETATTR/CREATE Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 204/713] nfsd: reject reclaim LOCK after RECLAIM_COMPLETE Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 205/713] nfsd: release OPEN-decoded posix ACLs via op_release Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 206/713] nfsd: revoke copy-notify stateids before dropping their reference Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 207/713] NFSD: Prevent lock owner use-after-free during client teardown Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 208/713] NFSD: Prevent post-shutdown use-after-free in unlock_filesystem Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 209/713] NFSD: Prevent client use-after-free during admin state revocation Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 210/713] NFSD: Prevent client use-after-free during delegation revoke Greg Kroah-Hartman
2026-09-04  4:52 ` [PATCH 7.2 211/713] NFSD: Prevent client use-after-free during NFSv4.0 revoked-state cleanup Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 212/713] nfsd: use test_and_clear_bit for somebody_reclaimed to prevent lost update Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 213/713] libceph: validate OSD extent maps before cursor advance Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 214/713] libceph: reject buckets with mismatched CRUSH ids Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 215/713] ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 216/713] ceph: fix UAF in check_new_map() on session " Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 217/713] ceph: force a cap message when a deferred revoke cant be acked immediately Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 218/713] ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 219/713] ceph: bound copied dentry name length in NFS export get_name Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 220/713] ceph: bound MDSCapAuth path and fs_name decode in handle_session() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 221/713] ceph: bound num_export_targets array for mds info v2/v3 Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 222/713] ceph: bound xattr value length in __build_xattrs() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 223/713] ceph: cap delegated inode count in ceph_parse_deleg_inos() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 224/713] ceph: do not repeat ceph_trim_dentries() if no progress possible Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 225/713] ceph: fix leaked inode reference on writeback abort at umount Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 226/713] btrfs: drop recovered reloc root refs on recovery failure Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 227/713] btrfs: fix extent map leak in NOCOW direct I/O write Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 228/713] btrfs: do not overwrite NODATASUM flag when removing NODATACOW flag Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 229/713] audit: avoid dropping live tree ref on fsnotify rule autoremove Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 230/713] cifs: add cifs_resize_file_locked() to guard fscache_resize_cookie() under i_rwsem Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 231/713] cifs: call pagecache_isize_extended() in cifs_setsize() when extending Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 232/713] cifs: clear tcon after cifsFileInfo_put() in cifs_file_set_size() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 233/713] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0 Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 234/713] cifs: use cifs_invalidate_cache() in cifs_do_truncate() for O_TRUNC Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 235/713] smb: client: clear setuid/setgid bit on write with cifsacl/modefromsid/posix extensions Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 236/713] smb: client: fix UAF and buffer leak in cifs_check_trans2() for malformed secondary T2 Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 237/713] smb: client: clear ce->tgthint in free_tgts() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 238/713] ksmbd: only rebind the reopened files own oplock on durable reconnect Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 239/713] smb: client: fix ALIGN() overflow in symlink_data() error context loop Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 240/713] smb: client: fix copy-paste error in WSL EA length accounting for $LXDEV Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 241/713] smb: client: fix OOB read/write from unvalidated DataOffset in coalesce_t2() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 242/713] smb: client: fix use-before-check of ReparseDataLength in reparse_buf_ptr() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 243/713] smb: client: harden DFS cache against invalid target hints Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 244/713] smb: client: reject a tree connect response whose byte count is too small Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 245/713] smb: client: restore the data_offset bound in is_valid_oplock_break() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 246/713] HID: apple: preserve keyboard backlight across T2 resume Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 247/713] HID: corsair-void: Check size of status and firmware events before reading them Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 248/713] HID: picolcd: clamp eeprom debugfs read to bytes actually received Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 249/713] HID: roccat: free buffered reports when destroying device Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 250/713] HID: sensor: custom: Fix field sysfs group cleanup on failure Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 251/713] HID: sony: fix UAF of ghl_poke_timer / ghl_urb at driver unbind Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 252/713] HID: universal-pidff: stop the device when force-feedback init fails Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 253/713] HID: mcp2221: stop device IO before hid_hw_stop Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 254/713] HID: mcp2221: clear rxbuf after I2C/SMBus transfer completes Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 255/713] HID: mcp2221: validate report size in mcp2221_raw_event() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 256/713] HID: intel-thc-hid: intel-quickspi: validate report size before copy Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 257/713] HID: intel-thc-hid: intel-quickspi: bound GET_REPORT response to the caller buffer Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 258/713] HID: intel-thc-hid: intel-quicki2c: fix autosuspend cleanup during teardown Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 259/713] HID: intel-thc-hid: intel-quickspi: " Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 260/713] eventfs: Initialize ei->children and ei->list in init_ei() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 261/713] fs/ntfs3: validate dirty page table on log replay Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 262/713] fs/ntfs3: fix info-leak on partial LZNT decompress in ni_read_frame() Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 263/713] fs/ntfs3: bound page_lcns[] index by the log record Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 264/713] ntfs: bound the free-cluster bitmap scan to the volume Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 265/713] ntfs: reject invalid empty mapping pairs Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 266/713] ntfs: reject invalid MFT LCNs from boot sector Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 267/713] ntfs: validate non-resident attribute offsets Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 268/713] ntfs: verify run length exceeding volume boundary Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 269/713] eCryptfs: bound the packet-length peek to the user buffer Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 270/713] ecryptfs: fix tag 11 packet exact-fit size check Greg Kroah-Hartman
2026-09-04  4:53 ` [PATCH 7.2 271/713] ecryptfs: hold msg ctx list lock when cleaning daemon queue Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 272/713] ecryptfs: pass packet set buffer size to parser Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 273/713] ecryptfs: reject oversized encrypted_key_size in parse_tag_3_packet Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 274/713] ecryptfs: reject too-small tag 70 packets Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 275/713] ecryptfs: release message context on send failure Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 276/713] ecryptfs: show filename encryption options Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 277/713] efivarfs: Rate limit statfs() handler Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 278/713] entry: Fix seccomp bypass after ptrace with TSYNC Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 279/713] erofs: skip sufficiently large global buffers when resizing Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 280/713] ext2: Fix lost inode updates for IS_SYNC inodes Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 281/713] fanotify: fix use-after-free of file range info Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 282/713] fat: restore original value when fat_ent_write failed Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 283/713] fbdev: omapfb: panel-dsi-cm: initialize lock before registering display Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 284/713] fbdev: pvr2fb: correct user pointer annotation and sentinel initializer Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 285/713] fbdev: ssd1307fb: defer I2C transfers from damage callbacks Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 286/713] fbdev: uvesafb: unregister connector callback on init failure Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 287/713] fonts: fixup font.h kernel-doc warnings Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 288/713] forcedeth: fix off-by-one when saving/restoring non-PCI config space Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 289/713] fpga: stratix10-soc: Fix SVC mailbox handling during reconfiguration Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 290/713] fsnotify: Fix stale object mask after concurrent mark updates Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 291/713] hsi: omap_ssi_core: fix missing DMA mask setup for SSI controller device Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 292/713] hugetlb: only adjust reservation during unmapping if mapcount is 0 Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 293/713] accel/rocket: fix NULL dereference and integer overflow in rocket_job_push() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 294/713] accel/rocket: initialize job domain before cleanup paths Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 295/713] accel/rocket: Fix error path handling in rocket_job_run() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 296/713] acpi/apei/ghes: Use raw_spinlock_t for CXL CPER work locks Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 297/713] ACPI: APEI: Fix ERST timeout unit conversion Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 298/713] ACPI: APEI: GHES: fix ARM section length accounting after header Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 299/713] ACPI: CPPC: Reject desired_perf reads on _CPC revision 4+ Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 300/713] ACPI: CPPC: Skip desired_perf read in cppc_get_perf() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 301/713] ACPI: pfr_update: fix stack buffer overflow in query_capability() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 302/713] ACPI: scan: Avoid registering platform devices with resource overlaps Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 303/713] ACPI: TAD: Add locking around AML evaluations Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 304/713] alpha/PCI: Fix I/O port accessor argument order in pci_legacy_write() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 305/713] alpha: marvel: Fix irq_set_status_flags to use correct IRQ number Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 306/713] alpha: marvel: Fix lock ordering in init_io7_irqs() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 307/713] ARM: 9477/1: Disable broken eBPF JIT on the Risc PC Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 308/713] ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 309/713] auxdisplay: charlcd: cancel backlight work on registration failure Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 310/713] backlight: aw99706: Fix DT property names to match binding Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 311/713] backlight: aw99706: Honor the core blank state in update_status() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 312/713] block: validate user space vectors during extraction Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 313/713] block: set QUEUE_FLAG_DYING unconditionally in blk_mark_disk_dead() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 314/713] Bluetooth: btusb: Add ASUS USB-BT540 for Realtek 8761CU Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 315/713] Bluetooth: btusb: Add ASUS USB-BT600 " Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 316/713] Bluetooth: btusb: limit RTL8761B BROKEN_EXT_SCAN quirk to 0bda:a728 Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 317/713] Bluetooth: eir: Fix OOB read in eir_get_service_data() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 318/713] bnx2x: fix double free in bnx2x_init_firmware() error path Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 319/713] bnxt_en: Write doorbell when linearizing skb fails Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 320/713] bpf, x86: Fix per-CPU address resolution into an extended register Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 321/713] bpf: Disable preemption in __bpf_get_stack Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 322/713] buffer: avoid tail commit walk for uptodate folios Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 323/713] bpf: Harden bloom filter sizing and indexing on 32-bit kernels Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 324/713] dm-io: clone the source bio instead of copying its biovec Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 325/713] dm-io: report non-retryable errors separatedly Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 326/713] dm-era: fix shadowed superblock leak on take-snap failure Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 327/713] dm raid1: reserve space for NUL-terminator in build_constructor_string() Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 328/713] dm array: validate array block headers on read Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 329/713] dm array: reject an array block whose value size is not the callers Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 330/713] coresight: etm3x: Fix cntr_val_show() to match cntr_val_store() behavior Greg Kroah-Hartman
2026-09-04  4:54 ` [PATCH 7.2 331/713] cpufreq: apple-soc: Fix OPP table cleanup Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 332/713] cpufreq: schedutil: Fix rate limit overflow Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 333/713] cxl/features: bound fwctl command payload to the input buffer Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 334/713] cxl/mce: Make the MCE notifier per-region Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 335/713] cxl/pmem: Format the nvdimm serial number as unsigned decimal Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 336/713] cxl/ras: Fix cxl_rch_get_aer_severity() wrong severity register Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 337/713] Bluetooth: hci_bcm4377: Ignore reserved PHY in ext adv reports on BCM4378 Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 338/713] Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 339/713] Bluetooth: hci_uart: Fix false success return in hci_uart_setup() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 340/713] Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 341/713] Bluetooth: RFCOMM: serialize security confirmation handling Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 342/713] Bluetooth: hci_conn: re-enable advertising only for peripheral role Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 343/713] Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 344/713] Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 345/713] Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 346/713] Bluetooth: hci_intel: " Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 347/713] Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 348/713] kasan: fix cache shrink race with CPU hotplug Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 349/713] kho: fix size calculation in kho_preserved_memory_reserve() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 350/713] jbd2: bound shrinker scans by examined checkpoint buffers Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 351/713] jbd2: check need_resched() when skipping busy " Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 352/713] ipip: fix skb leak in collect_md mode when metadata_dst allocation fails Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 353/713] ip: orphan prefetched skbs before multicast forwarding Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 354/713] ip6_tunnel: use skb_cow_head() in ip6_tnl_xmit() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 355/713] ip6_gre: fix hardware header length for NBMA tunnels Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 356/713] ipv6: rpl: fix NULL dereference of idev in ipv6_rpl_srh_rcv() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 357/713] ipv6: use RCU iterator to dump route exceptions Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 358/713] landlock: Require LANDLOCK_ACCESS_FS_MAKE_REG for whiteout creation Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 359/713] libnvdimm/labels: Prevent integer overflow in __nd_label_validate() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 360/713] mailbox: qcom-ipcc: fix duplicate channel allocation across holes Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 361/713] md/raid10: fix still_degraded being inverted in raid10_sync_request() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 362/713] md: do overflow check for sb->bblog_shift in super_1_load() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 363/713] module: validate string table section types Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 364/713] mpls: reload header after pskb_may_pull() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 365/713] mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 366/713] module/kallsyms: fix nextval for data symbol lookup Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 367/713] nouveau/gem: reserve the bo in the info ioctl around the vma lookup Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 368/713] params: fix charp corruption on allocation failure Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 369/713] phy: fsl-imx8mq-usb: fix typec switch leak on probe error path Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 370/713] SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 371/713] SUNRPC: Zero rpc_gss_wire_cred at svcauth_gss_decode_credbody() entry Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 372/713] SUNRPC: svcauth_gss: enforce krb5 token minimum length Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 373/713] sunrpc: route to a populated pool in svc_pool_for_cpu() Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 374/713] SUNRPC: Restore NUMA_NO_NODE for svc thread allocations in global mode Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 375/713] SUNRPC: always drain cache_cleaner before destroying a cache_detail Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 376/713] SUNRPC: Check svc pool percpu counter allocation Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 377/713] SUNRPC: close backchannel before destroying callback service Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 378/713] sunrpc: defer rq_argp and rq_resp free until after RCU grace period Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 379/713] SUNRPC: fix gssx_dec_option_array error path bugs Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 380/713] sunrpc: fix use-after-free in __rpc_clnt_handle_event and __rpc_clnt_remove_pipedir Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 381/713] SUNRPC: Guard svcauth_gss_release() dispatch on rq_auth_stat Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 382/713] SUNRPC: harden gss_krb5_unwrap_v2 against short tokens Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 383/713] SUNRPC: harden gss_unwrap_resp_priv length checks Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 384/713] sunrpc: init gssp_lock before publishing proc entry Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 385/713] SUNRPC: reject duplicate CREDS_VALUE options Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 386/713] SUNRPC: Reject krb5 v2 wrap tokens with oversized ec field Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 387/713] SUNRPC: Reject short RFC 4121 MIC tokens in gss_krb5_verify_mic_v2 Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 388/713] SUNRPC: wait for in-flight client TLS handshake callback Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 389/713] svcrdma: Reorder rpcrdma_rn_unregister before rdma_destroy_id Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 390/713] svcrdma: Clear sc_cm_id when ADDR_CHANGE replacement fails Greg Kroah-Hartman
2026-09-04  4:55 ` [PATCH 7.2 391/713] svcrdma: Fix offset arithmetic in read_chunk_range Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 392/713] svcrdma: Fix pcl_for_each_segment for empty chunks Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 393/713] svcrdma: Fix unmatched rn_unregister on failed accept Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 394/713] svcrdma: Reject connection when transport allocation fails Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 395/713] svcrdma: Reject inline replies that overflow the pull-up buffer Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 396/713] svcrdma: Reject oversized Read segments at decode time Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 397/713] svcrdma: Reject Read lists that exceed the page budget Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 398/713] svcrdma: Reject Write/Reply chunks with segcount 0 Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 399/713] svcrdma: Use svc_xprt_put to free listener on create failure Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 400/713] svcrdma: Validate Read chunk positions before reconstruction Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 401/713] udf: reject VAT indexes equal to the entry count Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 402/713] wifi: ath6kl: clamp assoc request/response lengths before subtracting IE offsets Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 403/713] wifi: mt76: mt7925: cancel pending mlo_pm_work Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 404/713] staging: media: tegra-video: fix of_node_put() on VIP parse errors Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 405/713] staging: media: tegra-video: vi: fix probe failure on skipped last port Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 406/713] media: staging/ipu7: fix async notifier UAF on probe error path Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 407/713] sched/core: Handle pick_task() releasing the rq lock Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 408/713] sched/core: Make core-sched flips wait for in-flight selections Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 409/713] sched_ext: Replace SCX_RQ_BAL_KEEP with a dispatch verdict return Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 410/713] sched_ext: Fix this_rq() assumptions in dispatch kfuncs Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 411/713] sched_ext: Fix rq->core_pick corruption under core scheduling Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 412/713] sched_ext: Count rq lock releases in rq->scx.lock_drop_seq Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 413/713] sched_ext: Fix scx_bpf_dsq_move_to_local___v2 compat detection Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 414/713] sched_ext: Fix exit_task leak on fork failure during enable Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 415/713] sched_ext: Fix inverted ops.core_sched_before() invocation Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 416/713] sched_ext: Dont BUG_ON a destroyed DSQ in process_deferred_reenq_users Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 417/713] sched_ext: Fix scx_bpf_dsq_reenq___compat kfunc extern prototype Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 418/713] sched_ext: Keep kick_sync waiting on the rqs own CPU Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 419/713] scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 420/713] scsi: fnic: Use GFP_ATOMIC for VLAN alloc under spinlock Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 421/713] rpmsg: glink: smem: order FIFO read after availability check Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 422/713] Revert "arm64: dts: rockchip: Further describe the WiFi for the Pinephone Pro" Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 423/713] arm64: dts: qcom: kodiak: avoid EFI overlap for ADSP remote heap Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 424/713] arm64: dts: qcom: sm6115-pro1x: Correct touchscreen GPIO flags Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 425/713] arm64: dts: qcom: x1-dell-thena: mark l12b and l15b always-on Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 426/713] arm64: dts: rockchip: fix eMMC reset polarity on PP-1516 Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 427/713] arm64: dts: rockchip: fix eMMC reset polarity on PX30 Ringneck Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 428/713] arm64: dts: rockchip: fix emmc reset polarity on px30-cobra Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 429/713] arm64: dts: rockchip: Fix rk3399-roc-pc-plus analog audio Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 430/713] arm64: dts: rockchip: Fix rk3588s-roc-pc audio description Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 431/713] riscv: dts: spacemit: k1-bananapi-f3: fix maximum CPU core voltage Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 432/713] riscv: dts: spacemit: k1-milkv-jupiter: " Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 433/713] riscv: dts: spacemit: k1-musepi-pro: " Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 434/713] riscv: dts: spacemit: k1-orangepi-r2s: " Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 435/713] riscv: dts: spacemit: k1-orangepi-rv2: " Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 436/713] RISC-V: KVM: Fix PMU event info array size overflow Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 437/713] riscv: acpi: Handle LPI architectural context loss flags Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 438/713] riscv: unaligned: stop using kthread for check_vector_unaligned_access() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 439/713] remoteproc: scp: Fix device reference leak on failed lookup Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 440/713] ptp: vmclock: prevent read-only mappings from becoming writable Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 441/713] qede: Fix NULL pointer dereference in TPA fragment processing Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 442/713] RDMA/cxgb4: Cancel reg_work before freeing device on remove Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 443/713] RDMA/ionic: Cap eq_count to the eth drivers interrupt vector budget Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 444/713] RDMA/ionic: Embed counter driver data in rdma_counter allocation Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 445/713] RDMA/ucma: Lock the handler in ucma_set_ib_path() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 446/713] RDMA/ucma: Lock the handler in ucma_write_cm_event() Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 447/713] RDMA/uverbs: Add UVERBS_ATTR_UHW to UVERBS_METHOD_REG_MR Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 448/713] RDMA/uverbs: Guard legacy bundles without method_elm Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 449/713] regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 450/713] regulator: max8998_pmic_dt_parse_pdata: of_node_put on reg_np after ownership transferred to rdata Greg Kroah-Hartman
2026-09-04  4:56 ` [PATCH 7.2 451/713] regulator: qcom-refgen: correct the regulator type to CURRENT Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 452/713] ring-buffer: Fix subbuf resize race with ring_buffer_alloc_read_page() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 453/713] ring-buffer: Free cpu_buffer::free_page with subbuf_order Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 454/713] ring-buffer: Hold cpu_buffer::lock when resizing a subbuf Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 455/713] ring-buffer: Make cpu_buffer::free_page a buffer_data_read_page Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 456/713] ring-buffer: Stop remote reader update when page swap fails Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 457/713] PM: sleep: Unblock runtime PM when device prepare fails Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 458/713] orangefs: fix double-free of trailer_buf on readdir copy failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 459/713] orangefs: skip leading spaces before parsing client debug masks Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 460/713] ocfs2: always run deallocs on copy-on-write completion Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 461/713] ocfs2: bound namelen in dlm_migrate_request_handler Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 462/713] ocfs2: validate lengths in dlm_mig_lockres_handler Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 463/713] ocfs2: validate rl_used against rl_count in refcount block validator Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 464/713] ocfs2: validate directory-index entry counts when reading metadata Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 465/713] ocfs2: cluster: dont sleep while holding o2hb_live_lock in o2hb_region_pin() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 466/713] ocfs2: cluster: avoid lock order inversion in o2hb_region_pin() from drop_item Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 467/713] ocfs2: cluster: fix o2hb_dependent_users leak on pin failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 468/713] ocfs2: fix cached cluster count after suballocator reclaim Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 469/713] ocfs2: fix readdir position truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 470/713] openrisc: fix arbitrary kernel memory access via or1k_atomic syscall Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 471/713] openvswitch: Fix CT limit teardown use-after-free Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 472/713] openvswitch: only skb_tx_error() a packet we are about to drop Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 473/713] ALSA: ump: Fix corrupted data bytes at MIDI 1.0 SysEx to UMP conversion Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 474/713] arm64: compat: Fix decrementing LDM/STM alignment emulation Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 475/713] arm64: proton-pack: Restore the nospectre_bhb command-line option Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 476/713] ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 477/713] ASoC: codecs: aw88261: only check PLL and clock state at power-up Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 478/713] dma-contiguous: fix truncation of numa_cma / cma_pernuma sizes >= 2G Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 479/713] hwmon: (max6621) fix negative temperature offset and crit readings Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 480/713] hwmon: (max6621) fix temperature clamp range Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 481/713] i2c: mxs: fix DMA channel leak on probe error Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 482/713] ipmi: Fix use-after-free of cmd_rcvr in _ipmi_destroy_user() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 483/713] lockd: pin next file across nlm_inspect_file lock-drop Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 484/713] lockd: fix NLMv4 GRANTED_MSG handling Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 485/713] lockd: fix NULL dereference on lockowner allocation failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 486/713] lockd: fix swapped arguments in nlmsvc_match_ip() Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 487/713] nvme: nvme-fc: Fix nvme_fc_create_hw_io_queues() queue deletion in error path Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 488/713] nvme: zero the discard fallback page Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 489/713] nvme-pci: disable controller on admin queue IRQ setup failure Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 490/713] nvme-tcp: do not accept C2HData based on blk_rq_payload_bytes() alone Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 491/713] nvme-tcp: fix host memory disclosure on R2T for a read command Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 492/713] nvme-tcp: reject a read that transferred too few bytes Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 493/713] sctp: stop processing a packet once its association is deleted Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 494/713] sctp: drop a chunk if its transport was removed Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 495/713] sctp: fix NULL deref on untransmitted RECONF completion Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 496/713] sctp: distinguish sequence zero from wildcard in reconf lookup Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 497/713] sctp: fix stream->outcnt underflow on duplicate RECONF responses Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 498/713] power: supply: bq24257: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 499/713] power: supply: bq256xx: drain usb_work before freeing the charger Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 500/713] power: supply: bq25890: Fix power_supply reference leak Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 501/713] power: supply: charger-manager: register regulators before exposing sysfs Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 502/713] power: supply: cros_usbpd-charger: bound the EC-reported port count Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 503/713] power: supply: cros_usbpd: Limit port counts to EC_USB_PD_MAX_PORTS Greg Kroah-Hartman
2026-09-04  4:57 ` Greg Kroah-Hartman [this message]
2026-09-04  4:57 ` [PATCH 7.2 505/713] power: supply: lp8788-charger: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 506/713] power: supply: pf1550: enable charging when battery profile exists Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 507/713] power: supply: qcom_battmgr: fix use-after-free Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 508/713] power: supply: qcom_battmgr: terminate the strings from firmware Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 509/713] power: supply: rt9455: quiesce delayed work before teardown Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 510/713] power: supply: twl4030_charger: cancel workers via devm Greg Kroah-Hartman
2026-09-04  4:57 ` [PATCH 7.2 511/713] power: supply: ucs1002: fix use-after-free on remove Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 512/713] power: supply: max17040: propagate register read errors Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 513/713] power: supply: max17040: drop incorrect I2C functionality check Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 514/713] power: supply: max17040: synchronize work cancellation on suspend Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 515/713] s390/cpum_cf: Handle CPU hotplug via prepare/dead callbacks Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 516/713] s390/percpu: Fix MVIY_PERCPU() with older binutils Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 517/713] s390/dasd: Do not complete a failed ESE read as successful Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 518/713] s390/dasd: Guard sysfs discipline callbacks against unallocated private data Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 519/713] s390/dasd: Propagate partial completion length across ERP recovery Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 520/713] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 521/713] PCI: Fix 32-bit config write in Intel PCH Root Port MPC ACS quirk Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 522/713] PCI: meson: Fix GPIO state while requesting PERST# Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 523/713] PCI: starfive: Fix resource leaks on error paths in host_init() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 524/713] PCI: plda: Fix use-after-free of event IRQs during teardown Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 525/713] PCI: plda: Fix IRQ domain leaks in the error paths of plda_init_interrupts() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 526/713] PCI: Add ACS quirk for Pericom PI7C9X2G608 switches [12d8:2608] Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 527/713] PCI/sysfs: Fix read byte order in pci_read_legacy_io() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 528/713] PCI/sysfs: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 529/713] PCI/AER: Emit TLP Log only for unmasked errors Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 530/713] PCI/AER: Fix mapping of errors to agent & layer Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 531/713] PCI/ASPM: Avoid L0s for Realtek RTS525A Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 532/713] PCI/DPC: Allow DPC on all Downstream Ports when OS controls AER Greg Kroah-Hartman
2026-09-04  9:02   ` Lukas Wunner
2026-09-04 14:12     ` Sasha Levin
2026-09-04  4:58 ` [PATCH 7.2 533/713] PCI/MSI: Enable memory decoding before restoring MSI-X messages Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 534/713] PCI/proc: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 535/713] PCI/proc: Use file_ns_capable() when checking config space read access Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 536/713] PCI/proc: Warn on writes to kernel-exclusive config space regions Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 537/713] iommu/amd: Put PCI device after handling PPR faults Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 538/713] iommu/msm: Unwind probe state on registration failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 539/713] iommu/sva: Set handle->dev before the SVA handle is visible Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 540/713] iommu/tegra241-cmdqv: Reject a vSID wider than the SID_MATCH field Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 541/713] iommu/arm-smmu-v3: Add HAFT support for SVA Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 542/713] iommu/arm-smmu-v3: Manage teardown with devm Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 543/713] iommu: Fix dev_iommu memory leak when device_add fails in iommu_mock_device_add Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 544/713] iommu/vt-d: Fix no_iommu to disable platform opt-in Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 545/713] iommu/vt-d: Force requesting ACS when tboot is enabled Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 546/713] iommupt: Return zero for invalid iova_to_phys() ranges Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 547/713] iommufd: Avoid locking internal accesses during unmap Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 548/713] iommufd: Release current IOAS on xa_store() failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 549/713] iommufd: Fix UAF in selftest IOPF reporting Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 550/713] platform/x86: dell-wmi-sysman: Dont hex dump attribute security buffer Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 551/713] platform/x86: ISST: Validate level in perf mask ioctls Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 552/713] platform/x86: ISST: Validate socket ID in clos_assoc ioctl Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 553/713] mmc: via-sdmmc: cancel card-detect work on remove Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 554/713] mmc: via-sdmmc: stop card-detect handling on probe failure Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 555/713] platform/x86: ISST: Add a NULL check for sst_inst[] Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 556/713] platform/x86: ISST: Just allow 2 bits for SST feature enable Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 557/713] platform/x86: ISST: Use PP level enable mask Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 558/713] platform/x86: ISST: Validate logical CPU id and clos id Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 559/713] platform/x86: ISST: Validate max level for set feature Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 560/713] platform/x86: ISST: Validate parameter for core power state Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 561/713] platform/x86: ISST: Validate parameter for frequency and priority Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 562/713] platform/x86: ISST: Return error during profile addition Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 563/713] platform/x86: hp-wmi: Add support for OMEN MAX 16-ak0xxx (8DD6) Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 564/713] platform/x86: int1092: Fix potential memory leak in sar_probe() Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 565/713] platform/x86: ishtp_eclite: Fix ACPI device reference leak in probe error path Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 566/713] platform/x86: lenovo/ymc: Only match lower byte in WMI lid switch query response Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 567/713] platform/x86: panasonic-laptop: Fix sentinel write past pcc->sinf[] Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 568/713] platform/x86: think-lmi: Fix certificate thumbprint sysfs output Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 569/713] platform/x86: think-lmi: Free system certificate signatures Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 570/713] platform/x86: think-lmi: Fix current password length check Greg Kroah-Hartman
2026-09-04  4:58 ` [PATCH 7.2 571/713] platform/chrome: sensorhub: Bound the EC-reported sensor number Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 572/713] platform/x86/amd/pmc: Restore msg_port on amd_stb_s2d_init() error paths Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 573/713] platform/x86/amd/pmc: Propagate SMU errors and validate S2D address Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 574/713] platform/x86/amd/pmc: Fix LPS0 and debugfs leaks when STB init fails Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 575/713] platform/x86/amd/pmc: Fix msg_port restoration in amd_stb_debugfs_open_v2() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 576/713] platform/x86: hp-bioscfg: accept reduced ACPI packages from older HP BIOS Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 577/713] platform/x86: hp-bioscfg: advance elem past consumed array elements Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 578/713] platform/x86: hp-bioscfg: bound ordered-list parsing by the package count Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 579/713] platform/x86: hp-bioscfg: fix heap OOB read in sk_store() and kek_store() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 580/713] platform/x86: hp-bioscfg: fix heap OOB read on empty password write Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 581/713] platform/x86: hp-bioscfg: fix new_password_store() overwriting current_password Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 582/713] platform/x86: hp-bioscfg: fix off-by-one write in hp_get_string_from_buffer() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 583/713] platform/x86: hp-bioscfg: fix ORD_LIST_ELEMENTS never being parsed Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 584/713] platform/x86: hp-bioscfg: pass validated element count to package parsers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 585/713] platform/x86: hp-bioscfg: warn on element type mismatch instead of failing Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 586/713] io_uring/waitid: honor task_work cancellation Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 587/713] io_uring/waitid: avoid siginfo copy during ring teardown Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 588/713] io_uring/query: cap user size passed to copy_struct_to_user Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 589/713] interconnect: Fix use after free in icc_get() and of_icc_get_by_index() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 590/713] ipmi: ipmb: validate write message length Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 591/713] ipmi: Remove all sysfs files on registration failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 592/713] ipmi: si: Fix NULL pointer dereference after failed registration Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 593/713] ipmi:msghandler: Cancel work cleanly on an error Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 594/713] net/iucv: filter frames in afiucv_hs_rcv() by ingress device Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 595/713] xdp: fix zero-copy frame layout Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 596/713] slip: fix use-after-free in sl_sync() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 597/713] net: usb: qmi_wwan: add Telit Cinterion FE990D50 composition Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 598/713] net: tun: bound receive headroom Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 599/713] net: dsa: realtek: use gpiod_set_value_cansleep for reset GPIO Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 600/713] net: bnxt: ring the doorbell when SW USO exits early Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 601/713] net: ibm: emac: mal: fix NAPI locking Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 602/713] net: ipa: fix stalled modem TX queue after runtime resume Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 603/713] net: l2tp: do not propagate multicast notification errors Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 604/713] net: mctp: hold a reference to the route device in mctp_route_lookup() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 605/713] net: openvswitch: fix flow mask use-after-free on flow deletion Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 606/713] net: openvswitch: fix nf_connlabels leak in ovs_ct_init Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 607/713] net: phylink: correctly validate returned PCS in phylink_inband_caps Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 608/713] net: ravb: avoid dereferencing an invalid PTP clock Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 609/713] net: ravb: serialize PTP clock teardown Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 610/713] net: thunderbolt: Release the Rx HopID that was handed out on mismatch Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 611/713] net: thunderbolt: Mark the connection down when bringing it up fails Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 612/713] NTB: ntb_transport: Recycle TX entries before client callbacks Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 613/713] NTB: ntb_transport: Fail TX enqueue when the QP link is down Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 614/713] NTB: ntb_transport: Reject oversized TX buffers Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 615/713] net: ntb_netdev: Fix TX busy and drop handling Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 616/713] net: ntb_netdev: Avoid double-accounting netif_rx() drops Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 617/713] net: ntb_netdev: Count packets dropped on RX refill failure Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 618/713] net/mlx5e: do not HW-GRO coalesce small frames Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 619/713] net/smc: bound the peer rkey counts in SMC-Rv2 LLC messages Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 620/713] net/smc: carry oversized SMC-Rv2 LLC messages in the queue entry Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 621/713] net/smc: do not dereference an unset send buffer on the SMC-D teardown path Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 622/713] net/smc: fix socket refcount leak in smc_switch_conns() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 623/713] net/smc: fix use-after-free in smc_rx_pipe_buf_release() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 624/713] net/smc: fix use-after-free of the LLC qentry in smc_llc_srv_add_link() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 625/713] net/smc: stop killed, freed and out_of_sync sharing a byte Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 626/713] net/smc: unregister the connection before draining the rx tasklet Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 627/713] net: cap advertised IP tunnel headroom Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 628/713] net: fix spurious TX timeout after dev_activate() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 629/713] net: skbuff: dont touch shared zerocopy state in skb_tx_error() Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 630/713] seg6: reset IP6CB after IPv6 decapsulation Greg Kroah-Hartman
2026-09-04  4:59 ` [PATCH 7.2 631/713] hwrng: stm32 - Fix runtime PM cleanup on registration failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 632/713] mfd: cgbc: Fix teardown ordering in cgbc_remove() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 633/713] mfd: qnap-mcu: keep the reply buffer alive past a command timeout Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 634/713] mfd: sm501: Fix potential memory leaks during remove Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 635/713] ALSA: 6fire: bound the MIDI event length from the device Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 636/713] ALSA: aloop: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 637/713] ALSA: bcd2000: clear the URB pointers on disconnect Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 638/713] ALSA: FCP: do not copy out an uninitialised init response Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 639/713] ALSA: hda/ext: preserve PPLCCTL bits when clearing reset Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 640/713] ALSA: mpu401: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 641/713] ALSA: mts64: " Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 642/713] ALSA: pcxhr: initialize mutexes before requesting threaded IRQ Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 643/713] ALSA: portman2x4: Check card index validity at probe Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 644/713] ALSA: serial-u16550: " Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 645/713] ALSA: virmidi: " Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 646/713] ALSA: hda/realtek: Add quirk for TongFang XxAF5xxx Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 647/713] ALSA: hda/realtek: Enable headset mic on F+ FLAPTOP r Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 648/713] ALSA: hda/realtek: Enable micmute LED on HP EliteBook 6 G1a p/n: AD3Q9ET#UUG Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 649/713] ALSA: hda/realtek: Fix Lenovo Yoga Slim 7 14AKP10 quirk ordering Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 650/713] rust: num: reject Bounded::shr overshifts at build time Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 651/713] arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 652/713] dm-stats: fix a crash if allocation of per-cpu data fails Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 653/713] dm-switch: use WRITE_ONCE() in switch_region_table_write() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 654/713] dm-pcache: validate geometry fields from on-disk cache_info Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 655/713] dm-pcache: validate kset key_num and intra-segment bounds Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 656/713] dm-pcache: validate on-media seg_num against the cache device size Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 657/713] dm-pcache: bound the persisted tail-position offset Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 658/713] dm-pcache: clamp the tail kset read to the segment data region Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 659/713] dm-pcache: detect a cycle in the last-kset chain during replay Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 660/713] dm-pcache: only hand out initialized cache segments Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 661/713] dm-pcache: fix implicit u8 truncation of gc_percent in message handler Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 662/713] dm-pcache: fix use-after-free and invalid seg operations in kset_replay() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 663/713] i3c: Fix unlocked dereference of dev->desc in i3c_device_get_supported_xfer_mode() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 664/713] i3c: master: adi: initialize the lock before enabling interrupts Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 665/713] i3c: master: Fix info leak and UAF in device unregister path Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 666/713] i3c: master: svc: bound IBI payload to the requested max_payload_len Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 667/713] i3c: master: Fix potential UAF in i3c_device_uevent() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 668/713] i3c: renesas: Check that the transfer is valid before accessing it Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 669/713] i3c: renesas: Clean DATBAS register on detach Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 670/713] i3c: renesas: Follow the reset deassert order used in probe Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 671/713] i3c: renesas: Reconfigure the DATBAS register on re-attach Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 672/713] i3c: renesas: Reset the controller on resume Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 673/713] i3c: renesas: Restore STDBR and EXTBR registers " Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 674/713] i3c: renesas: Perform Dynamic Address Assignment " Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 675/713] wifi: brcmfmac: Fix memory leak in brcmf_sdio_read_control() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 676/713] wifi: iwlwifi: dvm: fix memory leak in iwl_op_mode_dvm_start() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 677/713] wifi: rtl8xxxu: fix use-after-free from rx_urb_wq on stop Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 678/713] fuse: decouple fuse_ring creation from ent registration Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 679/713] fuse: copy request headers via a stack buffer for io-uring Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 680/713] crypto: iaa - unmap dst before software fallback on decompress Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 681/713] crypto: atmel-ecc - clean up and improve ECDH comments Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 682/713] crypto: atmel-ecc - avoid stale fallback key after set_secret failure Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 683/713] mm/kmemleak: stop the task stack scan early when interrupted Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 684/713] mm/kmemleak: report RCU-tasks quiescent states during the scan Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 685/713] wifi: mwifiex: Detach sync cmd buffer on interrupted wait Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 686/713] wifi: rtl818x: initialize eeprom_93cx6 struct to zero Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 687/713] wifi: rtlwifi: rtl8192du: check QoS TID before indexing tids Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 688/713] wifi: rtlwifi: rtl8192du: Fix possible memory leak in rtl92du_init_sw_vars() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 689/713] wifi: rtw88: Fix potential memory leak in rtw_txq_push_skb() Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 690/713] wifi: rtw88: pci: fix resource leak on failed NAPI setup Greg Kroah-Hartman
2026-09-04  5:00 ` [PATCH 7.2 691/713] wifi: rtw89: pci: add .shutdown callback to stop rfkill polling on reboot Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 692/713] wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 693/713] wifi: mt76: mt7915: bound the device EEPROM address before the EFUSE copy Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 694/713] wifi: mt76: mt7925: cancel mlo_pm_work on stop Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 695/713] wifi: mt76: mt7996: bound the device EEPROM address before the EFUSE copy Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 696/713] wifi: mt76: mt7996: fix TX DMA mapping leak for AddBA req frames Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 697/713] wifi: mt76: mt7996: validate default EEPROM firmware size Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 698/713] vsock/virtio: flush works in dependency order Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 699/713] w1: ds28e17: reject an oversize length on an I2C block read Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 700/713] xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 701/713] zloop: truncate finished zones to zone capacity Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 702/713] tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 703/713] sysctl: move the "cad_pid" entry from pid_table[] to kern_reboot_table[] Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 704/713] sticon/parisc: Detect default STI graphics card for console output Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 705/713] signal: avoid shared siginfo namespace rewrites Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 706/713] smack: fix cred UAF in smack_file_send_sigiotask() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 707/713] taskstats: fix cpumask parsing cutting off the last character Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 708/713] timekeeping: Check the return value of tk_get_aux_ts64 in __do_adjtimex() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 709/713] timer: Keep debugobjects state consistent in migrate_timer_list() Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 710/713] udf: Fix i_lenExtents truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 711/713] selftests/mm: fix on-fault-limit false failure under sudo-rs Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 712/713] ACPI: scan: Do not combine resources that overlap completely Greg Kroah-Hartman
2026-09-04  5:01 ` [PATCH 7.2 713/713] platform/chrome: sensorhub: Fix dropped timestamp events and log spam Greg Kroah-Hartman
2026-09-04  8:48 ` [PATCH 7.2 000/713] 7.2.4-rc1 review Takeshi Ogasawara
2026-09-04  9:31 ` Ronald Warsow
2026-09-04 12:52 ` Brett A C Sheffield
2026-09-04 16:08 ` Markus Reichelt
2026-09-04 21:08 ` Shuah Khan
2026-09-05 11:45 ` Miguel Ojeda
2026-09-05 13:00 ` Barry K. Nathan
2026-09-05 18:07 ` Peter Schneider
2026-09-05 18:33 ` Ron Economos
2026-09-05 20:27 ` Benjamin Boortz
2026-09-06 14:46 ` Jeffrin Thalakkottoor

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=20260904045815.120810808@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=fanwu01@zju.edu.cn \
    --cc=patches@lists.linux.dev \
    --cc=sebastian.reichel@collabora.com \
    --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