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,
	Aboorva Devarajan <aboorvad@linux.ibm.com>,
	Vishal Verma <vishal.l.verma@intel.com>,
	Dave Jiang <dave.jiang@intel.com>,
	Alison Schofield <alison.schofield@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 7.1 0426/2077] nvdimm/btt: Handle preemption in BTT lane acquisition
Date: Tue, 21 Jul 2026 17:01:39 +0200	[thread overview]
Message-ID: <20260721152602.789190914@linuxfoundation.org> (raw)
In-Reply-To: <20260721152552.646164743@linuxfoundation.org>

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

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

From: Alison Schofield <alison.schofield@intel.com>

[ Upstream commit 8d4b989d9c9afe5f185aa5853b666fc4617afe9e ]

BTT lanes serialize access to per-lane metadata and workspace state
during BTT I/O. The btt-check unit test reports data mismatches during
BTT writes due to a race in lane acquisition that can lead to silent
data corruption.

The existing lane model uses a spinlock together with a per-CPU
recursion count. That recursion model stopped being valid after BTT
lanes became preemptible: another task can run on the same CPU,
observe a non-zero recursion count, bypass locking, and use the same
lane concurrently.

BTT lanes are also held across arena_write_bytes() calls. That path
reaches nsio_rw_bytes(), which flushes writes with nvdimm_flush().
Some provider flush callbacks can sleep, making a spinlock the wrong
primitive for the lane lifetime.

Replace the spinlock-based recursion model with a dynamically
allocated per-lane mutex array and take the lane lock
unconditionally.

Add might_sleep() to catch any future atomic-context caller.

Found with the ndctl unit test btt-check.sh.

Fixes: 36c75ce3bd29 ("nd_btt: Make BTT lanes preemptible")
Assisted-by: Claude-Sonnet:4.5
Tested-by: Aboorva Devarajan <aboorvad@linux.ibm.com>
Reviewed-by: Aboorva Devarajan <aboorvad@linux.ibm.com>
Reviewed-by: Vishal Verma <vishal.l.verma@intel.com>
Reviewed-by: Dave Jiang <dave.jiang@intel.com>
Link: https://patch.msgid.link/20260528021625.618462-1-alison.schofield@intel.com
Signed-off-by: Alison Schofield <alison.schofield@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 Documentation/driver-api/nvdimm/btt.rst |  5 +-
 drivers/nvdimm/nd.h                     | 11 ++---
 drivers/nvdimm/region_devs.c            | 66 +++++++++----------------
 3 files changed, 29 insertions(+), 53 deletions(-)

diff --git a/Documentation/driver-api/nvdimm/btt.rst b/Documentation/driver-api/nvdimm/btt.rst
index 2d8269f834bd60..d29fab95f14942 100644
--- a/Documentation/driver-api/nvdimm/btt.rst
+++ b/Documentation/driver-api/nvdimm/btt.rst
@@ -161,9 +161,8 @@ process::
 	nlanes = min(nfree, num_cpus)
 
 A lane number is obtained at the start of any IO, and is used for indexing into
-all the on-disk and in-memory data structures for the duration of the IO. If
-there are more CPUs than the max number of available lanes, than lanes are
-protected by spinlocks.
+all the on-disk and in-memory data structures for the duration of the IO. Lanes
+are protected by mutexes.
 
 
 d. In-memory data structure: Read Tracking Table (RTT)
diff --git a/drivers/nvdimm/nd.h b/drivers/nvdimm/nd.h
index b199eea3260ef6..197e5368c0a46b 100644
--- a/drivers/nvdimm/nd.h
+++ b/drivers/nvdimm/nd.h
@@ -365,11 +365,6 @@ unsigned sizeof_namespace_label(struct nvdimm_drvdata *ndd);
 	for (res = (ndd)->dpa.child, next = res ? res->sibling : NULL; \
 			res; res = next, next = next ? next->sibling : NULL)
 
-struct nd_percpu_lane {
-	int count;
-	spinlock_t lock;
-};
-
 enum nd_label_flags {
 	ND_LABEL_REAP,
 };
@@ -400,6 +395,10 @@ struct nd_mapping {
 	struct nvdimm_drvdata *ndd;
 };
 
+struct nd_lane {
+	struct mutex lock; /* serialize lane access */
+} ____cacheline_aligned_in_smp;
+
 struct nd_region {
 	struct device dev;
 	struct ida ns_ida;
@@ -420,7 +419,7 @@ struct nd_region {
 	struct kernfs_node *bb_state;
 	struct badblocks bb;
 	struct nd_interleave_set *nd_set;
-	struct nd_percpu_lane __percpu *lane;
+	struct nd_lane *lane;
 	int (*flush)(struct nd_region *nd_region, struct bio *bio);
 	struct nd_mapping mapping[] __counted_by(ndr_mappings);
 };
diff --git a/drivers/nvdimm/region_devs.c b/drivers/nvdimm/region_devs.c
index e35c2e18518f0c..5e079d61cbaa32 100644
--- a/drivers/nvdimm/region_devs.c
+++ b/drivers/nvdimm/region_devs.c
@@ -192,7 +192,9 @@ static void nd_region_release(struct device *dev)
 
 		put_device(&nvdimm->dev);
 	}
-	free_percpu(nd_region->lane);
+	for (i = 0; i < nd_region->num_lanes; i++)
+		mutex_destroy(&nd_region->lane[i].lock);
+	kfree(nd_region->lane);
 	if (!test_bit(ND_REGION_CXL, &nd_region->flags))
 		memregion_free(nd_region->id);
 	kfree(nd_region);
@@ -904,52 +906,30 @@ void nd_region_advance_seeds(struct nd_region *nd_region, struct device *dev)
  * nd_region_acquire_lane - allocate and lock a lane
  * @nd_region: region id and number of lanes possible
  *
- * A lane correlates to a BLK-data-window and/or a log slot in the BTT.
- * We optimize for the common case where there are 256 lanes, one
- * per-cpu.  For larger systems we need to lock to share lanes.  For now
- * this implementation assumes the cost of maintaining an allocator for
- * free lanes is on the order of the lock hold time, so it implements a
- * static lane = cpu % num_lanes mapping.
+ * A lane correlates to a log slot in the BTT. Lanes are shared across
+ * CPUs using a static lane = cpu % num_lanes mapping, with a per-lane
+ * mutex to serialize access.
  *
- * In the case of a BTT instance on top of a BLK namespace a lane may be
- * acquired recursively.  We lock on the first instance.
- *
- * In the case of a BTT instance on top of PMEM, we only acquire a lane
- * for the BTT metadata updates.
+ * Callers must be in sleepable context. The only in-tree caller is
+ * BTT's ->submit_bio handler (btt_read_pg / btt_write_pg).
  */
 unsigned int nd_region_acquire_lane(struct nd_region *nd_region)
+	__acquires(&nd_region->lane[lane].lock)
 {
-	unsigned int cpu, lane;
-
-	migrate_disable();
-	cpu = smp_processor_id();
-	if (nd_region->num_lanes < nr_cpu_ids) {
-		struct nd_percpu_lane *ndl_lock, *ndl_count;
+	unsigned int lane;
 
-		lane = cpu % nd_region->num_lanes;
-		ndl_count = per_cpu_ptr(nd_region->lane, cpu);
-		ndl_lock = per_cpu_ptr(nd_region->lane, lane);
-		if (ndl_count->count++ == 0)
-			spin_lock(&ndl_lock->lock);
-	} else
-		lane = cpu;
+	might_sleep();
 
+	lane = raw_smp_processor_id() % nd_region->num_lanes;
+	mutex_lock(&nd_region->lane[lane].lock);
 	return lane;
 }
 EXPORT_SYMBOL(nd_region_acquire_lane);
 
 void nd_region_release_lane(struct nd_region *nd_region, unsigned int lane)
+	__releases(&nd_region->lane[lane].lock)
 {
-	if (nd_region->num_lanes < nr_cpu_ids) {
-		unsigned int cpu = smp_processor_id();
-		struct nd_percpu_lane *ndl_lock, *ndl_count;
-
-		ndl_count = per_cpu_ptr(nd_region->lane, cpu);
-		ndl_lock = per_cpu_ptr(nd_region->lane, lane);
-		if (--ndl_count->count == 0)
-			spin_unlock(&ndl_lock->lock);
-	}
-	migrate_enable();
+	mutex_unlock(&nd_region->lane[lane].lock);
 }
 EXPORT_SYMBOL(nd_region_release_lane);
 
@@ -1019,17 +999,16 @@ static struct nd_region *nd_region_create(struct nvdimm_bus *nvdimm_bus,
 			goto err_id;
 	}
 
-	nd_region->lane = alloc_percpu(struct nd_percpu_lane);
+	nd_region->num_lanes = ndr_desc->num_lanes;
+	if (!nd_region->num_lanes)
+		goto err_percpu;
+	nd_region->lane = kcalloc(nd_region->num_lanes,
+				  sizeof(*nd_region->lane), GFP_KERNEL);
 	if (!nd_region->lane)
 		goto err_percpu;
 
-        for (i = 0; i < nr_cpu_ids; i++) {
-		struct nd_percpu_lane *ndl;
-
-		ndl = per_cpu_ptr(nd_region->lane, i);
-		spin_lock_init(&ndl->lock);
-		ndl->count = 0;
-	}
+	for (i = 0; i < nd_region->num_lanes; i++)
+		mutex_init(&nd_region->lane[i].lock);
 
 	for (i = 0; i < ndr_desc->num_mappings; i++) {
 		struct nd_mapping_desc *mapping = &ndr_desc->mapping[i];
@@ -1046,7 +1025,6 @@ static struct nd_region *nd_region_create(struct nvdimm_bus *nvdimm_bus,
 	}
 	nd_region->provider_data = ndr_desc->provider_data;
 	nd_region->nd_set = ndr_desc->nd_set;
-	nd_region->num_lanes = ndr_desc->num_lanes;
 	nd_region->flags = ndr_desc->flags;
 	nd_region->ro = ro;
 	nd_region->numa_node = ndr_desc->numa_node;
-- 
2.53.0




  parent reply	other threads:[~2026-07-21 15:50 UTC|newest]

Thread overview: 2089+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-21 14:54 [PATCH 7.1 0000/2077] 7.1.5-rc1 review Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0001/2077] crypto: algif_skcipher - force synchronous processing Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0002/2077] iommu/vt-d: Clear Present bit before tearing down scalable-mode context entry Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0003/2077] crypto: sun4i-ss - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0004/2077] media: uvcvideo: Fix deadlock if uvc_status_stop is called from async_ctrl.work Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0005/2077] ALSA: hda/realtek: Add quirk for TongFang X6xx45xU Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0006/2077] ALSA: hda: conexant: Remove mic bias threshold override Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0007/2077] ALSA: hda: Fix cached processing coefficient verbs Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0008/2077] ALSA: hda/realtek: Fix speakers on Legion Pro 7 16ARX8H with codec SSID 17aa:38a7 Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0009/2077] media: uvcvideo: Use hw timestaming if the clock buffer is full Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0010/2077] media: uvcvideo: Avoid partial metadata buffers Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0011/2077] media: uvcvideo: Fix buffer sequence in frame gaps Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0012/2077] media: uvcvideo: Fix dev_sof filtering in hw timestamp Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0013/2077] media: uvcvideo: Do not add clock samples with small sof delta Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0014/2077] media: uvcvideo: Relax the constrains for interpolating the hw clock Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0015/2077] media: uvcvideo: Fix sequence number when no EOF Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0016/2077] dt-bindings: media: sun4i-a10-video-engine: Add interconnect properties Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0017/2077] dt-bindings: power: imx93: Add MIPI PHY power domain Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0018/2077] serial: msm: Disable DMA for kernel console UART Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0019/2077] serial: max310x: implement gpio_chip::get_direction() Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0020/2077] serial: 8250_omap: clear rx_running on zero-length DMA completes Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0021/2077] rxrpc: serialize kernel accept preallocation with socket teardown Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0022/2077] rxrpc: rxrpc_verify_data ensure rx_dec_buffer alloc Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0023/2077] rxrpc: Dont move a peeked OOB message onto the pending queue Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0024/2077] rxrpc: Fix UAF in rxgk_issue_challenge() Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0025/2077] rxrpc: Fix socket notification race Greg Kroah-Hartman
2026-07-21 14:54 ` [PATCH 7.1 0026/2077] rxrpc: Fix leak of released call in recvmsg(MSG_PEEK) Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0027/2077] rxrpc: Fix potential infinite loop in rxrpc_recvmsg() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0028/2077] rxrpc: Fix rxrpc_rotate_tx_rotate() to check theres something to rotate Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0029/2077] rxrpc: Fix oob challenge leak in cleanup after notification failure Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0030/2077] rxrpc: Fix ACKALL packet handling Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0031/2077] rxrpc: Fix the reception of a reply packet before data transmission Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0032/2077] rxrpc: Fix leak of connection from OOB challenge Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0033/2077] rxrpc: Fix double unlock in rxrpc_recvmsg() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0034/2077] afs: Fix netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0035/2077] afs: fix NULL pointer dereference in afs_get_tree() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0036/2077] afs: handle CB.InitCallBackState3 requests without a server record Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0037/2077] afs: Fix further netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0038/2077] afs: Fix uncancelled rxrpc OOB message handler Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0039/2077] fbcon: fix NULL pointer dereference for a console without vc_data Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0040/2077] fbcon: Use correct type for vc_resize() return value Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0041/2077] soc: fsl: qe_ports_ic: Add missing cleanup on device removal Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0042/2077] openrisc: mm: Fix section mismatch between map_page and __set_fixmap Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0043/2077] clocksource/drivers/sun5i: Handle error returns from devm_reset_control_get_optional_exclusive() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0044/2077] accel/amdxdna: Fix leak when pinning ubuf pages Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0045/2077] drm/rockchip: inno-hdmi: Switch to drmm_kzalloc() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0046/2077] drm/rockchip: dw_dp: " Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0047/2077] drm/rockchip: dw_dp: Fix null-ptr-deref in dw_dp_remove() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0048/2077] drm/rockchip: Test for imported buffers with drm_gem_is_imported() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0049/2077] drm/tidss: Drop extra drm_mode_config_reset() call Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0050/2077] drm/gpusvm: Reject VMAs with VM_IO or VM_PFNMAP when creating SVM ranges Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0051/2077] accel/amdxdna: Create shared functions for AIE2 and AIE4 Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0052/2077] accel/amdxdna: Adjust size for copy_to_user() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0053/2077] accel/amdxdna: Handle DETACH_DEBUG_BO through config_debug_bo path Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0054/2077] accel/amdxdna: Fix iommu_map_sgtable() return value handling Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0055/2077] accel/amdxdna: Fix order of canceled mailbox messages Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0056/2077] dma-fence: Fix potential tracepoint null pointer dereferences Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0057/2077] accel/amdxdna: Fix fatal_error_info layout in firmware interface Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0058/2077] accel/amdxdna: Fix memory leak in amdxdna_iommu_alloc() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0059/2077] drm/gpuvm: Do not prepare NULL objects Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0060/2077] accel/amdxdna: Guard management mailbox channel cleanup against NULL pointer Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0061/2077] drm/amdgpu: fix integer overflow in amdgpu_gem_align_pitch() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0062/2077] drm/amdkfd: fix redundant MQD iterations in GFX v12.1 Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0063/2077] drm/radeon: fix integer overflow in radeon_align_pitch() Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0064/2077] drm/radeon: fix memory leak in radeon_ring_restore() on lock failure Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0065/2077] libbpf: Report error when a negative kprobe offset is specified Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0066/2077] selftests/bpf: Fix off-by-one in bpf_cpumask_populate related selftest Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0067/2077] dt-bindings: timer: Remove sifive,fine-ctr-bits property Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0068/2077] wifi: ath12k: Fix invalid IRQ requests during AHB probe Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0069/2077] libbpf: Fix deduplication of typedef with base definitions Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0070/2077] drm/amd/pm: remove trailing semicolon from AMDGPU_PM_POLICY_ATTR macro Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0071/2077] spi: atcspi200: fix use-after-free when driver unbind Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0072/2077] selftests/bpf: Use local type for flow_offload_tuple_rhash in xdp_flowtable Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0073/2077] selftests/bpf: Use local type for bpf_fou_encap in test_tunnel_kern Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0074/2077] Documentation: proc: fix section numbering in table of contents Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0075/2077] arm64: dts: rockchip: Fix vdec register blocks order on RK3576 Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0076/2077] arm64: dts: rockchip: Update vdec register blocks order on RK3588 Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0077/2077] arm64: dts: rockchip: fix Ethernet PHY not found on PX30 Cobra Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0078/2077] arm64: dts: rockchip: Fix gmac0 reset pin for NanoPi R5S Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0079/2077] ima: Fix sigv3 signature handling for EVM_IMA_XATTR_DIGSIG Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0080/2077] dt-bindings: net: bluetooth: qualcomm: Fix WCN6855 regulator names Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0081/2077] x86/bug: Add printf() validation to HAVE_ARCH_BUG_FORMAT_ARGS WARNs Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0082/2077] arm64: dts: qcom: milos: Reduce rmtfs_mem size to 2.5MiB Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0083/2077] arm64: dts: qcom: sdm845-oneplus: Drop address from framebuffer node Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0084/2077] arm64: dts: qcom: glymur: Fix USB simple_bus_reg warning Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0085/2077] arm64: dts: qcom: glymur: Fix cache and SRAM simple_bus_reg warnings Greg Kroah-Hartman
2026-07-21 14:55 ` [PATCH 7.1 0086/2077] arm64: dts: qcom: ipq5424: Fix USB " Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0087/2077] arm64: dts: qcom: sc8180x: Fix phy simple_bus_reg warning Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0088/2077] arm64: dts: qcom: sdm845-mezzanine: Fix camss ports unit_address_vs_reg warning Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0089/2077] arm64: dts: qcom: fix temp-alarm probe failure for PMH0104 on Glymur Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0090/2077] arm64: dts: qcom: sdm845-shift-axolotl: Correct touchscreen sleep state Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0091/2077] hfsplus: Remove the duplicate attr inode dirty marking action Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0092/2077] hfsplus: Add a sanity check for btree node size Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0093/2077] wifi: cfg80211: fix grammar in MLO group key error message Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0094/2077] arm64: tegra: Fix Tegra234 MGBE PTP clock Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0095/2077] dt-bindings: pinctrl: nvidia,tegra234: Add missing required block Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0096/2077] pinctrl: pinconf-generic: fix properties bitmap leak in parse_fw_cfg() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0097/2077] drm/amdkfd: Validate CRIU-restored IDs before idr_alloc Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0098/2077] driver core: use READ_ONCE() for dev->driver in dev_has_sync_state() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0099/2077] gpu: nova-core: use correct fwsignature for GA100 Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0100/2077] wifi: rtw89: fix wrong pci_get_drvdata type in AER handlers Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0101/2077] wifi: rtw88: " Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0102/2077] wifi: rtw89: Correct data type for scan index to avoid infinite loop Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0103/2077] wifi: rtw88: fix OOB read from firmware RX descriptor exceeding DMA buffer Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0104/2077] wifi: rtw89: add bounds check on firmware mac_id in link lookup Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0105/2077] kconfig: fix potential NULL pointer dereference in conf_askvalue Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0106/2077] soc: xilinx: Fix race condition in event registration Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0107/2077] soc: xilinx: Shutdown and free rx mailbox channel Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0108/2077] pinctrl: mediatek: eint: Drop base from mtk_eint_chip_write_mask() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0109/2077] wifi: ath9k: fix OOB access from firmware tx status queue ID Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0110/2077] wifi: ath11k: cancel SSR work items during PCI shutdown Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0111/2077] ARM: dts: am335x-sl50: Fix audio bitclock and frame master endpoint Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0112/2077] ixgbe: fix unaligned u32 access in ixgbe_update_flash_X550() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0113/2077] Documentation/rv: Replace stale website link Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0114/2077] watchdog: sp5100_tco: Use EFCH MMIO for newer Hygon FCH Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0115/2077] watchdog: sama5d4_wdt: Fix WDDIS detection on SAM9X60 and SAMA7G5 Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0116/2077] watchdog: sprd_wdt: Remove redundant sprd_wdt_disable() on register failure Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0117/2077] media: cedrus: Fix failure to clean up hardware on probe failure Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0118/2077] media: v4l2-common: Add YUV24 format info Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0119/2077] drm: verisilicon: call atomic helpers plane state check even if no CRTC Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0120/2077] memory: tegra: Wire up system sleep PM ops Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0121/2077] objtool/klp: Fix is_uncorrelated_static_local() for Clang Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0122/2077] objtool/klp: Fix .data..once static local non-correlation Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0123/2077] objtool/klp: Fix create_fake_symbols() skipping entsize-based sections Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0124/2077] objtool/klp: Fix handling of zero-length .altinstr_replacement sections Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0125/2077] objtool/klp: Fix cloning of zero-length section symbols Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0126/2077] objtool/klp: Fix extraction of text annotations for alternatives Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0127/2077] objtool/klp: Fix relocation conversion failures for R_X86_64_NONE Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0128/2077] objtool: Replace iterator callback with for_each_sym_by_mangled_name() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0129/2077] objtool: Fix reloc hash collision in find_reloc_by_dest_range() Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0130/2077] klp-build: Fix hang on out-of-date .config Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0131/2077] klp-build: Fix checksum comparison for changed offsets Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0132/2077] klp-build: Fix patch cleanup on interrupt Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0133/2077] crypto: qat - fix heartbeat error injection Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0134/2077] lib/vsprintf: Fix to check field_width and precision Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0135/2077] dts: spacemit: set console baud rate on bpif3 Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0136/2077] pinctrl: sunxi: fix regulator leak in sunxi_pmx_request() error path Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0137/2077] riscv: dts: microchip: gpio controllers on mpfs need 2 interrupt cells Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0138/2077] riscv: dts: microchip: remove gpio hogs from beaglev-fire Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0139/2077] dt-bindings: vendor-prefixes: Add Displaytech Ltd Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0140/2077] drm/gpuvm: take refcount on DRM device Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0141/2077] wifi: cfg80211: restrict LMR feedback check to TB and non-TB ranging Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0142/2077] drm/panel: Clean up SOFEF00 config dependencies Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0143/2077] drm/panel: Clean up S6E3FC2X01 " Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0144/2077] drm/panel: Clean up S6E3HA2 config dependencies and fill help text Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0145/2077] riscv: dts: microchip: update pic64gx gpio interrupts to better match the SoC Greg Kroah-Hartman
2026-07-21 14:56 ` [PATCH 7.1 0146/2077] riscv: dts: microchip: fix pic64gx gpio interrupt-cells Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0147/2077] arm64: dts: marvell: samsung-coreprimevelte: Increase touchscreen voltage Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0148/2077] ARM: dts: rockchip: Add #{address,size}-cells to Chromium-based /firmware Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0149/2077] arm64: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0150/2077] arm64: dts: rockchip: fix rk809 interrupt pin on rk3566-roc-pc Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0151/2077] arm64: dts: imx8x-colibri: Correct SODIMM PAD settings Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0152/2077] arm64: dts: imx8mn-vhip4-evalboard-v1: Correct interrupt flags Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0153/2077] arm64: dts: imx8mn-vhip4-evalboard-v2: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0154/2077] arm64: dts: imx8mp-ab2: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0155/2077] Revert "arm64: dts: imx8mm-kontron: Add support for reading SD_VSEL signal" Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0156/2077] Revert "arm64: dts: imx8mp-kontron: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0157/2077] vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0158/2077] drm: renesas: rz-du: mipi_dsi: Fix return path on error Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0159/2077] alarmtimer: Remove stale return description from alarm_handle_timer() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0160/2077] OPP: Fix race between OPP addition and lookup Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0161/2077] crypto: ccp - Reverse the cleanup order in psp_dev_destroy() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0162/2077] crypto: ccp - Fix snp_filter_reserved_mem_regions() off-by-one Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0163/2077] crypto: ccp - Check for page allocation failure correctly in TIO Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0164/2077] crypto: ccp - Initialize data during __sev_snp_init_locked() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0165/2077] crypto: atmel-sha204a - fix blocking and non-blocking rng logic Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0166/2077] crypto: ecrdsa - fix unknown OID check in ecrdsa_param_curve Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0167/2077] crypto: asymmetric_keys - fix OOB read in pefile_digest_pe_contents Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0168/2077] ARM: multi_v7_defconfig: Correct QCOM_RPMH and QCOM_RPMHPD Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0169/2077] accel/amdxdna: Fix clflush buffer size Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0170/2077] dlm: fix add msg handle in send_queue ordered Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0171/2077] nilfs2: fix backing_dev_info reference leak Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0172/2077] ntb: Store original DMA address for future release Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0173/2077] ntb: Use consistent DMA attributes when freeing DMA mappings Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0174/2077] media: qcom: camss: vfe: fix PIX subdev naming on VFE lite Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0175/2077] dts: riscv: spacemit: correct 32k clock frequency Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0176/2077] arm64: dts: qcom: sdm660: set cdsp compute-cbs regs properly Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0177/2077] arm64: dts: qcom: sdm630: set adsp " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0178/2077] arm64: dts: qcom: lemans: Move PCIe devices into soc node Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0179/2077] media: iris: scale MMCX power domain on SM8250 Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0180/2077] media: venus: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0181/2077] iommu/amd: Fix a stale comment about which legacy mode is user visible Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0182/2077] soc: mediatek: mtk-mmsys: Restore MT8167 routing masks lost during merge Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0183/2077] bpf: fix crash in bpf_[set|remove]_dentry_xattr for negative dentries Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0184/2077] uaccess: fix ignored_trailing logic in copy_struct_to_user() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0185/2077] sockptr: fix usize check in copy_struct_from_sockptr() for user pointers Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0186/2077] arm64: dts: mediatek: mt7988a-bpi-r4pro: rework pcie gpio-hog handling Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0187/2077] arm64: dts: mediatek: mt8192-asurada: Move PCIe DMA bounce buffer to host Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0188/2077] workqueue: forbid TEST_WORKQUEUE from being built-in Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0189/2077] drm/amdgpu: fix error return code in mes_v12_1_map_test_bo Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0190/2077] arm64: dts: qcom: glymur-crd: Drop forced host mode for USB SS0 and SS1 Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0191/2077] arm64: dts: qcom: glymur: Mark USB SS1 and SS2 as role-switch capable Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0192/2077] rhashtable: give each instance its own lockdep class Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0193/2077] rust: alloc: fix `Vec::extend_with` SAFETY comment Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0194/2077] clk: scmi: Fix clock rate rounding Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0195/2077] arm64: dts: qcom: sm8750: Fix DSI1 phy reference clock rate Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0196/2077] arm64: dts: qcom: kodiak: Fix ICE reg size Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0197/2077] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0198/2077] platform/chrome: chromeos_privacy_screen: Check ACPI_COMPANION() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0199/2077] platform/chrome: chromeos_tbmc: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0200/2077] platform/chrome: wilco_ec: event: " Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0201/2077] drm/hisilicon/hibmc: add updating link cap in DP detect() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0202/2077] drm/hisilicon/hibmc: fix no showing when no connectors connected Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0203/2077] drm/hisilicon/hibmc: move display contrl config to hibmc_probe() Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0204/2077] drm/hisilicon/hibmc: use clock to look up the PLL value Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0205/2077] evm: terminate and bound the evm_xattrs read buffer Greg Kroah-Hartman
2026-07-21 14:57 ` [PATCH 7.1 0206/2077] thermal: hwmon: Fix critical temperature attribute removal Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0207/2077] thermal: hwmon: Register a hwmon device for each thermal zone Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0208/2077] clk: scpi: Unregister child clock providers on remove Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0209/2077] net/sched: sch_hfsc: annotate data-races in hfsc_dump_class_stats() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0210/2077] scsi: hisi_sas: Add slave_destroy interface for v3 hw Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0211/2077] crypto: ccp - Treat zero-length cert chain as query for blob lengths Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0212/2077] crypto: af_alg - Cap AEAD AD length to 0x80000000 Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0213/2077] crypto: ccp/sev-dev-tsm - bail out early when pdev->bus is NULL Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0214/2077] crypto: safexcel - Fix potential memory leak in safexcel_pci_probe() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0215/2077] spi: hisi-kunpeng: Use dev_err_probe() for host registration failure Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0216/2077] net/sched: add qdisc_qlen_inc() and qdisc_qlen_dec() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0217/2077] net/sched: sch_dualpi2: annotate data-races in dualpi2_dump_stats() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0218/2077] net/sched: sch_htb: do not change sch->flags in htb_dump() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0219/2077] net/sched: sch_htb: annotate data-races (I) Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0220/2077] ipv6: addrconf: bail out of dad_failure when state is no longer POSTDAD Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0221/2077] IB/mlx5: Fix transport-domain rollback and initialize lb mutex earlier Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0222/2077] RDMA/hns: Fix arithmetic overflow in calc_hem_config() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0223/2077] RDMA/mlx5: Fix UMR XLT cleanup on ODP populate failure Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0224/2077] RDMA/mlx5: Fix devx subscribe-event unwind NULL dereference Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0225/2077] RDMA/srpt: fix integer overflow in immediate data length check Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0226/2077] RDMA/hns: Initialize seqfile before creating file Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0227/2077] tools/rtla: Fix --dump-tasks usage in timerlat Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0228/2077] rtla: Stop the record trace on interrupt Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0229/2077] drm/syncobj: Fix memory leak in drm_syncobj_find_fence() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0230/2077] dm: limit target bio polling to one shot Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0231/2077] selftests/bpf: Override EXTRA_LDFLAGS for static builds Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0232/2077] selftests/bpf: Reject unsupported -k option in vmtest.sh Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0233/2077] selftests/bpf: Fix test for refinement of single-value tnum Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0234/2077] iommu/arm-smmu-qcom: Fix fastrpc compatible string in ACTLR client match table Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0235/2077] sched/fair: Update util_est after updating util_avg during dequeue Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0236/2077] selftests/mm: Fix resv_sz when parsing arm64 signal frame Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0237/2077] firmware: arm_ffa: Honor partition info descriptor size Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0238/2077] arm64: dts: freescale: imx95-verdin-ivy: fix RS485 RTS polarity Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0239/2077] arm64: dts: imx8dxl-evk: Remove unnecessary PCIe EP properties Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0240/2077] arm64: dts: imx8qxp-mek: Remove unnecessary PCIe EP vpcie-supply Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0241/2077] arm64: dts: imx95-19x19-evk: Fix " Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0242/2077] hfs: fix incorrect inode ID assignment in hfs_new_inode() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0243/2077] media: atomisp: Fix memory leak in atomisp_fixed_pattern_table() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0244/2077] media: atomisp: gc2235: fix UAF and memory leak Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0245/2077] staging: media: atomisp: fix loop shadowing in ia_css_stream_destroy() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0246/2077] riscv: dts: spacemit: set console baud rate on Milk-V Jupiter Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0247/2077] riscv: dts: spacemit: fix uboot partition offset " Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0248/2077] firmware: smccc: Fix Arm SMCCC SOC_ID name call Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0249/2077] firmware: arm_scmi: Read sensor config as 32-bit value Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0250/2077] media: synopsys: Fix IPI using hardcoded datatype Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0251/2077] sysfs: clamp show() return value in sysfs_kf_read() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0252/2077] bitops: use common function parameter names Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0253/2077] regulator: dt-bindings: mt6359: Drop regulator-name pattern restrictions Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0254/2077] tools/nolibc: getopt: Fix potential out of bounds access Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0255/2077] vfio: selftests: Fix out-of-tree build with make O= Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0256/2077] vfio: selftests: Allow builds when ARCH=x86 Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0257/2077] nilfs2: Fix return in nilfs_mkdir Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0258/2077] vfio/xe: avoid duplicate reset in xe_vfio_pci_reset_done Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0259/2077] net/sched: sch_drr: annotate data-races around cl->deficit Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0260/2077] regmap-i2c: fix sparse warning in regmap_smbus_word_write_reg16 Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0261/2077] media: rockchip: rga: fix too small buffer size Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0262/2077] firmware: arm_scmi: Fix OOB in scmi_power_name_get() Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0263/2077] arm64: dts: qcom: eliza-mtp: Fix the debug UART index Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0264/2077] arm64: dts: qcom: kaanapali: Add power-domain and iface clk for ice node Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0265/2077] arm64: dts: qcom: lemans: " Greg Kroah-Hartman
2026-07-21 14:58 ` [PATCH 7.1 0266/2077] arm64: dts: qcom: monaco: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0267/2077] arm64: dts: qcom: sc7180: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0268/2077] arm64: dts: qcom: kodiak: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0269/2077] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0270/2077] arm64: dts: qcom: sm8550: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0271/2077] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0272/2077] arm64: dts: qcom: sm8750: " Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0273/2077] tracing: Bound synthetic-field strings with seq_buf Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0274/2077] arm64: dts: qcom: lemans: Add eDP ref clock for eDP PHYs Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0275/2077] arm64: dts: qcom: glymur: Fix wrong interrupt number for i2c19 Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0276/2077] arm64: dts: qcom: sdm845-xiaomi-beryllium: Correct IPA FW path Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0277/2077] writeback: drop now-unnecessary rcu_barrier() in cgroup_writeback_umount() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0278/2077] kernfs: fix suspicious RCU usage in kernfs_put() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0279/2077] device property: fix fwnode reference leak in fwnode_graph_get_endpoint_by_id() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0280/2077] driver core: Use mod_delayed_work to prevent lost deferred probe work Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0281/2077] Revert "treewide: Fix probing of devices in DT overlays" Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0282/2077] of: dynamic: Fix overlayed devices not probing because of fw_devlink Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0283/2077] crypto: eip93 - fix reset ring register definition Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0284/2077] ASoC: mediatek: mt8189: Fix probe resource cleanup Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0285/2077] drm/msm/mdss: correct UBWC programming sequences Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0286/2077] cpufreq: Documentation: fix sampling_down_factor range Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0287/2077] cpufreq: conservative: Simplify frequency limit handling Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0288/2077] pwm: imx27: Fix variable truncation in .apply() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0289/2077] RDMA/mana_ib: Use ib_get_eth_speed for reporting port speed Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0290/2077] tools/nolibc: stackprotector: Avoid stalling program startup if crng is not init yet Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0291/2077] bus: sunxi-rsb: Always check register address validity Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0292/2077] pinctrl: spacemit: fix NULL check in spacemit_pin_set_config Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0293/2077] ASoC: dapm: Fix widget lookup with prefixed names across DAPM contexts Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0294/2077] RDMA/irdma: Fix out-of-bounds write in irdma_copy_user_pgaddrs Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0295/2077] RDMA/rxe: Fix a use-after-free problem in rxe_mmap Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0296/2077] IB/mlx4: Fix refcount leak in add_port() error path Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0297/2077] gpu: nova-core: vbios: stop scanning at BIOS_MAX_SCAN_LEN Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0298/2077] gpu: nova-core: vbios: use checked arithmetic for bios image range end Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0299/2077] gpu: nova-core: vbios: avoid reading too far in read_more_at_offset Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0300/2077] gpu: nova-core: vbios: read BitToken using FromBytes Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0301/2077] gpu: nova-core: vbios: use checked ops and accesses in `FwSecBiosImage::ucode` Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0302/2077] gpu: nova-core: vbios: use checked access in `FwSecBiosImage::header` Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0303/2077] gpu: nova-core: vbios: use checked accesses in `setup_falcon_data` Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0304/2077] RDMA/hns: Fix warning in poll cq direct mode Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0305/2077] RDMA/hns: Fix log flood after cmd_mbox failure Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0306/2077] ACPI: PAD: Fix teardown ordering in acpi_pad_remove() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0307/2077] RDMA/counter: Fix incorrect port index in rdma_counter_init() error cleanup Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0308/2077] pinctrl: meson: amlogic-a4: fix gpio output glitch Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0309/2077] PM: sleep: Use complete() in device_pm_sleep_init() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0310/2077] MIPS: Fix big-endian stack argument fetching in o32 wrapper Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0311/2077] MIPS: DEC: Remove do_IRQ() call indirection Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0312/2077] mips: ralink: mt7621: add missing __iomem Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0313/2077] mips: n64: add __iomem for writel call Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0314/2077] driver core: Fix missing jiffies conversion in deferred_probe_extend_timeout() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0315/2077] driver core: Guard deferred probe timeout extension with delayed_work_pending() Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0316/2077] arm64: tegra: Fix address of Tegra264 main GPIO controller Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0317/2077] mtd: spi-nor: debugfs: Fix the flags list Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0318/2077] mtd: spi-nor: Drop duplicate Kconfig dependency Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0319/2077] wifi: ath12k: fix error unwind on arch_init() failure in PCI probe Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0320/2077] cpufreq: governor: Fix data races on per-CPU idle/nice baselines Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0321/2077] cpufreq: governor: Fix stale prev_cpu_nice spike when enabling ignore_nice_load Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0322/2077] ALSA: xen-front: Reset event channel state on stream clear Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0323/2077] ALSA: xen-front: Connect event channel after stream prepare Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0324/2077] ALSA: seq: oss: Fix UAF at handling events with embedded SysEx data Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0325/2077] ALSA: seq: midi: Serialize output teardown with event_input Greg Kroah-Hartman
2026-07-21 14:59 ` [PATCH 7.1 0326/2077] selftests: Fix Makefile target for nsfs Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0327/2077] pinctrl: nuvoton: ma35d1: fix MFP register offset and pin table Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0328/2077] pinctrl: cs42l43: Fix leaked pm reference on error path Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0329/2077] pinctrl: cs42l43: Fix polarity on debounce Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0330/2077] init/initramfs_test: wait_for_initramfs() before running Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0331/2077] nvmet-tcp: fix page fragment cache leak in error path Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0332/2077] nvmet-tcp: check return value of nvmet_tcp_set_queue_sock Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0333/2077] nvme-multipath: fix flex array size in struct nvme_ns_head Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0334/2077] nvme-pci: fix out-of-bounds access in nvme_setup_descriptor_pools Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0335/2077] workqueue: drop spurious * from print_worker_info() fn declaration Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0336/2077] ipv6: guard against possible NULL deref in __in6_dev_stats_get() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0337/2077] net/sched: cls_bpf: prevent unbounded recursion in offload rollback Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0338/2077] iommu/amd: Fix premature break in init_iommu_one() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0339/2077] ALSA: hda/realtek:ALC269 fixup for Yoga Pro 7 15ASH11 mic mute LED Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0340/2077] dt-bindings: vendor-prefixes: Add Verbatim Corporation Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0341/2077] rtla/actions: Restore continue flag in actions_perform() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0342/2077] drm/tegra: gr2d/gr3d: Initialize address register map before HOST1X client is registered Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0343/2077] drm/tegra: gr2d/gr3d: Contain PM in the gr*d_probe/gr*d_remove Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0344/2077] gpu: host1x: Allow entries in BO caches to be freed Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0345/2077] drm/tegra: fbdev: Do not assign to struct drm_fb_helper.info Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0346/2077] gpu: host1x: mipi: Fix device_node reference leak in tegra_mipi_request() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0347/2077] drm/tegra: dc: Fix device node reference leak in tegra_dc_has_output() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0348/2077] gpu: host1x: Fix iommu_map_sgtable() return value check Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0349/2077] drm/tegra: " Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0350/2077] drm/nouveau/bios: specify correct display fuse register for Ampere and Ada Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0351/2077] libbpf: Harden parse_vma_segs() path parsing Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0352/2077] bpftool: Fix typo in struct_ops map FD generation for light skeleton Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0353/2077] libbpf: Fix UAF in strset__add_str() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0354/2077] ARM: tegra: Add #{address,size}-cells to Chromium-based /firmware Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0355/2077] arm64: " Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0356/2077] rust: devres: add static bound to Devres<T> Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0357/2077] dax/kmem: account for partial discontiguous resource upon removal Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0358/2077] lib/base64: validate before writing in decode tail path Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0359/2077] rust: uaccess: use INLINE_COPY_TO_USER to guard copy_to_user() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0360/2077] uaccess: unify inline vs outline copy_{from,to}_user() selection Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0361/2077] uaccess: minimize INLINE_COPY_USER-related ifdefery Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0362/2077] rapidio/tsi721: prevent a bad dereference in tsi721_db_dpc() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0363/2077] ocfs2: dont BUG_ON an invalid journal dinode Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0364/2077] ocfs2: kill osb->system_file_mutex lock Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0365/2077] crypto: hisilicon/qm - disable error report before flr Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0366/2077] crypto: inside-secure/eip93 - Add check for devm_request_threaded_irq Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0367/2077] crypto: tegra - Fix dma_free_coherent size error Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0368/2077] crypto: tegra - Return ENOMEM when input buffer allocation fails for ccm Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0369/2077] crypto: ccp/tsm - Enable the root port after the endpoint Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0370/2077] sched/deadline: Reject debugfs dl_server writes for offline CPUs Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0371/2077] drm/msm/dp: fix HPD state status bit shift value Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0372/2077] drm/msm/dp: Fix the ISR_* enum values Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0373/2077] firmware: samsung: acpm: Add devm_acpm_get_by_phandle helper Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0374/2077] firmware: samsung: acpm: remove compile-testing stubs Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0375/2077] drm/msm/a8xx: Make a8xx_recover IFPC safe Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0376/2077] drm/msm/a8xx: Fix RSCC offset Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0377/2077] EDAC/igen6: Fix call trace due to missing release() Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0378/2077] EDAC/igen6: Fix memory topology parsing for Panther Lake-H SoCs Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0379/2077] EDAC/{skx_common,skx}: Fix UBSAN shift-out-of-bounds in skx_get_dimm_info Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0380/2077] arm64: dts: st: Fix SAI addresses on stm32mp251 Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0381/2077] arm: dts: bcm2711: Fix typo in gpio-line-names Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0382/2077] RDMA/umem: Add ib_umem_is_contiguous() stub for !CONFIG_INFINIBAND_USER_MEM Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0383/2077] RDMA/rxe: Fix TOCTOU heap overflow in get_srq_wqe Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0384/2077] RDMA/rxe: Copy WQE to local buffer in non-SRQ receive path Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0385/2077] dts: riscv: spacemit: k3: Fix I/O power settings Greg Kroah-Hartman
2026-07-21 15:00 ` [PATCH 7.1 0386/2077] Revert "media: venus: hfi_platform: Correct supported codecs for sc7280" Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0387/2077] media: qcom: venus: drop extra padding in NV12 raw size calculation Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0388/2077] media: qcom: venus: relax encoder frame/blur dimension steps on v4 Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0389/2077] media: qcom: venus: relax encoder frame/blur step size on v6 Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0390/2077] amba: use generic driver_override infrastructure Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0391/2077] cdx: " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0392/2077] Drivers: hv: vmbus: " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0393/2077] rpmsg: " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0394/2077] arm64: dts: renesas: r8a78000: Fix GIC-720AE View 1 Redistributor description Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0395/2077] arm64: dts: renesas: ironhide: Describe all reserved memory Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0396/2077] md/raid10: reset read_slot when reusing r10bio for discard Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0397/2077] md/raid1,raid10: fix deadlock in read error recovery path Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0398/2077] md/raid1,raid10: fix error-path detection with md_cloned_bio() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0399/2077] md/raid1,raid10: fix bio accounting for split md cloned bios Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0400/2077] raid1: fix nr_pending leak in REQ_ATOMIC bad-block error path Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0401/2077] bpf: fix BPF_PROG_QUERY OOB write and cgroup backward compat Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0402/2077] selftests/bpf: add verification for BPF_PROG_QUERY attr size boundaries Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0403/2077] liveupdate: Use refcount_t for FLB reference counts Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0404/2077] liveupdate: Reference count incoming FLB data Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0405/2077] libbpf: Skip hash computation when loader generation failed Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0406/2077] libbpf: Skip endianness swap " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0407/2077] liveupdate: skip serialization for context-preserving kexec Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0408/2077] liveupdate: fix TOCTOU race in luo_session_retrieve() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0409/2077] liveupdate: block session mutations during reboot Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0410/2077] liveupdate: fix u-a-f in luo_file_unpreserve_files() and luo_file_finish() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0411/2077] ext4: fix LOGFLUSH shutdown ordering to allow ordered-mode data writeback Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0412/2077] spi: atmel: fix DMA channel and bounce buffer leaks Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0413/2077] spi: imx: replace dmaengine_terminate_all() with dmaengine_terminate_sync() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0414/2077] ASoC: rsnd: Fix RSND_SOC_MASK width to single nibble Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0415/2077] NFSD: Fix delegation reference leak in nfsd4_revoke_states Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0416/2077] ARM: imx3: Fix CCM node reference leak Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0417/2077] HID: wiimote: Fix table layout and whitespace errors Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0418/2077] wifi: ath12k: fix incorrect HT/VHT/HE/EHT MCS reporting in monitor mode Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0419/2077] wifi: ath12k: fix memory leak in ath12k_wifi7_dp_rx_h_verify_tkip_mic() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0420/2077] wifi: ath12k: fix inconsistent arvif state in vdev_create error paths Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0421/2077] wifi: ath12k: fix NULL deref in change_sta_links for unready link Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0422/2077] ata: libata: Fix ata_exec_internal() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0423/2077] ACPI: button: Fix lid_device value leak past driver removal Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0424/2077] ARM: imx31: Fix IIM mapping leak in revision check Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0425/2077] x86/cpu: Keep the PROCESSOR_SELECT menu together Greg Kroah-Hartman
2026-07-21 15:01 ` Greg Kroah-Hartman [this message]
2026-07-21 15:01 ` [PATCH 7.1 0427/2077] tcp_bbr: fix SPDX-License-Identifier to be GPL-2.0 OR BSD-3-Clause Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0428/2077] scsi: Revert "scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans" Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0429/2077] bpf: Reject exclusive maps as inner maps in map-in-map Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0430/2077] libbpf: Reject non-exclusive metadata maps in the signed loader Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0431/2077] libbpf: Skip initial_value override on signed loaders Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0432/2077] libbpf: Skip max_entries " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0433/2077] scsi: pm8001: Fix error code in non_fatal_log_show() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0434/2077] scsi: ufs: Fix wrong value printed in unexpected UPIU response case Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0435/2077] bpf: fix UAF by restoring RCU-delayed inode freeing in bpffs Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0436/2077] mm/fake-numa: fix under-allocation detection in uniform split Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0437/2077] ext2: fix ignored return value of generic_write_sync() Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0438/2077] sched: restore timer_slack_ns when resetting RT policy on fork Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0439/2077] nvme: fix FDP fdpcidx bounds check Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0440/2077] driver core: Use system_percpu_wq instead of system_wq Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0441/2077] bpf: Reject exclusive maps for bpf_map_elem iterators Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0442/2077] tick/sched: Fix TOCTOU in nohz idle time fetch Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0443/2077] lib/test_meminit: use && for bools Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0444/2077] riscv: dts: sophgo: sg2044: use hex for CPU unit address Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0445/2077] riscv: dts: sophgo: sg2042: " Greg Kroah-Hartman
2026-07-21 15:01 ` [PATCH 7.1 0446/2077] configfs_lookup(): dont leave ->s_dentry dangling on failure Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0447/2077] lockdep/selftests: Restore migrate_disable() state on PREEMPT_RT Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0448/2077] lockdep/selftests: Restore sched_rt_mutex " Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0449/2077] ext4: fix fast commit wait/wake bit mapping on 64-bit Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0450/2077] irqchip/exynos-combiner: Remove useless spinlock Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0451/2077] drm/amdgpu: fix KASAN slab-out-of-bounds in amdgpu_coredump ring dump Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0452/2077] drm/amd/pm: Add empty string validation to sysfs store functions Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0453/2077] drm/amdgpu: set sub_block_index for mca ras sub-blocks Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0454/2077] accel/amdxdna: Return errors for failed debug BO commands Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0455/2077] bpftool: Use libbpf error code for flow dissector query Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0456/2077] vhost: fix vhost_get_avail_idx for a non empty ring Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0457/2077] iommu/vt-d: Fix RB-tree corruption in probe error path Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0458/2077] mm: preserve PG_dropbehind flag during folio split Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0459/2077] eventpoll: rename attach_epitem() to ep_attach_file() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0460/2077] eventpoll: split ep_insert() into alloc + register stages Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0461/2077] eventpoll: extract ep_deliver_event() from ep_send_events() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0462/2077] eventpoll: wrap EP_UNACTIVE_PTR in typed sentinel helpers Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0463/2077] perf/x86/amd/core: Always use the NMI latency mitigation Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0464/2077] perf/x86/intel/uncore: Fix discovery unit lookup for multi-die systems Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0465/2077] perf/x86/intel/uncore: Fix PCI device refcount leak in UPI discovery Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0466/2077] perf/x86/amd/uncore: Use Node ID to identify DF and UMC domains Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0467/2077] xfrm: fix NAT-related field inheritance in SA migration Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0468/2077] wifi: wlcore: enable the right set of ciphers Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0469/2077] cxl/fwctl: Fix __fortify_panic Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0470/2077] cxl/test: " Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0471/2077] bpf: Take mmap_lock in zap_pages() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0472/2077] drm/amdkfd: always resume_all after suspend_all Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0473/2077] of: reserved_mem: avoid post-init UAF when alloc_reserved_mem_array() fails Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0474/2077] ocfs2: rebase copied fsdlm LVB pointers in locking_state Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0475/2077] lib: kunit_iov_iter: repeatedly call alloc_pages_bulk() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0476/2077] ocfs2: fix buffer head management in ocfs2_read_blocks() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0477/2077] ocfs2: validate fast symlink target during inode read Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0478/2077] ocfs2: reject FITRIM ranges shorter than a cluster Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0479/2077] ocfs2/dlm: require a ref for locking_state debugfs open Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0480/2077] ocfs2: fix race between ocfs2_control_install_private() and ocfs2_control_release() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0481/2077] ocfs2: fix out-of-bounds write in ocfs2_remove_refcount_extent Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0482/2077] cxl/pci: Fix the incorrect check of pci_read_config_word() return Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0483/2077] cxl/pci: Convert PCIBIOS errors to errno on DVSEC config accesses Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0484/2077] netfilter: nfnetlink_osf: fix mss parsing on big-endian architectures Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0485/2077] netfilter: nfnetlink_cthelper: use {READ,WRITE}_ONCE for accessing helper flags Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0486/2077] netfilter: synproxy: drop packets if timestamp adjustment fails Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0487/2077] netfilter: synproxy: adjust duplicate timestamp options Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0488/2077] netfilter: synproxy: fix unaligned memory access in timestamp adjustment Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0489/2077] netfilter: synproxy: protect nf_ct_seqadj_init() with conntrack lock Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0490/2077] netfilter: cttimeout: detach dataplane timeout policy and repurpose refcount Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0491/2077] ALSA: usb-audio: qcom: Initialize offload control return value Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0492/2077] mm/slub: preserve original size in _kmalloc_nolock_noprof retry path Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0493/2077] x86/cpu: Remove obsolete aperfmperf_get_khz() declaration Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0494/2077] netfilter: conntrack: revert ct extension genid infrastructure Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0495/2077] netfilter: conntrack: call nf_ct_gre_keymap_destroy() if master helper is pptp Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0496/2077] ntfs: free link name from ntfs_name_cache Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0497/2077] RDMA/hfi1: Open-code rvt_set_ibdev_name() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0498/2077] IB/cm: Fix av cm device leak on an error path in cm_init_av_by_path() Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0499/2077] ALSA: hda: fix Kconfig dependency of HD Audio PCI Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0500/2077] RDMA/irdma: Fix OOB read during CQ MR registration Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0501/2077] RDMA/irdma: Initialize iwmr->access during " Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0502/2077] arm64: dts: imx8mp-kontron: Reduce EERAM SPI clock frequency Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0503/2077] arm64: dts: imx94: fix DDR PMU interrupt number Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0504/2077] arm64: dts: imx95: Correct PCIe outbound address space configuration Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0505/2077] arm64: dts: lx2162a-clearfog: use rev2 SoC dtsi Greg Kroah-Hartman
2026-07-21 15:02 ` [PATCH 7.1 0506/2077] arm64: dts: tqma8mpql-mba8mpxl: configure sai clock in audio codec as well Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0507/2077] arm64: dts: imx8mp-kontron: Fix GPIO for display power switch Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0508/2077] arm64: dts: freescale: fsl-ls1028a-tqmls1028a-mbls1028a: switch mmc aliases Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0509/2077] RDMA/siw: Fix endpoint/socket association handling Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0510/2077] selftests/bpf: Fix flaky file_reader test Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0511/2077] bpf: Clear rb node linkage when freeing bpf_rb_root Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0512/2077] bpf: Check tail zero of bpf_map_info Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0513/2077] bpf: Check tail zero of bpf_prog_info Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0514/2077] bpf: Update transport_header when encapsulating UDP tunnel in lwt Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0515/2077] kernfs: fix xattr race condition with multiple superblocks Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0516/2077] tmpfs: simplify constructing "security.foo" xattr names Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0517/2077] simple_xattr: change interface to pass struct simple_xattrs ** Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0518/2077] simpe_xattr: use per-sb cache Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0519/2077] kernfs: link kn to its parent before the LSM init hook Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0520/2077] wifi: wcn36xx: fix heap overflow from oversized firmware HAL response Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0521/2077] wifi: wcn36xx: fix OOB read from firmware count in PRINT_REG_INFO indication Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0522/2077] wifi: wcn36xx: fix OOB read from short trigger BA firmware response Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0523/2077] ALSA: seq: Fix partial userptr event expansion Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0524/2077] ALSA: pcm: Fix unlocked runtime state reads in xfer ioctls Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0525/2077] riscv: cpu_ops: Change return value type of cpu_is_stopped() to bool Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0526/2077] riscv: stacktrace: Remove bogus -0x4 offset in non-FP walk_stackframe Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0527/2077] ALSA: seq: Clear variable event pointer on read Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0528/2077] riscv: alternative: Use IS_ENABLED() over ifdeffery for apply_vdso_alternatives() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0529/2077] riscv: alternative: Pass vDSO start as parameter to apply_vdso_alternatives() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0530/2077] riscv: alternative: Also patch the CFI vDSO Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0531/2077] bpf: Verifier support for sleepable tracepoint programs Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0532/2077] bpf: Reject sleepable BPF_LSM_CGROUP programs at load time Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0533/2077] netfilter: flowtable: avoid num_encaps underflow on bridge VLAN untag Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0534/2077] filelock: fix break_lease() stub signature for CONFIG_FILE_LOCKING=n Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0535/2077] bpf: Fix NMI/tracepoint re-entry deadlock on lru locks Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0536/2077] kunit:tool: Dont write to stdout when it should be disabled Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0537/2077] wifi: mac80211: bound S1G TIM PVB walk to the TIM element Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0538/2077] powerpc/8xx: implement get_direction() in cpm1 Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0539/2077] bpf: Fix NULL pointer dereference in bpf_task_from_vpid() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0540/2077] ACPI: IPMI: Fix message kref handling on dead device Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0541/2077] ACPI: processor: Add cpuidle driver check in acpi_processor_register_idle_driver() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0542/2077] cpufreq: Documentation: fix conservative governor freq_step description Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0543/2077] thermal: testing: reject missing command arguments Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0544/2077] btrfs: dont force DIO writes to be serialized Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0545/2077] ntfs: validate resident attribute lists and harden the validator Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0546/2077] ntfs: bound the look-ahead attribute-list entry in ntfs_external_attr_find() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0547/2077] ntfs: bound the attribute-list entry in ntfs_read_inode_mount() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0548/2077] ntfs: fix u16 truncation of restart-area length check Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0549/2077] IB/mlx5: Dont take the rereg_mr fallback without a new translation Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0550/2077] IB/mlx5: Properly support implicit ODP rereg_mr Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0551/2077] RDMA/nldev: Fix locking when accessing mr->pd Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0552/2077] IB/mlx5: Remove unused mkc bits in mlx5r_umr_update_mr_page_shift() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0553/2077] IB/mlx5: Pull the pdn out of the depths of the umr machinery Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0554/2077] IB/mlx5: Dont mangle the mr->pd inside the rereg callback Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0555/2077] spi: ep93xx: fix double-free of zeropage on DMA setup failure Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0556/2077] ASoC: amd: acp-sdw-legacy: Bound DAI link iteration Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0557/2077] ASoC: amd: acp-sdw-sof: " Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0558/2077] firmware_loader: Fix recursive lock in device_cache_fw_images() Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0559/2077] configfs: fix lockless traversals of ->s_children Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0560/2077] watchdog: unregister PM notifier on watchdog unregister Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0561/2077] pinctrl: qcom: Fix resolving register base address from device node Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0562/2077] scsi: target: Fix hexadecimal CHAP_I handling Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0563/2077] scsi: ufs: core: Handle PM commands timeout before SCSI EH Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0564/2077] scsi: target: Remove tcm_loop target reset handling Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0565/2077] pinctrl: mediatek: mt8516: Fix Schmitt trigger register offset of pins 34-39 Greg Kroah-Hartman
2026-07-21 15:03 ` [PATCH 7.1 0566/2077] pinctrl: mediatek: mt8167: " Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0567/2077] dt-bindings: pinctrl: realtek,rtd1625: Fix input voltage property name Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0568/2077] pinctrl: PINCTRL_STMFX should depend on CONFIG_OF Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0569/2077] iommufd: Take dma_resv lock before dma_buf_unpin() in release path Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0570/2077] iommufd: Destroy the pages content after detaching from dmabuf Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0571/2077] lib/test_hmm: fix memory leak in dmirror_migrate_to_system() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0572/2077] vmalloc: fix NULL pointer dereference in is_vm_area_hugepages() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0573/2077] rust: kbuild: show the right `quiet_cmd_rustc_procmacrolibrary` Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0574/2077] remoteproc: qcom_q6v5_wcss: drop redundant wcss_q6_bcr_reset Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0575/2077] hwspinlock: qcom: avoid uninitialized struct members Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0576/2077] sched/fair: Fix cpu_util runnable_avg arithmetic Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0577/2077] ARM: configs: Drop duplicated CONFIG_EXT4_FS Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0578/2077] wifi: mt76: mt7925: clean up DMA on probe failure Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0579/2077] wifi: mt76: mt7921: fix resource leak in probe error path Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0580/2077] wifi: mt76: use kfree_rcu for offchannel link in mt76_put_vif_phy_link Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0581/2077] wifi: mt76: mt7996: add missing max_remain_on_channel_duration Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0582/2077] wifi: mt76: mt7996: Fix NULL pointer dereference in mt7996_init_tx_queues() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0583/2077] wifi: mt76: mt7925: fix stale pointer comparisons in change_vif_links Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0584/2077] wifi: mt76: mt7925: keep TX BA state in the primary WCID Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0585/2077] wifi: mt76: mt792x: skip MLD header rewrite for 802.3 encap TX Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0586/2077] wifi: mt76: mt7925: validate skb length in testmode query Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0587/2077] wifi: mt76: mt7996: Fix possible token leak in mt7996_tx_prepare_skb() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0588/2077] wifi: mt76: mt7996: Fix possible NULL pointer dereference in mt7996_mac_write_txwi_80211() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0589/2077] wifi: mt76: mt7996: fix reading zeroed info->control.flags after mt76_tx_status_skb_add() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0590/2077] wifi: mt76: mt7996: remove redundant pdev->bus check in probe Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0591/2077] wifi: mt76: mt7996: limit work in set_bitrate_mask Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0592/2077] wifi: mt76: fix argument to ieee80211_is_first_frag() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0593/2077] wifi: mt76: mt7915: fix potential tx_retries underflow Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0594/2077] wifi: mt76: mt7921: " Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0595/2077] wifi: mt76: mt7925: " Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0596/2077] wifi: mt76: mt7996: " Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0597/2077] btrfs: fix invalid pointer dereference in __btrfs_run_delayed_refs() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0598/2077] ALSA: aloop: Drop superfluous break Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0599/2077] gpio: mt7621: fix interrupt banks mapping on gpio chips Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0600/2077] wifi: ath12k: fix EAPOL TX failure caused by stale tcl_metadata bits Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0601/2077] wifi: ath12k: enable IEEE80211_VHT_EXT_NSS_BW_CAPABLE when NSS ratio is reported Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0602/2077] fbdev/arm: Export acorndata_8x8 font symbol for bootloader Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0603/2077] fbdev: sm501fb: Fix buffer errors in OF binding code Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0604/2077] memory: tegra186-emc: stop borrowing MC aggregate hook for EMC Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0605/2077] vfs: add FS_USERNS_DELEGATABLE flag and set it for NFS Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0606/2077] hwmon: (it87) Clamp negative values to zero in set_fan() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0607/2077] PM: QoS: Fix misc device registration unwind Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0608/2077] btrfs: zoned: dont account data relocation space-info in statfs free space Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0609/2077] btrfs: zoned: fix deadlock waiting for ticket during data relocation Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0610/2077] Revert "btrfs: fix the file offset calculation inside btrfs_decompress_buf2page()" Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0611/2077] btrfs: zoned: always set max_active_zones for zoned devices Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0612/2077] btrfs: annotate lockless read of defrag_bytes in should_nocow() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0613/2077] btrfs: fix deadlock cloning inline extent when using flushoncommit Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0614/2077] btrfs: lzo: reject compressed segment that overflows the compressed input Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0615/2077] ixgbe: do not configure xps for XDP queues Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0616/2077] igc: skip RX timestamp header for frame preemption verification Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0617/2077] ASoC: sma1307: Fix uevent string leaks in fault worker Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0618/2077] IB/mlx4: Fill in the access_flags if IB_MR_REREG_ACCESS is not specified Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0619/2077] NFSD: Handle layout stid in nfsd4_drop_revoked_stid() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0620/2077] lockd: Stop warning on nlm__int__drop_reply in !V4 cast_status Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0621/2077] lockd: Translate nlm__int__deadlock in __nlm4svc_proc_lock_msg() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0622/2077] lockd: Do not monitor when looking up the LOCK_MSG callback host Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0623/2077] lockd: Avoid hashing uninitialized bytes in nlm4svc_lookup_file() Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0624/2077] spi: meson-spifc: fix runtime PM leak on remove Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0625/2077] ASoC: codecs: aw88261: fix incorrect masks for boost regs Greg Kroah-Hartman
2026-07-21 15:04 ` [PATCH 7.1 0626/2077] bpf: Cancel special fields on map value recycle Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0627/2077] clocksource: move NXP timer selection to drivers/clocksource Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0628/2077] vduse: hold vduse_lock across IDR lookup in open path Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0629/2077] vhost/vdpa: validate virtqueue index in mmap and fault paths Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0630/2077] virtio: rtc: tear down old virtqueues before restore Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0631/2077] virtio_console: read size from config space during device init Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0632/2077] vduse: Requeue failed read to send_list head Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0633/2077] vhost/net: complete zerocopy ubufs only once Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0634/2077] tools/virtio: check mmap return value in vringh_test Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0635/2077] vduse: fix compat handling for VDUSE_IOTLB_GET_FD/VDUSE_VQ_GET_INFO Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0636/2077] vdpa/octeon_ep: Fix PF->VF mailbox data address calculation Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0637/2077] vdpa/octeon_ep: fix IRQ-to-ring mapping in interrupt handler Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0638/2077] iomap: pass the correct len to fserror_report_io in __iomap_write_begin Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0639/2077] ASoC: cs35l56: Fix missing calls to wm_adsp2_remove() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0640/2077] ASoC: cs35l56: Prevent double-free of debugfs Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0641/2077] ASoC: cs35l56: Cleanup if component_probe fails Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0642/2077] ASoC: cs35l56: Dont leave parent IRQ disabled if system_suspend fails Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0643/2077] hwmon: (gpd-fan): drop global driver data and use per-device allocation Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0644/2077] hwmon: (gpd-fan): Initialize EC before registering hwmon device Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0645/2077] hwmon: (gpd-fan): fix race condition between device removal and sysfs access Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0646/2077] ext4: fix ERR_PTR(0) in ext4_mkdir() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0647/2077] tools: missed broadcast_neigh if_link uapi header Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0648/2077] netlink: specs: rt-link: missed broadcast-neigh Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0649/2077] bonding: 3ad: add lacp_strict configuration knob Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0650/2077] bonding: 3ad: fix carrier when no usable slaves Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0651/2077] bonding: 3ad: fix mux port state on oper down Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0652/2077] ext4: fix kernel BUG in ext4_write_inline_data_end Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0653/2077] ext4: validate donor file superblock early in EXT4_IOC_MOVE_EXT Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0654/2077] selftests/bpf: Fix bpf_iter/task_vma test Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0655/2077] cxl/test: Verify cmd->size_in before accessing payload Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0656/2077] cxl/test: Fix integer overflow in mock LSA bounds checks Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0657/2077] cxl/test: Zero out LSA backing memory to avoid leaking to user Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0658/2077] of: cpu: add check in __of_find_n_match_cpu_property() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0659/2077] vfio/qat: fix f_pos race in qat_vf_resume_write() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0660/2077] bpf: Tighten cgroup storage cookie checks for prog arrays Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0661/2077] m68k: mcf5441x: fix clocks numbering Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0662/2077] pinctrl: sunxi: a523: Remove unneeded IRQ remuxing flag Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0663/2077] pinctrl: airoha: an7581: add missed gpio32 pin group Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0664/2077] pinctrl: airoha: an7583: " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0665/2077] pinctrl: airoha: an7581: fix misprint in gpio19 pinconf Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0666/2077] pinctrl: airoha: an7583: " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0667/2077] pinctrl: airoha: an7581: fix incorrect led mapping in phy4_led1 pin function Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0668/2077] pinctrl: airoha: an7583: " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0669/2077] pinctrl: airoha: fix pwm pin function for an7581 and an7583 Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0670/2077] pinctrl: airoha: an7583: fix gpio21 pin group Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0671/2077] pinctrl: airoha: an7583: add missed gpio22 " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0672/2077] pinctrl: airoha: an7583: fix phy1_led1 pin function Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0673/2077] pinctrl: airoha: an7583: remove undefined groups from pcm_spi " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0674/2077] arm64: dts: allwinner: a523: Add missing GPIO interrupt Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0675/2077] ASoC: cs35l56: Fix possible uninitialized value in cs35l56_spi_system_reset() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0676/2077] s390/process: Fix kernel thread function pointer type Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0677/2077] Bluetooth: hci_qca: fix NULL pointer dereference in qca_setup() for non-serdev device Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0678/2077] Bluetooth: hci_qca: fix NULL pointer dereference in qca_dmp_hdr() " Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0679/2077] Bluetooth: eir: Fix stack OOB write when prepending the Flags AD Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0680/2077] Bluetooth: hci_event: fix simultaneous discovery stuck in FINDING Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0681/2077] Bluetooth: hci_core: Fix UAF in hci_unregister_dev() Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0682/2077] Bluetooth: btmtk: fix URB leak in alloc_mtk_intr_urb error path Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0683/2077] Bluetooth: btintel_pcie: Load IOSF debug regs by controller variant Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0684/2077] Bluetooth: hci: validate codec capability element length Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0685/2077] Bluetooth: vhci: validate devcoredump state before side effects Greg Kroah-Hartman
2026-07-21 15:05 ` [PATCH 7.1 0686/2077] RDMA/mlx5: Fix mkey creation error flow rollback Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0687/2077] RDMA/mlx5: Fix TPH extraction in FRMR pool key Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0688/2077] RDMA/core: Fix skipped usage for driver built FRMR key Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0689/2077] RDMA/core: Fix FRMR aging push to queue error flow Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0690/2077] RDMA/core: Fix FRMR set pinned push error path Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0691/2077] RDMA/core: Avoid NULL dereference on FRMR bad usage Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0692/2077] RDMA/core: Fix FRMR handle leak on push failure Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0693/2077] RDMA/core: Add ib_frmr_pool_drop for unrecoverable handles Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0694/2077] RDMA/mlx5: Drop FRMR pool handle on UMR revoke failure Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0695/2077] fs: efs: remove unneeded debug prints Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0696/2077] RDMA/mlx5: Remove DCT restrack tracking Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0697/2077] RDMA/mlx5: Remove raw RSS QP " Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0698/2077] RDMA/mlx5: Fix undefined shift of user RQ WQE size Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0699/2077] RDMA/mlx5: Release the HW‑provided UAR index rather than the SW one Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0700/2077] ASoC: cs35l56: Fix wrong error test on simple_write_to_buffer() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0701/2077] ASoC: SOF: Intel: select SND_SOC_SDW_UTILS=y from SND_SOC_SOF_HDA_GENERIC=y Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0702/2077] ASoC: SOF: Intel: hda-sdw-bpt: select SND_SOF_SOF_HDA_SDW_BPT properly Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0703/2077] ASoC: codecs: hdac_hdmi: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0704/2077] ASoC: meson: aiu: Validate written enum values Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0705/2077] ASoC: fsl: fsl_audmix: " Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0706/2077] ASoC: tegra: tegra210_ahub: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0707/2077] ASoC: topology: Check PCM and DAI name strings before use Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0708/2077] net: dsa: qca8k: fix led devicename when using external mdio bus Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0709/2077] net/sched: cls_flow: Dont expose folded kernel pointers Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0710/2077] ipv4: fib: Dont dump dying fib_info in fib_leaf_notify() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0711/2077] net: fib_rules: Dont dump dying fib_rule in fib_rules_dump() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0712/2077] bridge: cfm: reject invalid CCM interval at configuration time Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0713/2077] sctp: validate embedded address parameter length Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0714/2077] net: pfcp: allocate per-cpu tstats for PFCP netdevs Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0715/2077] net: Stop leased rxq before uninstalling its memory provider Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0716/2077] net/sched: sch_hfsc: Dont make class passive twice Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0717/2077] tipc: require net admin for TIPCv2 netlink mutators Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0718/2077] tipc: prevent snt_unacked underflow on CONN_ACK Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0719/2077] tipc: reject inverted service ranges from peer bindings Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0720/2077] cxl/test: Unregister cxl_acpi in cxl_test_init() error path Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0721/2077] cxl/test: Add check after kzalloc() memory in alloc_mock_res() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0722/2077] crypto: marvell/octeontx - fix DMA cleanup using wrong loop index Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0723/2077] crypto: cavium/cpt " Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0724/2077] crypto: rng - Free default RNG on module exit Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0725/2077] ALSA: usb-audio: qcom: Guard sideband endpoint removal Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0726/2077] ALSA: seq: Fix kernel heap address leak in bounce_error_event() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0727/2077] iommu/dma-iommu: Fix wrong scatterlist length assignment in P2PDMA path Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0728/2077] iommufd: Clarify IOAS_MAP_FILE dma-buf support Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0729/2077] spi: xilinx: use FIFO occupancy register to determine buffer size Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0730/2077] iommu: Avoid copying the user array twice in the full-array copy helper Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0731/2077] ASoC: sdw_utils: fix missing component_name for cs42l43 part_id 0x2A3B Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0732/2077] cxl/region: Fix out-of-bounds access in cxl_cancel_auto_attach() Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0733/2077] cxl/region: Fill first free targets[] slot during auto-discovery Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0734/2077] vfio: selftests: Ensure libvfio output dirs are always created Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0735/2077] ASoC: adau1372: Clear PLL_EN on failed PLL lock without reset GPIO Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0736/2077] cxl/region: Block region delete during region creation Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0737/2077] cxl/region: Resolve region deletion races Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0738/2077] cxl/memdev: Pin parents for entire memdev lifetime Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0739/2077] power: supply: core: fix supplied_from allocations Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0740/2077] handshake: Require admin permission for DONE command Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0741/2077] bnxt: fix head underflow on XDP head-grow Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0742/2077] tcp: clear sock_ops cb flags before force-closing a child socket Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0743/2077] virtio_net: do not allow tunnel csum offload for non GSO packets Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0744/2077] net/sched: sch_fq_codel: Do not call qdisc_tree_reduce_backlog during peek before restoring qlen Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0745/2077] net/sched: sch_codel: " Greg Kroah-Hartman
2026-07-21 15:06 ` [PATCH 7.1 0746/2077] net/sched: sch_dualpi2: " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0747/2077] net: mana: initialize gdma queue id to INVALID_QUEUE_ID Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0748/2077] net: mana: guard TX wq object destroy with INVALID_MANA_HANDLE check Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0749/2077] net: watchdog: fix refcount tracking races Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0750/2077] net: ethernet: mtk_wed: fix loading WO firmware for MT7986 Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0751/2077] net/sched: sch_dualpi2: Add missing module alias Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0752/2077] bpf: Run generic devmap egress prog on private skb Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0753/2077] net/mlx5: Check max_macs devlink param value against max capability Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0754/2077] bpf: Fix setting retval to -EPERM for cgroup hooks not returning errno Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0755/2077] octeontx2-af: npc: Fix size of entry2cntr_map Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0756/2077] net: airoha: Fix error handling in airoha_ppe_flush_sram_entries() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0757/2077] net: ethernet: mtk_wed: debugfs: correct index in wed_amsdu_show() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0758/2077] net: wwan: t7xx: check skb_clone in control TX Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0759/2077] dpll: fix stale iteration in dpll_pin_on_pin_unregister() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0760/2077] dpll: send delete notification before unregister in on-pin rollback Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0761/2077] dpll: emit per-dpll delete notifications in dpll_pin_on_pin_unregister() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0762/2077] dpll: guard sync-pair removal on full pin unregister Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0763/2077] dpll: balance create/delete notifications in __dpll_pin_(un)register Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0764/2077] landlock: Fix unmarked concurrent access to socket family Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0765/2077] net: bcmgenet: Use weighted round-robin TX DMA arbitration Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0766/2077] octeontx2-af: fix NPC mailbox codes in mbox.h Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0767/2077] net: airoha: Fix register index for Tx-fwd counter configuration Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0768/2077] net: airoha: Fix debugfs new-tuple display for IPv4 ROUTE entries Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0769/2077] kcm: use WRITE_ONCE() when changing lower socket callbacks Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0770/2077] ALSA: seq: oss: Serialize readq reset state with q->lock Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0771/2077] ALSA: seq: avoid stale FIFO cells during resize Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0772/2077] netfilter: nf_conncount: callers must hold rcu read lock Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0773/2077] netfilter: nf_dup_netdev: add nf_dev_xmit_recursion*() helpers and use them Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0774/2077] geneve: Fix off-by-one comparing with GRO_LEGACY_MAX_SIZE Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0775/2077] ALSA: core: Fix unintuitive behavior of snd_power_ref_and_wait() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0776/2077] smb: client: fix conflicting option validation for new mount API Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0777/2077] cifs: remove all cifs files before kill super Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0778/2077] smb/client: always return a value for FS_IOC_GETFLAGS Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0779/2077] btrfs: Drop WQ_PERCPU from ordered_flags in btrfs_init_workqueues() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0780/2077] bpf: Guard __get_user acesss with access_ok for uprobe_multi data Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0781/2077] selftests/bpf: Fix typo in verify_umulti_link_info Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0782/2077] selftests/bpf: Initialize operation name before use Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0783/2077] bpf: Fix bpf_get/setsockopt to tos for ipv4-mapped ipv6 socket Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0784/2077] udf: fix nls leak on udf_fill_super() failure Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0785/2077] bpf, sockmap: reject overflowing copy + len in bpf_msg_push_data() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0786/2077] sockmap: Fix use-after-free in udp_bpf_recvmsg() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0787/2077] bpf, sockmap: fix integer overflow in bpf_msg_pop_data() bounds check Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0788/2077] MIPS: mm: Fix out-of-bounds write in maar_res_walk() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0789/2077] powerpc/perf: fix preempt count underflow in fsl_emb_pmu_del Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0790/2077] powerpc/powernv: fix preempt count leak in pnv_kexec_wait_secondaries_down Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0791/2077] powerpc/kexec: fix double get_cpu() imbalance in kexec_prepare_cpus Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0792/2077] KEYS: Use acquire when reading state in keyring search Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0793/2077] tipc: fix UAF in tipc_l2_send_msg() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0794/2077] tcp: ipv6: clamp default adverting MSS to avoid GSO_BY_FRAGS (0xFFFF) Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0795/2077] net: airoha: Fix always-true condition in PPE1 queue reservation loop Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0796/2077] net: ti: icssg-prueth: Fix AF_XDP fill ring alloc and wakeup condition Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0797/2077] net: ti: icssg: Use undirected TX tag for native XDP in HSR offload mode Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0798/2077] net: ti: icssg: Use undirected TX tag for XDP zero copy " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0799/2077] net: ethernet: oa_tc6: mdiobus->parent initialized with NULL Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0800/2077] net: ethernet: oa_tc6: Remove FCS size in RX frame Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0801/2077] dt-bindings: net: updated interrupt type to be active low, level triggered Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0802/2077] ionic: Fix check in ionic_get_link_ext_stats Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0803/2077] RDMA/bnxt_re: Initialize dpi variable to zero Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0804/2077] RDMA/bnxt_re: Free SRQ toggle page after firmware teardown Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0805/2077] RDMA/bnxt_re: Free CQ " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 7.1 0806/2077] RDMA/bnxt_re: Avoid displaying the kernel pointer Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0807/2077] RDMA/bnxt_re: Refactor bnxt_re_init_user_qp() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0808/2077] RDMA/bnxt_re: Update msn table size for app allocated QPs Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0809/2077] RDMA/bnxt_re: Enhance dbr usecnt logic in doorbell uapis Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0810/2077] RDMA/bnxt_re: Support doorbells for app allocated QPs Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0811/2077] RDMA/bnxt_re: Enable " Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0812/2077] RDMA/bnxt_re: Add a max slot check for SQ Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0813/2077] RDMA/bnxt_re: Proper rollback if the ioremap fails Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0814/2077] RDMA/bnxt_re: Avoid repeated requests to allocate WC pages Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0815/2077] RDMA/bnxt_re: Fail DBR related page allocation UAPIs if the feature is disabled Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0816/2077] RDMA/bnxt_re: Reject GET_TOGGLE_MEM when toggle page was not allocated Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0817/2077] RDMA/hns: Fix memory leak of bonding resources Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0818/2077] RDMA/irdma: Replace waitqueue and flag with completion Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0819/2077] net: serialize netif_running() check in enqueue_to_backlog() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0820/2077] ksmbd: fix use-after-free in same_client_has_lease() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0821/2077] mfd: bd72720: Drop BUCK11 ID Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0822/2077] mfd: rsmu: Fix page register setup Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0823/2077] mfd: cs42l43: Sanity check firmware size Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0824/2077] ocfs2: fix circular locking dependency in ocfs2_dio_end_io_write Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0825/2077] 9p: avoid returning ERR_PTR(0) from mkdir operations Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0826/2077] net/9p: fix race condition on rdma->state in trans_rdma.c Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0827/2077] 9p: Add missing read barrier in virtio zero-copy path Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0828/2077] eventpoll: expand top-of-file overview / locking doc Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0829/2077] eventpoll: rename epi->next and txlist for clarity Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0830/2077] eventpoll: Fix epoll_wait() report false negative Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0831/2077] gpiolib: acpi: Only trigger ActiveBoth interrupts on boot Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0832/2077] i3c: master: svc: Fix missed IBI after false SLVSTART on NPCM845 Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0833/2077] staging: rtl8723bs: fix stainfo check in rtw_aes_decrypt Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0834/2077] staging: nvec: fix use-after-free in nvec_rx_completed() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0835/2077] perf dwarf-aux: Fix libdw segmentation fault in cu_walk_functions_at Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0836/2077] perf dwarf-aux: Fix libdw API contract violations Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0837/2077] perf libdw: Fix libdw API contract violations and memory leaks Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0838/2077] perf probe-finder: Fix libdw API contract violations Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0839/2077] perf annotate-data: " Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0840/2077] perf debuginfo: " Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0841/2077] perf callchain: Handle multiple address spaces Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0842/2077] coresight: cti: Fix DT filter signals silently ignored Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0843/2077] soundwire: dont program SDW_SCP_BUSCLOCK_SCALE on a unattached Peripheral Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0844/2077] soundwire: fix bug in sdw_add_element_group_count found by syzkaller Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0845/2077] coresight: tmc: Fix overflow when calculating is bigger than 2GiB Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0846/2077] coresight: ete: Always save state on power down Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0847/2077] coresight: etm4x: Correct TRCVMIDCCTLR1 save and restore Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0848/2077] PCI/ASPM: Dont reconfigure ASPM entering low-power state Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0849/2077] PCI: Introduce named defines for PCI ROM Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0850/2077] PCI: Check ROM header and data structure addr before accessing Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0851/2077] x86/platform/olpc: xo15: Drop wakeup source on driver removal Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0852/2077] platform/x86: xo15-ebook: Fix wakeup source and GPE handling Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0853/2077] perf sched: Add missing mmap2 handler in timehist Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0854/2077] perf tool: Fix missing schedstat delegates and dont_split_sample_group in delegate_tool Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0855/2077] PCI: intel-gw: Move interrupt enable to own function Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0856/2077] PCI: intel-gw: Enable clock before PHY init Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0857/2077] PCI: intel-gw: Add .start_link() callback Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0858/2077] PCI: loongson: Do not ignore downstream devices on external bridges Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0859/2077] rust: alloc: fix assert in `Vec::reserve` doc test Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0860/2077] bus: mhi: ep: Fix potential deadlock in mhi_ep_reset_worker() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0861/2077] bus: mhi: ep: Add missing state_lock protection for mhi_state access Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0862/2077] coresight: fix missing error code when trace ID is invalid Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0863/2077] clk: qcom: cmnpll: Account for reference clock divider Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0864/2077] dt-bindings: clock: qcom,sm6125-dispcc: reference qcom,gcc.yaml Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0865/2077] PCI: dwc: Apply ECRC workaround for DesignWare cores prior to 5.10a Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 7.1 0866/2077] PCI: qcom: Set max OPP before DBI access during resume Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0867/2077] phy: phy-can-transceiver: Check driver match and driver data against NULL Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0868/2077] perf pmu-events AMD: Switch l2_itlb_misses to bp_l1_tlb_miss_l2_tlb_miss.all Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0869/2077] perf unwind: Refactor get_entries to allow dynamic libdw/libunwind selection Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0870/2077] perf pmu: Skip test on Arm64 when #slots is zero Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0871/2077] clk: at91: sam9x7: Fix gmac_gclk clock definition Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0872/2077] iio: light: acpi-als: Check ACPI_COMPANION() against NULL Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0873/2077] soundwire: intel_ace2x: release bpt_stream when close it Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0874/2077] coresight: Fix source not disabled on idr_alloc_u32 failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0875/2077] coresight: Handle helper enable failure properly Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0876/2077] PCI: mediatek-gen3: Do full device power down on removal Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0877/2077] mailbox: mpfs: fix check for syscon presence in mpfs_mbox_inbox_isr() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0878/2077] mailbox: mtk-adsp: fix UAF during device teardown Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0879/2077] mailbox: dont free the channel if the startup callback failed Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0880/2077] PCI/pwrctrl: Lock device when calling device_is_bound() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0881/2077] coresight: platform: defer connection counter increment until alloc succeeds Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0882/2077] PCI: dwc: Fix signedness bug in fault injection test code Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0883/2077] PCI: mediatek-gen3: Fix incorrectly skipped pwrctrl error message Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0884/2077] platform/x86: classmate-laptop: Address memory leaks on driver removal Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0885/2077] clk: microchip: mpfs-ccc: fix peripheral driver registration failures after oob fix Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0886/2077] perf build-id: Fix off-by-one bug when printing kernel/module build-id Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0887/2077] perf event: Fix size of synthesized sample with branch stacks Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0888/2077] perf inject: Fix itrace branch stack synthesis Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0889/2077] staging: most: video: avoid double free on video register failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0890/2077] usb: host: max3421: Fix shift-out-of-bounds in max3421_hub_control() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0891/2077] usb: host: max3421: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0892/2077] perf test amd ibs: Fix incorrect kernel version check Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0893/2077] gpib: Fix inappropriate ioctl error return Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0894/2077] char: tlclk: fix use-after-free in tlclk_cleanup() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0895/2077] hpet: Check ACPI_COMPANION() against NULL at probe time Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0896/2077] sonypi: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0897/2077] gpib: fix double decrement of descriptor_busy in command_ioctl() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0898/2077] gpib: cb7210: Fix region leak when request_irq fails Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0899/2077] clk: renesas: rzg2l: Rename iterator in for_each_mod_clock() to avoid shadowing Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0900/2077] docs: threat-model: add missing closing parenthesis Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0901/2077] powerpc tools perf: Initialize error code in auxtrace_record_init function Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0902/2077] PCI: qcom: Disable ASPM L0s for SA8775P Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0903/2077] timers/migration: Update stale @online doc to @available Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0904/2077] perf header: Sanity check HEADER_EVENT_DESC attr.size before swap Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0905/2077] perf header: Validate bitmap size before allocating in do_read_bitmap() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0906/2077] iio: light: si1133: reset counter to prevent race condition Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0907/2077] iio: light: si1133: prevent race condition on timeout Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0908/2077] iio: magnetometer: ak8975: fix potential kernel stack memory leak Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0909/2077] iio: adc: xilinx-ams: fix out-of-bounds channel lookup in event handling Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0910/2077] iio: accel: mma8452: handle I2C read error(s) in mma8452_read() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0911/2077] iio: tcs3472: power down chip on probe failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0912/2077] clk: at91: keep securam node alive while mapping it Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0913/2077] HID: logitech-hidpp: remove excess kernel-doc member in hidpp_scroll_counter Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0914/2077] docs: changes.rst: restore pahole 1.26 minimum (regressed by sort) Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0915/2077] clk: spacemit: k3: Switch to pll2_d6 as parent for PCIe clock Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0916/2077] clk: spacemit: k3: Fix PCIe clock register offset Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0917/2077] fs/ntfs3: add bounds check to run_get_highest_vcn() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0918/2077] fs/ntfs3: fix wrong LCN in run_remove_range() when splitting a run Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0919/2077] fs/ntfs3: call _ntfs_bad_inode() when failing to rename Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0920/2077] ntfs3: Allocate iomap inline_data using alloc_page Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0921/2077] ntfs3: avoid another -Wmaybe-uninitialized warning Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0922/2077] fs/ntfs3: fix mount failure on 64K page-size kernels Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0923/2077] drm/amd/display: Add missing kdoc for ALLM parameters Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0924/2077] thunderbolt: debugfs: Fix margining error counter buffer leak Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0925/2077] dmaengine: imx-sdma: Refine spba bus searching in probe Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 7.1 0926/2077] dt-bindings: dma: nvidia,tegra186-gpc-dma: Make reset optional Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0927/2077] perf: Fix off-by-one stack buffer overflow in kallsyms__parse() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0928/2077] perf annotate: Fix crashes on empty annotate windows Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0929/2077] perf tools: Guard test_bit from out-of-bounds sample CPU Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0930/2077] perf sched: Fix thread reference leak in latency_switch_event Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0931/2077] perf sched: Replace BUG_ON on invalid CPU with graceful skip Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0932/2077] perf sched: Fix NULL dereference in latency_runtime_event Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0933/2077] perf sched: Fix comp_cpus heap overflow with cross-machine recordings Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0934/2077] perf tools: Guard remaining test_bit calls from OOB sample CPU Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0935/2077] perf tools: Add bounds check to cpu__get_node() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0936/2077] perf sched: Fix thread reference leaks in timehist_get_thread() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0937/2077] perf sched: Cap max_cpu at MAX_CPUS in timehist sample processing Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0938/2077] perf sched: Fix register_pid() overflow, strcpy, and BUG_ON Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0939/2077] perf mmap: Guard cpu__get_node() return in aio_bind() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0940/2077] perf stat: Bounds-check CPU index in topology aggregation callbacks Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0941/2077] perf c2c: Bounds-check CPU and node IDs before bitmap and array access Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0942/2077] perf c2c: Bounds-check CPU IDs in setup_nodes() topology loop Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0943/2077] perf sched: Clean up idle_threads entry on init failure Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0944/2077] perf sched: Use is_idle_sample() for idle thread runtime cast guard Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0945/2077] perf sched: Fix thread reference leak in idle hist processing Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0946/2077] perf sched: Use thread__put() in free_idle_threads() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0947/2077] perf sched: Replace BUG_ON and add NULL checks in replay event helpers Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0948/2077] perf mmap: Fix NULL deref in aio cleanup on alloc failure Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0949/2077] perf stat: Introduce perf_env__get_cpu_topology() to guard NULL env->cpu Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0950/2077] perf c2c: Fix use-after-free in he__get_c2c_hists() error path Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0951/2077] perf timechart: Fix cpu2y() OOB read on untrusted CPU index Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0952/2077] perf tools: Fix int16_t truncation of max_cpu_num in set_max_cpu_num() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0953/2077] perf sched: Free callchain nodes in idle thread cleanup Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0954/2077] dt-bindings: clock: qcom: Add X1P42100 camera clock controller Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0955/2077] clk: qcom: camcc-x1e80100: Add support for camera QDSS debug clocks Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0956/2077] docs: memfd_preservation: fix rendering of ABI documentation Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0957/2077] mshv: add bounds check on vp_index in mshv_intercept_isr() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0958/2077] dmaengine: qcom: gpi: set DMA_PRIVATE capability Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0959/2077] dmaengine: Fix possible use after free Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0960/2077] dmaengine: dma-axi-dmac: Properly free struct axi_dmac_desc Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0961/2077] dmaengine: dma-axi-dmac: use DMA pool to manange DMA descriptor Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0962/2077] clk: qcom: a53: Corrected frequency multiplier for 1152MHz Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0963/2077] sunrpc: Fix error handling in rpc_sysfs_xprt_switch_add_xprt_store() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0964/2077] pNFS/filelayout: fix cheking if a layout is striped Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0965/2077] xprtrdma: Use sendctx DMA state for Send signaling Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0966/2077] xprtrdma: Decouple req recycling from RPC completion Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0967/2077] NFSv4/pnfs: defer return_range callbacks until after inode unlock Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0968/2077] nfs: keep PG_UPTODATE clear after read errors in page groups Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0969/2077] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS on fatal DS connect errors Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0970/2077] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS in pg_get_mirror_count_write Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0971/2077] nfs: use nfsi->rwsem to protect traversal of the file lock list Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0972/2077] PCI: mediatek: Fix operator precedence in PCIE_FTS_NUM_L0 macro Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0973/2077] pwm: rzg2l-gpt: Add missing newlines to dev_err_probe() messages Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0974/2077] PCI: meson: Propagate devm_add_action_or_reset() failure Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0975/2077] PCI: meson: Add missing remove callback Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0976/2077] lockd: Correct kernel-doc status descriptions for NLMv4 GRANTED Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0977/2077] virtio: add missing kernel-doc for map and vmap members Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0978/2077] fs/ntfs3: prevent potential lcn remains uninitialized Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0979/2077] fs/ntfs3: resize log->one_page_buf when adopting on-disk page size Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0980/2077] platform/x86/intel/vsec: Restore BAR fallback for header walk Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0981/2077] perf tools: Fix get_max_num() size_t underflow on empty sysfs file Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0982/2077] perf tools: Use scnprintf() in cpu_map__snprint() to prevent overflow Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0983/2077] perf tools: Use perf_env__get_cpu_topology() in machine__resolve() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0984/2077] perf tools: NULL bitmap pointers after bitmap_free() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0985/2077] PCI: rcar-host: Remove unused LIST_HEAD(res) Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 7.1 0986/2077] perf sched: Bounds-check prio before test_bit() in timehist Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0987/2077] perf sched: Fix idle-hist callchain display using wrong rb_first variant Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0988/2077] perf tools: Add O_CLOEXEC to open() calls in DSO and ELF code Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0989/2077] perf bpf: Use scnprintf() in snprintf_hex() and synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0990/2077] perf hists: Fix snprintf() in hists__scnprintf_title() UID filter path Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0991/2077] perf tools: Use scnprintf() in build_id__snprintf() and hwmon read_events() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0992/2077] xprtrdma: Fix ep kref imbalance on ADDR_CHANGE Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0993/2077] xprtrdma: Initialize re_id before removal registration Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0994/2077] xprtrdma: Check frwr_wp_create() during connect Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0995/2077] xprtrdma: Document and assert reply-handler invariants Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0996/2077] xprtrdma: Resize reply buffers before reposting receives Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0997/2077] xprtrdma: Fix bcall rep leak and unbounded peek Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0998/2077] xprtrdma: Sanitize the reply credit grant after parsing Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 7.1 0999/2077] xprtrdma: Repost Receive buffers for malformed replies 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=20260721152602.789190914@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aboorvad@linux.ibm.com \
    --cc=alison.schofield@intel.com \
    --cc=dave.jiang@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vishal.l.verma@intel.com \
    /path/to/YOUR_REPLY

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

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