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, Christoph Hellwig <hch@lst.de>,
	Nick Chan <towinchenmi@gmail.com>, Sven Peter <sven@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 0958/1191] nvme: apple: Add Apple A11 support
Date: Sat, 12 Sep 2026 09:01:26 +0200	[thread overview]
Message-ID: <20260912065609.739066204@linuxfoundation.org> (raw)
In-Reply-To: <20260912065548.086904252@linuxfoundation.org>

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

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

From: Nick Chan <towinchenmi@gmail.com>

[ Upstream commit 04d8ecf37b5e06d16228a4d37d8548c17cf70461 ]

Add support for ANS2 NVMe on Apple A11 SoC.

This version of ANS2 is less quirky than the one in M1, and does not have
NVMMU or Linear SQ. However, it still requires a non-standard 128-byte
SQE.

Acked-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Nick Chan <towinchenmi@gmail.com>
Reviewed-by: Sven Peter <sven@kernel.org>
Link: https://lore.kernel.org/r/20250826-t8015-nvme-v5-2-caee6ab00144@gmail.com
Signed-off-by: Sven Peter <sven@kernel.org>
Stable-dep-of: 8ce883fd068b ("nvme-apple: Drop the PRP null check chicken bit")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/nvme/host/apple.c | 197 ++++++++++++++++++++++++++------------
 1 file changed, 137 insertions(+), 60 deletions(-)

diff --git a/drivers/nvme/host/apple.c b/drivers/nvme/host/apple.c
index 994cf755de093..778cd619aeebd 100644
--- a/drivers/nvme/host/apple.c
+++ b/drivers/nvme/host/apple.c
@@ -35,7 +35,6 @@
 #include "nvme.h"
 
 #define APPLE_ANS_BOOT_TIMEOUT	  USEC_PER_SEC
-#define APPLE_ANS_MAX_QUEUE_DEPTH 64
 
 #define APPLE_ANS_COPROC_CPU_CONTROL	 0x44
 #define APPLE_ANS_COPROC_CPU_CONTROL_RUN BIT(4)
@@ -75,6 +74,8 @@
 #define APPLE_NVME_AQ_DEPTH	   2
 #define APPLE_NVME_AQ_MQ_TAG_DEPTH (APPLE_NVME_AQ_DEPTH - 1)
 
+#define APPLE_NVME_IOSQES	7
+
 /*
  * These can be higher, but we need to ensure that any command doesn't
  * require an sg allocation that needs more than a page of data.
@@ -142,6 +143,7 @@ struct apple_nvme_queue {
 	u32 __iomem *sq_db;
 	u32 __iomem *cq_db;
 
+	u16 sq_tail;
 	u16 cq_head;
 	u8 cq_phase;
 
@@ -183,11 +185,17 @@ struct apple_nvme_iod {
 	struct scatterlist *sg;
 };
 
+struct apple_nvme_hw {
+	bool has_lsq_nvmmu;
+	u32 max_queue_depth;
+};
+
 struct apple_nvme {
 	struct device *dev;
 
 	void __iomem *mmio_coproc;
 	void __iomem *mmio_nvme;
+	const struct apple_nvme_hw *hw;
 
 	struct device **pd_dev;
 	struct device_link **pd_link;
@@ -232,10 +240,12 @@ static inline struct apple_nvme *queue_to_apple_nvme(struct apple_nvme_queue *q)
 
 static unsigned int apple_nvme_queue_depth(struct apple_nvme_queue *q)
 {
-	if (q->is_adminq)
+	struct apple_nvme *anv = queue_to_apple_nvme(q);
+
+	if (q->is_adminq && anv->hw->has_lsq_nvmmu)
 		return APPLE_NVME_AQ_DEPTH;
 
-	return APPLE_ANS_MAX_QUEUE_DEPTH;
+	return anv->hw->max_queue_depth;
 }
 
 static void apple_nvme_rtkit_crashed(void *cookie)
@@ -297,7 +307,28 @@ static void apple_nvmmu_inval(struct apple_nvme_queue *q, unsigned int tag)
 				     "NVMMU TCB invalidation failed\n");
 }
 
-static void apple_nvme_submit_cmd(struct apple_nvme_queue *q,
+static void apple_nvme_submit_cmd_t8015(struct apple_nvme_queue *q,
+				  struct nvme_command *cmd)
+{
+	struct apple_nvme *anv = queue_to_apple_nvme(q);
+
+	spin_lock_irq(&anv->lock);
+
+	if (q->is_adminq)
+		memcpy(&q->sqes[q->sq_tail], cmd, sizeof(*cmd));
+	else
+		memcpy((void *)q->sqes + (q->sq_tail << APPLE_NVME_IOSQES),
+			cmd, sizeof(*cmd));
+
+	if (++q->sq_tail == anv->hw->max_queue_depth)
+		q->sq_tail = 0;
+
+	writel(q->sq_tail, q->sq_db);
+	spin_unlock_irq(&anv->lock);
+}
+
+
+static void apple_nvme_submit_cmd_t8103(struct apple_nvme_queue *q,
 				  struct nvme_command *cmd)
 {
 	struct apple_nvme *anv = queue_to_apple_nvme(q);
@@ -609,7 +640,8 @@ static inline void apple_nvme_handle_cqe(struct apple_nvme_queue *q,
 	__u16 command_id = READ_ONCE(cqe->command_id);
 	struct request *req;
 
-	apple_nvmmu_inval(q, command_id);
+	if (anv->hw->has_lsq_nvmmu)
+		apple_nvmmu_inval(q, command_id);
 
 	req = nvme_find_rq(apple_nvme_queue_tagset(anv, q), command_id);
 	if (unlikely(!req)) {
@@ -703,7 +735,7 @@ static int apple_nvme_create_cq(struct apple_nvme *anv)
 	c.create_cq.opcode = nvme_admin_create_cq;
 	c.create_cq.prp1 = cpu_to_le64(anv->ioq.cq_dma_addr);
 	c.create_cq.cqid = cpu_to_le16(1);
-	c.create_cq.qsize = cpu_to_le16(APPLE_ANS_MAX_QUEUE_DEPTH - 1);
+	c.create_cq.qsize = cpu_to_le16(anv->hw->max_queue_depth - 1);
 	c.create_cq.cq_flags = cpu_to_le16(NVME_QUEUE_PHYS_CONTIG | NVME_CQ_IRQ_ENABLED);
 	c.create_cq.irq_vector = cpu_to_le16(0);
 
@@ -731,7 +763,7 @@ static int apple_nvme_create_sq(struct apple_nvme *anv)
 	c.create_sq.opcode = nvme_admin_create_sq;
 	c.create_sq.prp1 = cpu_to_le64(anv->ioq.sq_dma_addr);
 	c.create_sq.sqid = cpu_to_le16(1);
-	c.create_sq.qsize = cpu_to_le16(APPLE_ANS_MAX_QUEUE_DEPTH - 1);
+	c.create_sq.qsize = cpu_to_le16(anv->hw->max_queue_depth - 1);
 	c.create_sq.sq_flags = cpu_to_le16(NVME_QUEUE_PHYS_CONTIG);
 	c.create_sq.cqid = cpu_to_le16(1);
 
@@ -783,7 +815,12 @@ static blk_status_t apple_nvme_queue_rq(struct blk_mq_hw_ctx *hctx,
 	}
 
 	nvme_start_request(req);
-	apple_nvme_submit_cmd(q, cmnd);
+
+	if (anv->hw->has_lsq_nvmmu)
+		apple_nvme_submit_cmd_t8103(q, cmnd);
+	else
+		apple_nvme_submit_cmd_t8015(q, cmnd);
+
 	return BLK_STS_OK;
 
 out_free_cmd:
@@ -973,11 +1010,13 @@ static const struct blk_mq_ops apple_nvme_mq_ops = {
 static void apple_nvme_init_queue(struct apple_nvme_queue *q)
 {
 	unsigned int depth = apple_nvme_queue_depth(q);
+	struct apple_nvme *anv = queue_to_apple_nvme(q);
 
 	q->cq_head = 0;
 	q->cq_phase = 1;
-	memset(q->tcbs, 0,
-	       APPLE_ANS_MAX_QUEUE_DEPTH * sizeof(struct apple_nvmmu_tcb));
+	if (anv->hw->has_lsq_nvmmu)
+		memset(q->tcbs, 0, anv->hw->max_queue_depth
+			* sizeof(struct apple_nvmmu_tcb));
 	memset(q->cqes, 0, depth * sizeof(struct nvme_completion));
 	apple_nvme_enable_queue(q);
 }
@@ -1059,49 +1098,55 @@ static void apple_nvme_reset_work(struct work_struct *work)
 
 	dma_set_max_seg_size(anv->dev, 0xffffffff);
 
-	/*
-	 * Enable NVMMU and linear submission queues.
-	 * While we could keep those disabled and pretend this is slightly
-	 * more common NVMe controller we'd still need some quirks (e.g.
-	 * sq entries will be 128 bytes) and Apple might drop support for
-	 * that mode in the future.
-	 */
-	writel(APPLE_ANS_LINEAR_SQ_EN,
-	       anv->mmio_nvme + APPLE_ANS_LINEAR_SQ_CTRL);
+	if (anv->hw->has_lsq_nvmmu) {
+		/*
+		 * Enable NVMMU and linear submission queues which is required
+		 * since T6000.
+		 */
+		writel(APPLE_ANS_LINEAR_SQ_EN,
+			anv->mmio_nvme + APPLE_ANS_LINEAR_SQ_CTRL);
 
-	/* Allow as many pending command as possible for both queues */
-	writel(APPLE_ANS_MAX_QUEUE_DEPTH | (APPLE_ANS_MAX_QUEUE_DEPTH << 16),
-	       anv->mmio_nvme + APPLE_ANS_MAX_PEND_CMDS_CTRL);
+		/* Allow as many pending command as possible for both queues */
+		writel(anv->hw->max_queue_depth
+			| (anv->hw->max_queue_depth << 16), anv->mmio_nvme
+			+ APPLE_ANS_MAX_PEND_CMDS_CTRL);
 
-	/* Setup the NVMMU for the maximum admin and IO queue depth */
-	writel(APPLE_ANS_MAX_QUEUE_DEPTH - 1,
-	       anv->mmio_nvme + APPLE_NVMMU_NUM_TCBS);
+		/* Setup the NVMMU for the maximum admin and IO queue depth */
+		writel(anv->hw->max_queue_depth - 1,
+			anv->mmio_nvme + APPLE_NVMMU_NUM_TCBS);
 
-	/*
-	 * This is probably a chicken bit: without it all commands where any PRP
-	 * is set to zero (including those that don't use that field) fail and
-	 * the co-processor complains about "completed with err BAD_CMD-" or
-	 * a "NULL_PRP_PTR_ERR" in the syslog
-	 */
-	writel(readl(anv->mmio_nvme + APPLE_ANS_UNKNOWN_CTRL) &
-		       ~APPLE_ANS_PRP_NULL_CHECK,
-	       anv->mmio_nvme + APPLE_ANS_UNKNOWN_CTRL);
+		/*
+		 * This is probably a chicken bit: without it all commands
+		 * where any PRP is set to zero (including those that don't use
+		 * that field) fail and the co-processor complains about
+		 * "completed with err BAD_CMD-" or a "NULL_PRP_PTR_ERR" in the
+		 * syslog
+		 */
+		writel(readl(anv->mmio_nvme + APPLE_ANS_UNKNOWN_CTRL) &
+			~APPLE_ANS_PRP_NULL_CHECK,
+			anv->mmio_nvme + APPLE_ANS_UNKNOWN_CTRL);
+	}
 
 	/* Setup the admin queue */
-	aqa = APPLE_NVME_AQ_DEPTH - 1;
+	if (anv->hw->has_lsq_nvmmu)
+		aqa = APPLE_NVME_AQ_DEPTH - 1;
+	else
+		aqa = anv->hw->max_queue_depth - 1;
 	aqa |= aqa << 16;
 	writel(aqa, anv->mmio_nvme + NVME_REG_AQA);
 	writeq(anv->adminq.sq_dma_addr, anv->mmio_nvme + NVME_REG_ASQ);
 	writeq(anv->adminq.cq_dma_addr, anv->mmio_nvme + NVME_REG_ACQ);
 
-	/* Setup NVMMU for both queues */
-	writeq(anv->adminq.tcb_dma_addr,
-	       anv->mmio_nvme + APPLE_NVMMU_ASQ_TCB_BASE);
-	writeq(anv->ioq.tcb_dma_addr,
-	       anv->mmio_nvme + APPLE_NVMMU_IOSQ_TCB_BASE);
+	if (anv->hw->has_lsq_nvmmu) {
+		/* Setup NVMMU for both queues */
+		writeq(anv->adminq.tcb_dma_addr,
+			anv->mmio_nvme + APPLE_NVMMU_ASQ_TCB_BASE);
+		writeq(anv->ioq.tcb_dma_addr,
+			anv->mmio_nvme + APPLE_NVMMU_IOSQ_TCB_BASE);
+	}
 
 	anv->ctrl.sqsize =
-		APPLE_ANS_MAX_QUEUE_DEPTH - 1; /* 0's based queue depth */
+		anv->hw->max_queue_depth - 1; /* 0's based queue depth */
 	anv->ctrl.cap = readq(anv->mmio_nvme + NVME_REG_CAP);
 
 	dev_dbg(anv->dev, "Enabling controller now");
@@ -1269,8 +1314,9 @@ static int apple_nvme_alloc_tagsets(struct apple_nvme *anv)
 	 * both queues. The admin queue gets the first APPLE_NVME_AQ_DEPTH which
 	 * must be marked as reserved in the IO queue.
 	 */
-	anv->tagset.reserved_tags = APPLE_NVME_AQ_DEPTH;
-	anv->tagset.queue_depth = APPLE_ANS_MAX_QUEUE_DEPTH - 1;
+	if (anv->hw->has_lsq_nvmmu)
+		anv->tagset.reserved_tags = APPLE_NVME_AQ_DEPTH;
+	anv->tagset.queue_depth = anv->hw->max_queue_depth - 1;
 	anv->tagset.timeout = NVME_IO_TIMEOUT;
 	anv->tagset.numa_node = NUMA_NO_NODE;
 	anv->tagset.cmd_size = sizeof(struct apple_nvme_iod);
@@ -1295,6 +1341,7 @@ static int apple_nvme_queue_alloc(struct apple_nvme *anv,
 				  struct apple_nvme_queue *q)
 {
 	unsigned int depth = apple_nvme_queue_depth(q);
+	size_t iosq_size;
 
 	q->cqes = dmam_alloc_coherent(anv->dev,
 				      depth * sizeof(struct nvme_completion),
@@ -1302,22 +1349,28 @@ static int apple_nvme_queue_alloc(struct apple_nvme *anv,
 	if (!q->cqes)
 		return -ENOMEM;
 
-	q->sqes = dmam_alloc_coherent(anv->dev,
-				      depth * sizeof(struct nvme_command),
+	if (anv->hw->has_lsq_nvmmu)
+		iosq_size = depth * sizeof(struct nvme_command);
+	else
+		iosq_size = depth << APPLE_NVME_IOSQES;
+
+	q->sqes = dmam_alloc_coherent(anv->dev, iosq_size,
 				      &q->sq_dma_addr, GFP_KERNEL);
 	if (!q->sqes)
 		return -ENOMEM;
 
-	/*
-	 * We need the maximum queue depth here because the NVMMU only has a
-	 * single depth configuration shared between both queues.
-	 */
-	q->tcbs = dmam_alloc_coherent(anv->dev,
-				      APPLE_ANS_MAX_QUEUE_DEPTH *
-					      sizeof(struct apple_nvmmu_tcb),
-				      &q->tcb_dma_addr, GFP_KERNEL);
-	if (!q->tcbs)
-		return -ENOMEM;
+	if (anv->hw->has_lsq_nvmmu) {
+		/*
+		 * We need the maximum queue depth here because the NVMMU only
+		 * has a single depth configuration shared between both queues.
+		 */
+		q->tcbs = dmam_alloc_coherent(anv->dev,
+			anv->hw->max_queue_depth *
+				sizeof(struct apple_nvmmu_tcb),
+			&q->tcb_dma_addr, GFP_KERNEL);
+		if (!q->tcbs)
+			return -ENOMEM;
+	}
 
 	/*
 	 * initialize phase to make sure the allocated and empty memory
@@ -1401,6 +1454,12 @@ static int apple_nvme_probe(struct platform_device *pdev)
 	anv->adminq.is_adminq = true;
 	platform_set_drvdata(pdev, anv);
 
+	anv->hw = of_device_get_match_data(&pdev->dev);
+	if (!anv->hw) {
+		ret = -ENODEV;
+		goto put_dev;
+	}
+
 	ret = apple_nvme_attach_genpd(anv);
 	if (ret < 0) {
 		dev_err_probe(dev, ret, "Failed to attach power domains");
@@ -1432,10 +1491,17 @@ static int apple_nvme_probe(struct platform_device *pdev)
 		goto put_dev;
 	}
 
-	anv->adminq.sq_db = anv->mmio_nvme + APPLE_ANS_LINEAR_ASQ_DB;
-	anv->adminq.cq_db = anv->mmio_nvme + APPLE_ANS_ACQ_DB;
-	anv->ioq.sq_db = anv->mmio_nvme + APPLE_ANS_LINEAR_IOSQ_DB;
-	anv->ioq.cq_db = anv->mmio_nvme + APPLE_ANS_IOCQ_DB;
+	if (anv->hw->has_lsq_nvmmu) {
+		anv->adminq.sq_db = anv->mmio_nvme + APPLE_ANS_LINEAR_ASQ_DB;
+		anv->adminq.cq_db = anv->mmio_nvme + APPLE_ANS_ACQ_DB;
+		anv->ioq.sq_db = anv->mmio_nvme + APPLE_ANS_LINEAR_IOSQ_DB;
+		anv->ioq.cq_db = anv->mmio_nvme + APPLE_ANS_IOCQ_DB;
+	} else {
+		anv->adminq.sq_db = anv->mmio_nvme + NVME_REG_DBS;
+		anv->adminq.cq_db = anv->mmio_nvme + APPLE_ANS_ACQ_DB;
+		anv->ioq.sq_db = anv->mmio_nvme + NVME_REG_DBS + 8;
+		anv->ioq.cq_db = anv->mmio_nvme + APPLE_ANS_IOCQ_DB;
+	}
 
 	anv->sart = devm_apple_sart_get(dev);
 	if (IS_ERR(anv->sart)) {
@@ -1593,8 +1659,19 @@ static int apple_nvme_suspend(struct device *dev)
 static DEFINE_SIMPLE_DEV_PM_OPS(apple_nvme_pm_ops, apple_nvme_suspend,
 				apple_nvme_resume);
 
+static const struct apple_nvme_hw apple_nvme_t8015_hw = {
+	.has_lsq_nvmmu = false,
+	.max_queue_depth = 16,
+};
+
+static const struct apple_nvme_hw apple_nvme_t8103_hw = {
+	.has_lsq_nvmmu = true,
+	.max_queue_depth = 64,
+};
+
 static const struct of_device_id apple_nvme_of_match[] = {
-	{ .compatible = "apple,nvme-ans2" },
+	{ .compatible = "apple,t8015-nvme-ans2", .data = &apple_nvme_t8015_hw },
+	{ .compatible = "apple,nvme-ans2", .data = &apple_nvme_t8103_hw },
 	{},
 };
 MODULE_DEVICE_TABLE(of, apple_nvme_of_match);
-- 
2.53.0




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

Thread overview: 1202+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-12  6:45 [PATCH 6.1 0000/1191] 6.1.188-rc1 review Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0001/1191] ALSA: aloop: Fix racy access at PCM trigger Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0002/1191] ALSA: aloop: Fix peer runtime UAF during format-change stop Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0003/1191] alpha: fix ieee_swcr_to_fpcr setting FPCR_DNOD unconditionally Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0004/1191] alpha: dont leak hardware-fabricated FP exception bits to user space Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0005/1191] clocksource/drivers/timer-sun4i: Advertise a real minimum delta Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0006/1191] powerpc/pseries/iommu: switch to Default DMA window during kdump Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0007/1191] timers/itimer: Zero-init old itimerval before copy to userspace Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0008/1191] include/linux/list.h: mark list_add and __list_add as __always_inline Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0009/1191] mm/migrate: report RCU-tasks quiescent states in migrate_pages_batch() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0010/1191] mm/vmscan: report RCU-tasks quiescent states in shrink_lruvec() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0011/1191] mm: memcg: stop reclaim when a limit update is superseded Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0012/1191] tools/compiler: match glibc 2.42 definition of __attribute_const__ Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0013/1191] x86/tdx: Fix off-by-one in port I/O handling Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0014/1191] x86/insn-eval: Move assign_register() out of KVM as insn_assign_reg() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0015/1191] hwtracing: hisi_ptt: Propagate DMA reset timeout in trace_start() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0016/1191] tracing: Fix crash passing ERR_PTR to kthread_stop() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0017/1191] tracing: Fix use-after-free with same-name named triggers Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0018/1191] device property: fix infinite loop in fwnode_for_each_child_node() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0019/1191] powerpc/powermac: fix OF node refcount Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0020/1191] rapidio: mport_cdev: fix use-after-free in dma_req_free() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0021/1191] Revert "media: v4l2-dev: fix error handling in __video_register_device()" Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0022/1191] staging: greybus: hid: fix SET_REPORT return value Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0023/1191] usb: dwc2: gadget: Exit partial power down state when changing USB pull-up Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0024/1191] USB: phy: fsl-usb: fix missing static keywords Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0025/1191] usb: gadget: u_audio: Fix use-after-free on sound card disconnect Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0026/1191] usb: gadget: snps_udc_plat: clean up PHY on probe deferral Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0027/1191] usb: gadget: f_tcm: fix deadlock in usbg_make_tpg() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0028/1191] usb: gadget: uvc: fix dangling pointers in uvc_function_bind() and uvc_function_unbind() Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0029/1191] usb: gadget: f_fs: Prevent deadlock during ep0 read loop Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0030/1191] fpga: altera-cvp: Avoid out-of-bounds read in trailing byte write Greg Kroah-Hartman
2026-09-12  6:45 ` [PATCH 6.1 0031/1191] HID: sensor-hub: Fix out-of-bounds write in sensor_hub_get_feature Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0032/1191] lib/ucs2_string.c: fix out-of-bounds read in ucs2_strnlen() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0033/1191] media: cec: stm32: prevent out-of-bounds write on RX overflow Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0034/1191] media: vicodec: fix out-of-bounds write in FWHT encoder Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0035/1191] nilfs2: fix slab-out-of-bounds in nilfs_direct_propagate after truncation Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0036/1191] of: fix out-of-bounds read in of_alias_scan() stem parser Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0037/1191] ubifs: fix out-of-bounds read in signature length check Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0038/1191] NFSD: Encode only the status in NFS-ACL v2 GETACL error replies Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0039/1191] NFSD: Fix off-by-one in DRC bucket pruning limit Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0040/1191] NFSD: restart ssc_expire_umount walk after dropping nfsd_ssc_lock Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0041/1191] NFSD: remove flawed WARN_ON_ONCE from nfsd_mode_check Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0042/1191] NFSv4.1: fix layout segment leak on the pnfs_layout_process() forget path Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0043/1191] nfsd: Reset write verifier when async COPY writeback fails Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0044/1191] nfsd: return NFS4ERR_NOTSUPP for unsupported netloc4 types Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0045/1191] nfsd: sample writeback error cursor before async COPY loop Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0046/1191] nfsd: validate symlink target length in NFSv4 CREATE Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0047/1191] nfsd: add fh_want_write() for early-verified SETATTR in nfsd_proc_setattr() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0048/1191] nfsd: add filehandle match check to nfsd4_delegreturn() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0049/1191] nfsd: block non-SAVEFH ops after FOREIGN PUTFH to prevent NULL deref Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0050/1191] nfsd: check client ownership when cancelling a copy-notify stateid Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0051/1191] nfsd: fix cpntf publish race in nfs4_init_cp_state Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0052/1191] nfsd: fix version mismatch loops in nfsd_acl_init_request() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0053/1191] nfsd: fix XDR length calculation in nfsd4_ff_encode_layoutget Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0054/1191] nfsd: fix XDR padding calculation in ff_encode_getdeviceinfo Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0055/1191] nfsd: initialize copy-notify stateid before publishing it Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0056/1191] nfsd: reject out-of-range useconds in NFSv2 SETATTR/CREATE Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0057/1191] nfsd: reject reclaim LOCK after RECLAIM_COMPLETE Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0058/1191] nfsd: revoke copy-notify stateids before dropping their reference Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0059/1191] NFSD: Prevent lock owner use-after-free during client teardown Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0060/1191] libceph: reject buckets with mismatched CRUSH ids Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0061/1191] ceph: fix UAF in __kick_flushing_caps() on cf entry freed during unlock Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0062/1191] ceph: reject export_targets ranks >= CEPH_MAX_MDS in mdsmap decode Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0063/1191] ceph: bound num_export_targets array for mds info v2/v3 Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0064/1191] ceph: bound xattr value length in __build_xattrs() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0065/1191] audit: avoid dropping live tree ref on fsnotify rule autoremove Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0066/1191] cifs: fix loff_t underflow in cifs_remap_file_range() when len == 0 Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0067/1191] smb: client: clear ce->tgthint in free_tgts() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0068/1191] smb: client: fix ALIGN() overflow in symlink_data() error context loop Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0069/1191] smb: client: harden DFS cache against invalid target hints Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0070/1191] HID: picolcd: clamp eeprom debugfs read to bytes actually received Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0071/1191] HID: roccat: free buffered reports when destroying device Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0072/1191] HID: sensor: custom: Fix field sysfs group cleanup on failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0073/1191] HID: mcp2221: validate report size in mcp2221_raw_event() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0074/1191] fs/ntfs3: validate dirty page table on log replay Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0075/1191] fs/ntfs3: fix info-leak on partial LZNT decompress in ni_read_frame() Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0076/1191] fs/ntfs3: bound page_lcns[] index by the log record Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0077/1191] eCryptfs: bound the packet-length peek to the user buffer Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0078/1191] ecryptfs: fix tag 11 packet exact-fit size check Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0079/1191] ecryptfs: hold msg ctx list lock when cleaning daemon queue Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0080/1191] ecryptfs: pass packet set buffer size to parser Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0081/1191] ecryptfs: reject oversized encrypted_key_size in parse_tag_3_packet Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0082/1191] ecryptfs: reject too-small tag 70 packets Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0083/1191] ecryptfs: release message context on send failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0084/1191] ecryptfs: show filename encryption options Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0085/1191] efivarfs: Rate limit statfs() handler Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0086/1191] fat: restore original value when fat_ent_write failed Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0087/1191] fbdev: omapfb: panel-dsi-cm: initialize lock before registering display Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0088/1191] fbdev: pvr2fb: correct user pointer annotation and sentinel initializer Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0089/1191] fbdev: uvesafb: unregister connector callback on init failure Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0090/1191] forcedeth: fix off-by-one when saving/restoring non-PCI config space Greg Kroah-Hartman
2026-09-12  6:46 ` [PATCH 6.1 0091/1191] fpga: stratix10-soc: Fix SVC mailbox handling during reconfiguration Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0092/1191] hsi: omap_ssi_core: fix missing DMA mask setup for SSI controller device Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0093/1191] ACPI: pfr_update: fix stack buffer overflow in query_capability() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0094/1191] alpha/PCI: Fix I/O port accessor argument order in pci_legacy_write() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0095/1191] alpha: marvel: Fix irq_set_status_flags to use correct IRQ number Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0096/1191] alpha: marvel: Fix lock ordering in init_io7_irqs() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0097/1191] ARM: 9477/1: Disable broken eBPF JIT on the Risc PC Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0098/1191] ata: libata-scsi: fix DSM TRIM for sector sizes larger than 2048 bytes Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0099/1191] auxdisplay: charlcd: cancel backlight work on registration failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0100/1191] Bluetooth: btusb: Add ASUS USB-BT540 for Realtek 8761CU Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0101/1191] Bluetooth: btusb: Add ASUS USB-BT600 " Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0102/1191] Bluetooth: eir: Fix OOB read in eir_get_service_data() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0103/1191] bnx2x: fix double free in bnx2x_init_firmware() error path Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0104/1191] bpf: Harden bloom filter sizing and indexing on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0105/1191] dm-era: fix shadowed superblock leak on take-snap failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0106/1191] dm raid1: reserve space for NUL-terminator in build_constructor_string() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0107/1191] dm array: reject an array block whose value size is not the callers Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0108/1191] cpufreq: schedutil: Fix rate limit overflow Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0109/1191] Bluetooth: hci_bcm: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0110/1191] Bluetooth: hci_uart: Fix false success return in hci_uart_setup() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0111/1191] Bluetooth: ISO: fix use-after-free of listener socket in iso_conn_ready Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0112/1191] Bluetooth: RFCOMM: serialize security confirmation handling Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0113/1191] Bluetooth: hci_conn: re-enable advertising only for peripheral role Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0114/1191] Bluetooth: hci_event: clear HCI_LE_ADV only on a created connection Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0115/1191] Bluetooth: hci_h5: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0116/1191] Bluetooth: hci_intel: " Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0117/1191] ipip: fix skb leak in collect_md mode when metadata_dst allocation fails Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0118/1191] ip6_tunnel: use skb_cow_head() in ip6_tnl_xmit() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0119/1191] ip6_gre: fix hardware header length for NBMA tunnels Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0120/1191] ipv6: use RCU iterator to dump route exceptions Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0121/1191] libnvdimm/labels: Prevent integer overflow in __nd_label_validate() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0122/1191] mailbox: qcom-ipcc: fix duplicate channel allocation across holes Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0123/1191] md: do overflow check for sb->bblog_shift in super_1_load() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0124/1191] mpls: reload header after pskb_may_pull() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0125/1191] mptcp: fix uninitialized local_id in syncookie MP_JOIN reconstruction Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0126/1191] SUNRPC: xdr_buf_trim: clamp buf->len to avoid underflow Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0127/1191] sunrpc: route to a populated pool in svc_pool_for_cpu() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0128/1191] SUNRPC: always drain cache_cleaner before destroying a cache_detail Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0129/1191] SUNRPC: Guard svcauth_gss_release() dispatch on rq_auth_stat Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0130/1191] SUNRPC: harden gss_krb5_unwrap_v2 against short tokens Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0131/1191] SUNRPC: harden gss_unwrap_resp_priv length checks Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0132/1191] sunrpc: init gssp_lock before publishing proc entry Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0133/1191] SUNRPC: Reject krb5 v2 wrap tokens with oversized ec field Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0134/1191] svcrdma: Fix offset arithmetic in read_chunk_range Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0135/1191] svcrdma: Fix pcl_for_each_segment for empty chunks Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0136/1191] udf: reject VAT indexes equal to the entry count Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0137/1191] wifi: ath6kl: clamp assoc request/response lengths before subtracting IE offsets Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0138/1191] staging: media: tegra-video: vi: fix probe failure on skipped last port Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0139/1191] rpmsg: glink: smem: order FIFO read after availability check Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0140/1191] arm64: dts: rockchip: Fix rk3399-roc-pc-plus analog audio Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0141/1191] remoteproc: scp: Fix device reference leak on failed lookup Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0142/1191] qede: Fix NULL pointer dereference in TPA fragment processing Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0143/1191] RDMA/cxgb4: Cancel reg_work before freeing device on remove Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0144/1191] RDMA/ucma: Lock the handler in ucma_set_ib_path() Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0145/1191] regulator: as3722_get_regulator_dt_data: fix premature of_node_put leaving dangling of_node pointer Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0146/1191] regulator: max8998_pmic_dt_parse_pdata: of_node_put on reg_np after ownership transferred to rdata Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0147/1191] orangefs: fix double-free of trailer_buf on readdir copy failure Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0148/1191] orangefs: skip leading spaces before parsing client debug masks Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0149/1191] ocfs2: always run deallocs on copy-on-write completion Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0150/1191] ocfs2: bound namelen in dlm_migrate_request_handler Greg Kroah-Hartman
2026-09-12  6:47 ` [PATCH 6.1 0151/1191] ocfs2: validate lengths in dlm_mig_lockres_handler Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0152/1191] ocfs2: validate rl_used against rl_count in refcount block validator Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0153/1191] ocfs2: cluster: dont sleep while holding o2hb_live_lock in o2hb_region_pin() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0154/1191] ocfs2: cluster: avoid lock order inversion in o2hb_region_pin() from drop_item Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0155/1191] ocfs2: cluster: fix o2hb_dependent_users leak on pin failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0156/1191] ocfs2: fix readdir position truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0157/1191] openrisc: fix arbitrary kernel memory access via or1k_atomic syscall Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0158/1191] openvswitch: only skb_tx_error() a packet we are about to drop Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0159/1191] arm64: compat: Fix decrementing LDM/STM alignment emulation Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0160/1191] ASoC: amd: yc: Add DMI entry for MSI Thin A15 B7UC Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0161/1191] hwmon: (max6621) fix negative temperature offset and crit readings Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0162/1191] hwmon: (max6621) fix temperature clamp range Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0163/1191] lockd: pin next file across nlm_inspect_file lock-drop Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0164/1191] nvme: nvme-fc: Fix nvme_fc_create_hw_io_queues() queue deletion in error path Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0165/1191] nvme: zero the discard fallback page Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0166/1191] nvme-tcp: do not accept C2HData based on blk_rq_payload_bytes() alone Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0167/1191] nvme-tcp: fix host memory disclosure on R2T for a read command Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0168/1191] nvme-tcp: reject a read that transferred too few bytes Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0169/1191] sctp: stop processing a packet once its association is deleted Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0170/1191] sctp: drop a chunk if its transport was removed Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0171/1191] sctp: fix NULL deref on untransmitted RECONF completion Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0172/1191] sctp: distinguish sequence zero from wildcard in reconf lookup Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0173/1191] sctp: fix stream->outcnt underflow on duplicate RECONF responses Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0174/1191] power: supply: bq24257: fix use-after-free on remove Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0175/1191] power: supply: bq256xx: drain usb_work before freeing the charger Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0176/1191] power: supply: cros_usbpd-charger: bound the EC-reported port count Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0177/1191] power: supply: cros_usbpd: Limit port counts to EC_USB_PD_MAX_PORTS Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0178/1191] power: supply: lp8727: fix use-after-free in lp8727_release_irq() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0179/1191] power: supply: twl4030_charger: cancel workers via devm Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0180/1191] power: supply: ucs1002: fix use-after-free on remove Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0181/1191] power: supply: max17040: synchronize work cancellation on suspend Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0182/1191] s390/dasd: Do not complete a failed ESE read as successful Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0183/1191] s390/dasd: Guard sysfs discipline callbacks against unallocated private data Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0184/1191] s390/dasd: Propagate partial completion length across ERP recovery Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0185/1191] PCI: Fix 32-bit config write in Intel PCH Root Port MPC ACS quirk Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0186/1191] PCI: meson: Fix GPIO state while requesting PERST# Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0187/1191] PCI: Add ACS quirk for Pericom PI7C9X2G608 switches [12d8:2608] Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0188/1191] PCI/sysfs: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0189/1191] PCI/MSI: Enable memory decoding before restoring MSI-X messages Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0190/1191] PCI/proc: Avoid spurious runtime PM wakeup on config space accesses Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0191/1191] PCI/proc: Use file_ns_capable() when checking config space read access Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0192/1191] PCI/proc: Warn on writes to kernel-exclusive config space regions Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0193/1191] iommu/vt-d: Fix no_iommu to disable platform opt-in Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0194/1191] platform/x86: dell-wmi-sysman: Dont hex dump attribute security buffer Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0195/1191] mmc: via-sdmmc: stop card-detect handling on probe failure Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0196/1191] platform/x86: ishtp_eclite: Fix ACPI device reference leak in probe error path Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0197/1191] platform/chrome: sensorhub: Bound the EC-reported sensor number Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0198/1191] interconnect: Fix use after free in icc_get() and of_icc_get_by_index() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0199/1191] ipmi: ipmb: validate write message length Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0200/1191] ipmi: si: Fix NULL pointer dereference after failed registration Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0201/1191] net/iucv: filter frames in afiucv_hs_rcv() by ingress device Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0202/1191] xdp: fix zero-copy frame layout Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0203/1191] slip: fix use-after-free in sl_sync() Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0204/1191] net: usb: qmi_wwan: add Telit Cinterion FE990D50 composition Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0205/1191] net: tun: bound receive headroom Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0206/1191] net: openvswitch: fix flow mask use-after-free on flow deletion Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0207/1191] net: openvswitch: fix nf_connlabels leak in ovs_ct_init Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0208/1191] net: ravb: avoid dereferencing an invalid PTP clock Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0209/1191] NTB: ntb_transport: Recycle TX entries before client callbacks Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0210/1191] NTB: ntb_transport: Fail TX enqueue when the QP link is down Greg Kroah-Hartman
2026-09-12  6:48 ` [PATCH 6.1 0211/1191] NTB: ntb_transport: Reject oversized TX buffers Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0212/1191] net: ntb_netdev: Avoid double-accounting netif_rx() drops Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0213/1191] net: ntb_netdev: Count packets dropped on RX refill failure Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0214/1191] net/smc: fix socket refcount leak in smc_switch_conns() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0215/1191] net/smc: fix use-after-free in smc_rx_pipe_buf_release() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0216/1191] net: cap advertised IP tunnel headroom Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0217/1191] net: fix spurious TX timeout after dev_activate() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0218/1191] net: skbuff: dont touch shared zerocopy state in skb_tx_error() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0219/1191] seg6: reset IP6CB after IPv6 decapsulation Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0220/1191] ALSA: 6fire: bound the MIDI event length from the device Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0221/1191] ALSA: aloop: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0222/1191] ALSA: bcd2000: clear the URB pointers on disconnect Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0223/1191] ALSA: mpu401: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0224/1191] ALSA: mts64: " Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0225/1191] ALSA: pcxhr: initialize mutexes before requesting threaded IRQ Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0226/1191] ALSA: portman2x4: Check card index validity at probe Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0227/1191] ALSA: serial-u16550: " Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0228/1191] ALSA: virmidi: " Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0229/1191] cgroup/cpuset: Fix misplaced DL migration reset Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0230/1191] PCI: hv: Set irq_retrigger callback for the Hyper-V PCI MSI irqchip Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0231/1191] x86/tdx: Fix zero-extension for 32-bit port I/O Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0232/1191] arch_numa: avoid false positive fortify warning in setup_node_to_cpumask_map() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0233/1191] dm-stats: fix a crash if allocation of per-cpu data fails Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0234/1191] dm-switch: use WRITE_ONCE() in switch_region_table_write() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0235/1191] i3c: master: Fix info leak and UAF in device unregister path Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0236/1191] i3c: master: svc: bound IBI payload to the requested max_payload_len Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0237/1191] wifi: brcmfmac: Fix memory leak in brcmf_sdio_read_control() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0238/1191] wifi: mwifiex: Detach sync cmd buffer on interrupted wait Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0239/1191] wifi: rtl818x: initialize eeprom_93cx6 struct to zero Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0240/1191] wifi: rtw88: Fix potential memory leak in rtw_txq_push_skb() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0241/1191] wifi: mt76: mt7615: avoid waiting for mac work under the mt76 mutex Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0242/1191] vsock/virtio: flush works in dependency order Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0243/1191] w1: ds28e17: reject an oversize length on an I2C block read Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0244/1191] xarray: honor XA_FLAGS_ACCOUNT in xas_split_alloc() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0245/1191] tpm: tpm_i2c_nuvoton: disable IRQ on wait timeout Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0246/1191] signal: avoid shared siginfo namespace rewrites Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0247/1191] smack: fix cred UAF in smack_file_send_sigiotask() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0248/1191] taskstats: fix cpumask parsing cutting off the last character Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0249/1191] timer: Keep debugobjects state consistent in migrate_timer_list() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0250/1191] udf: Fix i_lenExtents truncation on 32-bit kernels Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0251/1191] platform/chrome: sensorhub: Fix dropped timestamp events and log spam Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0252/1191] net: skbuff: dont skb_tx_error() the source skb in skb_zerocopy() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0253/1191] net: openvswitch: fix kernel-doc warnings in internal headers Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0254/1191] openvswitch: Fix CT limit teardown use-after-free Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0255/1191] landlock: Require LANDLOCK_ACCESS_FS_MAKE_REG for whiteout creation Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0256/1191] netfilter: nf_tables: make nft_object rhltable per table Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0257/1191] fsnotify: Fix stale object mask after concurrent mark updates Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0258/1191] tcp: fix potential race in tcp_v6_syn_recv_sock() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0259/1191] entry: Fix seccomp bypass after ptrace with TSYNC Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0260/1191] selinux: avoid implicit conversions in services code Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0261/1191] selinux: reject an unclaimed class value in security_get_classes() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0262/1191] ALSA: seq: Fix port lock leak in deliver_to_subscribers() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0263/1191] net: ntb_netdev: Fix TX busy and drop handling Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0264/1191] vxlan: use pskb_network_may_pull() for transmit path header pulls Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0265/1191] tracing/mmiotrace: Remove reference to unused per CPU data pointer Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0266/1191] tracing/mmiotrace: Add NULL check for mmio_trace_array in logging functions Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0267/1191] mm/huge_memory: use folios memcg inside __folio_split() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0268/1191] scsi: core: Fill in DMA padding bytes in scsi_alloc_sgtables() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0269/1191] usb: image: mdc800: change kmalloc() to kzalloc() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0270/1191] ALSA: usb-audio: fix OOB write in snd_usbmidi_us122l_output() Greg Kroah-Hartman
2026-09-12  6:49 ` [PATCH 6.1 0271/1191] clk: qcom: gcc-mdm9607: Increase delay for USB PHY reset Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0272/1191] media: usbtv: keep device alive while ALSA card exists Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0273/1191] usb-storage: ene_ub6250: fix race between scan work and probe Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0274/1191] usb: f_mass_storage: Bump local buffer size in fsg_common_create_luns() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0275/1191] usb: typec: ucsi: displayport: Fix OOB altmode array index Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0276/1191] USB: gadget: fix NULL pointer dereference in gadget_dev_ioctl() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0277/1191] usb: gadget: fix null pointer dereference in usb_put_function_instance() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0278/1191] staging: rtl8723bs: fix OOB read / stack overflow in rtw_get_wps_attr() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0279/1191] staging: rtl8723bs: fix OOB read in rtw_action_frame_parse() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0280/1191] thermal/drivers/imx: Disable clock on runtime resume failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0281/1191] thermal/drivers/qoriq: Disable clock on " Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0282/1191] scsi: target: iscsi: Reserve a terminator byte for the login payload Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0283/1191] scsi: pm8001: Use rollback index when freeing MSI-X vectors Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0284/1191] mm/damon/sysfs: kobject_del() region and target (error) dirs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0285/1191] mm/damon/sysfs: kobject_del() target (normal), context and kdamond dirs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0286/1191] futex: Prevent rcuwait use-after-free during requeue PI Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0287/1191] HID: rmi: fix OOB access with undersized RMI reports Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0288/1191] HID: wacom: validate report length in wacom_intuos_pro2_bt_irq Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0289/1191] dm: fix race when loading and unloading a table Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0290/1191] dm: fix resume-vs-remove race Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0291/1191] dmaengine: dw-edma: Complete descriptors before pausing Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0292/1191] dmaengine: dw-edma: Initialize IRQ data before requesting IRQs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0293/1191] cpuidle: dt_idle_genpd: kfree() the original name allocation Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0294/1191] block: flag zoned disks with GENHD_FL_NO_PART Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0295/1191] ata: ahci: work around lost interrupts on Marvell 88SE61xx Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0296/1191] ima: Check for ERR_PTR from dentry_path() in validate_hash_algo() Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0297/1191] kprobes: Protect kprobe_blacklist with RCU Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0298/1191] Input: aiptek - validate raw macro indices before updating state Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0299/1191] rtc: rzn1: Fix weekday underflow when alarm crosses month boundary Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0300/1191] rtc: rzn1: Disable alarm interrupt before reprogramming alarm registers Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0301/1191] perf/x86/intel: Fix kernel address leakages in LBR stack Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0302/1191] perf hisi-ptt: Fix PTT trace TLP header parsing Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0303/1191] i2c: core: fix debugfs UAF on adapter removal Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0304/1191] i2c: mux: Fix channel node leak on adapter add failure Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0305/1191] ALSA: harmony: initialize locks before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0306/1191] ALSA: pcm: Fix race between non-atomic ops and trigger-start Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0307/1191] nvme-tcp: check the data direction of a C2HData PDU Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0308/1191] nvmet-tcp: fix out-of-bounds write when receiving an over-long PDU Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0309/1191] nvmet-tcp: reject unsolicited H2CData PDUs Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0310/1191] Revert "irqchip/mbigen: Fix mbigen node address layout" Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0311/1191] mm/hugetlb: fix missing migratable flag on same-node hugetlb migration Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0312/1191] nvdimm/btt: reject an arena whose nfree is below the lane count Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0313/1191] parisc: eisa: Fix infinite loop when parsing invalid IRQ value Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0314/1191] parisc: Fix alignment of asm statements in head.S Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0315/1191] powerpc/pseries: Handle and log pseries-wdt registration failures Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0316/1191] powerpc/pseries: Move H_WATCHDOG definitions to a common header Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0317/1191] powerpc/crash: stop watchdogs before booting kdump kernel Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0318/1191] s390/vfio-ap: Fix stale do_remove flag across iterations in vfio_ap_mdev_cfg_remove Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0319/1191] s390/vfio-ap: Fix control domain removal " Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0320/1191] s390/vfio-ap: Fix hot-unplug skipped when last AP adapter or domain removed Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0321/1191] s390/vfio-ap: Fix required lock not held during update of ap_matrix_mdev object Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0322/1191] mtd: afs: validate v2 image info bounds Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0323/1191] mtd: mtdoops: free page bitmap when the backing MTD is removed Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0324/1191] mtd: rawnand: validate ONFI extended parameter page sections Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0325/1191] batman-adv: fix stale receive device on merged fragments Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0326/1191] batman-adv: dat: avoid unaligned fault in IP extraction Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0327/1191] batman-adv: bla: fix freeing of claims on meshif deletion Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0328/1191] batman-adv: bla: prevent CRC corruptions after claim flush Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0329/1191] clk: qcom: gcc-msm8916: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0330/1191] clk: qcom: gcc-msm8939: " Greg Kroah-Hartman
2026-09-12  6:50 ` [PATCH 6.1 0331/1191] clk: qcom: gcc-mdm9607: Drop incorrect apss_tcu_clk_src Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0332/1191] clk: qcom: gcc-mdm9607: Drop incorrect system_noc_bfdcd_clk_src Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0333/1191] clk: qcom: gcc-mdm9607: Fix enable_reg for gcc_blsp1_sleep_clk Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0334/1191] clk: qcom: gcc-mdm9607: Fix halt_reg for gcc_apss_axi_clk Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0335/1191] clk: qcom: gcc-mdm9607: Drop incorrect BIMC PLL and related clocks Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0336/1191] i2c: mux: demux-pinctrl: fix OF node leak on kstrdup failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0337/1191] ASoC: cs35l33: drain threaded IRQ before runtime suspend Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0338/1191] ASoC: cs35l34: " Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0339/1191] ASoC: fsl: mpc5200-i2s: Free DMA resources on probe failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0340/1191] AsoC: intel: sst: fix PCI device reference leak " Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0341/1191] ASoC: samsung: aries_audio_probe: double of_node_put due to direct assignment without of_node_get Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0342/1191] iio: chemical: atlas-sensor: fix PM reference leak in buffer postenable Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0343/1191] iio: chemical: sgp30: Handle IAQ thread creation failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0344/1191] iio: dac: m62332: Fix regulator reference count imbalance Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0345/1191] iio: gyro: mpu3050: fix sign of raw angular velocity readings Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0346/1191] iio: light: cm32181: return zero after writing calibscale Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0347/1191] iio: light: gp2ap002: Disable regulators on resume failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0348/1191] iio: srf04: fix pm_runtime handling on probe error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0349/1191] iio: temperature: hid-sensor-temperature: switch to non-devm iio_device_register() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0350/1191] KVM: nVMX: Always flush vpid02 on first use Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0351/1191] KVM: nVMX: Service local TLB flushes on failed nested VM-Enter Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0352/1191] KVM: x86: hyper-v: Clamp stimer deadline to avoid livelock Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0353/1191] KVM: s390: Fix length check __import_wp_info() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0354/1191] KVM: s390: Fix memory leak in guest debug handling Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0355/1191] KVM: s390: Fix old_data leak in guest debug error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0356/1191] KVM: s390: Free guest debug data on vcpu destroy Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0357/1191] KVM: s390: Take srcu when importing watchpoint data Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0358/1191] KVM: s390: Zero initialize irq in reinject_machine_check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0359/1191] KVM: s390: pv: Fix rc/rrc offset for PVM_DUMP Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0360/1191] KVM: s390: Restore sigset on error path Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0361/1191] media: airspy: use vb2_video_unregister_device() on disconnect to fix NULL deref Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0362/1191] media: cec: meson: ao-cec-g12a: name the CEC core regmap to avoid debugfs clash Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0363/1191] media: cec: Serialize exclusive follower delivery Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0364/1191] media: cedrus: fix memory leak in cedrus_init_ctrls() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0365/1191] media: cobalt: Avoid freeing ALSA private data twice Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0366/1191] media: cx231xx: reject geometry changes while the VBI queue is busy Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0367/1191] media: cx23885: cancel NetUP CI work before teardown Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0368/1191] media: em28xx: defer audio-only extension registration Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0369/1191] media: em28xx: fix use-after-free of dev_next->devlist on disconnect Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0370/1191] media: go7007: defer the ALSA v4l2 put until card release Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0371/1191] media: i2c: ov02a10: fix endpoint parsing use-after-free Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0372/1191] media: i2c: ov7740: fix use-after-destroy in remove Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0373/1191] media: meson: vdec: fix NULL pointer deref in vdec_try_fmt_common Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0374/1191] media: rc: sunxi-cir: Unregister rc device on probe failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0375/1191] media: rtl2832_sdr: use vb2_video_unregister_device() on remove to fix DMA leak Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0376/1191] media: rtl2832_sdr: release URBs and stream buffers on start_streaming() failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0377/1191] media: s2255: bound JPEG frame size before copying into the buffer Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0378/1191] media: s2255: check firmware size before reading trailing marker Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0379/1191] media: saa7164: fix cleanup on resource allocation failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0380/1191] media: tda18250: fix possible integer overflow Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0381/1191] media: v4l2-ctrls: Allow unknown HDR10 white point and luminance Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0382/1191] media: v4l2-fwnode: Fix fwnode leak in v4l2_fwnode_parse_link Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0383/1191] media: venus: fix payload size returned by parse_caps() and parse_alloc_mode() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0384/1191] media: venus: fix payload size calculation in parse_raw_formats() Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0385/1191] media: video-i2c: fix kthread error pointer left in kthread_vid_cap on failure Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0386/1191] media: vimc: fix pixel format lookup in enum_framesizes Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0387/1191] media: zoran: Avoid freeing a registered video_device twice Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0388/1191] scsi: qla2xxx: Zero SFP DMA buffer in FRU/I2C bsg handlers Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0389/1191] scsi: qla2xxx: Bound i2c->length in I2C " Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0390/1191] scsi: qla2xxx: edif: Fix NULL pointer deref in RX SA delete check Greg Kroah-Hartman
2026-09-12  6:51 ` [PATCH 6.1 0391/1191] scsi: qla2xxx: Fix Name Server logout detection on FWI2 adapters Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0392/1191] scsi: qla2xxx: Hold vport reference in qla24xx_report_id_acquisition() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0393/1191] scsi: qla2xxx: Check entry_status in qla24xx_modify_vp_config() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0394/1191] scsi: qla2xxx: Bound image count in qla2x00_update_fru_versions() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0395/1191] scsi: qla2xxx: Clamp MSI-X derived queue counts to avoid truncation Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0396/1191] scsi: qla2xxx: Serialize flash version read in reset handler Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0397/1191] scsi: qla2xxx: Fix cs84xx use-after-free on host teardown Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0398/1191] scsi: qla2xxx: Fix FCE trace use-after-free during firmware dump Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0399/1191] scsi: qla2xxx: Zero mailbox struct in qla2x00_get_firmware_state() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0400/1191] scsi: qla2xxx: Fix FCE trace enable parsing in debugfs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0401/1191] scsi: qla2xxx: Dont query firmware state while chip is down Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0402/1191] scsi: qla2xxx: Reject non-SCSI SRB on status IOCB fast path Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0403/1191] scsi: qla2xxx: Fix response queue over-consumption in __qla_consume_iocb() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0404/1191] scsi: qla2xxx: Avoid double completion in async IOCB timeout Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0405/1191] scsi: qla2xxx: Bound rsp_info_len to avoid OOB sense-data read Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0406/1191] scsi: qla2xxx: Avoid req_q_map double-read in qla2x00_error_entry() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0407/1191] scsi: qla2xxx: Drop vport reference under lock in report ID acquisition Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0408/1191] scsi: qla2xxx: Use coherent DMA buffer for D_Port diagnostics Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0409/1191] scsi: qla2xxx: Zero-init bsg stack buffers to avoid info leak Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0410/1191] f2fs: return symlink writeback errors Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0411/1191] f2fs: reject overlapping move range after len expansion Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0412/1191] f2fs: return writeback error from collapse range Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0413/1191] f2fs: fix i_size when pinned fallocate partially fails Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0414/1191] drm/bridge: dw-hdmi: fix i2c adapter leak on probe failure Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0415/1191] drm/panel-edp: " Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0416/1191] drm: fix race between partial drm_dev_register() failure and ioctl Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0417/1191] drm/i915: Guard against NULL driver_data in i915_pci_probe() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0418/1191] drm/sun4i: fix refcount leak in sun4i_backend_init_sat() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0419/1191] drm/hibmc: Fix list of formats on the primary plane Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0420/1191] drm/hibmc: Use drm_atomic_helper_check_plane_state() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0421/1191] drm/amd/display: avoid divide-by-zero in __is_lut_linear() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0422/1191] drm/amdgpu/vcn: fix integer overflow in dec_msg buffer count check Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0423/1191] drm/gud: NUL-terminate TV mode names read from the device Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0424/1191] drm/gud: validate TV mode names before creating enum property Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0425/1191] drm/msm/dsi: round 6G byte clock rate to the PLL-achievable value Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0426/1191] drm: Fix drm_crtc_commit leak if signaled when PAGE_FLIP_EVENT is used Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0427/1191] drm/amdgpu: check thunderbolt before switcheroo registration Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0428/1191] drm/amdgpu: fix autosuspend cleanup during removal Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0429/1191] drm/amdgpu: use AMDGPU_GPU_PAGE_SHIFT instead of PAGE_SHIFT Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0430/1191] drm/nouveau: Use write-combined maps for coherent Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0431/1191] xhci: fix lost bounce buffers on TDs spanning several ring segments Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0432/1191] tcp: clear sock_ops cb flags before force-closing a child socket Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0433/1191] net/mlx5e: xsk: Fix unlocked writing to ICOSQ Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0434/1191] nvmet-auth: Synchronize timeout work during SQ teardown Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0435/1191] mm/damon/core-kunit: check region count before testing in split_at() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0436/1191] mm/damon/vaddr: drop last same folio access check optimization Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0437/1191] mm/damon/paddr: drop last same folio access check reuse optimization Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0438/1191] mm/damon/vaddr-kunit: check region count in three_regions test Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0439/1191] mm/damon/sysfs-schemes: kobject_del() scheme dirs Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0440/1191] mm/damon/tests/core-kunit: catch test failure in test_merge_regions_of() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0441/1191] bpf: Guard stack limits against 32bit overflow Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0442/1191] ax25: fix use-after-free bugs caused by ax25_ds_del_timer Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0443/1191] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0444/1191] net: hns3: fix kernel crash when 1588 is sent on HIP08 devices Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0445/1191] wifi: ath11k: fix RCU stall while reaping monitor destination ring Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0446/1191] wifi: ath11k: Clear affinity hint before calling ath11k_pcic_free_irq() in error path Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0447/1191] net: fix NULL pointer dereference in l3mdev_l3_rcv Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0448/1191] net/niu: Niu requires MSIX ENTRY_DATA fields touch before entry reads Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0449/1191] ext4: move ext4_percpu_param_init() before ext4_mb_init() Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0450/1191] netfilter: nft_counter: serialize reset with spinlock Greg Kroah-Hartman
2026-09-12  6:52 ` [PATCH 6.1 0451/1191] net: usb: cdc_ncm: add ndpoffset to NDP16 nframes bounds check Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0452/1191] net: usb: cdc_ncm: add ndpoffset to NDP32 " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0453/1191] bridge: mrp: reject zero test interval to avoid OOM panic Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0454/1191] net: af_key: zero aligned sockaddr tail in PF_KEY exports Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0455/1191] bpf: Fix same-register dst/src OOB read and pointer leak in sock_ops Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0456/1191] net: hns3: dont auto enable misc vector Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0457/1191] ksmbd: fix overflow in dacloffset bounds check Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0458/1191] ksmbd: fix FSCTL permission bypass by adding a permission check for FSCTL_SET_SPARSE Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0459/1191] batman-adv: dat: atomically update mac addresses Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0460/1191] batman-adv: bla: avoid CRC corruption due to parallel claim add Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0461/1191] perf sched: Fix register_pid() overflow, strcpy, and BUG_ON Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0462/1191] clk: meson: align gxbb_32k_clk_sel number of parents with actual count Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0463/1191] mm/damon/core: skip aging from repeated aggressive merging Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0464/1191] drm: lcdif: Wait for vblank before disabling DMA Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0465/1191] drm/rockchip: vop2: Recognise 10-bit YUV422 as YUV format Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0466/1191] drm/bridge: cdns-mhdp8546: Return an error pointer on allocation failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0467/1191] smack: fix incorrect task context in smack_msg_queue_msgrcv Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0468/1191] smack: simplify write handlers of sysfs entries Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0469/1191] smack: deduplicate smackfs/{direct,mapped} file_operations Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0470/1191] smack: restrict smackfs/{direct,mapped} values to 0-255 Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0471/1191] usb: typec: Add partner PD object wrapper Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0472/1191] platform/chrome: cros_ec_typec: Set parent of partner PD object Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0473/1191] platform/chrome: cros_ec_typec: Reject out-of-bounds PD cap count Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0474/1191] HID: core: quiesce input in hid_hw_stop() to prevent use-after-free Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0475/1191] HID: nintendo: Fix imu_timestamp_us double increment per report Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0476/1191] HID: roccat: bound device-supplied profile index Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0477/1191] soc: samsung: exynos-pmu: fix of_node refcount leak in exynos_get_pmu_regmap() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0478/1191] media: cec-pin: Fix event FIFO ordering Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0479/1191] clk: versaclock7: Fix APLL clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0480/1191] clk: moxart: remove unused variables, fix refcount leak Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0481/1191] ASoC: rt700-sdw: always drain jack work on remove Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0482/1191] ASoC: fsl_audmix: rework runtime PM handling in probe Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0483/1191] clk: hisilicon: reset: Use devm_kzalloc to initialize hisi_reset_controller Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0484/1191] ARM: imx: fix device_node refcount leak in imx_src_init() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0485/1191] ARM: imx: fix device_node refcount leaks in imx7_src_init() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0486/1191] clk: imx: scu: drop redundant init.ops variable assignment Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0487/1191] drm/lima: call drm_mm_init() with a valid allocation range Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0488/1191] sched/fair: Fix overflow in update_tg_cfs_runnable() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0489/1191] perf/x86/intel/uncore: Keep PCI PMUs working when MMIO/MSR setup fails Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0490/1191] pinctrl: bcm2835: Dont remove an unregistered GPIO chip Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0491/1191] media: keymaps: Remove obsolete RC_MAP_RC5_TV keymap define Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0492/1191] media: keymaps: Remove obsolete RC_MAP_HAUPPAUGE_NEW " Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0493/1191] perf tests stat_bpf_counters: Fix usage of == to address shellcheck warning Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0494/1191] perf test: raise limit to 20 percent for perf_stat_--bpf-counters_test Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0495/1191] perf test bpf-counters: Add test for BPF event modifier Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0496/1191] perf test stat_bpf_counter.sh: Stabilize the test results Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0497/1191] perf test: Use sqrtloop workload to test bperf event Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0498/1191] perf test: Fix perf stat --bpf-counters on hybrid machines Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0499/1191] perf tests: Fix flakiness in BPF counters test on hybrid systems Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0500/1191] drm/amdgpu/pm/powerplay: bounds-check voltage index in SMU7 lookup Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0501/1191] drm/amdgpu/pm/powerplay: bounds-check voltage index in Vega10 lookup Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0502/1191] tools/bpf/bpftool: Reset vmlinux BTF after map commands Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0503/1191] bpftool: Define _GNU_SOURCE only once Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0504/1191] bpftool: clean-up usage of libbpf_get_error() Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0505/1191] tools/bpf/bpftool: Reset vmlinux BTF after struct_ops commands Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0506/1191] dmaengine: mediatek: mtk-uart-apdma: Return -ENOMEM on memory allocation failure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0507/1191] dmaengine: xilinx_dma: Fix channel idle state management in AXIDMA and MCDMA interrupt handlers Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0508/1191] dmaengine: hisilicon: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0509/1191] soundwire: qcom: Fix port exhaustion check in stream_alloc_ports Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0510/1191] iio: orientation: hid-sensor-rotation: Avoid race between callback setup and device exposure Greg Kroah-Hartman
2026-09-12  6:53 ` [PATCH 6.1 0511/1191] csky: Fix a4/a5 restoration in syscall trace path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0512/1191] selftests/rseq: Replace glibc-specific __GNUC_PREREQ with portable check Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0513/1191] platform/chrome: sensorhub: Fix memory overread in ring handler Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0514/1191] wifi: rtw89: fix HE extended capability length check Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0515/1191] perf/x86/amd/uncore: Refactor uncore management Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0516/1191] perf/x86/amd/uncore: Add group validation Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0517/1191] crypto: qat - clear AES key schedule from stack Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0518/1191] crypto: atmel-ecc - replace min_t with min Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0519/1191] crypto: atmel-ecc - clean up and improve ECDH comments Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0520/1191] crypto: atmel-ecc - reject hardware ECDH without a public key Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0521/1191] crypto: atmel-sha204a - fix heap info leak on I2C transfer failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0522/1191] crypto: sa2ul - stop probe if context pool creation fails Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0523/1191] nvme-apple: Use acquire/release for queue enabled state Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0524/1191] nvmet-rdma: avoid circular locking dependency on install_queue() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0525/1191] nvmet-rdma: use sbitmap to replace rsp free list Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0526/1191] nvmet-rdma: factor out response resource cleanup Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0527/1191] nvmet-rdma: fix response resource leak on queue teardown Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0528/1191] bus: ti-sysc: Fix /chosen node reference leak Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0529/1191] PM: sleep: Fix off-by-one in wakelocks number limit check Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0530/1191] arm64: dts: qcom: sm7225-fairphone-fp4: Fix address in fb node name Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0531/1191] bus: qcom-ebi2: Simplify with scoped for each OF child loop Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0532/1191] bus: qcom-ebi2: Fix clock leak on probe failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0533/1191] wifi: mac80211_hwsim: avoid NULL skb in stop queue drain Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0534/1191] staging: greybus: audio: correct sscanf() return value check Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0535/1191] staging: sm750fb: gate dualview dataflow using g_dualview Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0536/1191] greybus: audio: bound the topology section sizes against the fetched size Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0537/1191] staging: fbtft: Use sysfs_emit_at() to print to sysfs file Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0538/1191] staging: octeon: add missing tasklet_kill in cvm_oct_tx_shutdown Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0539/1191] staging: octeon: fix free_irq dev_id mismatch in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0540/1191] staging: octeon: ethernet-mem: replace pr_warn with dev_warn in free functions Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0541/1191] staging: octeon: replace pr_warn with dev_warn in fill and rx paths Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0542/1191] staging: octeon: add missing napi_disable in cvm_oct_rx_shutdown Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0543/1191] staging: rtl8723bs: fix mismatched free of HalData in rtw_sdio_if1_init() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0544/1191] ALSA: via82xx: Remove unreachable branch in snd_via686_pcm_pointer() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0545/1191] selftests/bpf: Fix memory leak in msg_alloc_iov error path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0546/1191] selftests/bpf: Fix memory leak in msg_alloc_iov Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0547/1191] irqchip/gic-v3-its: Fix memleak in its_probe_one() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0548/1191] selftests: timers: leap-a-day: Fix -w option and update usage comment Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0549/1191] clocksource: Unregister subsystem on device registration failure Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0550/1191] y2038: uapi: Use 64-bit __kernel_old_timespec::tv_nsec on x32 Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0551/1191] timekeeping: Account for monotonicity adjustment in ntp_error Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0552/1191] clk: qcom: gdsc: propagate gdsc_check_status() errors from gdsc_poll_status Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0553/1191] clk: qcom: gdsc: propagate gdsc_enable() failure for ALWAYS_ON domains Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0554/1191] clk: qcom: gdsc: tear down per-domain genpds in gdsc_unregister() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0555/1191] thermal/drivers/rcar_gen3_thermal: Do not call set_trips() when resuming Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0556/1191] thermal/drivers/rcar_gen3_thermal: Create device local ops struct Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0557/1191] thermal/drivers/rcar_gen3_thermal: Fix device initialization Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0558/1191] thermal/hwmon: Do not set no_hwmon before calling thermal_add_hwmon_sysfs() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0559/1191] thermal/drivers/rcar: Fix error checking in probe() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0560/1191] usb: gadget: r8a66597: avoid double free of ep0_req in probe error path Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0561/1191] udf: Mark LVID buffer as uptodate before marking it dirty Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0562/1191] bpf: Fix vmlinux BTF prep race in bpf_get_btf_vmlinux Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0563/1191] efi: fix stale reference to efi_recover_from_page_fault() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0564/1191] bpf: Fix use-after-free on mm_struct in bpf_find_vma() Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0565/1191] bus: mhi: ep: Fix device refcount leak in the error path of MHI device creation Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0566/1191] iommu/mediatek-v1: Fix off-by-one in MT2701_LARB_NR_MAX Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0567/1191] iommu/msm: Return -ENOMEM on memory allocation failure in probe Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0568/1191] iommu/amd: Prevent SB IOAPIC from overriding IVRS validation errors Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0569/1191] iommu/amd: Add support for Hygon family 18h model 4h IOAPIC Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0570/1191] iommu/amd: Fix false positive in SB IOAPIC IVRS validation Greg Kroah-Hartman
2026-09-12  6:54 ` [PATCH 6.1 0571/1191] leds: pca9532: Fix inverted GPIO output polarity Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0572/1191] platform/x86: dell-privacy: Fix race condition Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0573/1191] platform/x86: dell-wmi-base: Fix resource leak on module load failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0574/1191] hwspinlock: propagate errno when registering single lock Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0575/1191] usb: gadget: configfs: fix out-of-bounds read of qw_sign Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0576/1191] usb: gadget: aspeed_udc: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0577/1191] usb: gadget: aspeed_udc: check endpoint DMA allocation Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0578/1191] Bluetooth: Add support for hci devcoredump Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0579/1191] Bluetooth: btusb: Add btusb devcoredump support Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0580/1191] USB: core: Use device_driver directly in struct usb_driver and usb_device_driver Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0581/1191] USB: make single lock for all usb dynamic id lists Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0582/1191] USB: make to_usb_driver() use container_of_const() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0583/1191] usb: fix UAF when probe runs concurrent to dyn ID removal Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0584/1191] platform/mellanox: mlxbf-pmc: Check ACPI_COMPANION() against NULL Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0585/1191] platform/surface: acpi-notify: Check ACPI companion before use Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0586/1191] usb: mtu3: allow system suspend during active gadget connection Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0587/1191] usb: renesas_usbhs: Fix power-off ordering on unbind Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0588/1191] drm/panel: samsung-s6d16d0: Power off on prepare failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0589/1191] perf metricgroups: Use zfree() to reduce chances of use after free Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0590/1191] perf metricgroup: Fix metric expression copy leaks Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0591/1191] bus: qcom-ebi2: use managed resources for clocks and children Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0592/1191] iio: accel: dmard09: Implement IIO_CHAN_INFO_SCALE Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0593/1191] RDMA/core: Wait for RCU callbacks before unloading ib_core Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0594/1191] RDMA/mlx: Calling qp event handler in workqueue context Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0595/1191] RDMA/mlx5: Drain RCU callbacks during module teardown Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0596/1191] RDMA/ipoib: " Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0597/1191] hwrng: ks-sa - access private data via struct hwrng Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0598/1191] hwrng: ks-sa - Fix runtime PM cleanup on registration failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0599/1191] xfrm6: fix out-of-bounds write in xfrm6_input_addr() when secpath is full Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0600/1191] ALSA: hpi: Check transport errors during HPI6000 adapter initialization Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0601/1191] pmdomain: bcm: bcm2835: handle genpd provider registration errors Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0602/1191] misc: rtsx_usb: avoid USB I/O in runtime autosuspend Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0603/1191] RDMA/hfi1: Preserve unit 0 on allocation failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0604/1191] RDMA/hfi1: Free RX data on late probe failure Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0605/1191] RDMA/hfi1: Remove redundant PCI device ID validation Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0606/1191] RDMA/hfi1: Create workqueues before device initialization Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0607/1191] RDMA/hfi1: Stop flushing the global IB workqueue Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0608/1191] RDMA/hfi1: Initialize debugfs after probe completes Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0609/1191] ASoC: apple: mca: increase SERDES reset delay Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0610/1191] isofs: fix out-of-bounds page array access on empty zisofs block Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0611/1191] rpmsg: glink: remove duplicate code for rpmsg device remove Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0612/1191] rpmsg: glink: fix deadlock in endpoint destroy during driver detach Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0613/1191] hfsplus: validate thread record before delete key rebuild Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0614/1191] wifi: ath11k: cap out-of-range rx MCS instead of leaving bogus rate Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0615/1191] libnvdimm/labels: Bound the on-media label size before the shift Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0616/1191] dax: read holder_ops once in dax_holder_notify_failure() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0617/1191] cpufreq: spear: Fix an IS_ERR() vs NULL bug in spear1340_set_cpu_rate() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0618/1191] PCI: xgene: Drop XGENE_PCIE_IP_VER_UNKN Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0619/1191] PCI: xgene: Drop unnecessary OF node reference Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0620/1191] cpufreq: intel_pstate: Fix setting minimum P-state at init time Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0621/1191] cpufreq: schedutil: Fix self-contradictory comment in sugov_iowait_apply() Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0622/1191] remoteproc: qcom: Fix glink->node reference leak in qcom_add_glink_subdev Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0623/1191] drm/bridge: tc358767: clamp the reported AUX read size to the request Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0624/1191] arm64: dts: qcom: msm8996-xiaomi-gemini: Fix up ti,drv2604 enable GPIO Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0625/1191] wifi: iwlwifi: mvm: fix off-by-one in TXF key sanitiser Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0626/1191] wifi: iwlmei: dont send SAP messages if AMT is disabled Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0627/1191] wifi: iwlwifi: mei: add support for SAP version 4 Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0628/1191] wifi: iwlwifi: mei: check SAP message length before reading it Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0629/1191] wifi: iwlwifi: mei: pass correct argument to function Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0630/1191] gpu: host1x: Fix offset calculation in trace_write_gather Greg Kroah-Hartman
2026-09-12  6:55 ` [PATCH 6.1 0631/1191] gpu: host1x: Avoid stack over-read in debug output helpers Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0632/1191] bpf: Sync tail_call_reachable with callee state on entry Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0633/1191] crypto: sl3516 - drop invalid sg_dma_len checks before DMA mapping Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0634/1191] ACPI: processor: idle: Expand _LPI package sanity checks Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0635/1191] usb: gadget: f_uac1_legacy: remove broken string configfs attributes Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0636/1191] tty: hvc: restrict HVC_DCC to ARMv6+ and ARM64 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0637/1191] UDF symlink pathComponent header OOB read Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0638/1191] uio: Fix stale info pointer in failed registration path Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0639/1191] accessibility: speakup: Fix incorrect string length computation in report_char_chartab_status() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0640/1191] speakup: keyhelp: guard letter_offsets possible out-of-range indexing Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0641/1191] misc: bcm-vk: Use acquire/release for msgq_inited Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0642/1191] misc: rtsx: add missing write register handling Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0643/1191] misc: ad525x_dpot: use driver core groups for sysfs files Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0644/1191] ppdev: prevent overflow when setting port timeout Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0645/1191] s390/con3215: Fix white space errors Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0646/1191] s390/tty3270: add tty3270_create_view() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0647/1191] s390/3270: unify con3270 + tty3270 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0648/1191] s390/con3270: fix formatting issues Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0649/1191] tty: hvsi: remove an extra variable from hvsi_write() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0650/1191] tty: propagate u8 data to tty_operations::write() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0651/1191] tty: ipoctal: convert to u8 and size_t Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0652/1191] ipack: ipoctal: fix UAF, null-ptr-deref, and use-after-free in cleanup on remove Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0653/1191] char: xilinx_hwicap: unregister class on init errors Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0654/1191] vfio/pci: clear vdev->msi_perm after freeing it on init failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0655/1191] soc: ti: knav_qmss_queue: Implement resource cleanup in remove() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0656/1191] soc: ti: knav_qmss: Remove debugfs file on teardown Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0657/1191] mtd: mtdswap: Avoid freeing registered blktrans device twice Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0658/1191] mtd: part: reject MTDPART_OFS_RETAIN in mtd_add_partition() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0659/1191] perf ui hists: Fix uninitialized stack memory free on pstack allocation failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0660/1191] software node: Fix software_node_get_reference_args() with index -1 Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0661/1191] driver core: soc: remove layering violation for the soc_bus Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0662/1191] driver core: soc: Unregister bus on early device registration failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0663/1191] dmaengine: dw-edma: Serialize abort state updates Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0664/1191] dmaengine: dw-edma: Serialize channel state checks Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0665/1191] dmaengine: dw-edma: Clear stale requests on termination Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0666/1191] ASoC: meson: Keep link pointers valid on realloc failure Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0667/1191] arm64: dts: amlogic: meson-axg-s400: enable mipi_pcie_analog_dphy for PCIe Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0668/1191] RDMA/hfi1: Propagate sdma_txinit_ahg() errors Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0669/1191] RDMA/rxe: Validate num_sge/cur_sge before indexing wqe->dma.sge[] Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0670/1191] RDMA/srpt: Fix srpt_alloc_rw_ctxs() unwind counters Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0671/1191] kcsan: avoid unintended access checking in NMIs Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0672/1191] irqchip/gic-v3-its: Prevent leak in its_vpe_irq_domain_alloc() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0673/1191] RDMA/nldev: validate dynamic counter attribute length Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0674/1191] ACPI: EC: Avoid _REG disconnect on GPIO IRQ defer Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0675/1191] ACPI: processor: validate MADT IOAPIC entry bounds Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0676/1191] ACPI: PCI: Clear driver_data on all paths that free the acpi_pci_root Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0677/1191] ext4: fix out-of-bounds read in ext4_read_inline_dir() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0678/1191] ext4: skip extra isize expansion during mount to prevent deadlock Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0679/1191] libbpf: Search /lib64 and /lib in resolve_full_path() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0680/1191] RDMA/srpt: Pass the mapped task attribute to target_init_cmd() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0681/1191] RDMA/erdma: Fix CEQ tasklet use-after-free on removal Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0682/1191] RDMA/nldev: Add NULL check to silence false warnings Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0683/1191] RDMA/core: Add support to set privileged QKEY parameter Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0684/1191] RDMA/core: Add an option to display driver-specific QPs in the rdmatool Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0685/1191] RDMA/restrack: Fix typos in the comments Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0686/1191] RDMA/nldev: Fix locking when accessing mr->pd Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0687/1191] RDMA/core: Add rdma_restrack_begin/abort/commit_del() operations Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0688/1191] RDMA/core: Fix use after free in ib_query_qp() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0689/1191] RDMA/core: Fix potential use after free in ib_destroy_cq_user() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0690/1191] RDMA/core: Fix potential use after free in ib_destroy_srq_user() Greg Kroah-Hartman
2026-09-12  6:56 ` [PATCH 6.1 0691/1191] RDMA/core: Fix potential use after free in counter_release() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0692/1191] RDMA/core: Add driver APIs pre_destroy_cq() and post_destroy_cq() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0693/1191] RDMA/core: Fix potential use after free in ib_free_cq() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0694/1191] RDMA/core: Fix potential use after free in ib_dealloc_pd_user() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0695/1191] iommu/qcom: Remove sysfs device on probe failure path Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0696/1191] iommu/qcom: Fix inverted fault report check in qcom_iommu_fault() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0697/1191] thermal: intel: int3400: clean up ODVP on probe failures Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0698/1191] ext4: drain in-flight DIO before buffered write fallback Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0699/1191] wifi: ath6kl: avoid buffer overreads in WMI event handlers Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0700/1191] wifi: ath11k: Correctly copy the hint BSSID in WMI scan request Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0701/1191] wifi: ath11k: Avoid buffer overread in ath11k_wmi_tlv_op_rx() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0702/1191] ext4: fix buffer_head leak in ext4_init_orphan_info Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0703/1191] ext4: check dir entry fits before reading the hash trailer in ext4_search_dir() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0704/1191] ARM: dts: allwinner: a10: Fix PMU interrupt Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0705/1191] perf cs-etm: Flush thread stacks after decoder reset Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0706/1191] perf cs-etm: Avoid truncating AUX buffer sizes to int Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0707/1191] leds: pca9532: Fix phantom device registration on missing hardware Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0708/1191] drm/tve200: add OF module alias for autoloading Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0709/1191] netfilter: nf_nat_sip: rewind offset when NAT shrinks the packet Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0710/1191] fs/ntfs3: fix out-of-bounds read of INDEX_ROOT in reparse/objid init Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0711/1191] arm64: dts: rockchip: Fix Gru WLAN sideband interrupt Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0712/1191] ARM: lpc32xx: only run SoC init on LPC32xx hardware Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0713/1191] selftests/bpf: Fix incorrect error checking for pthread_create Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0714/1191] selftests/bpf: Fix memory leak on subtest_states reallocation Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0715/1191] pinctrl: mediatek: Use C99 initializers in PINCTRL_PIN_GROUP() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0716/1191] pinctrl: mediatek: Add EINT support for multiple addresses Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0717/1191] pinctrl: mediatek: Fix the invalid conditions Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0718/1191] pinctrl: mediatek: eint: Fix invalid pointer dereference for v1 platforms Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0719/1191] pinctrl: mediatek: free EINT resources on unbind Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0720/1191] tools/build: Add bpftool-skeletons feature test Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0721/1191] tools/build: Allow versioning of all LLVM tools defined in Makefile.include Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0722/1191] power: supply: sbs-battery: Use a per-device serial number buffer Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0723/1191] scsi: ufs: debugfs: Reserve space for a string terminator Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0724/1191] crypto: keembay - Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0725/1191] crypto: keembay - publish OF module alias for OCS AES/SM4 Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0726/1191] RDMA/mlx5: Fix integer overflow of user QP buffer size Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0727/1191] isofs: release zisofs block pointer buffer head Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0728/1191] w1: ds2482: Fix signedness bug in ds2482_w1_triplet() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0729/1191] remoteproc: core: Drop redundant initialization of ret in rproc_shutdown() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0730/1191] remoteproc: Allow shutdown of crashed processors Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0731/1191] remoteproc: core: Attach rproc asynchronously in rproc_add() path via schedule_work() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0732/1191] remoteproc: Prevent crash handling to race with rproc_del() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0733/1191] staging: rtl8723bs: use kfree_sensitive() for key material Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0734/1191] fs/ntfs3: reject restart table growth beyond U16_MAX entries Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0735/1191] RDMA/efa: Fix PBL chunk length computation Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0736/1191] arm64: dts: allwinner: sun50i-a64-pinephone: Fix mpu6050 mount matrix Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0737/1191] clk: tegra: tegra124-emc: put EMC node on register failure Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0738/1191] clk: palmas: Manage external-control prepare with devm Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0739/1191] clk/x86: pmc_atom: add kasprintf return value check Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0740/1191] nilfs2: fix infinite loop in nilfs_clean_segments() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0741/1191] nilfs2: prevent out-of-bounds read in super root block parsing Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0742/1191] scsi: smartpqi: Fix AIO retry marker cleared by SCSI core between dispatches Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0743/1191] RDMA/mlx5: Fix stack out-of-bounds read in cc_params debugfs Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0744/1191] RDMA/mlx5: Send cong param changes to the resolved port mdev Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0745/1191] RDMA/cxgb4: free STAG index when TPT entry write fails Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0746/1191] IB/isert: reject PDUs declaring more data than was received Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0747/1191] IB/isert: reject login " Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0748/1191] nvme-fc: unmap cmd_iu DMA on rsp_iu mapping failure in init_request Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0749/1191] wifi: rtlwifi: pci: fix error path in rtl_pci_probe() Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0750/1191] bus: mhi: host: Flush the posted write after writing to MHI_SOC_RESET_REQ_OFFSET Greg Kroah-Hartman
2026-09-12  6:57 ` [PATCH 6.1 0751/1191] md/raid5-ppl: fix use-after-free in ppl_do_flush() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0752/1191] selftests/zram: fix kernel_gte() for POSIX sh Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0753/1191] tracing/osnoise: Add osnoise/options file Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0754/1191] tracing/osnoise: Add OSNOISE_WORKLOAD option Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0755/1191] tracing/osnoise: Add PANIC_ON_STOP option Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0756/1191] tracing/osnoise: Add preempt and/or irq disabled options Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0757/1191] rcu: Remove unused function declaration rcu_eqs_special_set() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0758/1191] rcu: Rename rcu_momentary_dyntick_idle() into rcu_momentary_eqs() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0759/1191] rcu: Mark accesses to ->rcu_urgent_qs and ->rcu_need_heavy_qs Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0760/1191] arm64: dts: qcom: sagit: add initial device tree for sagit Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0761/1191] arm64: dts: qcom: msm8998: Dont pull-up I2C pins by default in sleep Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0762/1191] dt-bindings: clock: Add SM8550 GCC clocks Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0763/1191] clk: qcom: Add LUCID_OLE PLL type for SM8550 Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0764/1191] clk: qcom: Add GCC driver " Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0765/1191] clk: qcom: gcc-sm8550: Mark RCGs shared where applicable Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0766/1191] clk: qcom: gcc-sm8550: Dont park the USB RCG at registration time Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0767/1191] clk: qcom: gcc-qcm2290: dont park QUP RCGs upon registration Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0768/1191] arm64: dts: qcom: sc8280xp-crd: Fix the pin index for misc_3p3_reg_en Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0769/1191] arm64: dts: qcom: Add base SM8550 dtsi Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0770/1191] arm64: dts: qcom: sm8550: add QCrypto nodes Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0771/1191] arm64: dts: qcom: sm8350: add PCIe devices Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0772/1191] arm64: dts: qcom: sm8550: Add UFS host controller and phy nodes Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0773/1191] arm64: dts: qcom: sm8550: Add PCIe PHYs and controllers nodes Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0774/1191] arm64: dts: qcom: Remove "iommus" property from PCIe nodes Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0775/1191] arm64: dts: qcom: sdm845: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0776/1191] arm64: dts: qcom: sm8150: " Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0777/1191] arm64: dts: qcom: sm8250: " Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0778/1191] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0779/1191] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0780/1191] arm64: dts: qcom: sm8550: Use GIC-ITS for PCIe0 and PCIe1 Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0781/1191] arm64: dts: qcom: sm8550: Fix the msi-map entries Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0782/1191] arm64: dts: qcom: sm8550: Fix the PCIe iommu-map entries Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0783/1191] power: supply: isp1704_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0784/1191] power: supply: sc2731_charger: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0785/1191] power: supply: sc2731_charger: cancel work on remove Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0786/1191] bpf: Fix potential UAF in bpf_netns_link_update_prog Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0787/1191] lib/test_hmm: fail dmirror_fault() when the mirrored mm is gone Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0788/1191] clk: qcom: Return expected ENOMEM error on dynamic allocation failure Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0789/1191] iommu/dma: Check atomic pool allocation result directly Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0790/1191] i3c: dw: avoid shift-out-of-bounds when DAA assigns no devices Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0791/1191] i3c: master: Fix device_register() error path Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0792/1191] locking/lockdep: Fix NULL pointer dereference in __lock_set_class() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0793/1191] misc: vmc_vmci: Fix potential memory leak in vmci_event_subscribe() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0794/1191] fanotify: report full event length for FIONREAD Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0795/1191] wifi: mt76: mt76x02: do not WARN on invalid rx descriptor length Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0796/1191] wifi: mt76: mt7921: validate CLC firmware records Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0797/1191] wifi: mt76: mt7915: move wed init routines in mmio.c Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0798/1191] wifi: mt76: mt7915: enable wed for mt7986 chipset Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0799/1191] wifi: mt76: mt7915: enable wed for mt7986-wmac chipset Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0800/1191] wifi: mt76: mt7915: fix net_fill_forward_path for non-DBDC mt7986 Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0801/1191] wifi: mt76: mt792x: Fix memory leak in SDIO TX path Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0802/1191] wifi: mt76: mt7915: avoid nss underflow in mt7915_mcu_get_sta_nss Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0803/1191] wifi: mt76: mt7915: poll the correct SLP CTRL register for the second adie Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0804/1191] wifi: mt76: mt7915: use little-endian for bss_info_ra wire fields Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0805/1191] perf: arm_spe: Make wakeup range check overflow safe Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0806/1191] drm/msm/dpu: Drop sneaky dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0807/1191] drm/msm/dsi: Drop dev_pm_opp_set_rate(0) Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0808/1191] wifi: ath11k: fix leak in ath11k_service_ready_ext_event() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0809/1191] regulator: core: use system_freezable_wq for init complete work Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0810/1191] perf machine: Guard against NULL strlist in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:58 ` [PATCH 6.1 0811/1191] perf machine: Use snprintf() for guestmount path construction Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0812/1191] perf machine: Check snprintf truncation in machines__findnew() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0813/1191] perf machine: Dont abort guest map creation on first inaccessible dir Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0814/1191] perf machine: Reset errno before strtol in guest kernel map creation Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0815/1191] perf machine: Free scandir entries " Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0816/1191] perf machine: Check snprintf truncation for guest kallsyms path Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0817/1191] wifi: mt76: mt7915: unlink TWT flow if the MCU rejects the agreement Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0818/1191] wifi: mt76: mt7915: fix double hif2 init on the non-WED path Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0819/1191] wifi: mt76: mt7915: rework mt7915_dma_reset() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0820/1191] wifi: mt76: mt7915: enable full system reset support Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0821/1191] wifi: mt76: mt7915: add full system reset into debugfs Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0822/1191] wifi: mt76: mt7915: enable coredump support Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0823/1191] wifi: mt76: mt7915: fix ext PHY use-after-free on register error path Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0824/1191] wifi: mt76: mt7915: release hif2 reference on probe IRQ failure Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0825/1191] wifi: ath10k: snoc: use memcpy_fromio() for MSA ramdump Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0826/1191] iommu/arm-smmu-v3: Convert to use atomic poll timeout Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0827/1191] wifi: mac80211: send TWT teardown to peer after setup TX failure Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0828/1191] wifi: zd1211rw: reject secondary interfaces to prevent conflicts Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0829/1191] wifi: mac80211: skip unused probe response countdown offsets Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0830/1191] firmware: google: Add bounds checks in coreboot_table_populate() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0831/1191] firmware: coreboot: Validate table bounds Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0832/1191] powerpc/smp: add NULL guard for cause_ipi in smp_muxed_ipi_message_pass Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0833/1191] MIPS: ptrace: Fix syscall skipping via PTRACE_SYSCALL Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0834/1191] serial: amba-pl011: unprepare console clock on unregister Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0835/1191] tty: clear cdev pointer after cdev_add() failure Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0836/1191] HID: split apart hid_device_probe to make logic more apparent Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0837/1191] HID: ensure timely release of driver-allocated resources Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0838/1191] HID: synchronize input before cleaning up a failed probe Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0839/1191] HID: i2c-hid: Fold i2c_hid_execute_reset() into i2c_hid_hwreset() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0840/1191] HID: i2c-hid: Switch i2c_hid_parse() to goto style error handling Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0841/1191] HID: i2c-hid: Fix "(null)" output when reading report descriptor fails Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0842/1191] HID: lg4ff: validate report length before fixed offsets Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0843/1191] perf thread-stack: Fix heap buffer overflow on branch stack wrap copy Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0844/1191] perf auxtrace: Fix queue grow overflow and old array leak Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0845/1191] perf intel-pt: Fix off-by-one in auxtrace_info minimum size check Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0846/1191] perf intel-bts: " Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0847/1191] iio: light: tsl2772: fix ALS calibscale readback Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0848/1191] iio: light: isl29028: return zero in write_raw() on success Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0849/1191] iio: light: tsl2583: " Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0850/1191] phonet: pep: do not write beyond optlen in getsockopt Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0851/1191] blk-cgroup: skip dying blkg in blkcg_activate_policy() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0852/1191] block/blk-stat: drain per-cpu callback stats over possible CPUs Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0853/1191] block/blk-iocost: collect per-cpu latency " Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0854/1191] block/kyber-iosched: flush per-cpu latency buckets " Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0855/1191] lib/string: fix memchr_inv() for large ranges Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0856/1191] pps: dont try to wait for negative timeouts in PPS_FETCH Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0857/1191] pps: clients: gpio: Bypass edges direction check when not needed Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0858/1191] pps: pps-gpio: split IRQ handler into hardirq timestamper + threaded handler Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0859/1191] pps-gpio: remove dead capture_clear code Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0860/1191] rapidio: clear mport->net when rio_add_net() fails Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0861/1191] fat: release buffer head after rebuilding parent Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0862/1191] drm/omap: dsi: Do not copy isr table Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0863/1191] remoteproc: Move resource table data structure to its own header Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0864/1191] remoteproc: use rsc_table_for_each_entry() in rproc_handle_resources() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0865/1191] remoteproc: fix OOB read via signed offset in rsc_table_for_each_entry() Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0866/1191] selftests/mm: fix ternary operator precedence in ksm_tests Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0867/1191] arm64: dts: qcom: sm7225-fairphone-fp4: move status property down Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0868/1191] arm64: dts: qcom: sm7225-fairphone-fp4: Fix swapped USB QMP PHY vdda-phy/vdda-pll supplies Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0869/1191] scripts/tags.sh: improve compiled sources generation Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0870/1191] scripts/tags.sh: Prevent binary files appearing in cscope.files Greg Kroah-Hartman
2026-09-12  6:59 ` [PATCH 6.1 0871/1191] modpost: prevent leak when early return no suffix .o in read_symbols() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0872/1191] RDMA/erdma: Hold CQ references when processing EQ events Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0873/1191] RDMA/srp: fix heap information leak on a truncated SRP_CRED_REQ Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0874/1191] ARM: 9485/1: mm: acquire mmap write lock around show_pte() for user faults Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0875/1191] ocfs2: use bitmap API in fill_node_map Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0876/1191] ocfs2: synchronize heartbeat callbacks with o2net teardown Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0877/1191] drm/sun4i: vi scaler: Fix coefficient selection Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0878/1191] of: property: add missing kerneldoc for of_graph_get_endpoint_count() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0879/1191] of: property: use unsigned int return on of_graph_get_endpoint_count() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0880/1191] of: property: add of_graph_get_next_port() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0881/1191] of: property: add of_graph_get_next_port_endpoint() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0882/1191] bitfield: Add less-checking __FIELD_{GET,PREP}() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0883/1191] bitfield: Add non-constant field_{prep,get}() helpers Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0884/1191] drm/sun4i: tcon-top: Keep mixer routes distinct Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0885/1191] drm/sun4i: tcon: Set output mux for DSI and LVDS Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0886/1191] drm/sun4i: tcon: Drop TCON TOP device reference Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0887/1191] drm/sun4i: crtc: Propagate layer initialization error Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0888/1191] drm/sun4i: tcon: Drop remote endpoint reference Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0889/1191] drm/sun4i: dw-hdmi: Drop TCON TOP port reference Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0890/1191] drm/sun4i: hdmi-phy: Fix H6 8-bit MPLL config at 594 MHz Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0891/1191] cpufreq: imx6q: fix devres accumulation across driver rebind Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0892/1191] cpufreq: imx6q: fix out-of-bounds write when probed more than once Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0893/1191] IB/isert: delay the final Login Response until the session is registered Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0894/1191] IB/isert: post the full-feature receive buffers after session registration Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0895/1191] RDMA/siw: Introduce siw_free_cm_id Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0896/1191] RDMA/siw: Fix use-after-free in siw_accept() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0897/1191] RDMA/erdma: restrict the driver to little-endian systems Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0898/1191] wifi: mac80211: skip default WMM setup for AP_VLAN links Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0899/1191] arm64: hibernate: mask DAIF before restoring hibernated kernel Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0900/1191] arm64: hibernate: Restore DAIF state on error Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0901/1191] mfd: rave-sp: validate received frame payload lengths Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0902/1191] mfd: iqs62x: Reject zero-length firmware records Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0903/1191] drm/amdgpu/gfx6: Fixup emit_cntxcntl() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0904/1191] ext4: fix spurious message about orphan cleanup on RO fs Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0905/1191] arm64: dts: ti: k3-am64: Fix MDIO clock reference for ICSSG0 node Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0906/1191] phy: sunplus: fix error handling in sp_uphy_init() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0907/1191] phy: rockchip: phy-rockchip-inno-csidphy: fix rk1808 hsfreq table Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0908/1191] perf trace-event: Fix buffer overflow in read_string() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0909/1191] drm/amdgpu/gfx6: Fixup emitting SWITCH_BUFFER packets Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0910/1191] drm/amdgpu/gfx6: Use PFP on the compute queues too Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0911/1191] scsi: qla2xxx: Remove redundant VPD flash read in sysfs read path Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0912/1191] firmware_loader: do not queue completed sysfs fallback requests Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0913/1191] pinctrl: rockchip: Reset the pin count when recalculating SoC data Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0914/1191] hugetlbfs: release subpool on fill_super failure Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0915/1191] soc: fsl: qe: check platform_driver_register() in qe_ic_of_init() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0916/1191] phy: qcom: snps-femto-v2: Fix possible NULL-deref on early runtime suspend Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0917/1191] coresight: etm4x: fix wrong check of etm4x_sspcicrn_present() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0918/1191] coresight: Change syncfreq to be a u8 Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0919/1191] coresight: etm4x: fix underflow for usage of (nrseqstate - 1) Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0920/1191] regulator: qcom-rpmh: Fix PMIC5 BOB bypass mode handling Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0921/1191] ACPI: video: Release PCI device reference after lookup Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0922/1191] sched/fair: Check CPU capacity before comparing group types during load balance Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0923/1191] Bluetooth: btqca: Fix qca_set_bdaddr() waiting for wrong HCI event Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0924/1191] Bluetooth: btusb: Fix BD_ADDR byte order in btusb_set_bdaddr_wcn6855() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0925/1191] perf trace-event: Fix integer truncation in do_read() and skip() Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0926/1191] scsi: sd: Fix sd_done() sense handling condition Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0927/1191] Bluetooth: virtio_bt: avoid OOB read of build info string Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0928/1191] Bluetooth: hci_event: Use HCI error defines instead of magic values Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0929/1191] Bluetooth: hci_conn: Fix UAF in hci_enhanced_setup_sync Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0930/1191] Bluetooth: hci_conn: fix the SCO setup context lifetime Greg Kroah-Hartman
2026-09-12  7:00 ` [PATCH 6.1 0931/1191] Bluetooth: hci_sync: free the advertising instance on the failure and cancel paths Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0932/1191] Bluetooth: MGMT: free the mesh send cancel command when it is cancelled Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0933/1191] Bluetooth: MSFT: validate evt_prefix_len against the response length Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0934/1191] iio: light: gp2ap002: Fix unbalanced runtime PM on repeated event writes Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0935/1191] iio: light: gp2ap002: re-enable irq if runtime suspend fails Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0936/1191] net/sched: cls_api: fix teardown of an adopted proto on insert-race loss Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0937/1191] arm64: dts: turris-mox: fix usb3 phys Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0938/1191] ARM: dts: helios4: add vcc-supply to EEPROM Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0939/1191] ARM: dts: helios4: add vcc-supply to GPIO expander Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0940/1191] ARM: dts: helios4: add SATA regulator supplies Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0941/1191] perf stat: Clear screen only if output file is a tty Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0942/1191] perf stat: Fix evsel_list leak in cmd_stat Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0943/1191] perf synthetic-events: Fix uninitialized pthread_join Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0944/1191] perf synthetic-events: Fix divide by zero in perf_event__synthesize_threads Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0945/1191] fbdev: tdfxfb: fix PCI enable cleanup with pcim_enable_device() Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0946/1191] fbdev: kyro: Validate overlay viewport coordinates Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0947/1191] iommu/vt-d: Fix UCTP context table slot when copying root entries Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0948/1191] m68k: Fix backtraces for non-running tasks Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0949/1191] arm64: Disable KCSAN instrumentation in delay.o Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0950/1191] SUNRPC: check rpc_sockaddr2uaddr() return value in rpcb_register_inet4/6 Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0951/1191] powerpc/configs: enable CONFIG_RAS to fix EDAC support Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0952/1191] spi: sprd-adi: Fix probe succeeding without registering the controller Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0953/1191] ASoC: qcom: q6apm: keep the graph start count in sync with the DSP Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0954/1191] nvme-apple: Dont set a DMA direction for commands without a data transfer Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0955/1191] nvme-apple: Never set the opcode in the NVMMU TCB Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0956/1191] nvme: introduce nvme_start_request Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0957/1191] nvme-apple: return directly instead of else Greg Kroah-Hartman
2026-09-12  7:01 ` Greg Kroah-Hartman [this message]
2026-09-12  7:01 ` [PATCH 6.1 0959/1191] nvme-apple: Drop the PRP null check chicken bit Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0960/1191] nvmet: fix NULL pointer dereference in nvmet_execute_identify_ns_zns() Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0961/1191] nfc: llcp: avoid userspace overflow on invalid optlen Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0962/1191] nfc: llcp: read llcp_sock->local under the socket lock in getsockopt Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0963/1191] nfc: nci: fix double completion race in nci_data_exchange_complete Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0964/1191] nfc: llcp: bound SNL TLV parsing to the skb and add length checks Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0965/1191] nfc: pn533: hold a reference to the request skb during send_frame Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0966/1191] nfc: digital: Do not dump a NULL response in command completion Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0967/1191] nfc: nci: fix use of uninitialized memory in CORE_INIT_RSP parsing Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0968/1191] dmaengine: qcom-bam-dma: fix autosuspend cleanup during removal Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0969/1191] RDMA/cxgb4: Free debugfs on registration failure Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0970/1191] RDMA/cma: Fix WARNING in res_to_rt Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0971/1191] ASoC: pxa: Use devm_clk_get_optional() for extclk clock Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0972/1191] ASoC: fsl-asoc-card: defer probe when the CPU DAI device is not ready Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0973/1191] ubi: fastmap: Fix missed ec updating after erasing old fastmap data block Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0974/1191] ubi: fastmap: erase_block: Get erase counter from wl_entry rather than flash Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0975/1191] ubi: fastmap: Allocate memory with GFP_NOFS in ubi_update_fastmap Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0976/1191] ubi: Replace erase_block() with sync_erase() Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0977/1191] UBI: Preserve torture flag when rescheduling failed erasures Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0978/1191] UBI: fastmap: Pass to_be_tortured when reusing old fastmap PEBs Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0979/1191] ubi: fastmap: Add fastmap control support for module parameter Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0980/1191] ubi: Simplify bool conversion Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0981/1191] ubi: fastmap: Wait until there are enough free PEBs before filling pools Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0982/1191] ubi: fastmap: Fix lapsed wear leveling for first 64 PEBs Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0983/1191] ubi: fastmap: Add module parameter to control reserving filling pool PEBs Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0984/1191] ubi: Fix rollback for explicit UBI device numbers Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0985/1191] ASoC: xilinx: formatter_pcm: fix stream_data leak on open error Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0986/1191] UBI: fix two issues in the ubi.mtd MODULE_PARM_DESC Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0987/1191] kunit: tool: fix _list_tests filtering wrong variable when list has TAP prefix Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0988/1191] selftests/bpf: Limit URLS parsing logic to actual scope in vmtest Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0989/1191] selftests/bpf: Support local rootfs image for vmtest Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0990/1191] selftests/bpf: Add description for running vmtest on RV64 Greg Kroah-Hartman
2026-09-12  7:01 ` [PATCH 6.1 0991/1191] selftests/bpf: vmtest.sh: Preserve command quoting when running in the VM Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0992/1191] spi: img-spfi: dont disable runtime PM on DMA deferred probe Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0993/1191] power: supply: bd99954: Drop bad register fields Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0994/1191] power: supply: bq27xxx: bq27520g4: fix REG_TTES address Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0995/1191] power: supply: bq27xxx: bq28z610: fix invalid AverageEnergy address Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0996/1191] power: supply: bq27xxx: bq27z561: " Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0997/1191] xenbus: Unregister reboot notifier on init failure Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0998/1191] s390/debug: Fix deadlock during unregister Greg Kroah-Hartman
2026-09-12  7:02 ` [PATCH 6.1 0999/1191] clocksource/drivers/clps711x: Do not unmap clocksource MMIO 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=20260912065609.739066204@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hch@lst.de \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=sven@kernel.org \
    --cc=towinchenmi@gmail.com \
    /path/to/YOUR_REPLY

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

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