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,
	"AngeloGioacchino Del Regno"
	<angelogioacchino.delregno@collabora.com>,
	"Nícolas F .  R .  A .  Prado" <nfraprado@collabora.com>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.6 0881/1424] pinctrl: mediatek: eint: Fix invalid pointer dereference for v1 platforms
Date: Sat, 12 Sep 2026 08:55:13 +0200	[thread overview]
Message-ID: <20260912065627.050634040@linuxfoundation.org> (raw)
In-Reply-To: <20260912065607.279695368@linuxfoundation.org>

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

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

From: Nícolas F. R. A. Prado <nfraprado@collabora.com>

[ Upstream commit 1c9977b263475373b31bbf86af94a5c9ae2be42c ]

Commit 3ef9f710efcb ("pinctrl: mediatek: Add EINT support for multiple
addresses") introduced an access to the 'soc' field of struct
mtk_pinctrl in mtk_eint_do_init() and for that an include of
pinctrl-mtk-common-v2.h.

However, pinctrl drivers relying on the v1 common driver include
pinctrl-mtk-common.h instead, which provides another definition of
struct mtk_pinctrl that does not contain an 'soc' field.

Since mtk_eint_do_init() can be called both by v1 and v2 drivers, it
will now try to dereference an invalid pointer when called on v1
platforms. This has been observed on Genio 350 EVK (MT8365), which
crashes very early in boot (the kernel trace can only be seen with
earlycon).

In order to fix this, since 'struct mtk_pinctrl' was only needed to get
a 'struct mtk_eint_pin', make 'struct mtk_eint_pin' a parameter
of mtk_eint_do_init() so that callers need to supply it, removing
mtk_eint_do_init()'s dependency on any particular 'struct mtk_pinctrl'.

Fixes: 3ef9f710efcb ("pinctrl: mediatek: Add EINT support for multiple addresses")
Suggested-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Nícolas F. R. A. Prado <nfraprado@collabora.com>
Link: https://lore.kernel.org/20250520-genio-350-eint-null-ptr-deref-fix-v2-1-6a3ca966a7ba@collabora.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Stable-dep-of: 88292b7103d2 ("pinctrl: mediatek: free EINT resources on unbind")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pinctrl/mediatek/mtk-eint.c           | 26 ++++++++-----------
 drivers/pinctrl/mediatek/mtk-eint.h           |  5 ++--
 .../pinctrl/mediatek/pinctrl-mtk-common-v2.c  |  2 +-
 drivers/pinctrl/mediatek/pinctrl-mtk-common.c |  2 +-
 4 files changed, 16 insertions(+), 19 deletions(-)

diff --git a/drivers/pinctrl/mediatek/mtk-eint.c b/drivers/pinctrl/mediatek/mtk-eint.c
index 557dec75fa031..c2e452c699cfa 100644
--- a/drivers/pinctrl/mediatek/mtk-eint.c
+++ b/drivers/pinctrl/mediatek/mtk-eint.c
@@ -22,7 +22,6 @@
 #include <linux/platform_device.h>
 
 #include "mtk-eint.h"
-#include "pinctrl-mtk-common-v2.h"
 
 #define MTK_EINT_EDGE_SENSITIVE           0
 #define MTK_EINT_LEVEL_SENSITIVE          1
@@ -505,10 +504,9 @@ int mtk_eint_find_irq(struct mtk_eint *eint, unsigned long eint_n)
 }
 EXPORT_SYMBOL_GPL(mtk_eint_find_irq);
 
-int mtk_eint_do_init(struct mtk_eint *eint)
+int mtk_eint_do_init(struct mtk_eint *eint, struct mtk_eint_pin *eint_pin)
 {
 	unsigned int size, i, port, virq, inst = 0;
-	struct mtk_pinctrl *hw = (struct mtk_pinctrl *)eint->pctl;
 
 	/* If clients don't assign a specific regs, let's use generic one */
 	if (!eint->regs)
@@ -519,7 +517,15 @@ int mtk_eint_do_init(struct mtk_eint *eint)
 	if (!eint->base_pin_num)
 		return -ENOMEM;
 
-	if (eint->nbase == 1) {
+	if (eint_pin) {
+		eint->pins = eint_pin;
+		for (i = 0; i < eint->hw->ap_num; i++) {
+			inst = eint->pins[i].instance;
+			if (inst >= eint->nbase)
+				continue;
+			eint->base_pin_num[inst]++;
+		}
+	} else {
 		size = eint->hw->ap_num * sizeof(struct mtk_eint_pin);
 		eint->pins = devm_kmalloc(eint->dev, size, GFP_KERNEL);
 		if (!eint->pins)
@@ -533,16 +539,6 @@ int mtk_eint_do_init(struct mtk_eint *eint)
 		}
 	}
 
-	if (hw && hw->soc && hw->soc->eint_pin) {
-		eint->pins = hw->soc->eint_pin;
-		for (i = 0; i < eint->hw->ap_num; i++) {
-			inst = eint->pins[i].instance;
-			if (inst >= eint->nbase)
-				continue;
-			eint->base_pin_num[inst]++;
-		}
-	}
-
 	eint->pin_list = devm_kmalloc(eint->dev, eint->nbase * sizeof(u16 *), GFP_KERNEL);
 	if (!eint->pin_list)
 		goto err_pin_list;
@@ -610,7 +606,7 @@ int mtk_eint_do_init(struct mtk_eint *eint)
 err_wake_mask:
 	devm_kfree(eint->dev, eint->pin_list);
 err_pin_list:
-	if (eint->nbase == 1)
+	if (!eint_pin)
 		devm_kfree(eint->dev, eint->pins);
 err_pins:
 	devm_kfree(eint->dev, eint->base_pin_num);
diff --git a/drivers/pinctrl/mediatek/mtk-eint.h b/drivers/pinctrl/mediatek/mtk-eint.h
index 0c6bf7cbdc3a4..fc31a4c0c77bf 100644
--- a/drivers/pinctrl/mediatek/mtk-eint.h
+++ b/drivers/pinctrl/mediatek/mtk-eint.h
@@ -88,7 +88,7 @@ struct mtk_eint {
 };
 
 #if IS_ENABLED(CONFIG_EINT_MTK)
-int mtk_eint_do_init(struct mtk_eint *eint);
+int mtk_eint_do_init(struct mtk_eint *eint, struct mtk_eint_pin *eint_pin);
 int mtk_eint_do_suspend(struct mtk_eint *eint);
 int mtk_eint_do_resume(struct mtk_eint *eint);
 int mtk_eint_set_debounce(struct mtk_eint *eint, unsigned long eint_n,
@@ -96,7 +96,8 @@ int mtk_eint_set_debounce(struct mtk_eint *eint, unsigned long eint_n,
 int mtk_eint_find_irq(struct mtk_eint *eint, unsigned long eint_n);
 
 #else
-static inline int mtk_eint_do_init(struct mtk_eint *eint)
+static inline int mtk_eint_do_init(struct mtk_eint *eint,
+				   struct mtk_eint_pin *eint_pin)
 {
 	return -EOPNOTSUPP;
 }
diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
index 26fe53d9a53fb..882733516b45e 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common-v2.c
@@ -419,7 +419,7 @@ int mtk_build_eint(struct mtk_pinctrl *hw, struct platform_device *pdev)
 	hw->eint->pctl = hw;
 	hw->eint->gpio_xlate = &mtk_eint_xt;
 
-	ret = mtk_eint_do_init(hw->eint);
+	ret = mtk_eint_do_init(hw->eint, hw->soc->eint_pin);
 	if (ret)
 		goto err_free_eint;
 
diff --git a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
index 167df3c7336fb..31cd27ddceafb 100644
--- a/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
+++ b/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
@@ -1042,7 +1042,7 @@ static int mtk_eint_init(struct mtk_pinctrl *pctl, struct platform_device *pdev)
 	pctl->eint->pctl = pctl;
 	pctl->eint->gpio_xlate = &mtk_eint_xt;
 
-	return mtk_eint_do_init(pctl->eint);
+	return mtk_eint_do_init(pctl->eint, NULL);
 }
 
 /* This is used as a common probe function */
-- 
2.53.0




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

Thread overview: 1432+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-12  6:40 [PATCH 6.6 0000/1424] 6.6.157-rc1 review Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0001/1424] Revert "arm64: mm: Dont remap pgtables for allocate vs populate" Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0002/1424] net: dst: add four helpers to annotate data-races around dst->dev Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0003/1424] ipv4: adopt dst_dev, skb_dst_dev and skb_dst_dev_net[_rcu] Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0004/1424] net: dst: introduce dst->dev_rcu Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0005/1424] ipv4: start using dst_dev_rcu() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0006/1424] ALSA: aloop: Fix racy access at PCM trigger Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0007/1424] ALSA: aloop: Fix peer runtime UAF during format-change stop Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0008/1424] perf/x86/intel/uncore: Fix die ID init and look up bugs Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0009/1424] alpha: fix ieee_swcr_to_fpcr setting FPCR_DNOD unconditionally Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0010/1424] alpha: dont leak hardware-fabricated FP exception bits to user space Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0011/1424] clocksource/drivers/timer-sun4i: Advertise a real minimum delta Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0012/1424] powerpc/pseries/iommu: switch to Default DMA window during kdump Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0013/1424] timers/itimer: Zero-init old itimerval before copy to userspace Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0014/1424] include/linux/list.h: mark list_add and __list_add as __always_inline Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0015/1424] mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0016/1424] mm/vmscan: report RCU-tasks quiescent states in shrink_lruvec() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0017/1424] mm: memcg: stop reclaim when a limit update is superseded Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0018/1424] tools/compiler: match glibc 2.42 definition of __attribute_const__ Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0019/1424] x86/tdx: Fix off-by-one in port I/O handling Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0020/1424] x86/insn-eval: Move assign_register() out of KVM as insn_assign_reg() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0021/1424] hwtracing: hisi_ptt: Propagate DMA reset timeout in trace_start() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0022/1424] tracing/user_events: Clear copied tracing state before fork duplication Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0023/1424] tracing: Fix crash passing ERR_PTR to kthread_stop() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0024/1424] tracing: Fix use-after-free with same-name named triggers Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0025/1424] device property: fix infinite loop in fwnode_for_each_child_node() Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0026/1424] powerpc/powermac: fix OF node refcount Greg Kroah-Hartman
2026-09-12  6:40 ` [PATCH 6.6 0027/1424] rapidio: mport_cdev: fix use-after-free in dma_req_free() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0028/1424] Revert "media: v4l2-dev: fix error handling in __video_register_device()" Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0029/1424] staging: greybus: hid: fix SET_REPORT return value Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0030/1424] usb: dwc2: gadget: Exit partial power down state when changing USB pull-up Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0031/1424] USB: phy: fsl-usb: fix missing static keywords Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0032/1424] usb: gadget: u_audio: Fix use-after-free on sound card disconnect Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0033/1424] usb: gadget: snps_udc_plat: clean up PHY on probe deferral Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0034/1424] usb: gadget: midi2: remove default configfs groups on teardown Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0035/1424] usb: gadget: f_tcm: fix deadlock in usbg_make_tpg() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0036/1424] usb: gadget: uvc: fix dangling pointers in uvc_function_bind() and uvc_function_unbind() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0037/1424] usb: gadget: f_fs: Prevent deadlock during ep0 read loop Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0038/1424] fpga: altera-cvp: Avoid out-of-bounds read in trailing byte write Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0039/1424] HID: sensor-hub: Fix out-of-bounds write in sensor_hub_get_feature Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0040/1424] lib/ucs2_string.c: fix out-of-bounds read in ucs2_strnlen() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0041/1424] media: cec: stm32: prevent out-of-bounds write on RX overflow Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0042/1424] media: vicodec: fix out-of-bounds write in FWHT encoder Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0043/1424] nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0044/1424] of: fix out-of-bounds read in of_alias_scan() stem parser Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0045/1424] ubifs: fix out-of-bounds read in signature length check Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0046/1424] NFSD: Encode only the status in NFS-ACL v2 GETACL error replies Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0047/1424] NFSD: Fix off-by-one in DRC bucket pruning limit Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0048/1424] NFSD: restart ssc_expire_umount walk after dropping nfsd_ssc_lock Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0049/1424] NFSD: remove flawed WARN_ON_ONCE from nfsd_mode_check Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0050/1424] NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0051/1424] nfsd: release path refs on follow_down() error Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0052/1424] nfsd: Reset write verifier when async COPY writeback fails Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0053/1424] nfsd: return NFS4ERR_NOTSUPP for unsupported netloc4 types Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0054/1424] nfsd: sample writeback error cursor before async COPY loop Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0055/1424] nfsd: validate symlink target length in NFSv4 CREATE Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0056/1424] nfsd: add fh_want_write() for early-verified SETATTR in nfsd_proc_setattr() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0057/1424] nfsd: add filehandle match check to nfsd4_delegreturn() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0058/1424] nfsd: block non-SAVEFH ops after FOREIGN PUTFH to prevent NULL deref Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0059/1424] nfsd: check client ownership when cancelling a copy-notify stateid Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0060/1424] nfsd: fix cpntf publish race in nfs4_init_cp_state Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0061/1424] nfsd: fix version mismatch loops in nfsd_acl_init_request() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0062/1424] nfsd: fix XDR length calculation in nfsd4_ff_encode_layoutget Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0063/1424] nfsd: fix XDR padding calculation in ff_encode_getdeviceinfo Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0064/1424] nfsd: gate nfs2 setacl by argp->mask Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0065/1424] nfsd: gate nfs3 " Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0066/1424] nfsd: initialize copy-notify stateid before publishing it Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0067/1424] nfsd: reject out-of-range useconds in NFSv2 SETATTR/CREATE Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0068/1424] nfsd: reject reclaim LOCK after RECLAIM_COMPLETE Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0069/1424] nfsd: revoke copy-notify stateids before dropping their reference Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0070/1424] NFSD: Prevent lock owner use-after-free during client teardown Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0071/1424] libceph: validate OSD extent maps before cursor advance Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0072/1424] libceph: reject buckets with mismatched CRUSH ids Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0073/1424] ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0074/1424] ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0075/1424] ceph: bound copied dentry name length in NFS export get_name Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0076/1424] ceph: bound num_export_targets array for mds info v2/v3 Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0077/1424] ceph: bound xattr value length in __build_xattrs() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0078/1424] audit: avoid dropping live tree ref on fsnotify rule autoremove Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0079/1424] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0 Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0080/1424] smb: client: clear ce->tgthint in free_tgts() Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0081/1424] smb: client: fix ALIGN() overflow in symlink_data() error context loop Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0082/1424] smb: client: fix copy-paste error in WSL EA length accounting for $LXDEV Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0083/1424] smb: client: harden DFS cache against invalid target hints Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0084/1424] HID: picolcd: clamp eeprom debugfs read to bytes actually received Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0085/1424] HID: roccat: free buffered reports when destroying device Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0086/1424] HID: sensor: custom: Fix field sysfs group cleanup on failure Greg Kroah-Hartman
2026-09-12  6:41 ` [PATCH 6.6 0087/1424] HID: mcp2221: stop device IO before hid_hw_stop Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0088/1424] HID: mcp2221: validate report size in mcp2221_raw_event() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0089/1424] eventfs: Initialize ei->children and ei->list in init_ei() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0090/1424] fs/ntfs3: validate dirty page table on log replay Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0091/1424] fs/ntfs3: fix info-leak on partial LZNT decompress in ni_read_frame() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0092/1424] fs/ntfs3: bound page_lcns[] index by the log record Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0093/1424] eCryptfs: bound the packet-length peek to the user buffer Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0094/1424] ecryptfs: fix tag 11 packet exact-fit size check Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0095/1424] ecryptfs: hold msg ctx list lock when cleaning daemon queue Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0096/1424] ecryptfs: pass packet set buffer size to parser Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0097/1424] ecryptfs: reject oversized encrypted_key_size in parse_tag_3_packet Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0098/1424] ecryptfs: reject too-small tag 70 packets Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0099/1424] ecryptfs: release message context on send failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0100/1424] ecryptfs: show filename encryption options Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0101/1424] efivarfs: Rate limit statfs() handler Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0102/1424] fat: restore original value when fat_ent_write failed Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0103/1424] fbdev: omapfb: panel-dsi-cm: initialize lock before registering display Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0104/1424] fbdev: pvr2fb: correct user pointer annotation and sentinel initializer Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0105/1424] fbdev: ssd1307fb: defer I2C transfers from damage callbacks Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0106/1424] fbdev: uvesafb: unregister connector callback on init failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0107/1424] forcedeth: fix off-by-one when saving/restoring non-PCI config space Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0108/1424] fpga: stratix10-soc: Fix SVC mailbox handling during reconfiguration Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0109/1424] hsi: omap_ssi_core: fix missing DMA mask setup for SSI controller device Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0110/1424] ACPI: pfr_update: fix stack buffer overflow in query_capability() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0111/1424] alpha/PCI: Fix I/O port accessor argument order in pci_legacy_write() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0112/1424] alpha: marvel: Fix irq_set_status_flags to use correct IRQ number Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0113/1424] alpha: marvel: Fix lock ordering in init_io7_irqs() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0114/1424] ARM: 9477/1: Disable broken eBPF JIT on the Risc PC Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0115/1424] ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0116/1424] auxdisplay: charlcd: cancel backlight work on registration failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0117/1424] block: set QUEUE_FLAG_DYING unconditionally in blk_mark_disk_dead() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0118/1424] Bluetooth: btusb: Add ASUS USB-BT540 for Realtek 8761CU Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0119/1424] Bluetooth: btusb: Add ASUS USB-BT600 " Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0120/1424] Bluetooth: eir: Fix OOB read in eir_get_service_data() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0121/1424] bnx2x: fix double free in bnx2x_init_firmware() error path Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0122/1424] bpf: Harden bloom filter sizing and indexing on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0123/1424] dm-era: fix shadowed superblock leak on take-snap failure Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0124/1424] dm raid1: reserve space for NUL-terminator in build_constructor_string() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0125/1424] dm array: reject an array block whose value size is not the callers Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0126/1424] cpufreq: schedutil: Fix rate limit overflow Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0127/1424] cxl/pmem: Format the nvdimm serial number as unsigned decimal Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0128/1424] Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0129/1424] Bluetooth: hci_uart: Fix false success return in hci_uart_setup() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0130/1424] Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0131/1424] Bluetooth: RFCOMM: serialize security confirmation handling Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0132/1424] Bluetooth: hci_conn: re-enable advertising only for peripheral role Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0133/1424] Bluetooth: hci_core: use skb_get() instead of skb_clone() for req_skb Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0134/1424] Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0135/1424] Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0136/1424] Bluetooth: hci_intel: " Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0137/1424] Bluetooth: hci_sync: Clear HCI_CMD_PENDING when dropping the last request Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0138/1424] kasan: fix cache shrink race with CPU hotplug Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0139/1424] ipip: fix skb leak in collect_md mode when metadata_dst allocation fails Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0140/1424] ip6_tunnel: use skb_cow_head() in ip6_tnl_xmit() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0141/1424] ip6_gre: fix hardware header length for NBMA tunnels Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0142/1424] ipv6: use RCU iterator to dump route exceptions Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0143/1424] libnvdimm/labels: Prevent integer overflow in __nd_label_validate() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0144/1424] mailbox: qcom-ipcc: fix duplicate channel allocation across holes Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0145/1424] md: do overflow check for sb->bblog_shift in super_1_load() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0146/1424] mpls: reload header after pskb_may_pull() Greg Kroah-Hartman
2026-09-12  6:42 ` [PATCH 6.6 0147/1424] mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0148/1424] nouveau/gem: reserve the bo in the info ioctl around the vma lookup Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0149/1424] SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0150/1424] SUNRPC: Zero rpc_gss_wire_cred at svcauth_gss_decode_credbody() entry Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0151/1424] SUNRPC: svcauth_gss: enforce krb5 token minimum length Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0152/1424] sunrpc: route to a populated pool in svc_pool_for_cpu() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0153/1424] SUNRPC: always drain cache_cleaner before destroying a cache_detail Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0154/1424] SUNRPC: Check svc pool percpu counter allocation Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0155/1424] SUNRPC: Guard svcauth_gss_release() dispatch on rq_auth_stat Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0156/1424] SUNRPC: harden gss_krb5_unwrap_v2 against short tokens Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0157/1424] SUNRPC: harden gss_unwrap_resp_priv length checks Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0158/1424] sunrpc: init gssp_lock before publishing proc entry Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0159/1424] SUNRPC: Reject krb5 v2 wrap tokens with oversized ec field Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0160/1424] SUNRPC: wait for in-flight client TLS handshake callback Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0161/1424] svcrdma: Fix offset arithmetic in read_chunk_range Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0162/1424] svcrdma: Fix pcl_for_each_segment for empty chunks Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0163/1424] udf: reject VAT indexes equal to the entry count Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0164/1424] wifi: ath6kl: clamp assoc request/response lengths before subtracting IE offsets Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0165/1424] staging: media: tegra-video: fix of_node_put() on VIP parse errors Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0166/1424] staging: media: tegra-video: vi: fix probe failure on skipped last port Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0167/1424] rpmsg: glink: smem: order FIFO read after availability check Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0168/1424] arm64: dts: rockchip: fix eMMC reset polarity on PX30 Ringneck Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0169/1424] arm64: dts: rockchip: Fix rk3399-roc-pc-plus analog audio Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0170/1424] remoteproc: scp: Fix device reference leak on failed lookup Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0171/1424] qede: Fix NULL pointer dereference in TPA fragment processing Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0172/1424] RDMA/cxgb4: Cancel reg_work before freeing device on remove Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0173/1424] RDMA/ucma: Lock the handler in ucma_set_ib_path() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0174/1424] regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0175/1424] regulator: max8998_pmic_dt_parse_pdata: of_node_put on reg_np after ownership transferred to rdata Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0176/1424] regulator: qcom-refgen: correct the regulator type to CURRENT Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0177/1424] orangefs: fix double-free of trailer_buf on readdir copy failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0178/1424] orangefs: skip leading spaces before parsing client debug masks Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0179/1424] ocfs2: always run deallocs on copy-on-write completion Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0180/1424] ocfs2: bound namelen in dlm_migrate_request_handler Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0181/1424] ocfs2: validate lengths in dlm_mig_lockres_handler Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0182/1424] ocfs2: validate rl_used against rl_count in refcount block validator Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0183/1424] ocfs2: cluster: dont sleep while holding o2hb_live_lock in o2hb_region_pin() Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0184/1424] ocfs2: cluster: avoid lock order inversion in o2hb_region_pin() from drop_item Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0185/1424] ocfs2: cluster: fix o2hb_dependent_users leak on pin failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0186/1424] ocfs2: fix readdir position truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0187/1424] openrisc: fix arbitrary kernel memory access via or1k_atomic syscall Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0188/1424] openvswitch: only skb_tx_error() a packet we are about to drop Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0189/1424] ALSA: ump: Fix corrupted data bytes at MIDI 1.0 SysEx to UMP conversion Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0190/1424] arm64: compat: Fix decrementing LDM/STM alignment emulation Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0191/1424] ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0192/1424] hwmon: (max6621) fix negative temperature offset and crit readings Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0193/1424] hwmon: (max6621) fix temperature clamp range Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0194/1424] lockd: pin next file across nlm_inspect_file lock-drop Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0195/1424] nvme: nvme-fc: Fix nvme_fc_create_hw_io_queues() queue deletion in error path Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0196/1424] nvme: zero the discard fallback page Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0197/1424] nvme-pci: disable controller on admin queue IRQ setup failure Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0198/1424] nvme-tcp: do not accept C2HData based on blk_rq_payload_bytes() alone Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0199/1424] nvme-tcp: fix host memory disclosure on R2T for a read command Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0200/1424] nvme-tcp: reject a read that transferred too few bytes Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0201/1424] sctp: stop processing a packet once its association is deleted Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0202/1424] sctp: drop a chunk if its transport was removed Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0203/1424] sctp: fix NULL deref on untransmitted RECONF completion Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0204/1424] sctp: distinguish sequence zero from wildcard in reconf lookup Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0205/1424] sctp: fix stream->outcnt underflow on duplicate RECONF responses Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0206/1424] power: supply: bq24257: fix use-after-free on remove Greg Kroah-Hartman
2026-09-12  6:43 ` [PATCH 6.6 0207/1424] power: supply: bq256xx: drain usb_work before freeing the charger Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0208/1424] power: supply: bq25890: Fix power_supply reference leak Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0209/1424] power: supply: cros_usbpd-charger: bound the EC-reported port count Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0210/1424] power: supply: cros_usbpd: Limit port counts to EC_USB_PD_MAX_PORTS Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0211/1424] power: supply: lp8727: fix use-after-free in lp8727_release_irq() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0212/1424] power: supply: qcom_battmgr: terminate the strings from firmware Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0213/1424] power: supply: rt9455: quiesce delayed work before teardown Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0214/1424] power: supply: twl4030_charger: cancel workers via devm Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0215/1424] power: supply: ucs1002: fix use-after-free on remove Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0216/1424] power: supply: max17040: drop incorrect I2C functionality check Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0217/1424] power: supply: max17040: synchronize work cancellation on suspend Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0218/1424] s390/cpum_cf: Handle CPU hotplug via prepare/dead callbacks Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0219/1424] s390/dasd: Do not complete a failed ESE read as successful Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0220/1424] s390/dasd: Guard sysfs discipline callbacks against unallocated private data Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0221/1424] s390/dasd: Propagate partial completion length across ERP recovery Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0222/1424] PCI: Fix 32-bit config write in Intel PCH Root Port MPC ACS quirk Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0223/1424] PCI: meson: Fix GPIO state while requesting PERST# Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0224/1424] PCI: Add ACS quirk for Pericom PI7C9X2G608 switches [12d8:2608] Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0225/1424] PCI/sysfs: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0226/1424] PCI/MSI: Enable memory decoding before restoring MSI-X messages Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0227/1424] PCI/proc: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0228/1424] PCI/proc: Use file_ns_capable() when checking config space read access Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0229/1424] PCI/proc: Warn on writes to kernel-exclusive config space regions Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0230/1424] iommu/vt-d: Fix no_iommu to disable platform opt-in Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0231/1424] iommu/vt-d: Force requesting ACS when tboot is enabled Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0232/1424] platform/x86: dell-wmi-sysman: Dont hex dump attribute security buffer Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0233/1424] platform/x86: ISST: Validate level in perf mask ioctls Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0234/1424] platform/x86: ISST: Validate socket ID in clos_assoc ioctl Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0235/1424] mmc: via-sdmmc: stop card-detect handling on probe failure Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0236/1424] platform/x86: ISST: Just allow 2 bits for SST feature enable Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0237/1424] platform/x86: ISST: Validate logical CPU id and clos id Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0238/1424] platform/x86: ishtp_eclite: Fix ACPI device reference leak in probe error path Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0239/1424] platform/chrome: sensorhub: Bound the EC-reported sensor number Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0240/1424] platform/x86: hp-bioscfg: accept reduced ACPI packages from older HP BIOS Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0241/1424] platform/x86: hp-bioscfg: advance elem past consumed array elements Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0242/1424] platform/x86: hp-bioscfg: bound ordered-list parsing by the package count Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0243/1424] platform/x86: hp-bioscfg: fix heap OOB read in sk_store() and kek_store() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0244/1424] platform/x86: hp-bioscfg: fix heap OOB read on empty password write Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0245/1424] platform/x86: hp-bioscfg: fix new_password_store() overwriting current_password Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0246/1424] platform/x86: hp-bioscfg: fix off-by-one write in hp_get_string_from_buffer() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0247/1424] platform/x86: hp-bioscfg: fix ORD_LIST_ELEMENTS never being parsed Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0248/1424] platform/x86: hp-bioscfg: pass validated element count to package parsers Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0249/1424] platform/x86: hp-bioscfg: warn on element type mismatch instead of failing Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0250/1424] interconnect: Fix use after free in icc_get() and of_icc_get_by_index() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0251/1424] ipmi: ipmb: validate write message length Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0252/1424] ipmi: si: Fix NULL pointer dereference after failed registration Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0253/1424] net/iucv: filter frames in afiucv_hs_rcv() by ingress device Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0254/1424] xdp: fix zero-copy frame layout Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0255/1424] slip: fix use-after-free in sl_sync() Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0256/1424] net: usb: qmi_wwan: add Telit Cinterion FE990D50 composition Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0257/1424] net: tun: bound receive headroom Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0258/1424] net: openvswitch: fix flow mask use-after-free on flow deletion Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0259/1424] net: openvswitch: fix nf_connlabels leak in ovs_ct_init Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0260/1424] net: ravb: avoid dereferencing an invalid PTP clock Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0261/1424] net: thunderbolt: Release the Rx HopID that was handed out on mismatch Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0262/1424] net: thunderbolt: Mark the connection down when bringing it up fails Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0263/1424] NTB: ntb_transport: Recycle TX entries before client callbacks Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0264/1424] NTB: ntb_transport: Fail TX enqueue when the QP link is down Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0265/1424] NTB: ntb_transport: Reject oversized TX buffers Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0266/1424] net: ntb_netdev: Avoid double-accounting netif_rx() drops Greg Kroah-Hartman
2026-09-12  6:44 ` [PATCH 6.6 0267/1424] net: ntb_netdev: Count packets dropped on RX refill failure Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0268/1424] net/smc: do not dereference an unset send buffer on the SMC-D teardown path Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0269/1424] net/smc: fix socket refcount leak in smc_switch_conns() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0270/1424] net/smc: fix use-after-free in smc_rx_pipe_buf_release() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0271/1424] net/smc: unregister the connection before draining the rx tasklet Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0272/1424] net: cap advertised IP tunnel headroom Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0273/1424] net: fix spurious TX timeout after dev_activate() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0274/1424] net: skbuff: dont touch shared zerocopy state in skb_tx_error() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0275/1424] seg6: reset IP6CB after IPv6 decapsulation Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0276/1424] ALSA: 6fire: bound the MIDI event length from the device Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0277/1424] ALSA: aloop: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0278/1424] ALSA: bcd2000: clear the URB pointers on disconnect Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0279/1424] ALSA: mpu401: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0280/1424] ALSA: mts64: " Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0281/1424] ALSA: pcxhr: initialize mutexes before requesting threaded IRQ Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0282/1424] ALSA: portman2x4: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0283/1424] ALSA: serial-u16550: " Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0284/1424] ALSA: virmidi: " Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0285/1424] cgroup/cpuset: Fix misplaced DL migration reset Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0286/1424] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0287/1424] x86/tdx: Fix zero-extension for 32-bit port I/O Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0288/1424] arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0289/1424] dm-stats: fix a crash if allocation of per-cpu data fails Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0290/1424] dm-switch: use WRITE_ONCE() in switch_region_table_write() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0291/1424] i3c: master: Fix info leak and UAF in device unregister path Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0292/1424] i3c: master: svc: bound IBI payload to the requested max_payload_len Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0293/1424] wifi: brcmfmac: Fix memory leak in brcmf_sdio_read_control() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0294/1424] wifi: mwifiex: Detach sync cmd buffer on interrupted wait Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0295/1424] wifi: rtl818x: initialize eeprom_93cx6 struct to zero Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0296/1424] wifi: rtw88: Fix potential memory leak in rtw_txq_push_skb() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0297/1424] wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0298/1424] vsock/virtio: flush works in dependency order Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0299/1424] w1: ds28e17: reject an oversize length on an I2C block read Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0300/1424] xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0301/1424] tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0302/1424] sticon/parisc: Detect default STI graphics card for console output Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0303/1424] signal: avoid shared siginfo namespace rewrites Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0304/1424] smack: fix cred UAF in smack_file_send_sigiotask() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0305/1424] taskstats: fix cpumask parsing cutting off the last character Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0306/1424] timer: Keep debugobjects state consistent in migrate_timer_list() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0307/1424] udf: Fix i_lenExtents truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0308/1424] platform/chrome: sensorhub: Fix dropped timestamp events and log spam Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0309/1424] net: skbuff: dont skb_tx_error() the source skb in skb_zerocopy() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0310/1424] net: openvswitch: fix kernel-doc warnings in internal headers Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0311/1424] openvswitch: Fix CT limit teardown use-after-free Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0312/1424] landlock: Require LANDLOCK_ACCESS_FS_MAKE_REG for whiteout creation Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0313/1424] wifi: mt76: mt7996: validate default EEPROM firmware size Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0314/1424] fsnotify: Fix stale object mask after concurrent mark updates Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0315/1424] tcp: fix potential race in tcp_v6_syn_recv_sock() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0316/1424] entry: Fix seccomp bypass after ptrace with TSYNC Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0317/1424] net: ntb_netdev: Fix TX busy and drop handling Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0318/1424] tracing/mmiotrace: Remove reference to unused per CPU data pointer Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0319/1424] tracing/mmiotrace: Add NULL check for mmio_trace_array in logging functions Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0320/1424] scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0321/1424] drm/amd/display: fix division by zero in get_estimated_bw() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0322/1424] usb: image: mdc800: change kmalloc() to kzalloc() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0323/1424] ALSA: usb-audio: fix OOB write in snd_usbmidi_us122l_output() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0324/1424] clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0325/1424] media: usbtv: keep device alive while ALSA card exists Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0326/1424] usb-storage: ene_ub6250: fix race between scan work and probe Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.6 0327/1424] usb: f_mass_storage: Bump local buffer size in fsg_common_create_luns() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0328/1424] usb: typec: qcom-pmic: cancel reset_work on stop Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0329/1424] usb: typec: ucsi: displayport: Fix OOB altmode array index Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0330/1424] usb: gadget: midi2: Fix null-pointer dereference in f_midi2_free_ep_reqs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0331/1424] usb: gadget: f_midi2: fix use-after-free in string attribute show path Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0332/1424] USB: gadget: fix NULL pointer dereference in gadget_dev_ioctl() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0333/1424] usb: gadget: fix null pointer dereference in usb_put_function_instance() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0334/1424] staging: rtl8723bs: fix OOB read / stack overflow in rtw_get_wps_attr() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0335/1424] staging: rtl8723bs: fix OOB read in rtw_action_frame_parse() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0336/1424] thermal/drivers/imx: Disable clock on runtime resume failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0337/1424] thermal/drivers/qoriq: Disable clock on " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0338/1424] ublk: clear VM_MAYWRITE on read-only ublk char device mmap Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0339/1424] spi: bcm63xx-hsspi: disable clocks on resume failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0340/1424] spi: bcm63xx: disable clock " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0341/1424] spi: bcmbca-hsspi: disable clocks " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0342/1424] scsi: target: iscsi: Reserve a terminator byte for the login payload Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0343/1424] scsi: pm8001: Use rollback index when freeing MSI-X vectors Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0344/1424] mm/damon/sysfs-schemes: kobject_del() scheme dirs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0345/1424] mm/damon/sysfs-schemes: kobject_del() scheme filter dirs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0346/1424] mm/damon/sysfs-schemes: kobject_del() scheme region dirs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0347/1424] mm/damon/sysfs: kobject_del() region and target (error) dirs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0348/1424] mm/damon/sysfs: kobject_del() target (normal), context and kdamond dirs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0349/1424] futex: Prevent rcuwait use-after-free during requeue PI Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0350/1424] HID: rmi: fix OOB access with undersized RMI reports Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0351/1424] HID: wacom: validate report length in wacom_intuos_pro2_bt_irq Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0352/1424] dm: fix race when loading and unloading a table Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0353/1424] dm: fix resume-vs-remove race Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0354/1424] dmaengine: dw-edma: Fix HDMA channel status register access Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0355/1424] dmaengine: dw-edma: Complete descriptors before pausing Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0356/1424] dmaengine: dw-edma: Initialize IRQ data before requesting IRQs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0357/1424] cpuidle: dt_idle_genpd: kfree() the original name allocation Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0358/1424] block: flag zoned disks with GENHD_FL_NO_PART Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0359/1424] ata: ahci: work around lost interrupts on Marvell 88SE61xx Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0360/1424] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0361/1424] kprobes: Protect kprobe_blacklist with RCU Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0362/1424] Input: aiptek - validate raw macro indices before updating state Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0363/1424] rtc: rzn1: Fix weekday underflow when alarm crosses month boundary Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0364/1424] rtc: rzn1: Disable alarm interrupt before reprogramming alarm registers Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0365/1424] perf/x86/intel: Fix kernel address leakages in LBR stack Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0366/1424] perf hisi-ptt: Fix PTT trace TLP header parsing Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0367/1424] i2c: core: fix debugfs UAF on adapter removal Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0368/1424] i2c: mux: Fix channel node leak on adapter add failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0369/1424] arm64: mm: Fix the lockless page-table walk in show_pte() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0370/1424] ALSA: harmony: initialize locks before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0371/1424] ALSA: pcm: Fix race between non-atomic ops and trigger-start Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0372/1424] nvme-tcp: check the data direction of a C2HData PDU Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0373/1424] nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0374/1424] nvmet-tcp: reject unsolicited H2CData PDUs Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0375/1424] Revert "irqchip/mbigen: Fix mbigen node address layout" Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0376/1424] mm/hugetlb: fix missing migratable flag on same-node hugetlb migration Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0377/1424] nvdimm/btt: reject an arena whose nfree is below the lane count Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0378/1424] parisc: eisa: Fix infinite loop when parsing invalid IRQ value Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0379/1424] parisc: Fix alignment of asm statements in head.S Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0380/1424] powerpc/mm: fix wrong addr_pfn tracking in compound vmemmap population Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0381/1424] powerpc/pseries: Handle and log pseries-wdt registration failures Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0382/1424] powerpc/pseries: Move H_WATCHDOG definitions to a common header Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0383/1424] powerpc/crash: stop watchdogs before booting kdump kernel Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0384/1424] s390/vfio-ap: fix stale pqap_hook pointer on error in vfio_ap_mdev_set_kvm() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0385/1424] s390/vfio-ap: Fix stale do_remove flag across iterations in vfio_ap_mdev_cfg_remove Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0386/1424] s390/vfio-ap: Fix control domain removal " Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.6 0387/1424] s390/vfio-ap: Fix dereference matrix_mdev->kvm without checking for NULL Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0388/1424] s390/vfio-ap: Fix hot-unplug skipped when last AP adapter or domain removed Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0389/1424] s390/vfio-ap: Fix NULL deref in status_show() during queue probe Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0390/1424] s390/vfio-ap: fix potential use of uninitialized apm_filtered bitmap Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0391/1424] s390/vfio-ap: Fix required lock not held during update of ap_matrix_mdev object Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0392/1424] mtd: afs: validate v2 image info bounds Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0393/1424] mtd: mtdoops: free page bitmap when the backing MTD is removed Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0394/1424] mtd: rawnand: validate ONFI extended parameter page sections Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0395/1424] batman-adv: fix stale receive device on merged fragments Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0396/1424] batman-adv: dat: avoid unaligned fault in IP extraction Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0397/1424] batman-adv: bla: fix freeing of claims on meshif deletion Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0398/1424] batman-adv: bla: prevent CRC corruptions after claim flush Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0399/1424] clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0400/1424] clk: qcom: gcc-msm8939: " Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0401/1424] clk: rockchip: rk3588: Dont change PLL rates when setting dclk_vop2_src Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0402/1424] clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0403/1424] clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0404/1424] clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0405/1424] clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0406/1424] clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0407/1424] i2c: mux: demux-pinctrl: fix OF node leak on kstrdup failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0408/1424] ASoC: cs35l33: drain threaded IRQ before runtime suspend Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0409/1424] ASoC: cs35l34: " Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0410/1424] ASoC: fsl: mpc5200-i2s: Free DMA resources on probe failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0411/1424] AsoC: intel: sst: fix PCI device reference leak " Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0412/1424] ASoC: samsung: aries_audio_probe: double of_node_put due to direct assignment without of_node_get Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0413/1424] iio: chemical: atlas-sensor: fix PM reference leak in buffer postenable Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0414/1424] iio: chemical: atlas-sensor: use iio_trigger_poll_nested() to fix remove UAF Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0415/1424] iio: chemical: sgp30: Handle IAQ thread creation failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0416/1424] iio: dac: m62332: Fix regulator reference count imbalance Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0417/1424] iio: gyro: mpu3050: fix sign of raw angular velocity readings Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0418/1424] iio: light: cm32181: return zero after writing calibscale Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0419/1424] iio: light: gp2ap002: Disable regulators on resume failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0420/1424] iio: pressure: dps310: fix NULL pointer dereference on ACPI probe Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0421/1424] iio: pressure: mpl115: Fix runtime PM cleanup Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0422/1424] iio: srf04: fix pm_runtime handling on probe error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0423/1424] iio: temperature: hid-sensor-temperature: switch to non-devm iio_device_register() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0424/1424] iio: light: opt4001: Fix power down clearing bits of the wrong register Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0425/1424] iio: light: opt4001: Fix incompatible pointer type passed to div_u64_rem() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0426/1424] iio: light: opt4001: Reject integration times with a non-zero seconds part Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0427/1424] iio: light: opt4001: Fix reversed GENMASK() arguments in fault count mask Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0428/1424] KVM: nVMX: Always flush vpid02 on first use Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0429/1424] KVM: nVMX: Service local TLB flushes on failed nested VM-Enter Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0430/1424] KVM: x86: hyper-v: Clamp stimer deadline to avoid livelock Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0431/1424] KVM: s390: Fix length check __import_wp_info() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0432/1424] KVM: s390: Fix memory leak in guest debug handling Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0433/1424] KVM: s390: Fix old_data leak in guest debug error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0434/1424] KVM: s390: Free guest debug data on vcpu destroy Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0435/1424] KVM: s390: Take srcu when importing watchpoint data Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0436/1424] KVM: s390: Zero initialize irq in reinject_machine_check Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0437/1424] KVM: s390: pv: Fix rc/rrc offset for PVM_DUMP Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0438/1424] KVM: s390: Restore sigset on error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0439/1424] LoongArch: Do not save/restore percpu base register in rethook trampoline Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0440/1424] LoongArch: Avoid preempt count underflow without probe Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0441/1424] media: airspy: use vb2_video_unregister_device() on disconnect to fix NULL deref Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0442/1424] media: cec: core: Fix kmemleak due to missed rc_free_device() call Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0443/1424] media: cec: meson: ao-cec-g12a: name the CEC core regmap to avoid debugfs clash Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0444/1424] media: cec: Serialize exclusive follower delivery Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0445/1424] media: cedrus: fix memory leak in cedrus_init_ctrls() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0446/1424] media: cobalt: Avoid freeing ALSA private data twice Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.6 0447/1424] media: cx231xx: reject geometry changes while the VBI queue is busy Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0448/1424] media: cx23885: cancel NetUP CI work before teardown Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0449/1424] media: em28xx: defer audio-only extension registration Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0450/1424] media: em28xx: fix use-after-free of dev_next->devlist on disconnect Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0451/1424] media: go7007: defer the ALSA v4l2 put until card release Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0452/1424] media: i2c: ov02a10: fix endpoint parsing use-after-free Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0453/1424] media: i2c: ov7740: fix use-after-destroy in remove Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0454/1424] media: meson: vdec: fix NULL pointer deref in vdec_try_fmt_common Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0455/1424] media: nxp: imx8-isi: Fix stream ID validation bypass in crossbar routing Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0456/1424] media: nxp: imx8-isi: Correct color map between V4L2 and ISI Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0457/1424] media: nxp: imx8-isi: Use BIT_ULL() for 64-bit stream masks Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0458/1424] media: rc: sunxi-cir: Unregister rc device on probe failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0459/1424] media: rtl2832_sdr: use vb2_video_unregister_device() on remove to fix DMA leak Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0460/1424] media: rtl2832_sdr: release URBs and stream buffers on start_streaming() failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0461/1424] media: s2255: bound JPEG frame size before copying into the buffer Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0462/1424] media: s2255: check firmware size before reading trailing marker Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0463/1424] media: saa7164: fix cleanup on resource allocation failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0464/1424] media: tda18250: fix possible integer overflow Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0465/1424] media: v4l2-async: avoid deleting unlinked ASC entry on link error Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0466/1424] media: v4l2-ctrls: Allow unknown HDR10 white point and luminance Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0467/1424] media: v4l2-fwnode: Fix fwnode leak in v4l2_fwnode_parse_link Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0468/1424] media: venus: fix payload size returned by parse_caps() and parse_alloc_mode() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0469/1424] media: venus: fix payload size calculation in parse_raw_formats() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0470/1424] media: video-i2c: fix kthread error pointer left in kthread_vid_cap on failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0471/1424] media: vimc: fix pixel format lookup in enum_framesizes Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0472/1424] media: zoran: Avoid freeing a registered video_device twice Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0473/1424] scsi: qla2xxx: Zero SFP DMA buffer in FRU/I2C bsg handlers Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0474/1424] scsi: qla2xxx: Bound i2c->length in I2C " Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0475/1424] scsi: qla2xxx: edif: Fix NULL pointer deref in RX SA delete check Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0476/1424] scsi: qla2xxx: Fix Name Server logout detection on FWI2 adapters Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0477/1424] scsi: qla2xxx: Hold vport reference in qla24xx_report_id_acquisition() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0478/1424] scsi: qla2xxx: Initialize NVMe abort_work once at submission Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0479/1424] scsi: qla2xxx: Check entry_status in qla24xx_modify_vp_config() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0480/1424] scsi: qla2xxx: Bound image count in qla2x00_update_fru_versions() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0481/1424] scsi: qla2xxx: Hold qpair lock when sending NVMe LS reject Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0482/1424] scsi: qla2xxx: Clamp MSI-X derived queue counts to avoid truncation Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0483/1424] scsi: qla2xxx: Serialize flash version read in reset handler Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0484/1424] scsi: qla2xxx: Fix cs84xx use-after-free on host teardown Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0485/1424] scsi: qla2xxx: Fix FCE trace use-after-free during firmware dump Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0486/1424] scsi: qla2xxx: Zero mailbox struct in qla2x00_get_firmware_state() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0487/1424] scsi: qla2xxx: Fix FCE trace enable parsing in debugfs Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0488/1424] scsi: qla2xxx: Dont query firmware state while chip is down Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0489/1424] scsi: qla2xxx: Reject non-SCSI SRB on status IOCB fast path Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0490/1424] scsi: qla2xxx: Fix response queue over-consumption in __qla_consume_iocb() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0491/1424] scsi: qla2xxx: Quiesce response IRQ before freeing request queue Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0492/1424] scsi: qla2xxx: Avoid double completion in async IOCB timeout Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0493/1424] scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0494/1424] scsi: qla2xxx: Avoid req_q_map double-read in qla2x00_error_entry() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0495/1424] scsi: qla2xxx: Fix NVMe abort reference leak on repeated abort Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0496/1424] scsi: qla2xxx: Drop vport reference under lock in report ID acquisition Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0497/1424] scsi: qla2xxx: Hold vport_slock for host map update " Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0498/1424] scsi: qla2xxx: Use coherent DMA buffer for D_Port diagnostics Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0499/1424] scsi: qla2xxx: Zero-init bsg stack buffers to avoid info leak Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0500/1424] scsi: qla2xxx: Skip NVMe LS reject IOCB when FW not started Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0501/1424] f2fs: return symlink writeback errors Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0502/1424] f2fs: reject overlapping move range after len expansion Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0503/1424] f2fs: use the mount idmap for the owner check in f2fs_xattr_advise_set() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0504/1424] f2fs: return writeback error from collapse range Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0505/1424] f2fs: fix i_size when pinned fallocate partially fails Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0506/1424] f2fs: fix to off-by-one issue in f2fs_zero_post_eof_page() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.6 0507/1424] f2fs: fix to zero post-EOF data when extending file size Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0508/1424] drm/bridge: dw-hdmi: fix i2c adapter leak on probe failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0509/1424] drm/panel-edp: " Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0510/1424] drm: fix race between partial drm_dev_register() failure and ioctl Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0511/1424] drm/i915: Guard against NULL driver_data in i915_pci_probe() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0512/1424] drm/sun4i: fix refcount leak in sun4i_backend_init_sat() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0513/1424] drm/hibmc: Fix list of formats on the primary plane Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0514/1424] drm/hibmc: Use drm_atomic_helper_check_plane_state() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0515/1424] drm/amd/display: avoid divide-by-zero in __is_lut_linear() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0516/1424] drm/amdgpu/vcn: fix integer overflow in dec_msg buffer count check Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0517/1424] drm/gud: NUL-terminate TV mode names read from the device Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0518/1424] drm/gud: validate TV mode names before creating enum property Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0519/1424] drm/msm/dsi: round 6G byte clock rate to the PLL-achievable value Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0520/1424] drm: Fix drm_crtc_commit leak if signaled when PAGE_FLIP_EVENT is used Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0521/1424] drm/amdgpu: check thunderbolt before switcheroo registration Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0522/1424] drm/amdgpu: fix autosuspend cleanup during removal Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0523/1424] drm/amdgpu: use AMDGPU_GPU_PAGE_SHIFT instead of PAGE_SHIFT Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0524/1424] drm/amdkfd: Reject zero-sized AQL queue allocations after size halving Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0525/1424] drm/nouveau: Use write-combined maps for coherent Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0526/1424] drm/nouveau/uvmm: fix premature region free on failed OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0527/1424] drm/nouveau/uvmm: clear the dirty flag when unwinding an OP_UNMAP_SPARSE Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0528/1424] xhci: fix lost bounce buffers on TDs spanning several ring segments Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0529/1424] tcp: clear sock_ops cb flags before force-closing a child socket Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0530/1424] net/mlx5e: xsk: Fix unlocked writing to ICOSQ Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0531/1424] nvmet-auth: Synchronize timeout work during SQ teardown Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0532/1424] mm/damon/core-kunit: check region count before testing in split_at() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0533/1424] mm/damon/vaddr: drop last same folio access check optimization Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0534/1424] mm/damon/paddr: drop last same folio access check reuse optimization Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0535/1424] mm/damon/vaddr-kunit: check region count in three_regions test Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0536/1424] mm/damon/core-kunit: handle region split failure in filter_out() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0537/1424] mm/damon/tests/core-kunit: catch test failure in test_merge_regions_of() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0538/1424] net: hns3: dont auto enable misc vector Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0539/1424] net: hns3: fix kernel crash when 1588 is sent on HIP08 devices Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0540/1424] wifi: ath11k: Clear affinity hint before calling ath11k_pcic_free_irq() in error path Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0541/1424] md/md-bitmap: fix wrong bitmap_limit for clustermd when write sb Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0542/1424] net: libwx: fix Tx L4 checksum Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0543/1424] ksmbd: fix overflow in dacloffset bounds check Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0544/1424] ksmbd: fix WARNING "do not call blocking ops when !TASK_RUNNING" Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0545/1424] net/niu: Niu requires MSIX ENTRY_DATA fields touch before entry reads Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0546/1424] parse_longname(): strrchr() expects NUL-terminated string Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0547/1424] ceph: fix oops due to invalid pointer for kfree() in parse_longname() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0548/1424] bpf: Reject narrower access to pointer ctx fields Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0549/1424] netfilter: nft_counter: serialize reset with spinlock Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0550/1424] bridge: mrp: reject zero test interval to avoid OOM panic Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0551/1424] bpf: Fix same-register dst/src OOB read and pointer leak in sock_ops Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0552/1424] ksmbd: fix use-after-free in smb2_open during durable reconnect Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0553/1424] ksmbd: fix durable reconnect error path file lifetime Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0554/1424] ceph: fix BUG_ON in __ceph_build_xattrs_blob() due to stale blob size Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0555/1424] batman-adv: dat: atomically update mac addresses Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0556/1424] batman-adv: bla: avoid CRC corruption due to parallel claim add Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0557/1424] perf sched: Fix register_pid() overflow, strcpy, and BUG_ON Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0558/1424] clk: meson: align gxbb_32k_clk_sel number of parents with actual count Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0559/1424] usb: typec: ucsi: use UCSI_TIMEOUT_MS for sync command completion Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0560/1424] mm/damon/core: skip aging from repeated aggressive merging Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0561/1424] drm: Remove unused header in drm_dumb_buffers.c Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0562/1424] drm: lcdif: Wait for vblank before disabling DMA Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0563/1424] drm/rockchip: vop2: Recognise 10-bit YUV422 as YUV format Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0564/1424] drm/bridge: cdns-mhdp8546: Return an error pointer on allocation failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0565/1424] smack: fix incorrect task context in smack_msg_queue_msgrcv Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0566/1424] smack: simplify write handlers of sysfs entries Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.6 0567/1424] smack: deduplicate smackfs/{direct,mapped} file_operations Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0568/1424] smack: restrict smackfs/{direct,mapped} values to 0-255 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0569/1424] x86/cfi: Use symmetric SYM_START and SYM_END in __CFI_TYPE() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0570/1424] platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0571/1424] HID: core: quiesce input in hid_hw_stop() to prevent use-after-free Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0572/1424] HID: nintendo: Fix imu_timestamp_us double increment per report Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0573/1424] HID: roccat: bound device-supplied profile index Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0574/1424] soc: samsung: exynos-pmu: fix of_node refcount leak in exynos_get_pmu_regmap() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0575/1424] media: cec-pin: Fix event FIFO ordering Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0576/1424] clk: versaclock7: Fix APLL clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0577/1424] clk: moxart: remove unused variables, fix refcount leak Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0578/1424] clk: nuvoton: ma35d1: fix ignored div_u64 return values in PLL freq calculation Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0579/1424] clk: nuvoton: ma35d1: fix PLL_CTL1_FRAC bit field width and fractional calc Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0580/1424] clk: nuvoton: ma35d1-pll: convert from round_rate() to determine_rate() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0581/1424] clk: nuvoton: ma35d1: fix ma35d1_clk_pll_determine_rate logic Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0582/1424] ASoC: rt700-sdw: always drain jack work on remove Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0583/1424] ASoC: fsl_audmix: rework runtime PM handling in probe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0584/1424] clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0585/1424] ARM: imx: fix device_node refcount leak in imx_src_init() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0586/1424] ARM: imx: fix device_node refcount leaks in imx7_src_init() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0587/1424] clk: imx: scu: drop redundant init.ops variable assignment Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0588/1424] drm/lima: call drm_mm_init() with a valid allocation range Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0589/1424] mm/mm_init: fix incorrect node_spanned_pages Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0590/1424] sched/fair: Fix overflow in update_tg_cfs_runnable() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0591/1424] perf/x86/intel/uncore: Keep PCI PMUs working when MMIO/MSR setup fails Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0592/1424] pinctrl: bcm2835: Dont remove an unregistered GPIO chip Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0593/1424] media: keymaps: Remove obsolete RC_MAP_RC5_TV keymap define Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0594/1424] media: keymaps: Remove obsolete RC_MAP_HAUPPAUGE_NEW " Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0595/1424] perf test: Simplify metric value validation test final report Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0596/1424] perf test: Update all metrics test like metricgroups test Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0597/1424] perf test stat_all_metrics: Ensure missing events fail test Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0598/1424] perf tests metrics: Permission related fixes Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0599/1424] perf test metrics: Update all metrics for possibly failing default metrics Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0600/1424] perf test all metrics: Fully ignore Default metric failures Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0601/1424] perf test: Do not skip when some metrics tests succeeded Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0602/1424] perf tests: Skip metrics validation if system-wide recording lacks permission Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0603/1424] perf test: raise limit to 20 percent for perf_stat_--bpf-counters_test Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0604/1424] perf test bpf-counters: Add test for BPF event modifier Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0605/1424] perf test stat_bpf_counter.sh: Stabilize the test results Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0606/1424] perf test: Use sqrtloop workload to test bperf event Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0607/1424] perf test: Fix perf stat --bpf-counters on hybrid machines Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0608/1424] perf tests: Fix flakiness in BPF counters test on hybrid systems Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0609/1424] mfd: tps6594: Add register definitions for TI TPS65224 PMIC Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0610/1424] regulator: tps6594-regulator: Add TI TPS65224 PMIC regulators Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0611/1424] regulator: tps6594-regulator: Fix the number of irqs for TPS65224 and TPS6594 Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0612/1424] regulator: tps6594-regulator: Constify struct tps6594_regulator_irq_type Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0613/1424] regulator: tps6594-regulator: remove interrupt_count Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0614/1424] regulator: tps6594-regulator: remove hardcoded buck config Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0615/1424] regulator: tps6594-regulator: refactor variant descriptions Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0616/1424] regulator: tps6594: Fix device node reference leaks in multiphase loop Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0617/1424] drm/amdgpu/pm/powerplay: bounds-check voltage index in SMU7 lookup Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0618/1424] drm/amdgpu/pm/powerplay: bounds-check voltage index in Vega10 lookup Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0619/1424] tools/bpf/bpftool: Reset vmlinux BTF after map commands Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0620/1424] tools/bpf/bpftool: Reset vmlinux BTF after struct_ops commands Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0621/1424] bpf: Copy per-CPU map value padding in copy_map_value_long() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0622/1424] dmaengine: mediatek: mtk-uart-apdma: Return -ENOMEM on memory allocation failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0623/1424] dmaengine: xilinx_dma: Fix channel idle state management in AXIDMA and MCDMA interrupt handlers Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0624/1424] dmaengine: hisilicon: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0625/1424] soundwire: qcom: Fix port exhaustion check in stream_alloc_ports Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0626/1424] iio: orientation: hid-sensor-rotation: Avoid race between callback setup and device exposure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.6 0627/1424] csky: Fix a4/a5 restoration in syscall trace path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0628/1424] selftests/rseq: Replace glibc-specific __GNUC_PREREQ with portable check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0629/1424] platform/chrome: sensorhub: Fix memory overread in ring handler Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0630/1424] wifi: rtw89: fix HE extended capability length check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0631/1424] perf cs-etm: Fix incorrect or missing decoder for raw trace Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0632/1424] perf cs-etm: Create decoders after both AUX and HW_ID search passes Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0633/1424] perf cs-etm: Queue context packets for frontend Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0634/1424] perf cs-etm: Fix thread leaks on trace queue init failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0635/1424] perf/x86/amd/uncore: Refactor uncore management Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0636/1424] perf/x86/amd/uncore: Add group validation Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0637/1424] crypto: qat - clear AES key schedule from stack Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0638/1424] crypto: atmel-ecc - replace min_t with min Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0639/1424] crypto: atmel-ecc - clean up and improve ECDH comments Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0640/1424] crypto: atmel-ecc - reject hardware ECDH without a public key Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0641/1424] crypto: atmel-sha204a - fix heap info leak on I2C transfer failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0642/1424] crypto: sa2ul - stop probe if context pool creation fails Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0643/1424] crypto: rk3288 - fail ahash requests on HASH idle timeout Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0644/1424] crypto: keembay - Fix AEAD unregister count in error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0645/1424] nvme-apple: Use acquire/release for queue enabled state Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0646/1424] nvmet-rdma: avoid circular locking dependency on install_queue() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0647/1424] nvmet-rdma: use sbitmap to replace rsp free list Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0648/1424] nvmet-rdma: factor out response resource cleanup Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0649/1424] nvmet-rdma: fix response resource leak on queue teardown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0650/1424] bus: ti-sysc: Fix /chosen node reference leak Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0651/1424] PM: sleep: Fix off-by-one in wakelocks number limit check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0652/1424] arm64: dts: qcom: sm7225-fairphone-fp4: Fix address in fb node name Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0653/1424] bus: qcom-ebi2: Simplify with scoped for each OF child loop Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0654/1424] bus: qcom-ebi2: Fix clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0655/1424] wifi: mac80211_hwsim: avoid NULL skb in stop queue drain Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0656/1424] staging: greybus: audio: correct sscanf() return value check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0657/1424] staging: sm750fb: gate dualview dataflow using g_dualview Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0658/1424] greybus: audio: bound the topology section sizes against the fetched size Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0659/1424] staging: fbtft: Use sysfs_emit_at() to print to sysfs file Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0660/1424] staging: octeon: add missing tasklet_kill in cvm_oct_tx_shutdown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0661/1424] staging: octeon: fix free_irq dev_id mismatch in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0662/1424] staging: octeon: ethernet-mem: replace pr_warn with dev_warn in free functions Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0663/1424] staging: octeon: replace pr_warn with dev_warn in fill and rx paths Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0664/1424] staging: octeon: add missing napi_disable in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0665/1424] staging: rtl8723bs: fix mismatched free of HalData in rtw_sdio_if1_init() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0666/1424] ALSA: via82xx: Remove unreachable branch in snd_via686_pcm_pointer() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0667/1424] selftests/bpf: Fix memory leak in msg_alloc_iov error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0668/1424] selftests/bpf: Fix memory leak in msg_alloc_iov Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0669/1424] irqchip/gic-v3-its: Fix memleak in its_probe_one() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0670/1424] irqchip/gic-v3-its: Fix its node leak in gic_acpi_parse_madt_its() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0671/1424] selftests: timers: leap-a-day: Fix -w option and update usage comment Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0672/1424] clocksource: Unregister subsystem on device registration failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0673/1424] y2038: uapi: Use 64-bit __kernel_old_timespec::tv_nsec on x32 Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0674/1424] timekeeping: Account for monotonicity adjustment in ntp_error Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0675/1424] clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0676/1424] clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0677/1424] clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0678/1424] arm64: dts: qcom: sc8180x-primus: Rename regulator nodes Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0679/1424] arm64: dts: qcom: sc8180x-lenovo-flex-5g: move pinctrl to appropriate nodes Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0680/1424] arm64: dts: qcom: sc8180x: Enable the power key Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0681/1424] arm64: dts: qcom: sc8180x-lenovo-flex-5g: Rename regulator nodes Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0682/1424] perf data convert json: Fix trace_seq memory leak in process_sample_event() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0683/1424] thermal/drivers/rcar: Fix error checking in probe() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0684/1424] usb: typec: ucsi: unregister debugfs entries on teardown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0685/1424] usb: gadget: r8a66597: avoid double free of ep0_req in probe error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0686/1424] udf: Mark LVID buffer as uptodate before marking it dirty Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.6 0687/1424] bpf: Fix vmlinux BTF prep race in bpf_get_btf_vmlinux Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0688/1424] efi: fix stale reference to efi_recover_from_page_fault() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0689/1424] bpf: Fix use-after-free on mm_struct in bpf_find_vma() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0690/1424] bus: mhi: ep: Fix device refcount leak in the error path of MHI device creation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0691/1424] iommu/mediatek-v1: Fix off-by-one in MT2701_LARB_NR_MAX Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0692/1424] iommu/msm: Return -ENOMEM on memory allocation failure in probe Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0693/1424] iommu/amd: Prevent SB IOAPIC from overriding IVRS validation errors Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0694/1424] iommu/amd: Add support for Hygon family 18h model 4h IOAPIC Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0695/1424] iommu/amd: Fix false positive in SB IOAPIC IVRS validation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0696/1424] leds: pca9532: Fix inverted GPIO output polarity Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0697/1424] platform/x86: dell-privacy: Fix race condition Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0698/1424] platform/x86: dell-wmi-base: Fix resource leak on module load failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0699/1424] remoteproc: qcom_q6v5_adsp: Fix reference leak for device node Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0700/1424] hwspinlock: propagate errno when registering single lock Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0701/1424] serial: ma35d1: Fix OF node reference leaks in console init Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0702/1424] usb: gadget: configfs: fix out-of-bounds read of qw_sign Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0703/1424] usb: gadget: aspeed_udc: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0704/1424] usb: gadget: aspeed_udc: check endpoint DMA allocation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0705/1424] USB: core: Use device_driver directly in struct usb_driver and usb_device_driver Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0706/1424] USB: make single lock for all usb dynamic id lists Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0707/1424] USB: make to_usb_driver() use container_of_const() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0708/1424] usb: fix UAF when probe runs concurrent to dyn ID removal Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0709/1424] platform/mellanox: mlxbf-pmc: Check ACPI_COMPANION() against NULL Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0710/1424] platform/surface: acpi-notify: Check ACPI companion before use Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0711/1424] usb: mtu3: allow system suspend during active gadget connection Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0712/1424] usb: renesas_usbhs: Fix power-off ordering on unbind Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0713/1424] drm/panel: samsung-s6d16d0: Power off on prepare failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0714/1424] perf metricgroup: Fix metric expression copy leaks Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0715/1424] soc: qcom: rpmh-rsc: manage PM notifiers with devres Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0716/1424] bus: qcom-ebi2: use managed resources for clocks and children Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0717/1424] iio: accel: dmard09: Implement IIO_CHAN_INFO_SCALE Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0718/1424] RDMA/core: Wait for RCU callbacks before unloading ib_core Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0719/1424] RDMA/mlx5: Drain RCU callbacks during module teardown Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0720/1424] RDMA/ipoib: " Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0721/1424] RDMA/rxe: Avoid reprocessing the current packet after the QP enters the error state Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0722/1424] hwrng: ks-sa - access private data via struct hwrng Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0723/1424] hwrng: ks-sa - Fix runtime PM cleanup on registration failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0724/1424] xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0725/1424] ALSA: hpi: Check transport errors during HPI6000 adapter initialization Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0726/1424] pmdomain: bcm: bcm2835: handle genpd provider registration errors Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0727/1424] misc: rtsx_usb: avoid USB I/O in runtime autosuspend Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0728/1424] RDMA/hfi1: Preserve unit 0 on allocation failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0729/1424] RDMA/hfi1: Free RX data on late probe failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0730/1424] RDMA/hfi1: Remove redundant PCI device ID validation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0731/1424] RDMA/hfi1: Create workqueues before device initialization Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0732/1424] RDMA/hfi1: Stop flushing the global IB workqueue Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0733/1424] RDMA/hfi1: Initialize debugfs after probe completes Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0734/1424] ASoC: apple: mca: increase SERDES reset delay Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0735/1424] isofs: fix out-of-bounds page array access on empty zisofs block Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0736/1424] media: v4l: async: Drop useless list move operation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0737/1424] media: v4l2-async: Unregister sub-device if asc_list is empty Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0738/1424] rpmsg: glink: remove duplicate code for rpmsg device remove Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0739/1424] rpmsg: glink: fix deadlock in endpoint destroy during driver detach Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0740/1424] cxl/mbox: Break poison list loop on an empty payload Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0741/1424] cxl/pci: Store the endpoints Component Register mappings in struct cxl_dev_state Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0742/1424] cxl/pci: Honor -EPROBE_DEFER from component register setup Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0743/1424] fs/ntfs3: Add more checks in mi_enum_attr (part 2) Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0744/1424] fs/ntfs3: Mark inode as bad as soon as error detected in mi_enum_attr() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0745/1424] fs/ntfs3: fix KMSAN uninit-value in ni_create_attr_list Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0746/1424] fs/ntfs3: fix slab-out-of-bounds write in ni_create_attr_list() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.6 0747/1424] hfsplus: validate thread record before delete key rebuild Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0748/1424] wifi: ath11k: cap out-of-range rx MCS instead of leaving bogus rate Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0749/1424] firmware: arm_scmi: Unregister device notifier before IDR teardown Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0750/1424] firmware: arm_scmi: Free transport channel on IDR failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0751/1424] firmware: arm_scmi: Avoid IDR updates while cleaning channels Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0752/1424] firmware: arm_scmi: Reject out of range DT protocol IDs Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0753/1424] firmware: arm_scmi: Use channel ID for transport teardown Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0754/1424] firmware: arm_scmi: Protect device request lookup with RCU Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0755/1424] firmware: arm_scmi: Drop handle on protocol bind failures Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0756/1424] libnvdimm/labels: Bound the on-media label size before the shift Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0757/1424] dax: read holder_ops once in dax_holder_notify_failure() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0758/1424] cpufreq: spear: Fix an IS_ERR() vs NULL bug in spear1340_set_cpu_rate() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0759/1424] PCI: xgene: Drop XGENE_PCIE_IP_VER_UNKN Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0760/1424] PCI: xgene: Drop unnecessary OF node reference Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0761/1424] irqdomain: Introduce irq_domain_free() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0762/1424] irqdomain: Introduce irq_domain_instantiate() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0763/1424] irqdomain: Handle additional domain flags in irq_domain_instantiate() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0764/1424] irqdomain: Handle domain hierarchy parent " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0765/1424] irqdomain: Introduce init() and exit() hooks Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0766/1424] genirq/generic_chip: Introduce irq_domain_{alloc,remove}_generic_chips() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0767/1424] irqdomain: Add support for generic irq chips creation before publishing a domain Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0768/1424] irqchip/renesas-irqc: Fix generic interrupt chip leak on remove Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0769/1424] media: i2c: rdacm21: Fix missing media_entity_cleanup() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0770/1424] cpufreq: intel_pstate: Fix setting minimum P-state at init time Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0771/1424] cpufreq: schedutil: Fix self-contradictory comment in sugov_iowait_apply() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0772/1424] remoteproc: qcom: Fix glink->node reference leak in qcom_add_glink_subdev Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0773/1424] drm/bridge: tc358767: clamp the reported AUX read size to the request Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0774/1424] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix up ti,drv2604 enable GPIO Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0775/1424] arm64: dts: qcom: sm8250: sort out Iris power domains Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0776/1424] arm64: dts: qcom: sm8250: correct frequencies in the Iris OPP table Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0777/1424] perf jevents: Add more components to the metric sorting order Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0778/1424] wifi: iwlwifi: fix counter type in iwl_fwrt_dump_error_logs Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0779/1424] wifi: iwlwifi: mvm: fix off-by-one in TXF key sanitiser Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0780/1424] wifi: iwlwifi: mei: add support for SAP version 4 Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0781/1424] wifi: iwlwifi: mei: check SAP message length before reading it Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0782/1424] wifi: iwlwifi: guard against division by zero in iwl_dbg_tlv_alloc_fragments Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0783/1424] wifi: iwlwifi: mei: pass correct argument to function Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0784/1424] gpu: host1x: Fix offset calculation in trace_write_gather Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0785/1424] gpu: host1x: Avoid stack over-read in debug output helpers Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0786/1424] drm/msm/a6xx: Fix stale rpmh votes after suspend Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0787/1424] bpf: Sync tail_call_reachable with callee state on entry Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0788/1424] crypto: sl3516 - drop invalid sg_dma_len checks before DMA mapping Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0789/1424] ACPI: processor: idle: Expand _LPI package sanity checks Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0790/1424] usb: gadget: f_uac1_legacy: remove broken string configfs attributes Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0791/1424] tty: hvc: restrict HVC_DCC to ARMv6+ and ARM64 Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0792/1424] UDF symlink pathComponent header OOB read Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0793/1424] uio: Fix stale info pointer in failed registration path Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0794/1424] accessibility: speakup: Fix incorrect string length computation in report_char_chartab_status() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0795/1424] speakup: keyhelp: guard letter_offsets possible out-of-range indexing Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0796/1424] misc: bcm-vk: Use acquire/release for msgq_inited Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0797/1424] misc: rtsx: add missing write register handling Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0798/1424] misc: ad525x_dpot: use driver core groups for sysfs files Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0799/1424] cacheinfo: dont propagate DT/ACPI error when arch supplies info (arm64) Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0800/1424] ppdev: prevent overflow when setting port timeout Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0801/1424] tty: ipoctal: convert to u8 and size_t Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0802/1424] ipack: ipoctal: fix UAF, null-ptr-deref, and use-after-free in cleanup on remove Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0803/1424] char: xilinx_hwicap: unregister class on init errors Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0804/1424] vfio/pci: clear vdev->msi_perm after freeing it on init failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0805/1424] soc: ti: knav_qmss_queue: Implement resource cleanup in remove() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0806/1424] soc: ti: knav_qmss: Remove debugfs file on teardown Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.6 0807/1424] mtd: mtdswap: Avoid freeing registered blktrans device twice Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0808/1424] mtd: part: reject MTDPART_OFS_RETAIN in mtd_add_partition() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0809/1424] perf ui hists: Fix uninitialized stack memory free on pstack allocation failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0810/1424] software node: Fix software_node_get_reference_args() with index -1 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0811/1424] driver core: soc: Unregister bus on early device registration failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0812/1424] dmaengine: dw-edma: Terminate all descriptors without callbacks Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0813/1424] dmaengine: dw-edma: Serialize abort state updates Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0814/1424] dmaengine: dw-edma: Serialize channel state checks Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0815/1424] dmaengine: dw-edma: Clear stale requests on termination Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0816/1424] ASoC: meson: Keep link pointers valid on realloc failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0817/1424] phy: starfive: Fix runtime PM cleanup in JH7110 DPHY RX probe Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0818/1424] arm64: dts: amlogic: meson-axg-s400: enable mipi_pcie_analog_dphy for PCIe Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0819/1424] RDMA/hfi1: Propagate sdma_txinit_ahg() errors Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0820/1424] RDMA/rxe: Validate num_sge/cur_sge before indexing wqe->dma.sge[] Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0821/1424] RDMA/srpt: Fix srpt_alloc_rw_ctxs() unwind counters Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0822/1424] kcsan: avoid unintended access checking in NMIs Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0823/1424] selftests/bpf: Silence array bounds warning in global_map_resize Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0824/1424] irqchip/gic-v3-its: Prevent leak in its_vpe_irq_domain_alloc() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0825/1424] RDMA/nldev: validate dynamic counter attribute length Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0826/1424] ACPI: EC: Avoid _REG disconnect on GPIO IRQ defer Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0827/1424] ACPI: processor: validate MADT IOAPIC entry bounds Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0828/1424] ACPI: PCI: Clear driver_data on all paths that free the acpi_pci_root Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0829/1424] ext4: fix circular lock dependency in ext4_ext_migrate Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0830/1424] ext4: fix out-of-bounds read in ext4_read_inline_dir() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0831/1424] ext4: skip extra isize expansion during mount to prevent deadlock Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0832/1424] libbpf: Search /lib64 and /lib in resolve_full_path() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0833/1424] RDMA/srpt: Pass the mapped task attribute to target_init_cmd() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0834/1424] PCI: j721e: Fix incorrect max_lanes for J7200 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0835/1424] RDMA/erdma: Fix CEQ tasklet use-after-free on removal Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0836/1424] RDMA/core: Add support to set privileged QKEY parameter Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0837/1424] RDMA/core: Add an option to display driver-specific QPs in the rdmatool Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0838/1424] RDMA/restrack: Fix typos in the comments Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0839/1424] RDMA/nldev: Fix locking when accessing mr->pd Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0840/1424] RDMA/core: Add rdma_restrack_begin/abort/commit_del() operations Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0841/1424] RDMA/core: Fix use after free in ib_query_qp() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0842/1424] RDMA/core: Fix potential use after free in ib_destroy_cq_user() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0843/1424] RDMA/core: Fix potential use after free in ib_destroy_srq_user() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0844/1424] RDMA/core: Fix potential use after free in counter_release() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0845/1424] RDMA/core: Add driver APIs pre_destroy_cq() and post_destroy_cq() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0846/1424] RDMA/core: Fix potential use after free in ib_free_cq() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0847/1424] RDMA/core: Fix potential use after free in ib_dealloc_pd_user() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0848/1424] firmware: arm_scmi: Fix requested device removal race Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0849/1424] iommu/qcom: Remove sysfs device on probe failure path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0850/1424] iommu/qcom: Fix inverted fault report check in qcom_iommu_fault() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0851/1424] thermal: intel: int3400: clean up ODVP on probe failures Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0852/1424] ext4: clear stale xarray tags on folios skipped during writeback Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0853/1424] ext4: drain in-flight DIO before buffered write fallback Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0854/1424] wifi: ath6kl: avoid buffer overreads in WMI event handlers Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0855/1424] wifi: ath12k: Correctly copy the hint BSSID in WMI scan request Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0856/1424] wifi: ath11k: " Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0857/1424] wifi: ath12k: Avoid buffer overread in ath12k_wmi_op_rx() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0858/1424] wifi: ath11k: Avoid buffer overread in ath11k_wmi_tlv_op_rx() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0859/1424] RDMA/bnxt_re: Clear VM_MAYWRITE on DBR/toggle page mmap Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0860/1424] ext4: fix buffer_head leak in ext4_init_orphan_info Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0861/1424] ext4: check dir entry fits before reading the hash trailer in ext4_search_dir() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0862/1424] ARM: dts: allwinner: a10: Fix PMU interrupt Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0863/1424] firmware: arm_scmi: Add multiple protocols registration support Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0864/1424] firmware: arm_scmi: Unrequest devices if driver registration fails Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0865/1424] perf cs-etm: Flush thread stacks after decoder reset Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0866/1424] perf cs-etm: Avoid truncating AUX buffer sizes to int Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.6 0867/1424] xfrm: Fix skb double-free in xfrm_dev_direct_output() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0868/1424] PM: hibernate: Fix memory leak in snapshot_write_next() error path Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0869/1424] leds: pca9532: Fix phantom device registration on missing hardware Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0870/1424] drm/tve200: add OF module alias for autoloading Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0871/1424] netfilter: nf_nat_sip: rewind offset when NAT shrinks the packet Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0872/1424] fs/ntfs3: fix out-of-bounds read of INDEX_ROOT in reparse/objid init Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0873/1424] arm64: dts: rockchip: Fix Gru WLAN sideband interrupt Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0874/1424] ARM: lpc32xx: only run SoC init on LPC32xx hardware Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0875/1424] selftests/bpf: Fix incorrect error checking for pthread_create Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0876/1424] selftests/bpf: Fix memory leak on subtest_states reallocation Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0877/1424] cxl/region: Fix use-after-free in find_pos_and_ways() error path Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0878/1424] pinctrl: mediatek: Use C99 initializers in PINCTRL_PIN_GROUP() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0879/1424] pinctrl: mediatek: Add EINT support for multiple addresses Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0880/1424] pinctrl: mediatek: Fix the invalid conditions Greg Kroah-Hartman
2026-09-12  6:55 ` Greg Kroah-Hartman [this message]
2026-09-12  6:55 ` [PATCH 6.6 0882/1424] pinctrl: mediatek: free EINT resources on unbind Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0883/1424] tools/build: Add bpftool-skeletons feature test Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0884/1424] tools/build: Allow versioning of all LLVM tools defined in Makefile.include Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0885/1424] power: supply: sbs-battery: Use a per-device serial number buffer Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0886/1424] scsi: ufs: debugfs: Reserve space for a string terminator Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0887/1424] crypto: keembay - Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0888/1424] crypto: keembay - publish OF module alias for OCS AES/SM4 Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0889/1424] RDMA/mlx5: Fix integer overflow of user QP buffer size Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0890/1424] isofs: release zisofs block pointer buffer head Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0891/1424] w1: ds2482: Fix signedness bug in ds2482_w1_triplet() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0892/1424] remoteproc: core: Drop redundant initialization of ret in rproc_shutdown() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0893/1424] remoteproc: Allow shutdown of crashed processors Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0894/1424] remoteproc: core: Attach rproc asynchronously in rproc_add() path via schedule_work() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0895/1424] remoteproc: Prevent crash handling to race with rproc_del() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0896/1424] staging: rtl8723bs: use kfree_sensitive() for key material Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0897/1424] fs/ntfs3: reject restart table growth beyond U16_MAX entries Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0898/1424] RDMA/efa: Fix PBL chunk length computation Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0899/1424] arm64: dts: allwinner: sun50i-a64-pinephone: Fix mpu6050 mount matrix Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0900/1424] clk: tegra: tegra124-emc: put EMC node on register failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0901/1424] clk: palmas: Manage external-control prepare with devm Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0902/1424] clk/x86: pmc_atom: add kasprintf return value check Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0903/1424] clk: mediatek: mt8135: Fix inverted gate control for devapc_ck Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0904/1424] clk: rockchip: Fix the fractional part denominator on RK3588/RK3576 PLLs Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0905/1424] nilfs2: fix infinite loop in nilfs_clean_segments() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0906/1424] nilfs2: prevent out-of-bounds read in super root block parsing Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0907/1424] nilfs2: add nilfs_end_folio_io() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0908/1424] nilfs2: convert nilfs_forget_buffer to use a folio Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0909/1424] nilfs2: convert to nilfs_folio_buffers_clean() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0910/1424] nilfs2: convert nilfs_btnode_prepare_change_key to use a folio Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0911/1424] nilfs2: convert nilfs_btnode_commit_change_key " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0912/1424] nilfs2: convert nilfs_page_bug() to nilfs_folio_bug() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0913/1424] nilfs2: fix BUG in nilfs_copy_dirty_pages() on dirty state mismatch Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0914/1424] scsi: smartpqi: Fix AIO retry marker cleared by SCSI core between dispatches Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0915/1424] RDMA/mlx5: Fix stack out-of-bounds read in cc_params debugfs Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0916/1424] RDMA/mlx5: Send cong param changes to the resolved port mdev Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0917/1424] RDMA/cxgb4: free STAG index when TPT entry write fails Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0918/1424] IB/isert: reject PDUs declaring more data than was received Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0919/1424] IB/isert: reject login " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0920/1424] nvme-fc: unmap cmd_iu DMA on rsp_iu mapping failure in init_request Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0921/1424] spi: davinci: Use helper function devm_clk_get_enabled() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0922/1424] spi: davinci: Unset POWERDOWN bit when releasing resources Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0923/1424] spi: davinci: switch to managed controller allocation Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0924/1424] wifi: ath11k: qmi: refactor ath11k_qmi_m3_load() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0925/1424] wifi: ath11k: add firmware-2.bin support Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0926/1424] wifi: ath11k: refactor ath11k_wmi_tlv_parse_alloc() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.6 0927/1424] wifi: ath11k: implement handling of P2P NoA event Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0928/1424] wifi: ath11k: fix overreads in ath11k_wmi_process_csa_switch_count_event() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0929/1424] platform/chrome: cros_ec_debugfs: Clean up console log on probe failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0930/1424] platform/chrome: cros_ec_debugfs: Unregister panic notifier Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0931/1424] wifi: rtlwifi: pci: fix error path in rtl_pci_probe() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0932/1424] bus: mhi: host: Flush the posted write after writing to MHI_SOC_RESET_REQ_OFFSET Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0933/1424] md/raid5: protect bitmap batch counters aka seq_flush/seq_write consistency Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0934/1424] md/raid5-ppl: fix use-after-free in ppl_do_flush() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0935/1424] tools/nolibc/powerpc: mark ctr and xer as clobbered by system call Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0936/1424] selftests/zram: fix kernel_gte() for POSIX sh Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0937/1424] rcu: Remove unused function declaration rcu_eqs_special_set() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0938/1424] rcu: Rename rcu_momentary_dyntick_idle() into rcu_momentary_eqs() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0939/1424] rcu: Mark accesses to ->rcu_urgent_qs and ->rcu_need_heavy_qs Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0940/1424] arm64: dts: qcom: msm8998: Dont pull-up I2C pins by default in sleep Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0941/1424] arm64: dts: qcom: sdm632-motorola-ocean: Fix LED default trigger property Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0942/1424] clk: qcom: gcc-qcm2290: dont park QUP RCGs upon registration Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0943/1424] arm64: dts: qcom: sc8280xp-crd: Fix the pin index for misc_3p3_reg_en Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0944/1424] arm64: dts: qcom: sm8250-xiaomi-elish: correct the board ID Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0945/1424] arm64: dts: qcom: sc8180x: drop duplicated PCI iommus property Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0946/1424] arm64: dts: qcom: sc8180x: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0947/1424] arm64: dts: qcom: sdm845: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0948/1424] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0949/1424] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0950/1424] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0951/1424] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0952/1424] arm64: dts: qcom: sm8550: Use GIC-ITS for PCIe0 and PCIe1 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0953/1424] arm64: dts: qcom: sm8550: Fix the msi-map entries Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0954/1424] arm64: dts: qcom: sm8550: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0955/1424] power: supply: isp1704_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0956/1424] power: supply: sc2731_charger: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0957/1424] power: supply: sc2731_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0958/1424] bpf: Fix potential UAF in bpf_netns_link_update_prog Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0959/1424] bpf: Fix potential UAF when reading bpf link info Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0960/1424] lib/test_hmm: fail dmirror_fault() when the mirrored mm is gone Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0961/1424] clk: qcom: Return expected ENOMEM error on dynamic allocation failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0962/1424] iommu/dma: Check atomic pool allocation result directly Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0963/1424] swiotlb: Preserve allocation virtual address for dynamic pools Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0964/1424] i3c: dw: avoid shift-out-of-bounds when DAA assigns no devices Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0965/1424] i3c: master: Fix device_register() error path Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0966/1424] locking/lockdep: Fix NULL pointer dereference in __lock_set_class() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0967/1424] misc: vmc_vmci: Fix potential memory leak in vmci_event_subscribe() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0968/1424] fanotify: report full event length for FIONREAD Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0969/1424] wifi: mt76: mt76x02: do not WARN on invalid rx descriptor length Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0970/1424] wifi: mt76: mt7921: validate CLC firmware records Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0971/1424] wifi: mt76: mt7915: fix net_fill_forward_path for non-DBDC mt7986 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0972/1424] wifi: mt76: mt792x: Fix memory leak in SDIO TX path Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0973/1424] wifi: mt76: mt7996: set MT76_MCU_RESET before waking MCU waiters on full reset Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0974/1424] wifi: mt76: mt7915: avoid nss underflow in mt7915_mcu_get_sta_nss Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0975/1424] wifi: mt76: mt7996: dont report a zero TX bitrate Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0976/1424] wifi: mt76: mt7915: poll the correct SLP CTRL register for the second adie Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0977/1424] wifi: mt76: mt7996: bound TLV walk in mt7996_mcu_get_chip_config Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0978/1424] wifi: mt76: mt7996: reserve space for the CSA-abort countdown TLV Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0979/1424] wifi: mt76: mt7915: use little-endian for bss_info_ra wire fields Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0980/1424] ACPI: processor: idle: Optimize ACPI idle driver registration Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0981/1424] ACPI: processor: Unregister cpufreq notifier on init failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0982/1424] perf: arm_spe: Make wakeup range check overflow safe Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0983/1424] drm/msm/dpu: Drop sneaky dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0984/1424] drm/msm/dsi: Drop dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0985/1424] wifi: ath11k: fix leak in ath11k_service_ready_ext_event() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0986/1424] regulator: core: use system_freezable_wq for init complete work Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.6 0987/1424] perf machine: Fix NULL parent dereference in fork event processing Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0988/1424] perf machine: Guard against NULL strlist in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0989/1424] perf machine: Use snprintf() for guestmount path construction Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0990/1424] perf machine: Check snprintf truncation in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0991/1424] perf machine: Dont abort guest map creation on first inaccessible dir Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0992/1424] perf machine: Reset errno before strtol in guest kernel map creation Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0993/1424] perf machine: Free scandir entries " Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0994/1424] perf machine: Check snprintf truncation for guest kallsyms path Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0995/1424] wifi: mt76: mt7915: unlink TWT flow if the MCU rejects the agreement Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0996/1424] wifi: mt76: mt7915: fix double hif2 init on the non-WED path Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0997/1424] wifi: mt76: mt7915: fix ext PHY use-after-free on register error path Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0998/1424] wifi: mt76: mt7915: release hif2 reference on probe IRQ failure Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.6 0999/1424] wifi: mt76: mt7996: fix reg addr remap when addr is 0 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=20260912065627.050634040@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=angelogioacchino.delregno@collabora.com \
    --cc=linus.walleij@linaro.org \
    --cc=nfraprado@collabora.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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