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, sashiko-bot <sashiko-bot@kernel.org>,
	"Zhang, Yanmin" <yanmin_zhang@linux.intel.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Namhyung Kim <namhyung@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 0835/1376] perf machine: Free scandir entries in guest kernel map creation
Date: Sat, 12 Sep 2026 08:54:21 +0200	[thread overview]
Message-ID: <20260912065626.156657268@linuxfoundation.org> (raw)
In-Reply-To: <20260912065607.535295758@linuxfoundation.org>

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

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

From: Arnaldo Carvalho de Melo <acme@redhat.com>

[ Upstream commit f53bf58dcd11e1cb088d3b91a035fef77062094b ]

machines__create_guest_kernel_maps() calls scandir() which allocates
both the namelist array and each individual dirent entry.  The code
frees the namelist array but not the individual entries, leaking memory
proportional to the number of directories under guestmount.

Free each namelist[i] after it is no longer needed.

Fixes: a1645ce12adb ("perf: 'perf kvm' tool for monitoring guest performance from host")
Reported-by: sashiko-bot <sashiko-bot@kernel.org>
Cc: Zhang, Yanmin <yanmin_zhang@linux.intel.com>
Assisted-by: Claude:claude-opus-4.6
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/util/machine.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c
index 1cef434b3c8dc..a958184d3bb38 100644
--- a/tools/perf/util/machine.c
+++ b/tools/perf/util/machine.c
@@ -1210,6 +1210,7 @@ int machines__create_guest_kernel_maps(struct machines *machines)
 		for (i = 0; i < items; i++) {
 			if (!isdigit(namelist[i]->d_name[0])) {
 				/* Filter out . and .. */
+				free(namelist[i]);
 				continue;
 			}
 			errno = 0;
@@ -1219,6 +1220,7 @@ int machines__create_guest_kernel_maps(struct machines *machines)
 			    (errno == ERANGE)) {
 				pr_debug("invalid directory (%s). Skipping.\n",
 					 namelist[i]->d_name);
+				free(namelist[i]);
 				continue;
 			}
 			snprintf(path, sizeof(path), "%s/%s/proc/kallsyms",
@@ -1226,9 +1228,11 @@ int machines__create_guest_kernel_maps(struct machines *machines)
 				 namelist[i]->d_name);
 			if (access(path, R_OK)) {
 				pr_debug("Can't access file %s\n", path);
+				free(namelist[i]);
 				continue;
 			}
 			machines__create_kernel_maps(machines, pid);
+			free(namelist[i]);
 		}
 		free(namelist);
 	}
-- 
2.53.0




  parent reply	other threads:[~2026-09-12 12:43 UTC|newest]

Thread overview: 1387+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-12  6:40 [PATCH 6.12 0000/1376] 6.12.110-rc1 review Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0001/1376] net: skbuff: dont skb_tx_error() the source skb in skb_zerocopy() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0002/1376] net: openvswitch: fix kernel-doc warnings in internal headers Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0003/1376] openvswitch: Fix CT limit teardown use-after-free Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0004/1376] landlock: Require LANDLOCK_ACCESS_FS_MAKE_REG for whiteout creation Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0005/1376] xsk: cache csum_start/csum_offset to fix TOCTOU in xsk_skb_metadata() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0006/1376] netfs: Fix netfs_read_folio() to wait on writeback Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0007/1376] mm/page_vma_mapped: use huge_ptep_get() for hugetlb Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0008/1376] wifi: mt76: mt7996: validate default EEPROM firmware size Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0009/1376] hugetlb: only adjust reservation during unmapping if mapcount is 0 Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0010/1376] fsnotify: Fix stale object mask after concurrent mark updates Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0011/1376] tcp: fix potential race in tcp_v6_syn_recv_sock() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0012/1376] entry: Fix seccomp bypass after ptrace with TSYNC Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0013/1376] objtool/rust: add one more `noreturn` Rust function Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0014/1376] fsnotify: inotify: pass mark connector to fsnotify_recalc_mask() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0015/1376] net: ntb_netdev: Fix TX busy and drop handling Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0016/1376] drm/amd/display: fix division by zero in get_estimated_bw() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0017/1376] usb: image: mdc800: change kmalloc() to kzalloc() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0018/1376] ALSA: usb-audio: fix OOB write in snd_usbmidi_us122l_output() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0019/1376] clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0020/1376] media: usbtv: keep device alive while ALSA card exists Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0021/1376] usb-storage: ene_ub6250: fix race between scan work and probe Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0022/1376] usb: f_mass_storage: Bump local buffer size in fsg_common_create_luns() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0023/1376] usb: typec: qcom-pmic-typec: disable cc_debounce_dwork on stop Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0024/1376] usb: typec: qcom-pmic-typec: drain cc_debounce_dwork if port_start() fails Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0025/1376] usb: typec: qcom-pmic: cancel reset_work on stop Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0026/1376] usb: typec: ucsi: displayport: Fix OOB altmode array index Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0027/1376] usb: gadget: midi2: Fix null-pointer dereference in f_midi2_free_ep_reqs Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0028/1376] usb: gadget: f_midi2: fix use-after-free in string attribute show path Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0029/1376] usb: gadget: f_midi: initialize work in f_midi_alloc() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0030/1376] USB: gadget: fix NULL pointer dereference in gadget_dev_ioctl() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0031/1376] usb: gadget: fix null pointer dereference in usb_put_function_instance() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0032/1376] staging: rtl8723bs: fix OOB read / stack overflow in rtw_get_wps_attr() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.12 0033/1376] staging: rtl8723bs: fix OOB read in rtw_action_frame_parse() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0034/1376] thermal/drivers/imx: Disable clock on runtime resume failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0035/1376] thermal/drivers/qoriq: Disable clock on " Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0036/1376] ublk: clear VM_MAYWRITE on read-only ublk char device mmap Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0037/1376] spi: bcm63xx-hsspi: disable clocks on resume failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0038/1376] spi: bcm63xx: disable clock " Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0039/1376] spi: bcmbca-hsspi: disable clocks " Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0040/1376] spi: Fix DMA mapping ownership on partial map failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0041/1376] scsi: target: iscsi: Reserve a terminator byte for the login payload Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0042/1376] scsi: pm8001: Use rollback index when freeing MSI-X vectors Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0043/1376] mm/damon/sysfs-schemes: kobject_del() scheme dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0044/1376] mm/damon/sysfs-schemes: kobject_del() scheme filter dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0045/1376] mm/damon/sysfs-schemes: kobject_del() scheme quota goal dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0046/1376] mm/damon/sysfs-schemes: kobject_del() scheme region dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0047/1376] mm/damon/sysfs: kobject_del() region and target (error) dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0048/1376] mm/damon/sysfs: kobject_del() target (normal), context and kdamond dirs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0049/1376] mm/damon/core-kunit: check region count before testing in split_at() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0050/1376] futex: Prevent rcuwait use-after-free during requeue PI Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0051/1376] ftrace: Synchronize the initialization of ftrace_ops Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0052/1376] HID: bpf: serialize device reference release in struct_ops destroy path Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0053/1376] HID: rmi: fix OOB access with undersized RMI reports Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0054/1376] HID: wacom: validate report length in wacom_intuos_pro2_bt_irq Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0055/1376] dm: fix race when loading and unloading a table Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0056/1376] dm: fix resume-vs-remove race Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0057/1376] dma-direct: return struct page from dma_direct_alloc_from_pool() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0058/1376] dmaengine: fsl-edma: tracing: no ptr dereference during log output Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0059/1376] dmaengine: dw-edma: Fix HDMA channel status register access Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0060/1376] dmaengine: dw-edma: Complete descriptors before pausing Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0061/1376] dmaengine: dw-edma: Initialize IRQ data before requesting IRQs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0062/1376] cpuidle: dt_idle_genpd: kfree() the original name allocation Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0063/1376] block: flag zoned disks with GENHD_FL_NO_PART Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0064/1376] ceph: lock mutex in ceph_mds_check_access() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0065/1376] ata: ahci: work around lost interrupts on Marvell 88SE61xx Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0066/1376] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0067/1376] irqchip/stm32mp-exti: Fix the unit of the hwspinlock timeout Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0068/1376] kprobes: Protect kprobe_blacklist with RCU Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0069/1376] mm/mempolicy: fix sleeping allocation in alloc_pages_bulk_weighted_interleave() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0070/1376] tcp: clear sock_ops cb flags before force-closing a child socket Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0071/1376] Input: aiptek - validate raw macro indices before updating state Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0072/1376] memcg: make the v1 soft limit knob inert Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0073/1376] rtc: rzn1: Fix weekday underflow when alarm crosses month boundary Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0074/1376] rtc: rzn1: Disable alarm interrupt before reprogramming alarm registers Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0075/1376] perf/x86/intel: Fix kernel address leakages in LBR stack Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0076/1376] perf trace: Factor out BPF loop body Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0077/1376] perf trace: Refactor augmented_raw_syscalls using bpf_for Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0078/1376] perf hisi-ptt: Fix PTT trace TLP header parsing Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0079/1376] i2c: core: fix debugfs UAF on adapter removal Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0080/1376] i2c: mux: Fix channel node leak on adapter add failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0081/1376] arm64: mm: Fix the lockless page-table walk in show_pte() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0082/1376] ALSA: rawmidi: Return the error from snd_rawmidi_input_params() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0083/1376] ALSA: harmony: initialize locks before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0084/1376] ALSA: pcm: Fix race between non-atomic ops and trigger-start Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0085/1376] nvme-fabrics: fix DHCHAP secret leak on parse failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0086/1376] nvme-fc: fix double free of fabrics options when nvme_add_ctrl() fails Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0087/1376] nvme-tcp: check the data direction of a C2HData PDU Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0088/1376] nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0089/1376] nvmet-tcp: reject unsolicited H2CData PDUs Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0090/1376] Revert "irqchip/mbigen: Fix mbigen node address layout" Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0091/1376] mm/hugetlb: fix missing migratable flag on same-node hugetlb migration Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0092/1376] nvdimm/btt: reject an arena whose nfree is below the lane count Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.12 0093/1376] parisc: eisa: Fix infinite loop when parsing invalid IRQ value Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0094/1376] parisc: Fix alignment of asm statements in head.S Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0095/1376] powerpc/kexec_file: Fix null-ptr-def in extra size calculation Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0096/1376] powerpc/kexec_file: Prevent kexec range truncation Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0097/1376] powerpc/mm: fix wrong addr_pfn tracking in compound vmemmap population Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0098/1376] powerpc/pseries: Handle and log pseries-wdt registration failures Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0099/1376] powerpc/pseries: Move H_WATCHDOG definitions to a common header Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0100/1376] powerpc/crash: stop watchdogs before booting kdump kernel Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0101/1376] s390/vfio-ap: fix stale pqap_hook pointer on error in vfio_ap_mdev_set_kvm() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0102/1376] s390/vfio-ap: Fix stale do_remove flag across iterations in vfio_ap_mdev_cfg_remove Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0103/1376] s390/vfio-ap: Fix control domain removal " Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0104/1376] s390/vfio-ap: Fix dereference matrix_mdev->kvm without checking for NULL Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0105/1376] s390/vfio-ap: Fix hot-unplug skipped when last AP adapter or domain removed Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0106/1376] s390/vfio-ap: Fix NULL deref in status_show() during queue probe Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0107/1376] s390/vfio-ap: fix potential use of uninitialized apm_filtered bitmap Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0108/1376] s390/vfio-ap: Fix required lock not held during update of ap_matrix_mdev object Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0109/1376] mtd: afs: validate v2 image info bounds Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0110/1376] mtd: mtdoops: free page bitmap when the backing MTD is removed Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0111/1376] mtd: rawnand: validate ONFI extended parameter page sections Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0112/1376] batman-adv: fix stale receive device on merged fragments Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0113/1376] batman-adv: mcast: ensure unshared skb for multicast packets Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0114/1376] batman-adv: mcast: linearize skbuff for packet generation Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0115/1376] batman-adv: dat: avoid unaligned fault in IP extraction Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0116/1376] batman-adv: bla: fix freeing of claims on meshif deletion Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0117/1376] batman-adv: bla: prevent CRC corruptions after claim flush Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0118/1376] clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0119/1376] clk: qcom: gcc-msm8939: " Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0120/1376] clk: rockchip: rk3588: Dont change PLL rates when setting dclk_vop2_src Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0121/1376] clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0122/1376] clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0123/1376] clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0124/1376] clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0125/1376] clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0126/1376] i2c: mux: demux-pinctrl: fix OF node leak on kstrdup failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0127/1376] ASoC: cs35l33: drain threaded IRQ before runtime suspend Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0128/1376] ASoC: cs35l34: " Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0129/1376] ASoC: fsl: mpc5200-i2s: Free DMA resources on probe failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0130/1376] ASoC: hdac_hda: Fix hlink refcount leak on component registration failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0131/1376] AsoC: intel: sst: fix PCI device reference leak on probe failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0132/1376] ASoC: loongson: Fix error handling in ACPI property parsing Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0133/1376] ASoC: samsung: aries_audio_probe: double of_node_put due to direct assignment without of_node_get Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0134/1376] iio: adc: max34408: add missing select REGMAP_I2C to Kconfig Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0135/1376] iio: adc: pac1921: fix wrong channel used in trigger handler read Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0136/1376] iio: buffer: Fix potential use-after-free in anonymous buffer release Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0137/1376] iio: buffer: Make IIO DMA fence release RCU-safe Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0138/1376] iio: buffer: Tie IIO dma fence lock lifetime to the fence Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0139/1376] iio: chemical: atlas-sensor: fix PM reference leak in buffer postenable Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0140/1376] iio: chemical: atlas-sensor: use iio_trigger_poll_nested() to fix remove UAF Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0141/1376] iio: chemical: sgp30: Handle IAQ thread creation failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0142/1376] iio: dac: m62332: Fix regulator reference count imbalance Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0143/1376] iio: gyro: mpu3050: fix sign of raw angular velocity readings Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0144/1376] iio: light: cm32181: return zero after writing calibscale Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0145/1376] iio: light: gp2ap002: Disable regulators on resume failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0146/1376] iio: light: ltrf216a: fix runtime PM reference leak in error path Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0147/1376] iio: pressure: dps310: fix NULL pointer dereference on ACPI probe Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0148/1376] iio: pressure: mpl115: Fix runtime PM cleanup Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0149/1376] iio: srf04: fix pm_runtime handling on probe error path Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0150/1376] iio: temperature: hid-sensor-temperature: switch to non-devm iio_device_register() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0151/1376] iio: light: opt4001: Fix power down clearing bits of the wrong register Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0152/1376] iio: light: opt4001: Fix incompatible pointer type passed to div_u64_rem() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.12 0153/1376] iio: light: opt4001: Reject integration times with a non-zero seconds part Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0154/1376] iio: light: opt4001: Fix reversed GENMASK() arguments in fault count mask Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0155/1376] KVM: nVMX: Always flush vpid02 on first use Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0156/1376] KVM: nVMX: Decouple INVVPID operand checks from flushing of vpid02 Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0157/1376] KVM: nVMX: Ensure KVM_REQ_GET_NESTED_STATE_PAGES is cleared on VM-Exit Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0158/1376] KVM: nVMX: Service local TLB flushes on failed nested VM-Enter Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0159/1376] KVM: nVM: Ensure INVVPID is emulated on the correct physical CPU Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0160/1376] KVM: x86/mmu: Fold kvm_mmu_zap_memslot() into kvm_arch_flush_shadow_memslot() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0161/1376] KVM: x86: hyper-v: Clamp stimer deadline to avoid livelock Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0162/1376] KVM: x86: Serialize writes to disabled_quirks using kvm->lock Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0163/1376] KVM: x86: Ensure runtime reads of disabled_quirks are resolved once Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0164/1376] KVM: s390: Fix length check __import_wp_info() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0165/1376] KVM: s390: Fix memory leak in guest debug handling Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0166/1376] KVM: s390: Fix old_data leak in guest debug error path Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0167/1376] KVM: s390: Free guest debug data on vcpu destroy Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0168/1376] KVM: s390: Take srcu when importing watchpoint data Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0169/1376] KVM: s390: Zero initialize irq in reinject_machine_check Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0170/1376] KVM: s390: pv: Fix rc/rrc offset for PVM_DUMP Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0171/1376] KVM: s390: Restore sigset on error path Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0172/1376] LoongArch: KVM: Fix TOCTOU race on pv_features Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0173/1376] LoongArch: KVM: Free init resources if kvm_init() fails Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0174/1376] LoongArch: KVM: Preserve memslot arch flags on KVM_MR_FLAGS_ONLY Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0175/1376] LoongArch: Fix acpi_package_ids[] array overflow Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0176/1376] LoongArch: Do not select HAVE_RUST when KASAN is enabled Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0177/1376] LoongArch: Do not save/restore percpu base register in rethook trampoline Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0178/1376] LoongArch: Avoid preempt count underflow without probe Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0179/1376] media: airspy: use vb2_video_unregister_device() on disconnect to fix NULL deref Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0180/1376] media: amphion: Remove obsolete frame_count check in venc_start_session Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0181/1376] media: cec: core: Fix kmemleak due to missed rc_free_device() call Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0182/1376] media: cec: disable delayed work before freeing an interrupted transmit Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0183/1376] media: cec: extron-da-hd-4k-plus: add sanity check Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0184/1376] media: cec: meson: ao-cec-g12a: name the CEC core regmap to avoid debugfs clash Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0185/1376] media: cec: Serialize exclusive follower delivery Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0186/1376] media: cedrus: fix memory leak in cedrus_init_ctrls() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0187/1376] media: cobalt: Avoid freeing ALSA private data twice Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0188/1376] media: cx231xx: reject geometry changes while the VBI queue is busy Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0189/1376] media: cx23885: cancel NetUP CI work before teardown Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0190/1376] media: em28xx: defer audio-only extension registration Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0191/1376] media: em28xx: fix use-after-free of dev_next->devlist on disconnect Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0192/1376] media: go7007: defer the ALSA v4l2 put until card release Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0193/1376] media: i2c: alvium: Fix: Correct name of register in alvium_set_ctrl_auto_exposure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0194/1376] media: i2c: imx415: Return test pattern write errors Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0195/1376] media: i2c: ov02a10: fix endpoint parsing use-after-free Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0196/1376] media: i2c: ov7740: fix use-after-destroy in remove Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0197/1376] media: intel/ipu6: fix async notifier cleanup leak on parse error Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0198/1376] media: meson: vdec: fix NULL pointer deref in vdec_try_fmt_common Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0199/1376] media: platform: mtk-mdp3: Fix SCP device refcounting Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0200/1376] media: platform: mtk-mdp3: fix NULL deref on failed SCP lookup Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0201/1376] media: nxp: imx8-isi: Fix stream ID validation bypass in crossbar routing Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0202/1376] media: nxp: imx8-isi: Correct color map between V4L2 and ISI Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0203/1376] media: nxp: imx8-isi: Use BIT_ULL() for 64-bit stream masks Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0204/1376] media: rc: sunxi-cir: Unregister rc device on probe failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0205/1376] media: rtl2832_sdr: use vb2_video_unregister_device() on remove to fix DMA leak Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0206/1376] media: rtl2832_sdr: release URBs and stream buffers on start_streaming() failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0207/1376] media: s2255: bound JPEG frame size before copying into the buffer Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0208/1376] media: s2255: check firmware size before reading trailing marker Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0209/1376] media: saa7164: fix cleanup on resource allocation failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0210/1376] media: tda18250: fix possible integer overflow Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0211/1376] media: v4l2-async: avoid deleting unlinked ASC entry on link error Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0212/1376] media: v4l2-ctrls: Allow unknown HDR10 white point and luminance Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.12 0213/1376] media: v4l2-fwnode: Fix fwnode leak in v4l2_fwnode_parse_link Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0214/1376] media: venus: fix payload size returned by parse_caps() and parse_alloc_mode() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0215/1376] media: venus: fix payload size calculation in parse_raw_formats() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0216/1376] media: video-i2c: fix kthread error pointer left in kthread_vid_cap on failure Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0217/1376] media: vimc: fix pixel format lookup in enum_framesizes Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0218/1376] media: zoran: Avoid freeing a registered video_device twice Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0219/1376] media: chips-media: wave5: Guard bit depth check with initial_info_obtained Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0220/1376] scsi: qla2xxx: Zero SFP DMA buffer in FRU/I2C bsg handlers Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0221/1376] scsi: qla2xxx: Bound i2c->length in I2C " Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0222/1376] scsi: qla2xxx: edif: Fix NULL pointer deref in RX SA delete check Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0223/1376] scsi: qla2xxx: Fix Name Server logout detection on FWI2 adapters Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0224/1376] scsi: qla2xxx: Hold vport reference in qla24xx_report_id_acquisition() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0225/1376] scsi: qla2xxx: Initialize NVMe abort_work once at submission Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0226/1376] scsi: qla2xxx: Check entry_status in qla24xx_modify_vp_config() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0227/1376] scsi: qla2xxx: Bound image count in qla2x00_update_fru_versions() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0228/1376] scsi: qla2xxx: Hold qpair lock when sending NVMe LS reject Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0229/1376] scsi: qla2xxx: Clamp MSI-X derived queue counts to avoid truncation Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0230/1376] scsi: qla2xxx: Serialize flash version read in reset handler Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0231/1376] scsi: qla2xxx: Fix cs84xx use-after-free on host teardown Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0232/1376] scsi: qla2xxx: Fix FCE trace use-after-free during firmware dump Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0233/1376] scsi: qla2xxx: Zero mailbox struct in qla2x00_get_firmware_state() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0234/1376] scsi: qla2xxx: Fix FCE trace enable parsing in debugfs Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0235/1376] scsi: qla2xxx: Dont query firmware state while chip is down Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0236/1376] scsi: qla2xxx: Reject non-SCSI SRB on status IOCB fast path Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0237/1376] scsi: qla2xxx: Fix response queue over-consumption in __qla_consume_iocb() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0238/1376] scsi: qla2xxx: Quiesce response IRQ before freeing request queue Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0239/1376] scsi: qla2xxx: Avoid double completion in async IOCB timeout Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0240/1376] scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0241/1376] scsi: qla2xxx: Avoid req_q_map double-read in qla2x00_error_entry() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0242/1376] scsi: qla2xxx: Fix NVMe abort reference leak on repeated abort Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0243/1376] scsi: qla2xxx: Drop vport reference under lock in report ID acquisition Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0244/1376] scsi: qla2xxx: Hold vport_slock for host map update " Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0245/1376] scsi: qla2xxx: Use coherent DMA buffer for D_Port diagnostics Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0246/1376] scsi: qla2xxx: Zero-init bsg stack buffers to avoid info leak Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0247/1376] scsi: qla2xxx: Skip NVMe LS reject IOCB when FW not started Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0248/1376] f2fs: return symlink writeback errors Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0249/1376] f2fs: reject overlapping move range after len expansion Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0250/1376] f2fs: use the mount idmap for the owner check in f2fs_xattr_advise_set() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0251/1376] f2fs: return writeback error from collapse range Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0252/1376] f2fs: avoid NULL checkpoint thread access in sysfs Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0253/1376] f2fs: fix to migrate all curseg types during free_segment_range Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0254/1376] f2fs: fix i_size when pinned fallocate partially fails Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0255/1376] f2fs: fix to off-by-one issue in f2fs_zero_post_eof_page() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0256/1376] f2fs: fix valid block count leak on data block allocation failure Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0257/1376] f2fs: fix to zero post-EOF data when extending file size Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0258/1376] drm/panthor: fix firmware control interface bounds checks Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0259/1376] drm/bridge: dw-hdmi: fix i2c adapter leak on probe failure Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0260/1376] drm/panel-edp: " Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0261/1376] drm: fix race between partial drm_dev_register() failure and ioctl Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0262/1376] drm/i915: Guard against NULL driver_data in i915_pci_probe() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0263/1376] drm/ssd130x: fix column and row end address in partial updates for ssd132x Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0264/1376] drm/sun4i: fix refcount leak in sun4i_backend_init_sat() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0265/1376] drm/ssd130x: fix column and row end address in partial updates in ssd133x Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0266/1376] drm/hibmc: Fix list of formats on the primary plane Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0267/1376] drm/hibmc: Use drm_atomic_helper_check_plane_state() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0268/1376] drm/amd/display: avoid divide-by-zero in __is_lut_linear() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0269/1376] drm/amd/display: validate plane degamma LUT size for private color prop Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0270/1376] drm/amdgpu/vcn: fix integer overflow in dec_msg buffer count check Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0271/1376] drm/gud: NUL-terminate TV mode names read from the device Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0272/1376] drm/gud: validate TV mode names before creating enum property Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.12 0273/1376] drm/msm/dsi: round 6G byte clock rate to the PLL-achievable value Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0274/1376] drm: Fix drm_crtc_commit leak if signaled when PAGE_FLIP_EVENT is used Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0275/1376] drm/amdgpu: check thunderbolt before switcheroo registration Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0276/1376] drm/amdgpu: fix autosuspend cleanup during removal Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0277/1376] drm/amdgpu: Skip accessing psp rum time db for APUs Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0278/1376] drm/amdgpu: use AMDGPU_GPU_PAGE_SHIFT instead of PAGE_SHIFT Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0279/1376] drm/amdkfd: guard against NULL restore_mqd in CRIU queue restore Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0280/1376] drm/amdkfd: Reject zero-sized AQL queue allocations after size halving Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0281/1376] drm/nouveau: unsubscribe the channel-kill event before the fence context Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0282/1376] drm/nouveau: Use write-combined maps for coherent Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0283/1376] drm/nouveau/uvmm: fix NULL deref unwinding an OP_MAP_SPARSE op Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0284/1376] drm/nouveau/uvmm: fix premature region free on failed OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0285/1376] drm/nouveau/uvmm: clear the dirty flag when unwinding an OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0286/1376] afs: Fix leak of ungot volume Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0287/1376] xhci: fix lost bounce buffers on TDs spanning several ring segments Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0288/1376] ksmbd: zero pipe read compound padding Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0289/1376] net/mlx5e: xsk: Fix unlocked writing to ICOSQ Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0290/1376] nvmet-auth: Synchronize timeout work during SQ teardown Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0291/1376] mm/damon/vaddr: drop last same folio access check optimization Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0292/1376] mm/damon/ops-common: use nr_accesses moving sum for quota score Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0293/1376] mm/damon/paddr: drop last same folio access check reuse optimization Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0294/1376] mm/damon/vaddr-kunit: check region count in three_regions test Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0295/1376] mm/damon/core-kunit: handle region split failure in filter_out() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0296/1376] mm/damon/tests/core-kunit: catch test failure in test_merge_regions_of() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0297/1376] of: unittest: Fix memory leak in unittest_data_add() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0298/1376] ksmbd: fix use-after-free in smb2_open during durable reconnect Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0299/1376] ksmbd: fix durable reconnect error path file lifetime Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0300/1376] ksmbd: fix FSCTL permission bypass by adding a permission check for FSCTL_SET_SPARSE Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0301/1376] batman-adv: dat: atomically update mac addresses Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0302/1376] batman-adv: bla: avoid CRC corruption due to parallel claim add Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0303/1376] perf sched: Fix register_pid() overflow, strcpy, and BUG_ON Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0304/1376] clk: meson: align gxbb_32k_clk_sel number of parents with actual count Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0305/1376] batman-adv: fix TX priority extraction for BATADV_FORW_MCAST Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0306/1376] mm/damon/core: skip aging from repeated aggressive merging Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0307/1376] Smack: Fix error in capability bypass Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0308/1376] drm: Remove unused header in drm_dumb_buffers.c Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0309/1376] drm: lcdif: Wait for vblank before disabling DMA Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0310/1376] drm/v3d: Replace a global spinlock with a per-queue spinlock Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0311/1376] drm/v3d: Clear queue->active_job when v3d_fence_create() fails Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0312/1376] drm/rockchip: vop2: Recognise 10-bit YUV422 as YUV format Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0313/1376] drm/bridge: cdns-mhdp8546: Return an error pointer on allocation failure Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0314/1376] smack: fix incorrect task context in smack_msg_queue_msgrcv Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0315/1376] smack: simplify write handlers of sysfs entries Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0316/1376] smack: deduplicate smackfs/{direct,mapped} file_operations Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0317/1376] smack: restrict smackfs/{direct,mapped} values to 0-255 Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0318/1376] sched_ext/scx_flatcg: Fix cvtime_delta race and add hweight scaling to bypass charging Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0319/1376] x86/cfi: Use symmetric SYM_START and SYM_END in __CFI_TYPE() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0320/1376] platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0321/1376] HID: core: quiesce input in hid_hw_stop() to prevent use-after-free Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0322/1376] HID: nintendo: Fix imu_timestamp_us double increment per report Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0323/1376] HID: roccat: bound device-supplied profile index Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0324/1376] soc: samsung: exynos-pmu: fix of_node refcount leak in exynos_get_pmu_regmap() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0325/1376] media: cec-pin: Fix event FIFO ordering Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0326/1376] cxl: Refactor user ioctl command path from mds to mailbox Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0327/1376] cxl/mbox: Clamp mailbox output allocation to the payload size Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0328/1376] cxl/pci: Remove incorrect mbox.valid check in cxl_pci_type3_init_mailbox() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0329/1376] clk: versaclock7: Fix APLL clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0330/1376] clk: moxart: remove unused variables, fix refcount leak Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0331/1376] clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0332/1376] clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.12 0333/1376] clk: nuvoton: ma35d1-pll: convert from round_rate() to determine_rate() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0334/1376] clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0335/1376] ASoC: rt700-sdw: always drain jack work on remove Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0336/1376] ASoC: fsl_audmix: rework runtime PM handling in probe Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0337/1376] clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0338/1376] ARM: imx: fix device_node refcount leak in imx_src_init() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0339/1376] ARM: imx: fix device_node refcount leaks in imx7_src_init() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0340/1376] arm64: dts: imx93-kontron: set memory node to 0x80000000/1GiB Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0341/1376] clk: imx: scu: drop redundant init.ops variable assignment Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0342/1376] drm/lima: call drm_mm_init() with a valid allocation range Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0343/1376] mm/mm_init: fix incorrect node_spanned_pages Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0344/1376] sched/fair: Fix overflow in update_tg_cfs_runnable() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0345/1376] perf/x86/intel/uncore: Keep PCI PMUs working when MMIO/MSR setup fails Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0346/1376] pinctrl: bcm2835: Dont remove an unregistered GPIO chip Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0347/1376] riscv: kexec_file: Split the loading of kernel and others Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0348/1376] riscv: kexec_file: Fix crashk_low_res not exclude bug Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0349/1376] media: keymaps: Remove obsolete RC_MAP_RC5_TV keymap define Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0350/1376] media: keymaps: Remove obsolete RC_MAP_HAUPPAUGE_NEW " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0351/1376] perf test: Update all metrics test like metricgroups test Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0352/1376] perf test stat_all_metrics: Ensure missing events fail test Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0353/1376] perf tests metrics: Permission related fixes Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0354/1376] perf test metrics: Update all metrics for possibly failing default metrics Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0355/1376] perf test all metrics: Fully ignore Default metric failures Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0356/1376] perf test: Do not skip when some metrics tests succeeded Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0357/1376] perf tests: Skip metrics validation if system-wide recording lacks permission Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0358/1376] perf test: Use sqrtloop workload to test bperf event Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0359/1376] perf test: Fix perf stat --bpf-counters on hybrid machines Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0360/1376] perf tests: Fix flakiness in BPF counters test on hybrid systems Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0361/1376] perf test brstack: Speed up running test by using tr -s instead of xargs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0362/1376] perf tests: Harden branch stack sampling test Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0363/1376] perf test: Refactor brstack test Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0364/1376] perf test: Add syscall and address tests to " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0365/1376] perf test: Extend branch stack sampling test for Arm64 BRBE Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0366/1376] perf test: Fixes for check branch stack sampling Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0367/1376] perf tests: Fix flakiness in branch stack sampling tests Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0368/1376] regulator: tps6594-regulator: Constify struct tps6594_regulator_irq_type Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0369/1376] regulator: tps6594-regulator: remove interrupt_count Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0370/1376] regulator: tps6594-regulator: remove hardcoded buck config Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0371/1376] regulator: tps6594-regulator: refactor variant descriptions Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0372/1376] regulator: tps6594: Fix device node reference leaks in multiphase loop Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0373/1376] drm/amdgpu/pm/powerplay: bounds-check voltage index in SMU7 lookup Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0374/1376] drm/amdgpu/pm/powerplay: bounds-check voltage index in Vega10 lookup Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0375/1376] tools/bpf/bpftool: Reset vmlinux BTF after map commands Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0376/1376] tools/bpf/bpftool: Reset vmlinux BTF after struct_ops commands Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0377/1376] bpf: Copy per-CPU map value padding in copy_map_value_long() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0378/1376] selftests/bpf: Systematically add SO_REUSEADDR in start_server_addr Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0379/1376] selftests/bpf: Mask socket type flags in mptcpify prog Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0380/1376] bpf,lsm: Drop bpf_prog_free from sleepable_lsm_hooks Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0381/1376] mm: add build-time option for hotplug memory default online type Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0382/1376] mm: convert memory block states (MEM_*) macros to enum Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0383/1376] mm: change type of state in struct memory_block Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0384/1376] mm: name the anonymous MMOP enum as enum mmop Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0385/1376] mm/mm_init: handle alloc_percpu failure in free_area_init_core_hotplug Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0386/1376] dmaengine: mediatek: mtk-uart-apdma: Return -ENOMEM on memory allocation failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0387/1376] dmaengine: xilinx_dma: Fix channel idle state management in AXIDMA and MCDMA interrupt handlers Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0388/1376] dmaengine: hisilicon: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0389/1376] soundwire: qcom: Fix port exhaustion check in stream_alloc_ports Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0390/1376] iio: orientation: hid-sensor-rotation: Avoid race between callback setup and device exposure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0391/1376] csky: Fix a4/a5 restoration in syscall trace path Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0392/1376] selftests/rseq: Replace glibc-specific __GNUC_PREREQ with portable check Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.12 0393/1376] platform/chrome: sensorhub: Fix memory overread in ring handler Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0394/1376] wifi: rtw89: fix HE extended capability length check Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0395/1376] perf cs-etm: Queue context packets for frontend Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0396/1376] perf cs-etm: Fix thread leaks on trace queue init failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0397/1376] perf/x86/amd/uncore: Add group validation Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0398/1376] perf vendor events amd: Update Zen 5 core events Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0399/1376] hwrng: core - fix rng list on registration error Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0400/1376] crypto: qat - cancel work on re-enable SR-IOV timeout Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0401/1376] crypto: qat - clear AES key schedule from stack Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0402/1376] crypto: atmel-ecc - replace min_t with min Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0403/1376] crypto: atmel-ecc - clean up and improve ECDH comments Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0404/1376] crypto: atmel-ecc - reject hardware ECDH without a public key Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0405/1376] crypto: atmel-sha204a - fix heap info leak on I2C transfer failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0406/1376] crypto: sa2ul - stop probe if context pool creation fails Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0407/1376] crypto: rk3288 - fail ahash requests on HASH idle timeout Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0408/1376] crypto: keembay - Fix AEAD unregister count in error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0409/1376] nvme-apple: Use acquire/release for queue enabled state Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0410/1376] nvmet-rdma: factor out response resource cleanup Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0411/1376] nvmet-rdma: fix response resource leak on queue teardown Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0412/1376] bus: ti-sysc: Fix /chosen node reference leak Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0413/1376] PM: sleep: Fix off-by-one in wakelocks number limit check Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0414/1376] cgroup/cpuset: Make nr_deadline_tasks an atomic_t Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0415/1376] arm64: dts: qcom: sm7225-fairphone-fp4: Fix address in fb node name Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0416/1376] arm64: dts: qcom: hamoa: Fix clocks for HSPHYs Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0417/1376] bus: qcom-ebi2: Simplify with scoped for each OF child loop Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0418/1376] bus: qcom-ebi2: Fix clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0419/1376] wifi: mac80211_hwsim: avoid NULL skb in stop queue drain Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0420/1376] staging: greybus: audio: correct sscanf() return value check Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0421/1376] staging: sm750fb: gate dualview dataflow using g_dualview Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0422/1376] staging: sm750fb: Add missing Kconfig dependency Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0423/1376] greybus: audio: bound the topology section sizes against the fetched size Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0424/1376] staging: fbtft: Use sysfs_emit_at() to print to sysfs file Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0425/1376] staging: octeon: add missing tasklet_kill in cvm_oct_tx_shutdown Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0426/1376] staging: octeon: fix free_irq dev_id mismatch in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0427/1376] staging: octeon: ethernet-mem: replace pr_warn with dev_warn in free functions Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0428/1376] staging: octeon: replace pr_warn with dev_warn in fill and rx paths Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0429/1376] staging: octeon: add missing napi_disable in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0430/1376] staging: rtl8723bs: fix mismatched free of HalData in rtw_sdio_if1_init() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0431/1376] ALSA: via82xx: Remove unreachable branch in snd_via686_pcm_pointer() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0432/1376] selftests/bpf: Fix memory leak in msg_alloc_iov error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0433/1376] selftests/bpf: Fix memory leak in msg_alloc_iov Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0434/1376] selftests/lsm: Fix memory leak in attr_lsm_count Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0435/1376] irqchip/gic-v3-its: Fix memleak in its_probe_one() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0436/1376] irqchip/gic-v3-its: Fix its node leak in gic_acpi_parse_madt_its() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0437/1376] selftests: timers: leap-a-day: Fix -w option and update usage comment Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0438/1376] clocksource: Unregister subsystem on device registration failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0439/1376] y2038: uapi: Use 64-bit __kernel_old_timespec::tv_nsec on x32 Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0440/1376] timekeeping: Account for monotonicity adjustment in ntp_error Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0441/1376] clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0442/1376] clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0443/1376] clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0444/1376] arm64: dts: qcom: sc8180x-primus: Rename regulator nodes Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0445/1376] arm64: dts: qcom: sc8180x-primus: Describe the display power net Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0446/1376] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Rename regulator nodes Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0447/1376] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Describe the display power net Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0448/1376] perf data convert json: Fix trace_seq memory leak in process_sample_event() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0449/1376] thermal/drivers/rcar: Fix error checking in probe() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0450/1376] usb: typec: ucsi: unregister debugfs entries on teardown Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0451/1376] usb: gadget: r8a66597: avoid double free of ep0_req in probe error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0452/1376] udf: Mark LVID buffer as uptodate before marking it dirty Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.12 0453/1376] perf vendor events amd: Reintroduce deprecated Zen 5 core events Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0454/1376] perf dso: Fix kallsyms DSO detection with fallback logic Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0455/1376] bpf: Fix vmlinux BTF prep race in bpf_get_btf_vmlinux Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0456/1376] efi: fix stale reference to efi_recover_from_page_fault() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0457/1376] bpf: Fix use-after-free on mm_struct in bpf_find_vma() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0458/1376] bus: mhi: ep: Fix device refcount leak in the error path of MHI device creation Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0459/1376] iommu/mediatek-v1: Fix off-by-one in MT2701_LARB_NR_MAX Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0460/1376] iommu/msm: Return -ENOMEM on memory allocation failure in probe Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0461/1376] iommu/amd: Prevent SB IOAPIC from overriding IVRS validation errors Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0462/1376] iommu/amd: Add support for Hygon family 18h model 4h IOAPIC Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0463/1376] iommu/amd: Fix false positive in SB IOAPIC IVRS validation Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0464/1376] leds: pca9532: Fix inverted GPIO output polarity Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0465/1376] printk/panic: Add option to allow non-panic CPUs to write to the ring buffer Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0466/1376] panic: introduce helper functions for panic state Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0467/1376] panic/printk: replace this_cpu_in_panic() with panic_on_this_cpu() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0468/1376] panic/printk: replace other_cpu_in_panic() with panic_on_other_cpu() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0469/1376] printk: Introduce console_flush_one_record Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0470/1376] printk: Fix possible console use-after-free Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0471/1376] ACPI: RISC-V: Fix riscv_acpi_irq_get_dep() loop termination Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0472/1376] ACPI: RISC-V: Check acpi_get_handle() status in riscv_acpi_add_prt_dep() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0473/1376] ACPI: RISC-V: Fix riscv_acpi_add_prt_dep() loop handling Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0474/1376] platform/x86: dell-privacy: Fix race condition Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0475/1376] platform/x86: dell-wmi-base: Fix resource leak on module load failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0476/1376] platform/x86: lg-laptop: Drop debug-only ACPI notify handler Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0477/1376] platform/x86: lg-laptop: Convert ACPI driver to a platform one Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0478/1376] platform/x86: lg-laptop: Fix LED resource handling Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0479/1376] remoteproc: qcom_q6v5_adsp: Fix reference leak for device node Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0480/1376] hwspinlock: propagate errno when registering single lock Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0481/1376] selftests/sched_ext: Fix bpf_link leak on early return in prog_run Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0482/1376] serial: ma35d1: Fix OF node reference leaks in console init Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0483/1376] serial: qcom-geni: do not advance stale DMA completions Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0484/1376] usb: gadget: f_fs: Fix fence cleanup in ffs_dmabuf_transfer() error paths Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0485/1376] usb: gadget: configfs: fix out-of-bounds read of qw_sign Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0486/1376] usb: ljca: bound bank_num in ljca_enumerate_gpio() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0487/1376] usb: gadget: aspeed_udc: check endpoint DMA allocation Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0488/1376] USB: make single lock for all usb dynamic id lists Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0489/1376] USB: make to_usb_driver() use container_of_const() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0490/1376] usb: fix UAF when probe runs concurrent to dyn ID removal Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0491/1376] platform/mellanox: mlxbf-pmc: Check ACPI_COMPANION() against NULL Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0492/1376] platform/surface: acpi-notify: Check ACPI companion before use Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0493/1376] usb: mtu3: allow system suspend during active gadget connection Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0494/1376] usb: renesas_usbhs: Fix power-off ordering on unbind Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0495/1376] drm/panel: samsung-s6d16d0: Power off on prepare failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0496/1376] perf metricgroup: Fix metric expression copy leaks Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0497/1376] soc: qcom: rpmh-rsc: manage PM notifiers with devres Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0498/1376] bus: qcom-ebi2: use managed resources for clocks and children Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0499/1376] clk: qcom: camcc-sc8280xp: unregister CAMCC_GDSC_CLK Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0500/1376] iio: accel: dmard09: Implement IIO_CHAN_INFO_SCALE Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0501/1376] RDMA/core: Wait for RCU callbacks before unloading ib_core Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0502/1376] RDMA/mlx5: Drain RCU callbacks during module teardown Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0503/1376] RDMA/ipoib: " Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0504/1376] RDMA/rxe: Avoid reprocessing the current packet after the QP enters the error state Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0505/1376] crypto: ccp - Fix memory leak in SEV INIT_EX path Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0506/1376] hwrng: ks-sa - Fix runtime PM cleanup on registration failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0507/1376] xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0508/1376] ALSA: hpi: Check transport errors during HPI6000 adapter initialization Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0509/1376] pmdomain: bcm: bcm2835: handle genpd provider registration errors Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0510/1376] misc: rtsx_usb: avoid USB I/O in runtime autosuspend Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0511/1376] RDMA/hfi1: Preserve unit 0 on allocation failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0512/1376] RDMA/hfi1: Free RX data on late probe failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.12 0513/1376] RDMA/hfi1: Remove redundant PCI device ID validation Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0514/1376] RDMA/hfi1: Create workqueues before device initialization Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0515/1376] RDMA/hfi1: Stop flushing the global IB workqueue Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0516/1376] RDMA/hfi1: Initialize debugfs after probe completes Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0517/1376] ASoC: apple: mca: increase SERDES reset delay Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0518/1376] isofs: fix out-of-bounds page array access on empty zisofs block Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0519/1376] iommufd/selftest: Avoid selftest dirty bitmap size wrap Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0520/1376] media: v4l2-async: Unregister sub-device if asc_list is empty Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0521/1376] rpmsg: glink: remove duplicate code for rpmsg device remove Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0522/1376] rpmsg: glink: fix deadlock in endpoint destroy during driver detach Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0523/1376] cxl/memdev: Fix firmware upload exact-fit handling Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0524/1376] cxl/mbox: Break poison list loop on an empty payload Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0525/1376] cxl/pci: Honor -EPROBE_DEFER from component register setup Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0526/1376] fs/ntfs3: Add more checks in mi_enum_attr (part 2) Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0527/1376] fs/ntfs3: Mark inode as bad as soon as error detected in mi_enum_attr() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0528/1376] fs/ntfs3: fix KMSAN uninit-value in ni_create_attr_list Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0529/1376] fs/ntfs3: fix slab-out-of-bounds write in ni_create_attr_list() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0530/1376] hfsplus: validate thread record before delete key rebuild Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0531/1376] wifi: ath11k: cap out-of-range rx MCS instead of leaving bogus rate Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0532/1376] x86/entry/fred: Encode frame pointer on entry Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0533/1376] firmware: arm_scmi: Publish channel state before callbacks Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0534/1376] firmware: arm_scmi: Unregister device notifier before IDR teardown Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0535/1376] firmware: arm_scmi: Quiesce notifications before teardown Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0536/1376] firmware: arm_scmi: Clean up channels on setup failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0537/1376] firmware: arm_scmi: Free transport channel on IDR failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0538/1376] firmware: arm_scmi: Avoid IDR updates while cleaning channels Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0539/1376] firmware: arm_scmi: Reject out of range DT protocol IDs Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0540/1376] firmware: arm_scmi: Use channel ID for transport teardown Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0541/1376] firmware: arm_scmi: Protect device request lookup with RCU Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0542/1376] firmware: arm_scmi: Drop handle on protocol bind failures Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0543/1376] firmware: arm_scmi: Unwind TX receiver mailbox setup failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0544/1376] firmware: arm_scmi: Unwind P2A " Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0545/1376] libnvdimm/labels: Bound the on-media label size before the shift Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0546/1376] dax: read holder_ops once in dax_holder_notify_failure() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0547/1376] cpufreq: spear: Fix an IS_ERR() vs NULL bug in spear1340_set_cpu_rate() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0548/1376] PCI: xgene: Drop XGENE_PCIE_IP_VER_UNKN Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0549/1376] PCI: xgene: Drop unnecessary OF node reference Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0550/1376] irqchip/renesas-irqc: Fix generic interrupt chip leak on remove Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0551/1376] media: i2c: rdacm21: Fix missing media_entity_cleanup() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0552/1376] media: bcm2835-unicam: Fix asc leaked in error/remove path Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0553/1376] media: ipu6: Do not free aux device pdata after init Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0554/1376] drm/amd/display: Remove unused-but-set variable hubp from Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0555/1376] cpufreq: intel_pstate: Fix setting minimum P-state at init time Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0556/1376] cpufreq: schedutil: Fix self-contradictory comment in sugov_iowait_apply() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0557/1376] remoteproc: qcom: Fix glink->node reference leak in qcom_add_glink_subdev Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0558/1376] drm/bridge: tc358767: clamp the reported AUX read size to the request Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0559/1376] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix up ti,drv2604 enable GPIO Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0560/1376] arm64: dts: qcom: sc8280xp-x13s: Fix the drive-strength of mclk pin Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0561/1376] arm64: dts: qcom: sm8250: sort out Iris power domains Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0562/1376] arm64: dts: qcom: sm8250: correct frequencies in the Iris OPP table Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0563/1376] perf jevents: Add more components to the metric sorting order Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0564/1376] wifi: iwlwifi: fix counter type in iwl_fwrt_dump_error_logs Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0565/1376] wifi: iwlwifi: mvm: fix off-by-one in TXF key sanitiser Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0566/1376] wifi: iwlwifi: mei: check SAP message length before reading it Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0567/1376] wifi: iwlwifi: guard against division by zero in iwl_dbg_tlv_alloc_fragments Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0568/1376] wifi: iwlwifi: mei: pass correct argument to function Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0569/1376] gpu: host1x: Fix offset calculation in trace_write_gather Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0570/1376] gpu: host1x: Avoid stack over-read in debug output helpers Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0571/1376] drm/msm/a6xx: Fix stale rpmh votes after suspend Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0572/1376] bpf: Sync tail_call_reachable with callee state on entry Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.12 0573/1376] crypto: sl3516 - drop invalid sg_dma_len checks before DMA mapping Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0574/1376] ACPI: processor: idle: Expand _LPI package sanity checks Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0575/1376] usb: gadget: f_uac1_legacy: remove broken string configfs attributes Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0576/1376] tty: hvc: restrict HVC_DCC to ARMv6+ and ARM64 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0577/1376] UDF symlink pathComponent header OOB read Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0578/1376] uio: Fix stale info pointer in failed registration path Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0579/1376] accessibility: speakup: Fix incorrect string length computation in report_char_chartab_status() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0580/1376] speakup: keyhelp: guard letter_offsets possible out-of-range indexing Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0581/1376] misc: bcm-vk: Use acquire/release for msgq_inited Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0582/1376] misc: rtsx: add missing write register handling Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0583/1376] misc: ad525x_dpot: use driver core groups for sysfs files Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0584/1376] cacheinfo: dont propagate DT/ACPI error when arch supplies info (arm64) Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0585/1376] ppdev: prevent overflow when setting port timeout Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0586/1376] ipack: ipoctal: fix UAF, null-ptr-deref, and use-after-free in cleanup on remove Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0587/1376] char: xilinx_hwicap: unregister class on init errors Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0588/1376] vfio/pci: clear vdev->msi_perm after freeing it on init failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0589/1376] soc: ti: knav_qmss_queue: Implement resource cleanup in remove() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0590/1376] soc: ti: knav_qmss: Remove debugfs file on teardown Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0591/1376] mtd: mtdswap: Avoid freeing registered blktrans device twice Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0592/1376] mtd: part: reject MTDPART_OFS_RETAIN in mtd_add_partition() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0593/1376] perf ui hists: Fix uninitialized stack memory free on pstack allocation failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0594/1376] software node: Fix software_node_get_reference_args() with index -1 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0595/1376] driver core: soc: Unregister bus on early device registration failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0596/1376] drm/msm/a6xx: Fix RBBM_CLOCK_CNTL3_TP0 value in a730_hwcg Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0597/1376] bpf: Reject arena frees below the arena base Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0598/1376] dmaengine: dw-edma: Terminate all descriptors without callbacks Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0599/1376] dmaengine: dw-edma: Serialize abort state updates Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0600/1376] dmaengine: dw-edma: Serialize channel state checks Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0601/1376] dmaengine: dw-edma: Clear stale requests on termination Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0602/1376] ASoC: meson: Keep link pointers valid on realloc failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0603/1376] phy: starfive: Fix runtime PM cleanup in JH7110 DPHY TX probe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0604/1376] phy: starfive: Fix runtime PM cleanup in JH7110 DPHY RX probe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0605/1376] arm64: dts: amlogic: meson-axg: Add missing nand_rb0 pin to nand_all_pins Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0606/1376] arm64: dts: amlogic: meson-axg-s400: enable mipi_pcie_analog_dphy for PCIe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0607/1376] RDMA/hfi1: Propagate sdma_txinit_ahg() errors Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0608/1376] RDMA/rxe: Validate num_sge/cur_sge before indexing wqe->dma.sge[] Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0609/1376] RDMA/srpt: Fix srpt_alloc_rw_ctxs() unwind counters Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0610/1376] kcsan: avoid unintended access checking in NMIs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0611/1376] arm64: dts: imx8-ss-audio: Fix LPCG clock indices for ASRC0 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0612/1376] selftests/bpf: Silence array bounds warning in global_map_resize Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0613/1376] irqchip/gic-v3-its: Prevent leak in its_vpe_irq_domain_alloc() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0614/1376] RDMA/nldev: validate dynamic counter attribute length Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0615/1376] ACPI: EC: Avoid _REG disconnect on GPIO IRQ defer Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0616/1376] ACPI: processor: validate MADT IOAPIC entry bounds Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0617/1376] ACPI: PCI: Clear driver_data on all paths that free the acpi_pci_root Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0618/1376] ext4: fix circular lock dependency in ext4_ext_migrate Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0619/1376] ext4: fix out-of-bounds read in ext4_read_inline_dir() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0620/1376] ext4: skip extra isize expansion during mount to prevent deadlock Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0621/1376] libbpf: Search /lib64 and /lib in resolve_full_path() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0622/1376] riscv, bpf: Fix memory leak in bpf_jit_free Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0623/1376] ACPI: battery: Adjust charging status validation check Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0624/1376] bpf: Preserve unique-field state across nested structs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0625/1376] RDMA/srpt: Pass the mapped task attribute to target_init_cmd() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0626/1376] PCI: j721e: Fix incorrect max_lanes for J7200 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0627/1376] RDMA/erdma: Fix CEQ tasklet use-after-free on removal Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0628/1376] RDMA/restrack: Fix typos in the comments Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0629/1376] RDMA/nldev: Fix locking when accessing mr->pd Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0630/1376] RDMA/core: Add rdma_restrack_begin/abort/commit_del() operations Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0631/1376] RDMA/core: Fix use after free in ib_query_qp() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0632/1376] RDMA/core: Fix potential use after free in ib_destroy_cq_user() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.12 0633/1376] RDMA/core: Fix potential use after free in ib_destroy_srq_user() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0634/1376] RDMA/core: Fix potential use after free in counter_release() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0635/1376] RDMA/core: Add driver APIs pre_destroy_cq() and post_destroy_cq() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0636/1376] RDMA/core: Fix potential use after free in ib_free_cq() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0637/1376] RDMA/core: Fix potential use after free in ib_dealloc_pd_user() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0638/1376] firmware: arm_scmi: Fix requested device removal race Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0639/1376] iommu/qcom: Remove sysfs device on probe failure path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0640/1376] iommu/qcom: Fix inverted fault report check in qcom_iommu_fault() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0641/1376] thermal: intel: int3400: clean up ODVP on probe failures Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0642/1376] ext4: clear stale xarray tags on folios skipped during writeback Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0643/1376] ext4: drain in-flight DIO before buffered write fallback Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0644/1376] wifi: ath6kl: avoid buffer overreads in WMI event handlers Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0645/1376] wifi: ath12k: Correctly copy the hint BSSID in WMI scan request Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0646/1376] wifi: ath11k: " Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0647/1376] wifi: ath12k: Avoid buffer overread in ath12k_wmi_op_rx() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0648/1376] wifi: ath11k: Avoid buffer overread in ath11k_wmi_tlv_op_rx() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0649/1376] RDMA/bnxt_re: Clear VM_MAYWRITE on DBR/toggle page mmap Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0650/1376] ext4: fix buffer_head leak in ext4_init_orphan_info Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0651/1376] ext4: check dir entry fits before reading the hash trailer in ext4_search_dir() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0652/1376] ARM: dts: allwinner: a10: Fix PMU interrupt Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0653/1376] cpufreq/amd-pstate: Store the boost numerator as highest perf again Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0654/1376] ACPI: CPPC: Add IS_OPTIONAL_CPC_REG macro to judge if a cpc_reg is optional Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0655/1376] ACPI: CPPC: Optimize cppc_get_perf() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0656/1376] ACPI: CPPC: Rename cppc_get_perf() to cppc_get_reg_val() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0657/1376] ACPI: CPPC: Add cppc_set_reg_val() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0658/1376] ACPI: CPPC: Refactor register value get and set ABIs Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0659/1376] ACPI: CPPC: Modify cppc_get_auto_sel_caps() to cppc_get_auto_sel() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0660/1376] cpufreq/amd-pstate: Toggle auto_sel in active mode on shared memory systems Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0661/1376] firmware: arm_scmi: Roll back partial protocol table registration Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0662/1376] firmware: arm_scmi: Unrequest devices if driver registration fails Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0663/1376] perf cs-etm: Flush thread stacks after decoder reset Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0664/1376] perf cs-etm: Avoid truncating AUX buffer sizes to int Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0665/1376] xfrm: Fix skb double-free in xfrm_dev_direct_output() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0666/1376] RDMA/erdma: Probe the erdma RoCEv2 device Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0667/1376] RDMA/erdma: Add GID table management interfaces Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0668/1376] RDMA/erdma: Add the erdma_query_pkey() interface Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0669/1376] RDMA/erdma: Add address handle implementation Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0670/1376] RDMA/erdma: Add erdma_modify_qp_rocev2() interface Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0671/1376] RDMA/erdma: Refactor the code of the modify_qp interface Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0672/1376] RDMA/erdma: Add the query_qp command to the cmdq Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0673/1376] RDMA/erdma: Fix incorrect response returned from query_qp Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0674/1376] RDMA/erdma: Support non-sleeping erdma_post_cmd_wait() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0675/1376] RDMA/erdma: complete object teardown when the destroy command fails Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0676/1376] PM: hibernate: Fix memory leak in snapshot_write_next() error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0677/1376] leds: pca9532: Fix phantom device registration on missing hardware Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0678/1376] drm/tve200: add OF module alias for autoloading Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0679/1376] netfilter: nf_nat_sip: rewind offset when NAT shrinks the packet Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0680/1376] fs/ntfs3: fix out-of-bounds read of INDEX_ROOT in reparse/objid init Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0681/1376] drm/panthor: return PTR_ERR() from devm_drm_dev_alloc() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0682/1376] arm64: dts: rockchip: Fix Gru WLAN sideband interrupt Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0683/1376] ARM: lpc32xx: only run SoC init on LPC32xx hardware Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0684/1376] selftests/bpf: Fix incorrect error checking for pthread_create Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0685/1376] selftests/bpf: Fix memory leak on subtest_states reallocation Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0686/1376] cxl/region: Fix use-after-free in find_pos_and_ways() error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0687/1376] pinctrl: mediatek: Add EINT support for multiple addresses Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0688/1376] pinctrl: mediatek: Fix the invalid conditions Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0689/1376] pinctrl: mediatek: eint: Fix invalid pointer dereference for v1 platforms Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0690/1376] pinctrl: mediatek: free EINT resources on unbind Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0691/1376] tools/build: Add bpftool-skeletons feature test Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0692/1376] tools/build: Allow versioning of all LLVM tools defined in Makefile.include Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.12 0693/1376] power: supply: sbs-battery: Use a per-device serial number buffer Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0694/1376] scsi: ufs: debugfs: Reserve space for a string terminator Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0695/1376] crypto: keembay - Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0696/1376] crypto: keembay - publish OF module alias for OCS AES/SM4 Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0697/1376] RDMA/mlx5: Fix integer overflow of user QP buffer size Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0698/1376] powercap: intel_rapl_tpmi: Handle PMU registration failure during probe Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0699/1376] isofs: release zisofs block pointer buffer head Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0700/1376] spi: oc-tiny: switch to managed controller allocation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0701/1376] w1: ds2482: Fix signedness bug in ds2482_w1_triplet() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0702/1376] remoteproc: core: Drop redundant initialization of ret in rproc_shutdown() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0703/1376] remoteproc: Allow shutdown of crashed processors Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0704/1376] remoteproc: core: Attach rproc asynchronously in rproc_add() path via schedule_work() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0705/1376] remoteproc: Prevent crash handling to race with rproc_del() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0706/1376] staging: rtl8723bs: use kfree_sensitive() for key material Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0707/1376] fs/ntfs3: reject restart table growth beyond U16_MAX entries Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0708/1376] iommu/tegra241-cmdqv: Use request_threaded_irq Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0709/1376] iommu/tegra241-cmdqv: Dont run the error ISR before probe sets up vintfs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0710/1376] iommu/tegra241-cmdqv: Free the error IRQ before tearing down VINTFs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0711/1376] RDMA/efa: Fix PBL chunk length computation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0712/1376] wifi: mac80211: fix per-STA profile length in cross-link CSA parsing Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0713/1376] arm64: dts: allwinner: sun50i-a64-pinephone: Fix mpu6050 mount matrix Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0714/1376] clk: tegra: tegra124-emc: put EMC node on register failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0715/1376] clk: palmas: Manage external-control prepare with devm Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0716/1376] clk/x86: pmc_atom: add kasprintf return value check Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0717/1376] clk: mediatek: mt8135: Fix inverted gate control for devapc_ck Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0718/1376] clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0719/1376] nilfs2: fix infinite loop in nilfs_clean_segments() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0720/1376] nilfs2: prevent out-of-bounds read in super root block parsing Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0721/1376] nilfs2: fix BUG in nilfs_copy_dirty_pages() on dirty state mismatch Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0722/1376] scsi: smartpqi: Fix AIO retry marker cleared by SCSI core between dispatches Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0723/1376] RDMA/mlx5: Fix stack out-of-bounds read in cc_params debugfs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0724/1376] RDMA/mlx5: Send cong param changes to the resolved port mdev Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0725/1376] RDMA/cxgb4: free STAG index when TPT entry write fails Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0726/1376] IB/isert: reject PDUs declaring more data than was received Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0727/1376] IB/isert: reject login " Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0728/1376] nvme-fc: unmap cmd_iu DMA on rsp_iu mapping failure in init_request Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0729/1376] spi: davinci: switch to managed controller allocation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0730/1376] wifi: ath11k: fix overreads in ath11k_wmi_process_csa_switch_count_event() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0731/1376] PCI: starfive: Fix Runtime PM handling and teardown ordering Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0732/1376] PCI: starfive: Fix unchecked pm_runtime_get_sync() in probe Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0733/1376] platform/chrome: cros_ec_debugfs: Clean up console log on probe failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0734/1376] platform/chrome: cros_ec_debugfs: Unregister panic notifier Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0735/1376] wifi: rtlwifi: pci: fix error path in rtl_pci_probe() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0736/1376] bus: mhi: host: Flush the posted write after writing to MHI_SOC_RESET_REQ_OFFSET Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0737/1376] bus: mhi: host: Fix controller cleanup on EDL sysfs failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0738/1376] md/raid5: protect bitmap batch counters aka seq_flush/seq_write consistency Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0739/1376] md/raid5-ppl: fix use-after-free in ppl_do_flush() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0740/1376] md: ensure resync is prioritized over recovery Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0741/1376] md: allow removing faulty rdev during resync Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0742/1376] md: rename recovery_cp to resync_offset Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0743/1376] md: add a new recovery_flag MD_RECOVERY_LAZY_RECOVER Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0744/1376] md/raid5: protect lockless recovery_offset accesses during reshape Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0745/1376] tools/nolibc/powerpc: mark ctr and xer as clobbered by system call Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0746/1376] md: recheck spare changes before starting sync Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0747/1376] selftests/zram: fix kernel_gte() for POSIX sh Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0748/1376] slab: simplify init_kmem_cache_nodes() error handling Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0749/1376] slab: Make slub local_(try)lock more precise for LOCKDEP Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0750/1376] slab: Reuse first bit for OBJEXTS_ALLOC_FAIL Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0751/1376] wifi: ath12k: fix stride mismatch in mac_phy_caps_parse() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0752/1376] wifi: ath11k: " Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.12 0753/1376] rcu: Mark accesses to ->rcu_urgent_qs and ->rcu_need_heavy_qs Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0754/1376] arm64: dts: qcom: msm8998: Dont pull-up I2C pins by default in sleep Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0755/1376] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0756/1376] arm64: dts: qcom: qcs404: Fix DTBS Check errors in usb controller nodes Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0757/1376] clk: qcom: gcc-qcm2290: dont park QUP RCGs upon registration Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0758/1376] arm64: dts: qcom: sc8280xp-crd: Fix the pin index for misc_3p3_reg_en Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0759/1376] firmware: qcom_scm: Add API to get waitqueue IRQ info Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0760/1376] firmware: qcom_scm: Support multiple waitq contexts Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0761/1376] firmware: qcom: scm: add trace events for the SMC call interface Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0762/1376] firmware: qcom: scm: instrument SMC call path with tracepoints Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0763/1376] firmware: qcom: scm: Fix NULL dereference in IRQ handler before __scm is published Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0764/1376] firmware: qcom: scm: Fix tzmem state on probe retry Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0765/1376] arm64: dts: qcom: sm8250-xiaomi-elish: correct the board ID Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0766/1376] arm64: dts: qcom: sc8180x: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0767/1376] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0768/1376] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0769/1376] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0770/1376] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0771/1376] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0772/1376] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0773/1376] arm64: dts: qcom: sm8650: add OPP table support to PCIe Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0774/1376] arm64: dts: qcom: sm8650: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0775/1376] power: supply: isp1704_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0776/1376] power: supply: sc2731_charger: " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0777/1376] bpf: Fix potential UAF in bpf_netns_link_update_prog Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0778/1376] bpf: Fix potential UAF when reading bpf link info Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0779/1376] lib/test_hmm: fail dmirror_fault() when the mirrored mm is gone Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0780/1376] clk: qcom: gpucc-qcm2290: Park RCGs clk source at XO during disable Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0781/1376] clk: qcom: Return expected ENOMEM error on dynamic allocation failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0782/1376] md/bitmap: resume array on backlog_store() error path Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0783/1376] md: remove unused mddev argument from export_rdev Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0784/1376] md: skip redundant raid_disks update when value is unchanged Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0785/1376] md: scope memalloc_noio to allocation critical sections Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0786/1376] iommu/dma: Check atomic pool allocation result directly Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0787/1376] swiotlb: Preserve allocation virtual address for dynamic pools Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0788/1376] i3c: dw: avoid shift-out-of-bounds when DAA assigns no devices Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0789/1376] i3c: master: Fix device_register() error path Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0790/1376] md: merge mddev has_superblock into mddev_flags Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0791/1376] md: merge mddev faillast_dev " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0792/1376] md: merge mddev serialize_policy " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0793/1376] md/raid1: create serial pool adding rdev to array with serialize_policy=1 Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0794/1376] locking/lockdep: Fix NULL pointer dereference in __lock_set_class() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0795/1376] powerpc/crash: Fix possible memory leak in update_crash_elfcorehdr() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0796/1376] misc: vmc_vmci: Fix potential memory leak in vmci_event_subscribe() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0797/1376] misc: sgi-gru: remove interrupt-context page-table walks Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0798/1376] fanotify: report full event length for FIONREAD Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0799/1376] wifi: mt76: mt76x02: do not WARN on invalid rx descriptor length Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0800/1376] wifi: mt76: mt7921: validate CLC firmware records Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0801/1376] wifi: mt76: mt7915: fix net_fill_forward_path for non-DBDC mt7986 Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0802/1376] wifi: mt76: add init_wiphy callback Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0803/1376] wifi: mt76: mt792x: fix use-after-free in mt76_rx_poll_complete Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0804/1376] wifi: mt76: mt7925: fix msg len mismatch between driver and firmware Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0805/1376] wifi: mt76: mt792x: Fix memory leak in SDIO TX path Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0806/1376] wifi: mt76: mt7996: fix capability of EHT-MCS 15 in MRU Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0807/1376] wifi: mt76: fix non-AQL packet accounting for MLO stations Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0808/1376] wifi: mt76: mt7996: validate RX band_idx before dereferencing phys[] Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0809/1376] wifi: mt76: mt7996: set MT76_MCU_RESET before waking MCU waiters on full reset Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0810/1376] wifi: mt76: mt7915: clear wcid mask under mutex after RCU pointer clear Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0811/1376] wifi: mt76: mt7915: avoid nss underflow in mt7915_mcu_get_sta_nss Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0812/1376] wifi: mt76: mt7996: dont report a zero TX bitrate Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.12 0813/1376] wifi: mt76: mt7915: write RX header translation bit to the correct register Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0814/1376] wifi: mt76: fix stranded frames in mt76_txq_schedule_pending Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0815/1376] wifi: mt76: mt7915: poll the correct SLP CTRL register for the second adie Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0816/1376] wifi: mt76: check txfree done event on the WED hw path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0817/1376] wifi: mt76: mt7996: bound TLV walk in mt7996_mcu_get_chip_config Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0818/1376] wifi: mt76: mt7915: unwind state on add_interface failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0819/1376] wifi: mt76: mt7996: reserve space for the CSA-abort countdown TLV Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0820/1376] wifi: mt76: mt7915: use little-endian for bss_info_ra wire fields Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0821/1376] wifi: mt76: only consume the WO drop bit on WED v2 devices Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0822/1376] ACPI: processor: idle: Optimize ACPI idle driver registration Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0823/1376] ACPI: processor: Unregister cpufreq notifier on init failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0824/1376] perf: arm_spe: Make wakeup range check overflow safe Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0825/1376] drm/msm/dpu: Drop sneaky dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0826/1376] drm/msm/dsi: Drop dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0827/1376] wifi: ath11k: fix leak in ath11k_service_ready_ext_event() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0828/1376] regulator: core: use system_freezable_wq for init complete work Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0829/1376] perf machine: Fix NULL parent dereference in fork event processing Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0830/1376] perf machine: Guard against NULL strlist in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0831/1376] perf machine: Use snprintf() for guestmount path construction Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0832/1376] perf machine: Check snprintf truncation in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0833/1376] perf machine: Dont abort guest map creation on first inaccessible dir Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0834/1376] perf machine: Reset errno before strtol in guest kernel map creation Greg Kroah-Hartman
2026-09-12  6:54 ` Greg Kroah-Hartman [this message]
2026-09-12  6:54 ` [PATCH 6.12 0836/1376] perf machine: Check snprintf truncation for guest kallsyms path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0837/1376] bpf, x86: Fix trampoline stack size for 128-bit arguments Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0838/1376] wifi: mt76: mt7915: unlink TWT flow if the MCU rejects the agreement Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0839/1376] wifi: mt76: mt7915: fix double hif2 init on the non-WED path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0840/1376] wifi: mt76: mt7915: fix ext PHY use-after-free on register error path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0841/1376] wifi: mt76: mt7915: release hif2 reference on probe IRQ failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0842/1376] wifi: mt76: mt7996: fix reg addr remap when addr is 0 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0843/1376] wifi: mt76: mt7915: fix chainmask handling for non-dbdc phys on band 1 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0844/1376] wifi: mt76: mt7915: report RX chain signal for all RX paths Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0845/1376] wifi: mt76: mt7925: advertise EHT 320MHz capabilities for 6GHz band Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0846/1376] wifi: mt76: mt7925: Fix EHT Beamformee SS subfields to meet 802.11be minimum Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0847/1376] wifi: ath10k: snoc: use memcpy_fromio() for MSA ramdump Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0848/1376] iommu/arm-smmu-v3: Convert to use atomic poll timeout Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0849/1376] perf/cxlpmu: Fix 64-bit write to 32-bit HDM filter register Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0850/1376] wifi: mac80211: send TWT teardown to peer after setup TX failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0851/1376] wifi: zd1211rw: reject secondary interfaces to prevent conflicts Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0852/1376] wifi: mac80211: skip unused probe response countdown offsets Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0853/1376] wifi: mac80211: disconnect on CSA to channel 0 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0854/1376] firmware: google: Add bounds checks in coreboot_table_populate() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0855/1376] firmware: coreboot: Validate table bounds Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0856/1376] powerpc/smp: add NULL guard for cause_ipi in smp_muxed_ipi_message_pass Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0857/1376] powerpc/irq: Fix missing r2 clobber in PCREL inline assembly Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0858/1376] MIPS: ptrace: Fix syscall skipping via PTRACE_SYSCALL Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0859/1376] serial: amba-pl011: unprepare console clock on unregister Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0860/1376] tty: clear cdev pointer after cdev_add() failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0861/1376] HID: i2c-hid: Refactor _DSM helper and add i2c-hid-acpi-prp0001 driver Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0862/1376] HID: synchronize input before cleaning up a failed probe Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0863/1376] HID: i2c-hid: Fix "(null)" output when reading report descriptor fails Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0864/1376] HID: i2c-hid: goodix: Disable VDD on VDDIO enable failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0865/1376] HID: lg4ff: validate report length before fixed offsets Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0866/1376] perf thread-stack: Fix heap buffer overflow on branch stack wrap copy Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0867/1376] perf auxtrace: Fix queue grow overflow and old array leak Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0868/1376] perf intel-pt: Fix off-by-one in auxtrace_info minimum size check Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0869/1376] perf intel-bts: " Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0870/1376] iio: light: tsl2772: fix ALS calibscale readback Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0871/1376] iio: light: isl29028: return zero in write_raw() on success Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0872/1376] iio: light: tsl2583: " Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.12 0873/1376] net: stmmac: Skip PHY attach if custom PCS is in use Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0874/1376] phonet: pep: do not write beyond optlen in getsockopt Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0875/1376] blk-cgroup: skip dying blkg in blkcg_activate_policy() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0876/1376] block/blk-stat: drain per-cpu callback stats over possible CPUs Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0877/1376] block/blk-iocost: collect per-cpu latency " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0878/1376] block/kyber-iosched: flush per-cpu latency buckets " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0879/1376] ublk: check for ublk_unmap_io() returning 0 Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0880/1376] o2hb_region_dev_store(): avoid goto around fdget()/fdput() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0881/1376] ocfs2/cluster: keep heartbeat local node stable Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0882/1376] lib/string: fix memchr_inv() for large ranges Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0883/1376] pps: dont try to wait for negative timeouts in PPS_FETCH Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0884/1376] pps: clients: gpio: Bypass edges direction check when not needed Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0885/1376] pps: pps-gpio: split IRQ handler into hardirq timestamper + threaded handler Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0886/1376] pps-gpio: remove dead capture_clear code Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0887/1376] rapidio: clear mport->net when rio_add_net() fails Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0888/1376] fat: release buffer head after rebuilding parent Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0889/1376] riscv: dts: sophgo: cv180x: Allow the DMA multiplexer to set channel number for DMA controller Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0890/1376] drm/omap: dsi: Do not copy isr table Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0891/1376] arm64: dts: qcom: agatti: Add missing CX power domain to DISPCC Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0892/1376] remoteproc: Move resource table data structure to its own header Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0893/1376] remoteproc: use rsc_table_for_each_entry() in rproc_handle_resources() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0894/1376] remoteproc: fix OOB read via signed offset in rsc_table_for_each_entry() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0895/1376] bpf, cgroup: Fix invalid storage access after __cgroup_bpf_attach failed Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0896/1376] selftests/mm: add new test cases to the migration test Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0897/1376] ksm_tests: skip hugepage test when Transparent Hugepages are disabled Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0898/1376] selftests/mm: ksm_tests: use kselftest framework Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0899/1376] selftests/mm: fix ksm NUMA merge test for systems with memoryless NUMA nodes Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0900/1376] selftests/mm: fix ternary operator precedence in ksm_tests Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0901/1376] arm64: dts: qcom: qcs8550-aim300: Fix swapped USB QMP PHY vdda-phy/vdda-pll supplies Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0902/1376] arm64: dts: qcom: sm7225-fairphone-fp4: " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0903/1376] scripts/tags.sh: Prevent binary files appearing in cscope.files Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0904/1376] modpost: prevent leak when early return no suffix .o in read_symbols() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0905/1376] RDMA/erdma: Hold CQ references when processing EQ events Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0906/1376] RDMA/erdma: Hold QP references for AE and CM processing Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0907/1376] RDMA/srp: fix heap information leak on a truncated SRP_CRED_REQ Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0908/1376] ARM: 9481/2: breakpoint: CFI breakpoints only on demand Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0909/1376] ARM: 9485/1: mm: acquire mmap write lock around show_pte() for user faults Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0910/1376] ocfs2: synchronize heartbeat callbacks with o2net teardown Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0911/1376] clk: rockchip: rk3576: fix source muxes for SPI0..SPI4 Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0912/1376] drm/sun4i: vi scaler: Fix coefficient selection Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0913/1376] of: property: add of_graph_get_next_port() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0914/1376] of: property: add of_graph_get_next_port_endpoint() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0915/1376] drm/sun4i: tcon: Set output mux for DSI and LVDS Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0916/1376] drm/sun4i: tcon: Drop TCON TOP device reference Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0917/1376] drm/sun4i: hdmi: Dont leak sync polarity bits into packet control Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0918/1376] drm/sun4i: crtc: Propagate layer initialization error Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0919/1376] drm/sun4i: tcon: Drop remote endpoint reference Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0920/1376] drm/sun4i: dw-hdmi: Drop TCON TOP port reference Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0921/1376] drm/sun4i: hdmi-phy: Fix H6 8-bit MPLL config at 594 MHz Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0922/1376] cpufreq: imx6q: fix devres accumulation across driver rebind Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0923/1376] cpufreq: imx6q: fix out-of-bounds write when probed more than once Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0924/1376] IB/isert: delay the final Login Response until the session is registered Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0925/1376] IB/isert: post the full-feature receive buffers after session registration Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0926/1376] RDMA/siw: Fix use-after-free in siw_accept() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0927/1376] module: replace use of system_wq with system_dfl_wq Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0928/1376] module: use strscpy() to copy module names in stats and dup tracking Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0929/1376] module/dups: Inform duplicate requests about the result directly Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0930/1376] module/dups: Fix use-after-free in kmod_dup_req lifetime handling Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0931/1376] RDMA/erdma: restrict the driver to little-endian systems Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0932/1376] wifi: mac80211: skip default WMM setup for AP_VLAN links Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.12 0933/1376] arm64: hibernate: mask DAIF before restoring hibernated kernel Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0934/1376] arm64: hibernate: Restore DAIF state on error Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0935/1376] mfd: rave-sp: validate received frame payload lengths Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0936/1376] mfd: iqs62x: Reject zero-length firmware records Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0937/1376] drm/amdgpu/gfx6: Fixup emit_cntxcntl() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0938/1376] ext4: fix spurious message about orphan cleanup on RO fs Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0939/1376] arm64: dts: ti: k3-am64: Fix MDIO clock reference for ICSSG0 node Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0940/1376] phy: sunplus: fix error handling in sp_uphy_init() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0941/1376] phy: rockchip: phy-rockchip-inno-csidphy: fix rk1808 hsfreq table Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0942/1376] perf trace-event: Fix buffer overflow in read_string() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0943/1376] drm/amdgpu/gfx6: Fixup emitting SWITCH_BUFFER packets Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0944/1376] drm/amdgpu/gfx6: Use PFP on the compute queues too Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0945/1376] scsi: qla2xxx: Remove redundant VPD flash read in sysfs read path Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0946/1376] firmware_loader: do not queue completed sysfs fallback requests Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0947/1376] pinctrl: rockchip: Reset the pin count when recalculating SoC data Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0948/1376] hugetlbfs: release subpool on fill_super failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0949/1376] soc: fsl: qe: check platform_driver_register() in qe_ic_of_init() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0950/1376] phy: qcom-sgmii-eth: relax order of .power_on() vs .set_mode*() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0951/1376] phy: qcom: sgmii-eth: vote for both voltage rails with correct current loads Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0952/1376] phy: qcom: qmp-usb-legacy: Fix possible NULL-deref on early runtime suspend Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0953/1376] phy: qcom: snps-femto-v2: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0954/1376] phy: qcom: qmp-usb: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0955/1376] md/raid5: round bitmap stripes with sector division Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0956/1376] md: avoid stale clone I/O accounting timestamps Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0957/1376] md/raid1: dont set array_frozen in raid1_takeover() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0958/1376] coresight: etm4x: fix wrong check of etm4x_sspcicrn_present() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0959/1376] coresight: Change syncfreq to be a u8 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0960/1376] coresight: etm4x: fix underflow for usage of (nrseqstate - 1) Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0961/1376] coresight: etm4x: fix leaked trace id Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0962/1376] regulator: qcom-rpmh: Fix PMIC5 BOB bypass mode handling Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0963/1376] ACPI: video: Release PCI device reference after lookup Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0964/1376] perf/x86/intel/pt: Add support for pause / resume Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0965/1376] perf/x86/intel/pt: Factor out pt_config_enable() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0966/1376] perf/x86/intel/pt: Use bitwise access for PERF_HES_STOPPED Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0967/1376] perf/x86/intel/pt: Fix stop/start with no update Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0968/1376] sched/fair: Check CPU capacity before comparing group types during load balance Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0969/1376] Bluetooth: btqca: Fix qca_set_bdaddr() waiting for wrong HCI event Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0970/1376] Bluetooth: btusb: Fix BD_ADDR byte order in btusb_set_bdaddr_wcn6855() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0971/1376] Bluetooth: btusb: refactor endpoint lookup Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0972/1376] Bluetooth: btusb: Record matched usb_device_id into btusb_data Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0973/1376] Bluetooth: btusb: QCA: Fix populating devcoredump fields on unenabled devices Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0974/1376] perf trace-event: Fix integer truncation in do_read() and skip() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0975/1376] block/bdev: lift block size restrictions to 64k Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0976/1376] scsi: core: Pass a struct scsi_driver to scsi_{,un}register_driver() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0977/1376] scsi: core: sysfs: Make use of bus callbacks Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0978/1376] scsi: sd: Convert to SCSI bus methods Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0979/1376] scsi: sd: Move the sd_remove() function definition Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0980/1376] scsi: sd: Move the sd_config_discard() " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0981/1376] scsi: sd: Enable sector size > PAGE_SIZE in SCSI sd driver Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0982/1376] scsi: sd: Fix special_vec mempool leak when scsi_alloc_sgtables() fails Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0983/1376] scsi: sd: Fix sd_done() sense handling condition Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0984/1376] btrfs: retry verity reads for not-uptodate Merkle folios Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0985/1376] Bluetooth: virtio_bt: avoid OOB read of build info string Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0986/1376] Bluetooth: btintel: Fix diagnostics event detection Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0987/1376] Bluetooth: hci_conn: fix the SCO setup context lifetime Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0988/1376] Bluetooth: hci_sync: free the advertising instance on the failure and cancel paths Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0989/1376] Bluetooth: MGMT: free the mesh send cancel command when it is cancelled Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0990/1376] mmc: sdio: add MediaTek MT7902 SDIO device ID Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0991/1376] Bluetooth: btmtk: add MT7902 MCU support Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0992/1376] Bluetooth: btmtk: add MT7902 SDIO support Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.12 0993/1376] Bluetooth: btmtksdio: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0994/1376] Bluetooth: MSFT: validate evt_prefix_len against the response length Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0995/1376] cgroup: Add bpf prog revisions to struct cgroup_bpf Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0996/1376] bpf: Implement mprog API on top of existing cgroup progs Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0997/1376] bpf, cgroup: Fix storage null-ptr-deref after replacing prog Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0998/1376] iio: light: gp2ap002: Fix unbalanced runtime PM on repeated event writes Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.12 0999/1376] iio: light: gp2ap002: re-enable irq if runtime suspend fails Greg Kroah-Hartman

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=20260912065626.156657268@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=acme@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=sashiko-bot@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yanmin_zhang@linux.intel.com \
    /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