From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Chuck Lever <chuck.lever@oracle.com>,
Michael Nemanov <michael.nemanov@vastdata.com>,
Anna Schumaker <anna.schumaker@hammerspace.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 0797/1276] SUNRPC: release lower rpc_clnt if killed waiting for XPRT_LOCKED
Date: Tue, 21 Jul 2026 17:20:40 +0200 [thread overview]
Message-ID: <20260721152503.908905057@linuxfoundation.org> (raw)
In-Reply-To: <20260721152446.065700225@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Chuck Lever <chuck.lever@oracle.com>
[ Upstream commit 29bacb096d43bd04062f6655e50ceeed27fe6d2f ]
xs_tcp_tls_setup_socket() creates a temporary "lower" rpc_clnt with
rpc_create() to drive the inner TLS handshake, then waits for
XPRT_LOCKED on its xprt with TASK_KILLABLE so a stuck handshake can
be aborted by signal. When the wait is interrupted, the function
jumps to out_unlock without releasing lower_clnt. The success path
and the out_close error path both call
rpc_shutdown_client(lower_clnt); only the killed-wait path skips it,
leaking the clnt and its underlying xprt.
Call rpc_shutdown_client() on this path before joining out_unlock.
xprt_release_write() is not needed here because XPRT_LOCKED was
never acquired.
Fixes: 26e8bfa30dac ("SUNRPC/TLS: Lock the lower_xprt during the tls handshake")
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Tested-by: Michael Nemanov <michael.nemanov@vastdata.com>
Reviewed-by: Michael Nemanov <michael.nemanov@vastdata.com>
Signed-off-by: Anna Schumaker <anna.schumaker@hammerspace.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/sunrpc/xprtsock.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/net/sunrpc/xprtsock.c b/net/sunrpc/xprtsock.c
index b78f1aae9e8068..f5b22267fadf46 100644
--- a/net/sunrpc/xprtsock.c
+++ b/net/sunrpc/xprtsock.c
@@ -2732,8 +2732,11 @@ static void xs_tcp_tls_setup_socket(struct work_struct *work)
lower_xprt = rcu_dereference(lower_clnt->cl_xprt);
rcu_read_unlock();
- if (wait_on_bit_lock(&lower_xprt->state, XPRT_LOCKED, TASK_KILLABLE))
+ if (wait_on_bit_lock(&lower_xprt->state, XPRT_LOCKED, TASK_KILLABLE)) {
+ /* XPRT_LOCKED was never acquired. */
+ rpc_shutdown_client(lower_clnt);
goto out_unlock;
+ }
status = xs_tls_handshake_sync(lower_xprt, &upper_xprt->xprtsec);
if (status) {
--
2.53.0
next prev parent reply other threads:[~2026-07-21 19:49 UTC|newest]
Thread overview: 1282+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-21 15:07 [PATCH 6.12 0000/1276] 6.12.97-rc1 review Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0001/1276] smb/server: do not require delete access for non-replacing links Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0002/1276] iommu/vt-d: Clear Present bit before tearing down context entry Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0003/1276] tcp: Add preempt_{disable,enable}_nested() in reqsk_queue_hash_req() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0004/1276] bpf: Support for hardening against JIT spraying Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0005/1276] x86/bugs: Enable IBPB flush on BPF JIT allocation Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0006/1276] bpf: Restrict JIT predictor flush to cBPF Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0007/1276] bpf: Skip redundant IBPB in pack allocator Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0008/1276] bpf: Prefer packs that wont trigger an IBPB flush on allocation Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0009/1276] bpf: Prefer dirty packs for eBPF allocations Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0010/1276] sched/fair: Only update stats for allowed CPUs when looking for dst group Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0011/1276] crypto: algif_skcipher - force synchronous processing Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0012/1276] KVM: arm64: Bound used_lrs when flushing the pKVM hyp vCPU Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0013/1276] KVM: arm64: Clear __hyp_running_vcpu " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0014/1276] iommu: Pass old domain to set_dev_pasid op Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0015/1276] iommu/vt-d: Cleanup intel_context_flush_present() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0016/1276] iommu/vt-d: Clear Present bit before tearing down scalable-mode context entry Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0017/1276] timekeeping: Register default clocksource before taking tk_core.lock Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0018/1276] nvmet-tcp: check INIT_FAILED before nvmet_req_uninit in digest error path Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0019/1276] nvmet-tcp: Fix potential UAF when ddgst mismatch Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0020/1276] vsock/virtio: fix zerocopy completion for multi-skb sends Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0021/1276] vsock/virtio: bind uarg before filling zerocopy skb Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0022/1276] crypto: sun4i-ss - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0023/1276] iommu/amd: Use maximum Event log buffer size when SNP is enabled on Family 0x19 Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0024/1276] iommu/amd: Use maximum PPR " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0025/1276] x86/mm: Fix check/use ordering in switch_mm_irqs_off() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0026/1276] net: dropreason: Gather SOCKET_ drop reasons Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0027/1276] af_unix: Set drop reason in unix_release_sock() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0028/1276] af_unix: Set drop reason in manage_oob() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0029/1276] af_unix: Set drop reason in unix_stream_read_skb() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0030/1276] af_unix/scm: fix whitespace errors Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0031/1276] af_unix: Dont hold unix_state_lock() in __unix_dgram_recvmsg() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0032/1276] af_unix: Dont check SOCK_DEAD in unix_stream_read_skb() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0033/1276] af_unix: Dont use skb_recv_datagram() " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0034/1276] af_unix: Drop all SCM attributes for SOCKMAP Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0035/1276] crypto: crypto4xx - Remove ahash-related code Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.12 0036/1276] crypto: crypto4xx - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0037/1276] crypto: hisi-trng - Remove crypto_rng interface Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0038/1276] time/jiffies: Register jiffies clocksource before usage Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0039/1276] time/jiffies: Change register_refined_jiffies() to void __init Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0040/1276] media: uvcvideo: Use hw timestaming if the clock buffer is full Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0041/1276] media: uvcvideo: Avoid partial metadata buffers Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0042/1276] media: uvcvideo: Fix buffer sequence in frame gaps Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0043/1276] media: uvcvideo: Fix dev_sof filtering in hw timestamp Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0044/1276] media: uvcvideo: Do not add clock samples with small sof delta Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0045/1276] media: uvcvideo: Relax the constrains for interpolating the hw clock Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0046/1276] media: uvcvideo: Fix sequence number when no EOF Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0047/1276] dt-bindings: media: sun4i-a10-video-engine: Add interconnect properties Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0048/1276] dt-bindings: power: imx93: Add MIPI PHY power domain Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0049/1276] serial: msm: Disable DMA for kernel console UART Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0050/1276] serial: max310x: implement gpio_chip::get_direction() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0051/1276] serial: 8250_omap: clear rx_running on zero-length DMA completes Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0052/1276] rxrpc: rxrpc_verify_data ensure rx_dec_buffer alloc Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0053/1276] rxrpc: Fix leak of released call in recvmsg(MSG_PEEK) Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0054/1276] afs: Fix netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0055/1276] afs: fix NULL pointer dereference in afs_get_tree() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0056/1276] afs: Fix further netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0057/1276] fbcon: fix NULL pointer dereference for a console without vc_data Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0058/1276] clocksource/drivers/sun5i: Handle error returns from devm_reset_control_get_optional_exclusive() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0059/1276] drm/rockchip: Test for imported buffers with drm_gem_is_imported() Greg Kroah-Hartman
2026-07-21 15:08 ` Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0060/1276] drm/tidss: Drop extra drm_mode_config_reset() call Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0061/1276] drm/gpuvm: Do not prepare NULL objects Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0062/1276] drm/amdgpu: fix integer overflow in amdgpu_gem_align_pitch() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0063/1276] drm/radeon: fix integer overflow in radeon_align_pitch() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0064/1276] drm/radeon: fix memory leak in radeon_ring_restore() on lock failure Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0065/1276] libbpf: Report error when a negative kprobe offset is specified Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0066/1276] drm/amd/pm: remove trailing semicolon from AMDGPU_PM_POLICY_ATTR macro Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0067/1276] selftests/bpf: Use local type for flow_offload_tuple_rhash in xdp_flowtable Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0068/1276] selftests/bpf: Use local type for bpf_fou_encap in test_tunnel_kern Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0069/1276] Documentation: proc: fix section numbering in table of contents Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0070/1276] arm64: dts: rockchip: Fix gmac0 reset pin for NanoPi R5S Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0071/1276] arm64: dts: qcom: sc8180x: Fix phy simple_bus_reg warning Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0072/1276] arm64: dts: qcom: sdm845-mezzanine: Fix camss ports unit_address_vs_reg warning Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0073/1276] wifi: cfg80211: fix grammar in MLO group key error message Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0074/1276] arm64: tegra: Fix Tegra234 MGBE PTP clock Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0075/1276] dt-bindings: pinctrl: nvidia,tegra234: Add missing required block Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0076/1276] drm/amdkfd: Validate CRIU-restored IDs before idr_alloc Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0077/1276] driver core: use READ_ONCE() for dev->driver in dev_has_sync_state() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0078/1276] wifi: rtw89: Correct data type for scan index to avoid infinite loop Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0079/1276] wifi: rtw88: fix OOB read from firmware RX descriptor exceeding DMA buffer Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0080/1276] kconfig: fix potential NULL pointer dereference in conf_askvalue Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0081/1276] soc: xilinx: Shutdown and free rx mailbox channel Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0082/1276] wifi: ath9k: fix OOB access from firmware tx status queue ID Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0083/1276] ARM: dts: am335x-sl50: Fix audio bitclock and frame master endpoint Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0084/1276] watchdog: sp5100_tco: Use EFCH MMIO for newer Hygon FCH Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0085/1276] watchdog: sama5d4_wdt: Fix WDDIS detection on SAM9X60 and SAMA7G5 Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0086/1276] watchdog: sprd_wdt: Remove redundant sprd_wdt_disable() on register failure Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0087/1276] media: cedrus: Fix failure to clean up hardware on probe failure Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0088/1276] media: v4l2-common: Add YUV24 format info Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0089/1276] memory: tegra: Wire up system sleep PM ops Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0090/1276] crypto: qat - fix heartbeat error injection Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0091/1276] pinctrl: sunxi: fix regulator leak in sunxi_pmx_request() error path Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0092/1276] drm/gpuvm: take refcount on DRM device Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0093/1276] arm64: dts: rockchip: fix rk809 interrupt pin on rk3566-roc-pc Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0094/1276] arm64: dts: imx8x-colibri: Correct SODIMM PAD settings Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0095/1276] vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.12 0096/1276] crypto: ccp - Fix snp_filter_reserved_mem_regions() off-by-one Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0097/1276] crypto: atmel-sha204a - fix blocking and non-blocking rng logic Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0098/1276] crypto: ecrdsa - fix unknown OID check in ecrdsa_param_curve Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0099/1276] crypto: asymmetric_keys - fix OOB read in pefile_digest_pe_contents Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0100/1276] ARM: multi_v7_defconfig: Correct QCOM_RPMH and QCOM_RPMHPD Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0101/1276] dlm: fix add msg handle in send_queue ordered Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0102/1276] nilfs2: fix backing_dev_info reference leak Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0103/1276] media: qcom: camss: vfe: fix PIX subdev naming on VFE lite Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0104/1276] iommu/amd: Fix a stale comment about which legacy mode is user visible Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0105/1276] arm64: dts: mediatek: mt8192-asurada: Move PCIe DMA bounce buffer to host Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0106/1276] rust: alloc: fix `Vec::extend_with` SAFETY comment Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0107/1276] clk: scmi: Fix clock rate rounding Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0108/1276] arm64: dts: qcom: kodiak: Fix ICE reg size Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0109/1276] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0110/1276] drm/hisilicon/hibmc: move display contrl config to hibmc_probe() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0111/1276] drm/hisilicon/hibmc: use clock to look up the PLL value Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0112/1276] evm: terminate and bound the evm_xattrs read buffer Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0113/1276] thermal: hwmon: Fix critical temperature attribute removal Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0114/1276] clk: scpi: Unregister child clock providers on remove Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0115/1276] net/sched: sch_hfsc: annotate data-races in hfsc_dump_class_stats() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0116/1276] crypto: ccp - Treat zero-length cert chain as query for blob lengths Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0117/1276] spi: hisi-kunpeng: Use dev_err_probe() for host registration failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0118/1276] net/sched: sch_htb: do not change sch->flags in htb_dump() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0119/1276] net/sched: sch_htb: annotate data-races (I) Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0120/1276] ipv6: addrconf: bail out of dad_failure when state is no longer POSTDAD Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0121/1276] IB/mlx5: Fix transport-domain rollback and initialize lb mutex earlier Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0122/1276] RDMA/hns: Fix arithmetic overflow in calc_hem_config() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0123/1276] RDMA/mlx5: Fix devx subscribe-event unwind NULL dereference Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0124/1276] RDMA/srpt: fix integer overflow in immediate data length check Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0125/1276] RDMA/hns: Initialize seqfile before creating file Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0126/1276] drm/syncobj: Fix memory leak in drm_syncobj_find_fence() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0127/1276] selftests/bpf: Reject unsupported -k option in vmtest.sh Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0128/1276] selftests/mm: Fix resv_sz when parsing arm64 signal frame Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0129/1276] media: atomisp: Fix memory leak in atomisp_fixed_pattern_table() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0130/1276] media: atomisp: gc2235: fix UAF and memory leak Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0131/1276] staging: media: atomisp: fix loop shadowing in ia_css_stream_destroy() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0132/1276] firmware: arm_scmi: Read sensor config as 32-bit value Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0133/1276] sysfs: clamp show() return value in sysfs_kf_read() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0134/1276] bitops: use common function parameter names Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0135/1276] regulator: dt-bindings: mt6359: Drop regulator-name pattern restrictions Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0136/1276] net/sched: sch_drr: annotate data-races around cl->deficit Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0137/1276] media: rockchip: rga: fix too small buffer size Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0138/1276] firmware: arm_scmi: Fix OOB in scmi_power_name_get() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0139/1276] arm64: dts: qcom: sc7180: Add power-domain and iface clk for ice node Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0140/1276] arm64: dts: qcom: kodiak: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0141/1276] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0142/1276] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0143/1276] tracing: Bound synthetic-field strings with seq_buf Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0144/1276] writeback: drop now-unnecessary rcu_barrier() in cgroup_writeback_umount() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0145/1276] device property: fix fwnode reference leak in fwnode_graph_get_endpoint_by_id() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0146/1276] driver core: Use mod_delayed_work to prevent lost deferred probe work Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0147/1276] Revert "treewide: Fix probing of devices in DT overlays" Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0148/1276] cpufreq: Documentation: fix sampling_down_factor range Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0149/1276] cpufreq: conservative: Simplify frequency limit handling Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0150/1276] pwm: imx27: Fix variable truncation in .apply() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0151/1276] RDMA/mana_ib: Use ib_get_eth_speed for reporting port speed Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0152/1276] bus: sunxi-rsb: Always check register address validity Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0153/1276] RDMA/irdma: Fix out-of-bounds write in irdma_copy_user_pgaddrs Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0154/1276] RDMA/rxe: Fix a use-after-free problem in rxe_mmap Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0155/1276] IB/mlx4: Fix refcount leak in add_port() error path Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.12 0156/1276] RDMA/hns: Fix warning in poll cq direct mode Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0157/1276] RDMA/hns: Fix log flood after cmd_mbox failure Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0158/1276] RDMA/counter: Fix incorrect port index in rdma_counter_init() error cleanup Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0159/1276] PM: sleep: Use complete() in device_pm_sleep_init() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0160/1276] MIPS: Fix big-endian stack argument fetching in o32 wrapper Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0161/1276] MIPS: DEC: Remove do_IRQ() call indirection Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0162/1276] mips: ralink: mt7621: add missing __iomem Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0163/1276] mips: n64: add __iomem for writel call Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0164/1276] jiffies: Define secs_to_jiffies() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0165/1276] driver core: Fix missing jiffies conversion in deferred_probe_extend_timeout() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0166/1276] driver core: Guard deferred probe timeout extension with delayed_work_pending() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0167/1276] mtd: spi-nor: Drop duplicate Kconfig dependency Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0168/1276] ALSA: seq: midi: Serialize output teardown with event_input Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0169/1276] pinctrl: nuvoton: ma35d1: fix MFP register offset and pin table Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0170/1276] pinctrl: cs42l43: Fix polarity on debounce Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0171/1276] nvmet-tcp: fix page fragment cache leak in error path Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0172/1276] nvme-multipath: fix flex array size in struct nvme_ns_head Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0173/1276] workqueue: drop spurious * from print_worker_info() fn declaration Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0174/1276] ipv6: guard against possible NULL deref in __in6_dev_stats_get() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0175/1276] net/sched: cls_bpf: prevent unbounded recursion in offload rollback Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0176/1276] drm/tegra: gr2d/gr3d: Initialize address register map before HOST1X client is registered Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0177/1276] drm/tegra: gr2d/gr3d: Contain PM in the gr*d_probe/gr*d_remove Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0178/1276] gpu: host1x: Allow entries in BO caches to be freed Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0179/1276] drm/tegra: dc: Fix device node reference leak in tegra_dc_has_output() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0180/1276] gpu: host1x: Fix iommu_map_sgtable() return value check Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0181/1276] drm/tegra: " Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0182/1276] drm/nouveau/bios: specify correct display fuse register for Ampere and Ada Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0183/1276] libbpf: Harden parse_vma_segs() path parsing Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0184/1276] bpftool: Fix typo in struct_ops map FD generation for light skeleton Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0185/1276] libbpf: Fix UAF in strset__add_str() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0186/1276] dax/kmem: account for partial discontiguous resource upon removal Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0187/1276] rapidio/tsi721: prevent a bad dereference in tsi721_db_dpc() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0188/1276] ocfs2: dont BUG_ON an invalid journal dinode Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0189/1276] ocfs2: kill osb->system_file_mutex lock Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0190/1276] crypto: hisilicon/qm - disable error report before flr Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0191/1276] crypto: tegra - Fix dma_free_coherent size error Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0192/1276] crypto: tegra - Return ENOMEM when input buffer allocation fails for ccm Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0193/1276] sched/deadline: Always stop dl-server before changing parameters Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0194/1276] sched/deadline: Reject debugfs dl_server writes for offline CPUs Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0195/1276] drm/msm/dp: fix HPD state status bit shift value Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0196/1276] drm/msm/dp: Fix the ISR_* enum values Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0197/1276] EDAC/{skx_common,skx}: Fix UBSAN shift-out-of-bounds in skx_get_dimm_info Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0198/1276] RDMA/rxe: Fix TOCTOU heap overflow in get_srq_wqe Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0199/1276] RDMA/rxe: Copy WQE to local buffer in non-SRQ receive path Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0200/1276] media: qcom: venus: drop extra padding in NV12 raw size calculation Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0201/1276] media: qcom: venus: relax encoder frame/blur dimension steps on v4 Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0202/1276] media: qcom: venus: relax encoder frame/blur step size on v6 Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0203/1276] amba: use generic driver_override infrastructure Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0204/1276] cdx: " Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0205/1276] Drivers: hv: vmbus: " Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0206/1276] rpmsg: " Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0207/1276] md/raid10: reset read_slot when reusing r10bio for discard Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0208/1276] ext4: fix LOGFLUSH shutdown ordering to allow ordered-mode data writeback Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0209/1276] ASoC: rsnd: Fix RSND_SOC_MASK width to single nibble Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0210/1276] NFSD: Fix delegation reference leak in nfsd4_revoke_states Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0211/1276] ARM: imx3: Fix CCM node reference leak Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0212/1276] HID: wiimote: Fix table layout and whitespace errors Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0213/1276] ata: libata: Fix ata_exec_internal() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0214/1276] ARM: imx31: Fix IIM mapping leak in revision check Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0215/1276] nvdimm/btt: Handle preemption in BTT lane acquisition Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.12 0216/1276] scsi: Revert "scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans" Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0217/1276] scsi: pm8001: Fix error code in non_fatal_log_show() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0218/1276] scsi: ufs: Fix wrong value printed in unexpected UPIU response case Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0219/1276] bpf: fix UAF by restoring RCU-delayed inode freeing in bpffs Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0220/1276] mm/fake-numa: fix under-allocation detection in uniform split Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0221/1276] ext2: fix ignored return value of generic_write_sync() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0222/1276] sched: restore timer_slack_ns when resetting RT policy on fork Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0223/1276] driver core: Use system_percpu_wq instead of system_wq Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0224/1276] tick/sched: Fix TOCTOU in nohz idle time fetch Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0225/1276] lib/test_meminit: use && for bools Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0226/1276] configfs_lookup(): dont leave ->s_dentry dangling on failure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0227/1276] drm/amdgpu: set sub_block_index for mca ras sub-blocks Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0228/1276] bpftool: Use libbpf error code for flow dissector query Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0229/1276] vhost: fix vhost_get_avail_idx for a non empty ring Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0230/1276] perf/x86/amd/core: Always use the NMI latency mitigation Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0231/1276] perf/x86/intel/uncore: Fix discovery unit lookup for multi-die systems Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0232/1276] perf/x86/amd/uncore: Use Node ID to identify DF and UMC domains Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0233/1276] xfrm: fix NAT-related field inheritance in SA migration Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0234/1276] drm/amdkfd: always resume_all after suspend_all Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0235/1276] ocfs2: rebase copied fsdlm LVB pointers in locking_state Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0236/1276] ocfs2: fix buffer head management in ocfs2_read_blocks() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0237/1276] ocfs2: reject FITRIM ranges shorter than a cluster Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0238/1276] ocfs2/dlm: require a ref for locking_state debugfs open Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0239/1276] ocfs2: fix race between ocfs2_control_install_private() and ocfs2_control_release() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0240/1276] netfilter: nfnetlink_osf: fix mss parsing on big-endian architectures Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0241/1276] netfilter: nfnetlink_cthelper: use {READ,WRITE}_ONCE for accessing helper flags Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0242/1276] netfilter: synproxy: drop packets if timestamp adjustment fails Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0243/1276] netfilter: synproxy: adjust duplicate timestamp options Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0244/1276] netfilter: synproxy: fix unaligned memory access in timestamp adjustment Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0245/1276] netfilter: synproxy: protect nf_ct_seqadj_init() with conntrack lock Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0246/1276] netfilter: conntrack: revert ct extension genid infrastructure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0247/1276] netfilter: conntrack: call nf_ct_gre_keymap_destroy() if master helper is pptp Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0248/1276] IB/cm: Fix av cm device leak on an error path in cm_init_av_by_path() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0249/1276] RDMA/irdma: Fix OOB read during CQ MR registration Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0250/1276] RDMA/irdma: Initialize iwmr->access during " Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0251/1276] arm64: dts: imx95: Correct PCIe outbound address space configuration Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0252/1276] arm64: dts: tqma8mpql-mba8mpxl: configure sai clock in audio codec as well Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0253/1276] RDMA/siw: Fix endpoint/socket association handling Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0254/1276] bpf: Check tail zero of bpf_prog_info Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0255/1276] bpf: Update transport_header when encapsulating UDP tunnel in lwt Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0256/1276] wifi: wcn36xx: fix heap overflow from oversized firmware HAL response Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0257/1276] wifi: wcn36xx: fix OOB read from firmware count in PRINT_REG_INFO indication Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0258/1276] wifi: wcn36xx: fix OOB read from short trigger BA firmware response Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0259/1276] ALSA: seq: Fix partial userptr event expansion Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0260/1276] riscv: cpu_ops: Change return value type of cpu_is_stopped() to bool Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0261/1276] riscv: stacktrace: Remove bogus -0x4 offset in non-FP walk_stackframe Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0262/1276] ALSA: seq: Clear variable event pointer on read Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0263/1276] ACPI: IPMI: Fix message kref handling on dead device Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0264/1276] cpufreq: Documentation: fix conservative governor freq_step description Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0265/1276] thermal: testing: reject missing command arguments Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0266/1276] IB/mlx5: Dont take the rereg_mr fallback without a new translation Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0267/1276] IB/mlx5: Properly support implicit ODP rereg_mr Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0268/1276] spi: ep93xx: fix double-free of zeropage on DMA setup failure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0269/1276] ASoC: amd: acp-sdw-sof: Bound DAI link iteration Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0270/1276] firmware_loader: Fix recursive lock in device_cache_fw_images() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0271/1276] configfs: fix lockless traversals of ->s_children Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0272/1276] watchdog: unregister PM notifier on watchdog unregister Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0273/1276] scsi: target: Fix hexadecimal CHAP_I handling Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0274/1276] scsi: target: Remove tcm_loop target reset handling Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0275/1276] pinctrl: mediatek: mt8516: Fix Schmitt trigger register offset of pins 34-39 Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.12 0276/1276] pinctrl: mediatek: mt8167: " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0277/1276] vmalloc: fix NULL pointer dereference in is_vm_area_hugepages() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0278/1276] hwspinlock: qcom: avoid uninitialized struct members Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0279/1276] sched/fair: Fix cpu_util runnable_avg arithmetic Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0280/1276] wifi: mt76: mt7925: clean up DMA on probe failure Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0281/1276] wifi: mt76: mt7925: fix stale pointer comparisons in change_vif_links Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0282/1276] wifi: mt76: mt7925: keep TX BA state in the primary WCID Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0283/1276] wifi: mt76: mt792x: skip MLD header rewrite for 802.3 encap TX Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0284/1276] wifi: mt76: fix argument to ieee80211_is_first_frag() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0285/1276] wifi: mt76: mt7915: fix potential tx_retries underflow Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0286/1276] wifi: mt76: mt7921: " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0287/1276] wifi: mt76: mt7925: " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0288/1276] wifi: mt76: mt7996: " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0289/1276] btrfs: fix invalid pointer dereference in __btrfs_run_delayed_refs() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0290/1276] fbdev: sm501fb: Fix buffer errors in OF binding code Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0291/1276] hwmon: (it87) Clamp negative values to zero in set_fan() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0292/1276] btrfs: zoned: dont account data relocation space-info in statfs free space Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0293/1276] btrfs: fix deadlock cloning inline extent when using flushoncommit Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0294/1276] IB/mlx4: Fill in the access_flags if IB_MR_REREG_ACCESS is not specified Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0295/1276] NFSD: Handle layout stid in nfsd4_drop_revoked_stid() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0296/1276] spi: meson-spifc: fix runtime PM leak on remove Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0297/1276] ASoC: codecs: aw88261: fix incorrect masks for boost regs Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0298/1276] vduse: hold vduse_lock across IDR lookup in open path Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0299/1276] vhost/vdpa: validate virtqueue index in mmap and fault paths Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0300/1276] virtio_console: read size from config space during device init Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0301/1276] vduse: Requeue failed read to send_list head Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0302/1276] vhost/net: complete zerocopy ubufs only once Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0303/1276] tools/virtio: check mmap return value in vringh_test Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0304/1276] vdpa/octeon_ep: Fix PF->VF mailbox data address calculation Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0305/1276] ASoC: cs35l56: Fix missing calls to wm_adsp2_remove() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0306/1276] ASoC: cs35l56: Dont leave parent IRQ disabled if system_suspend fails Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0307/1276] bonding: 3ad: fix mux port state on oper down Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0308/1276] ext4: fix kernel BUG in ext4_write_inline_data_end Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0309/1276] ext4: validate donor file superblock early in EXT4_IOC_MOVE_EXT Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0310/1276] selftests/bpf: Fix bpf_iter/task_vma test Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0311/1276] cxl/test: Fix integer overflow in mock LSA bounds checks Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0312/1276] cxl/test: Zero out LSA backing memory to avoid leaking to user Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0313/1276] of: cpu: add check in __of_find_n_match_cpu_property() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0314/1276] vfio/qat: fix f_pos race in qat_vf_resume_write() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0315/1276] bpf: Tighten cgroup storage cookie checks for prog arrays Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0316/1276] ASoC: cs35l56: Fix possible uninitialized value in cs35l56_spi_system_reset() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0317/1276] s390/process: Fix kernel thread function pointer type Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0318/1276] Bluetooth: hci_qca: fix NULL pointer dereference in qca_dmp_hdr() for non-serdev device Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0319/1276] Bluetooth: eir: Fix stack OOB write when prepending the Flags AD Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0320/1276] Bluetooth: hci_core: Fix UAF in hci_unregister_dev() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0321/1276] Bluetooth: btmtk: fix URB leak in alloc_mtk_intr_urb error path Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0322/1276] Bluetooth: hci: validate codec capability element length Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0323/1276] Bluetooth: vhci: validate devcoredump state before side effects Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0324/1276] fs: efs: remove unneeded debug prints Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0325/1276] RDMA/mlx5: Remove DCT restrack tracking Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0326/1276] RDMA/mlx5: Remove raw RSS QP " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0327/1276] RDMA/mlx5: Fix undefined shift of user RQ WQE size Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0328/1276] RDMA/mlx5: Release the HW‑provided UAR index rather than the SW one Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0329/1276] ASoC: codecs: hdac_hdmi: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0330/1276] ASoC: fsl: fsl_audmix: Validate written enum values Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0331/1276] ASoC: tegra: tegra210_ahub: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0332/1276] net: dsa: qca8k: fix led devicename when using external mdio bus Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0333/1276] net/sched: cls_flow: Dont expose folded kernel pointers Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0334/1276] net: fib_rules: Dont dump dying fib_rule in fib_rules_dump() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0335/1276] bridge: cfm: reject invalid CCM interval at configuration time Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.12 0336/1276] sctp: validate embedded address parameter length Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0337/1276] net: pfcp: allocate per-cpu tstats for PFCP netdevs Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0338/1276] net/sched: sch_hfsc: Dont make class passive twice Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0339/1276] tipc: require net admin for TIPCv2 netlink mutators Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0340/1276] tipc: prevent snt_unacked underflow on CONN_ACK Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0341/1276] tipc: reject inverted service ranges from peer bindings Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0342/1276] cxl/test: Unregister cxl_acpi in cxl_test_init() error path Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0343/1276] cxl/test: Add check after kzalloc() memory in alloc_mock_res() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0344/1276] crypto: marvell/octeontx - fix DMA cleanup using wrong loop index Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0345/1276] crypto: cavium/cpt " Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0346/1276] crypto: rng - Free default RNG on module exit Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0347/1276] ALSA: seq: Fix kernel heap address leak in bounce_error_event() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0348/1276] spi: xilinx: use FIFO occupancy register to determine buffer size Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0349/1276] ASoC: adau1372: Clear PLL_EN on failed PLL lock without reset GPIO Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0350/1276] power: supply: core: fix supplied_from allocations Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0351/1276] handshake: Require admin permission for DONE command Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0352/1276] net/sched: sch_fq_codel: Do not call qdisc_tree_reduce_backlog during peek before restoring qlen Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0353/1276] net/sched: sch_codel: " Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0354/1276] net: mana: initialize gdma queue id to INVALID_QUEUE_ID Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0355/1276] net: mana: guard TX wq object destroy with INVALID_MANA_HANDLE check Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0356/1276] net: ethernet: mtk_wed: fix loading WO firmware for MT7986 Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0357/1276] bpf: Run generic devmap egress prog on private skb Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0358/1276] net/mlx5: Check max_macs devlink param value against max capability Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0359/1276] octeontx2-af: npc: Fix size of entry2cntr_map Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0360/1276] net: ethernet: mtk_wed: debugfs: correct index in wed_amsdu_show() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0361/1276] net: wwan: t7xx: check skb_clone in control TX Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0362/1276] dpll: add reference-sync netlink attribute Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0363/1276] dpll: add reference sync get/set Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0364/1276] dpll: Allow associating dpll pin with a firmware node Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0365/1276] dpll: Add notifier chain for dpll events Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0366/1276] dpll: Support dynamic pin index allocation Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0367/1276] dpll: Enhance and consolidate reference counting logic Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0368/1276] dpll: fix stale iteration in dpll_pin_on_pin_unregister() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0369/1276] dpll: send delete notification before unregister in on-pin rollback Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0370/1276] dpll: emit per-dpll delete notifications in dpll_pin_on_pin_unregister() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0371/1276] dpll: guard sync-pair removal on full pin unregister Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0372/1276] dpll: balance create/delete notifications in __dpll_pin_(un)register Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0373/1276] landlock: Fix unmarked concurrent access to socket family Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0374/1276] net: bcmgenet: Use weighted round-robin TX DMA arbitration Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0375/1276] kcm: use WRITE_ONCE() when changing lower socket callbacks Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0376/1276] netfilter: nf_conncount: callers must hold rcu read lock Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0377/1276] ALSA: core: Fix unintuitive behavior of snd_power_ref_and_wait() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0378/1276] cifs: remove all cifs files before kill super Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0379/1276] smb/client: always return a value for FS_IOC_GETFLAGS Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0380/1276] selftests/bpf: Fix typo in verify_umulti_link_info Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0381/1276] selftests/bpf: Initialize operation name before use Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0382/1276] bpf: Fix bpf_get/setsockopt to tos for ipv4-mapped ipv6 socket Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0383/1276] udf: fix nls leak on udf_fill_super() failure Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0384/1276] bpf, sockmap: reject overflowing copy + len in bpf_msg_push_data() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0385/1276] bpf, sockmap: fix integer overflow in bpf_msg_pop_data() bounds check Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0386/1276] MIPS: mm: Fix out-of-bounds write in maar_res_walk() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0387/1276] powerpc/perf: fix preempt count underflow in fsl_emb_pmu_del Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0388/1276] powerpc/powernv: fix preempt count leak in pnv_kexec_wait_secondaries_down Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0389/1276] powerpc/kexec: fix double get_cpu() imbalance in kexec_prepare_cpus Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0390/1276] KEYS: Use acquire when reading state in keyring search Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0391/1276] tipc: fix UAF in tipc_l2_send_msg() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0392/1276] tcp: ipv6: clamp default adverting MSS to avoid GSO_BY_FRAGS (0xFFFF) Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0393/1276] net: airoha: Introduce ndo_select_queue callback Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0394/1276] net: airoha: Add sched ETS offload support Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0395/1276] net: airoha: Fix always-true condition in PPE1 queue reservation loop Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.12 0396/1276] net: ethernet: oa_tc6: mdiobus->parent initialized with NULL Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0397/1276] net: ethernet: oa_tc6: Remove FCS size in RX frame Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0398/1276] dt-bindings: net: updated interrupt type to be active low, level triggered Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0399/1276] ionic: Fix check in ionic_get_link_ext_stats Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0400/1276] ksmbd: fix use-after-free in same_client_has_lease() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0401/1276] mfd: rsmu: Fix page register setup Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0402/1276] mfd: cs42l43: Sanity check firmware size Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0403/1276] ocfs2: fix circular locking dependency in ocfs2_dio_end_io_write Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0404/1276] net/9p: fix race condition on rdma->state in trans_rdma.c Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0405/1276] eventpoll: expand top-of-file overview / locking doc Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0406/1276] eventpoll: rename attach_epitem() to ep_attach_file() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0407/1276] eventpoll: split ep_insert() into alloc + register stages Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0408/1276] eventpoll: extract ep_deliver_event() from ep_send_events() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0409/1276] eventpoll: wrap EP_UNACTIVE_PTR in typed sentinel helpers Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0410/1276] eventpoll: rename epi->next and txlist for clarity Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0411/1276] eventpoll: Fix epoll_wait() report false negative Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0412/1276] gpiolib: acpi: Only trigger ActiveBoth interrupts on boot Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0413/1276] staging: nvec: fix use-after-free in nvec_rx_completed() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0414/1276] perf debuginfo: Fix libdw API contract violations Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0415/1276] coresight: cti: Fix DT filter signals silently ignored Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0416/1276] coresight: etm4x: Correct TRCVMIDCCTLR1 save and restore Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0417/1276] PCI/ASPM: Dont reconfigure ASPM entering low-power state Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0418/1276] PCI: Introduce named defines for PCI ROM Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0419/1276] PCI: Check ROM header and data structure addr before accessing Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0420/1276] x86/platform/olpc: xo15: Drop wakeup source on driver removal Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0421/1276] platform/x86: xo15-ebook: Fix wakeup source and GPE handling Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0422/1276] perf sched: Add missing mmap2 handler in timehist Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0423/1276] PCI: loongson: Do not ignore downstream devices on external bridges Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0424/1276] rust: alloc: fix assert in `Vec::reserve` doc test Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0425/1276] bus: mhi: ep: Fix potential deadlock in mhi_ep_reset_worker() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0426/1276] PCI: qcom: Set max OPP before DBI access during resume Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0427/1276] phy: phy-can-transceiver: Check driver match and driver data against NULL Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0428/1276] perf pmu: Skip test on Arm64 when #slots is zero Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0429/1276] clk: at91: sam9x7: Fix gmac_gclk clock definition Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0430/1276] coresight: Fix source not disabled on idr_alloc_u32 failure Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0431/1276] mailbox: mtk-adsp: fix UAF during device teardown Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0432/1276] perf arm-spe: Use metadata to decide the data source feature Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0433/1276] perf arm-spe: Use ARM_SPE_OP_BRANCH_ERET when synthesizing branches Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0434/1276] perf arm-spe: Correctly set sample flags Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0435/1276] perf arm-spe: Add branch stack Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0436/1276] perf inject: Add --convert-callchain option Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0437/1276] perf event: Fix size of synthesized sample with branch stacks Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0438/1276] staging: most: video: avoid double free on video register failure Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0439/1276] usb: host: max3421: Fix shift-out-of-bounds in max3421_hub_control() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0440/1276] usb: host: max3421: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0441/1276] char: tlclk: fix use-after-free in tlclk_cleanup() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0442/1276] PCI: qcom: Disable ASPM L0s for SA8775P Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0443/1276] perf header: Sanity check HEADER_EVENT_DESC attr.size before swap Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0444/1276] iio: light: si1133: reset counter to prevent race condition Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0445/1276] iio: light: si1133: prevent race condition on timeout Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0446/1276] iio: magnetometer: ak8975: fix potential kernel stack memory leak Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0447/1276] iio: adc: xilinx-ams: fix out-of-bounds channel lookup in event handling Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0448/1276] iio: accel: mma8452: handle I2C read error(s) in mma8452_read() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0449/1276] iio: tcs3472: power down chip on probe failure Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0450/1276] clk: at91: keep securam node alive while mapping it Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0451/1276] HID: logitech-hidpp: remove excess kernel-doc member in hidpp_scroll_counter Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0452/1276] fs/ntfs3: add bounds check to run_get_highest_vcn() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0453/1276] fs/ntfs3: fix mount failure on 64K page-size kernels Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0454/1276] drm/amd/display: Add missing kdoc for ALLM parameters Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0455/1276] thunderbolt: debugfs: Fix margining error counter buffer leak Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.12 0456/1276] dmaengine: imx-sdma: Refine spba bus searching in probe Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0457/1276] perf: Fix off-by-one stack buffer overflow in kallsyms__parse() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0458/1276] perf tools: Guard test_bit from out-of-bounds sample CPU Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0459/1276] perf sched: Fix thread reference leak in latency_switch_event Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0460/1276] perf sched: Replace BUG_ON on invalid CPU with graceful skip Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0461/1276] perf sched: Fix NULL dereference in latency_runtime_event Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0462/1276] perf tools: Add bounds check to cpu__get_node() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0463/1276] perf sched: Fix register_pid() overflow, strcpy, and BUG_ON Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0464/1276] perf mmap: Guard cpu__get_node() return in aio_bind() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0465/1276] perf stat: Bounds-check CPU index in topology aggregation callbacks Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0466/1276] perf c2c: Bounds-check CPU and node IDs before bitmap and array access Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0467/1276] perf c2c: Bounds-check CPU IDs in setup_nodes() topology loop Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0468/1276] perf sched: Clean up idle_threads entry on init failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0469/1276] perf sched timehist: Add pre-migration wait time option Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0470/1276] perf sched: Fix thread leaks in perf sched timehist Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0471/1276] perf sched: Use thread__put() in free_idle_threads() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0472/1276] perf sched: Replace BUG_ON and add NULL checks in replay event helpers Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0473/1276] perf mmap: Fix NULL deref in aio cleanup on alloc failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0474/1276] perf stat: Introduce perf_env__get_cpu_topology() to guard NULL env->cpu Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0475/1276] perf c2c: Fix use-after-free in he__get_c2c_hists() error path Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0476/1276] perf timechart: Fix cpu2y() OOB read on untrusted CPU index Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0477/1276] dmaengine: qcom: gpi: set DMA_PRIVATE capability Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0478/1276] dmaengine: Fix possible use after free Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0479/1276] dmaengine: dma-axi-dmac: Properly free struct axi_dmac_desc Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0480/1276] dmaengine: dma-axi-dmac: use DMA pool to manange DMA descriptor Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0481/1276] clk: qcom: a53: Corrected frequency multiplier for 1152MHz Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0482/1276] pNFS/filelayout: fix cheking if a layout is striped Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0483/1276] xprtrdma: Avoid 250 ms delay on backlog wakeup Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0484/1276] xprtrdma: Close lost-wakeup race in xprt_rdma_alloc_slot Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0485/1276] xprtrdma: Post receive buffers after RPC completion Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0486/1276] xprtrdma: Use sendctx DMA state for Send signaling Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0487/1276] xprtrdma: Decouple req recycling from RPC completion Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0488/1276] NFSv4/pnfs: defer return_range callbacks until after inode unlock Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0489/1276] nfs: keep PG_UPTODATE clear after read errors in page groups Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0490/1276] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS on fatal DS connect errors Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0491/1276] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS in pg_get_mirror_count_write Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0492/1276] nfs: use nfsi->rwsem to protect traversal of the file lock list Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0493/1276] PCI: mediatek: Fix operator precedence in PCIE_FTS_NUM_L0 macro Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0494/1276] PCI: meson: Propagate devm_add_action_or_reset() failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0495/1276] PCI: meson: Add missing remove callback Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0496/1276] fs/ntfs3: resize log->one_page_buf when adopting on-disk page size Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0497/1276] perf tools: Fix get_max_num() size_t underflow on empty sysfs file Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0498/1276] perf tools: Use scnprintf() in cpu_map__snprint() to prevent overflow Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0499/1276] perf tools: Use perf_env__get_cpu_topology() in machine__resolve() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0500/1276] PCI: rcar-host: Remove unused LIST_HEAD(res) Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0501/1276] perf sched: Bounds-check prio before test_bit() in timehist Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0502/1276] perf sched: Fix idle-hist callchain display using wrong rb_first variant Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0503/1276] perf bpf: Use scnprintf() in snprintf_hex() and synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0504/1276] perf hists: Fix snprintf() in hists__scnprintf_title() UID filter path Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0505/1276] xprtrdma: Fix ep kref imbalance on ADDR_CHANGE Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0506/1276] xprtrdma: Initialize re_id before removal registration Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0507/1276] xprtrdma: Check frwr_wp_create() during connect Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0508/1276] xprtrdma: Document and assert reply-handler invariants Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0509/1276] xprtrdma: Resize reply buffers before reposting receives Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0510/1276] xprtrdma: Fix bcall rep leak and unbounded peek Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0511/1276] xprtrdma: Sanitize the reply credit grant after parsing Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0512/1276] xprtrdma: Repost Receive buffers for malformed replies Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0513/1276] xprtrdma: Return sendctx slot after Send preparation failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0514/1276] perf cs-etm: Queue context packets for frontend Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0515/1276] perf pmu: Fix pmu_id() heap underwrite on empty identifier file Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.12 0516/1276] perf pmu: Fix perf_pmu__parse_scale/unit() OOB access on empty sysfs file Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0517/1276] tools lib api: Fix missing null termination in filename__read_int/ull() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0518/1276] perf symbols: Fix signed overflow in sysfs__read_build_id() size check Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0519/1276] perf symbols: Bounds-check .gnu_debuglink section data Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0520/1276] perf intel-pt: Fix snprintf size tracking bug in insn decoder Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0521/1276] perf tools: Fix thread__set_comm_from_proc() on empty comm file Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0522/1276] perf symbols: Bounds-check descsz in sysfs__read_build_id() GNU fallback Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0523/1276] perf dso: Use lock annotations to fix asan deadlock Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0524/1276] perf dso: Add support for reading the e_machine type for a dso Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0525/1276] perf build-id: Change sprintf functions to snprintf Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0526/1276] perf dso: Move build_id to dso_id Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0527/1276] perf tools: Use snprintf() in dso__read_running_kernel_build_id() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0528/1276] tools lib api: Fix filename__write_int() writing uninitialized stack data Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0529/1276] tools lib api: Fix mount_overload() snprintf truncation and toupper range Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0530/1276] perf bpf: Add NULL check for btf__type_by_id() in synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0531/1276] perf symbols: Add bounds checks to elf_read_build_id() note iteration Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0532/1276] perf symbols: Add bounds checks to read_build_id() note iteration in minimal build Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0533/1276] PCI: mediatek: Fix possible truncation in mtk_pcie_parse_port() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0534/1276] PCI: mediatek: Use actual physical address instead of virt_to_phys() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0535/1276] Revert "PCI/MSI: Unmap MSI-X region on error" Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0536/1276] security/apparmor/apparmorfs.c: conditionally compile get_loaddata_common_ref() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0537/1276] apparmor: check label build before no_new_privs test Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0538/1276] apparmor: aa_label_alloc use aa_label_free on alloc failure Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0539/1276] apparmor: fix rawdata_f_data implicit flex array Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0540/1276] apparmor: grab ns lock and refresh when looking up changehat child profiles Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0541/1276] apparmor: fix potential UAF in aa_replace_profiles Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0542/1276] apparmor: remove or add symlinks to rawdata according to export_binary Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0543/1276] apparmor: aa_getprocattr free procattr leak on format failure Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0544/1276] apparmor: put secmark label after secid lookup Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0545/1276] workqueue: Add new WQ_PERCPU flag Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0546/1276] i3c: master: add WQ_PERCPU to alloc_workqueue users Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0547/1276] i3c: master: Make hot-join workqueue freezable to block hot-join during suspend Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0548/1276] i3c: master: Prevent reuse of dynamic address on device add failure Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0549/1276] apparmor: fix label can not be immediately before a declaration Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0550/1276] sparc: led: avoid trimming a newline from empty writes Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0551/1276] perf maps: Add maps__mutate_mapping Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0552/1276] perf symbols: Fix bswap copy-paste error for 32-bit ELF p_filesz Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0553/1276] perf symbols: Validate p_filesz before use in filename__read_build_id() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0554/1276] perf symbols: Break infinite loop on zero-filled notes in sysfs__read_build_id() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0555/1276] perf tools: Use snprintf() for root_dir path construction Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0556/1276] perf bpf: Validate func_info_rec_size and sub_id in synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0557/1276] perf bpf: Bounds-check array offsets in bpil_offs_to_addr() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0558/1276] perf: Remove redundant kernel.h include Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0559/1276] perf cs-etm: Reject CPU IDs that would overflow signed comparison Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0560/1276] gpio: mlxbf3: fail probe if gpiochip registration fails Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0561/1276] drm/i915: clear CRTC color blob pointers after dropping refs Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0562/1276] spi: dw: fix wrong BAUDR setting after resume Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0563/1276] xfrm: Fix xfrm state cache insertion race Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0564/1276] xfrm: annotate data-races around xfrm_policy_count[] and xfrm_policy_default[] Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0565/1276] xfrm: validate selector family and prefixlen during match Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0566/1276] perf machine: Use snprintf() for guestmount path construction Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0567/1276] perf cs-etm: Validate num_cpu before metadata allocation Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0568/1276] perf cs-etm: Require full global header in auxtrace_info size check Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0569/1276] perf cs-etm: Bounds-check CPU in cs_etm__get_queue() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0570/1276] ASoC: tlv320aic3x: restrict CLKDIV bypass Q values in dual-rate mode Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0571/1276] drm/amdkfd: Avoid double-unpin of DOORBELL/MMIO BOs on free Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0572/1276] drm/amdkfd: fix list_del corruption in kfd_criu_resume_svm Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0573/1276] drm/amdgpu: initialize irq.lock spinlock earlier Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0574/1276] octeontx2-pf: Fix leak of SQ timestamp buffer on teardown Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0575/1276] net: psample: fix info leak in PSAMPLE_ATTR_DATA Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.12 0576/1276] sctp: hold socket lock when dumping endpoints in sctp_diag Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0577/1276] PCI: iproc: Restore .map_irq() for the platform bus driver Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0578/1276] spi: rpc-if: Use correct device for hardware reinitialization on resume Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0579/1276] virtio-net: fix len check in receive_big() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0580/1276] dpaa2-switch: fix VLAN upper check not rejecting bridge join Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0581/1276] devlink: Fix parent ref leak in devl_rate_node_create() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0582/1276] flow_dissector: check device type before reading ETH_ADDRS Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0583/1276] ALSA: usb-audio: Kill MIDI 2.0 URBs before freeing endpoints Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0584/1276] arm64/hw_breakpoint: reject unaligned watchpoints that would truncate BAS Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0585/1276] thermal: intel: Fix dangling resources on thermal_throttle_online() failure Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0586/1276] ACPI: resource: Amend kernel-doc style Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0587/1276] ACPI: IPMI: Fix inverted interface check in ipmi_bmc_gone() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0588/1276] ieee802154: Remove WARN_ON() in cfg802154_pernet_exit() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0589/1276] ieee802154: fix kernel-infoleak in dgram_recvmsg() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0590/1276] mac802154: Prevent overwrite return code in mac802154_perform_association() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0591/1276] md/raid1: free r1_bio when REQ_NOWAIT is set and read would block on retry Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0592/1276] netfilter: ipset: Fix data race between add and dump in all hash types Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0593/1276] netfilter: ipset: annotate "pos" for concurrent readers/writers Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0594/1276] netfilter: ipset: Dont use test_bit() in lockless RCU readers in hash types Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0595/1276] netfilter: ipset: fix order of kfree_rcu() and rcu_assign_pointer() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0596/1276] netfilter: ipset: make sure gc is properly stopped Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0597/1276] netfilter: nf_reject: skip iphdr options when looking for icmp header Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0598/1276] netfilter: nft_meta_bridge: fix NFT_META_BRI_IIFPVID stack leak Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0599/1276] mailbox: imx: Forward the timeout/ error in imx_mu_generic_tx() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0600/1276] irqchip/crossbar: Fix parent domain resource leak Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0601/1276] selftests/mm: restore default nr_hugepages value via exit trap in charge_reserved_hugetlb.sh Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0602/1276] selftest/mm: register existing mapping with userfaultfd in hugetlb-mremap Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0603/1276] selftests/mm: ensure destination is hugetlb-backed " Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0604/1276] selftests/mm: clarify alternate unmapping in compaction_test Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0605/1276] selftests/mm: allow PUD-level entries in compound testcase of hmm tests Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0606/1276] selftests/mm: fix exclusive_cow test fork() handling Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0607/1276] net: marvell: prestera: initialize err in prestera_port_sfp_bind Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0608/1276] tipc: fix use-after-free of the discoverer in tipc_disc_rcv() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0609/1276] net: ethernet: mtk_ppe: Fix rhashtable leak in mtk_ppe_init error paths Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0610/1276] octeontx2-af: mcs: Fix unsupported secy stats read Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0611/1276] octeontx2-pf: Clear stats of all resources when freeing resources Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0612/1276] octeontx2-pf: mcs: Fix mcs resources free on PF shutdown Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0613/1276] net/sched: act_ct: fix nf_connlabels leak on two error paths Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0614/1276] ipv6: ndisc: fix NULL deref in accept_untracked_na() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0615/1276] dpaa2-switch: do not accept VLAN uppers while bridged Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0616/1276] rtc: abx80x: fix the RTC_VL_CLR clearing all status flags Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0617/1276] rtc: ds1307: handle oscillator stop flag for ds1337/ds1339/ds3231 Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0618/1276] bpf: Fix stack slot index in nospec checks Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0619/1276] bpftool: Fix vmlinux BTF leak in cgroup commands Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0620/1276] bpf: zero-initialize the fib lookup flow struct Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0621/1276] bpf: Fix effective prog array index with BPF_F_PREORDER Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0622/1276] power: sequencing: fix ABBA deadlock in pwrseq_device_unregister() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0623/1276] drm/edid: fix OOB read in drm_parse_tiled_block() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0624/1276] PCI: endpoint: pci-epf-vntb: Add check to detect db_count value of 0 Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0625/1276] PCI: endpoint: pci-epf-ntb: " Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0626/1276] ice: fix FDIR CTRL VSI resource leak in ice_reset_all_vfs() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0627/1276] ice: fix AQ error code comparison in ice_set_pauseparam() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0628/1276] ice: call netif_keep_dst() once when entering switchdev mode Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0629/1276] ice: dpll: set pointers to NULL after kfree in ice_dpll_deinit_info Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0630/1276] ice: dpll: fix memory leak in ice_dpll_init_info error paths Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0631/1276] i40e: Fix i40e_debug() to use struct i40e_hw argument Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0632/1276] rtc: msc313: fix NULL deref in shared IRQ handler at probe Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0633/1276] ksmbd: fix use-after-free of conn->preauth_info in concurrent SMB2 NEGOTIATE Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0634/1276] ipv6: Fix null-ptr-deref in fib6_nh_mtu_change() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0635/1276] net: bnxt: use ethtool string helpers Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.12 0636/1276] eth: bnxt: gather and report HW-GRO stats Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0637/1276] eth: bnxt: rename ring_err_stats -> ring_drv_stats Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0638/1276] eth: bnxt: improve the timing of stats Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0639/1276] ipv4: fib: Dont ignore error route in local/main tables Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0640/1276] md/raid5: use stripe state snapshot in break_stripe_batch_list() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0641/1276] md/raid5: avoid R5_Overlap races while breaking stripe batches Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0642/1276] bpf: Disable xfrm_decode_session hook attachment Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0643/1276] netfilter: nf_nat: avoid invalid nat_net pointer use on failed nf_nat_init() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0644/1276] netfilter: nf_conncount: prevent connlimit drops for early confirmed ct Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0645/1276] netfilter: nft_synproxy: stop bypassing the priv->info snapshot Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0646/1276] netfilter: nft_compat: ebtables emulation must reject non-bridge targets Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0647/1276] gpio: davinci: fix IRQ domain leak on devm_kzalloc failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0648/1276] NTB: epf: Make db_valid_mask cover only real doorbell bits Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0649/1276] NTB: epf: Report 0-based doorbell vector via ntb_db_event() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0650/1276] NTB: epf: Fix doorbell bitmask and IRQ vector handling Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0651/1276] alpha/PCI: Add security_locked_down() check to pci_mmap_resource() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0652/1276] alpha/PCI: Fix __pci_mmap_fits() overflow for zero-length BARs Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0653/1276] net, bpf: check master for NULL in xdp_master_redirect() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0654/1276] net: dsa: sja1105: round up PTP perout pin duration Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0655/1276] veth: fix NAPI leak in XDP enable error path Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0656/1276] net/sched: cls_api: Handle TC_ACT_CONSUMED in tcf_qevent_handle Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0657/1276] ipv6: fix error handling in disable_ipv6 sysctl Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0658/1276] ipv6: fix error handling in ignore_routes_with_linkdown sysctl Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0659/1276] ipv6: fix error handling in forwarding sysctl Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0660/1276] ipv6: fix error handling in disable_policy sysctl Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0661/1276] rtnetlink: Add per-netns RTNL Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0662/1276] rtnetlink: Add assertion helpers for " Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0663/1276] rtnetlink: Define rtnl_net_trylock() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0664/1276] ipv6: Add __in6_dev_get_rtnl_net() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0665/1276] ipv6: Convert net.ipv6.conf.${DEV}.XXX sysctl to per-netns RTNL Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0666/1276] ipv6: fix missing notification for ignore_routes_with_linkdown Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0667/1276] thermal: testing: zone: Flush work items during cleanup Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0668/1276] ACPI: processor_idle: Mark LPI enter functions as __cpuidle Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0669/1276] smb/client: preserve errors from smb2_set_sparse() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0670/1276] rtc: ds1307: Fix off-by-one issue with wday for rx8130 Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0671/1276] rtc: cmos: unregister HPET IRQ handler on probe failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0672/1276] net: dsa: realtek: fix memory leak in rtl8366rb_setup_led() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0673/1276] octeontx2-af: Validate NIX maximum LFs correctly Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0674/1276] net: mvneta: re-enable percpu interrupt on resume Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0675/1276] net: sungem: fix probe error cleanup Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0676/1276] net: ethernet: sunplus: spl2sw: fix phy_node refcount leak in remove Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0677/1276] ASoC: fsl_asrc_dma: fix eDMA maxburst misalignment with channel count Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0678/1276] udp_tunnel: remove rtnl_lock dependency Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0679/1276] net: udp_tunnel: prevent double queueing in udp_tunnel_nic_device_sync Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0680/1276] dt-bindings: net: renesas,ether: Drop example "ethernet-phy-ieee802.3-c22" fallback Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0681/1276] net: hisilicon: hns3: use ethtool string helpers Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0682/1276] net: hns3: use string choices helper Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0683/1276] net: hns3: use hns3_get_ae_dev() helper to reduce the unnecessary middle layer conversion Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0684/1276] net: hns3: use hns3_get_ops() " Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0685/1276] net: hns3: clear hns alarm: comparison of integer expressions of different signedness Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0686/1276] net: hns3: unify copper port ksettings configuration path Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0687/1276] net: hns3: refactor MAC autoneg and speed configuration Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0688/1276] net: hns3: fix permanent link down deadlock after reset Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0689/1276] net: hns3: differentiate autoneg default values between copper and fiber Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0690/1276] tracing: probes: fix typo in a log message Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0691/1276] spi: sh-msiof: abort transfers when reset times out Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0692/1276] gpio: mvebu: fail probe if gpiochip registration fails Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0693/1276] gpio: htc-egpio: use managed gpiochip registration Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0694/1276] seg6: validate SRH length before reading fixed fields Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0695/1276] qede: fix out-of-bounds check for cqe->len_list[] Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.12 0696/1276] net: enetc: check the number of BDs needed for xdp_frame Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0697/1276] sctp: fix SCTP_RESET_STREAMS stream list length limit Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0698/1276] MIPS: DEC: Ensure RTC platform device deregistration upon failure Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0699/1276] ASoC: codecs: lpass-va-macro: add SM6115 compatible Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0700/1276] ASoC: codecs: lpass-va-macro: Fix LPASS Codec Version for SC7280 Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0701/1276] hwmon: adm1275: Prevent reading uninitialized stack Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0702/1276] hwmon: (pmbus) Fix passing events to regulator core Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0703/1276] hwmon: (aspeed-g6-pwm-tach) Guard fan RPM calculation against divide-by-zero Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0704/1276] ipv6: fib6: fix NULL deref in fib6_walk_continue() on multi-batch dump Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0705/1276] usbnet: gl620a: fix out-of-bounds read in genelink_rx_fixup() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0706/1276] net: phy: sfp: free mii_bus in sfp_i2c_mdiobus_destroy Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0707/1276] net: gianfar: dispose irq mappings on probe failure and device removal Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0708/1276] net/sched: sch_teql: Introduce slaves_lock to avoid race condition and UAF Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0709/1276] bridge: stp: Fix a potential use-after-free when deleting a bridge Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0710/1276] drm/panthor: Fix potential invalid pointer deref in group_process_tiler_oom() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0711/1276] drm/panthor: Dont overrule pending immediate ticks in sched_resume_tick() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0712/1276] drm/panthor: Fix a leak when a group is evicted before the tiler OOM is serviced Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0713/1276] drm/panthor: Interrupt group start/resumption if group_bind_locked() fails Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0714/1276] tracing/events: Fix to check the simple_tsk_fn creation Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0715/1276] tracing: eprobe: read the complete FILTER_PTR_STRING pointer Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0716/1276] irqchip/gic-v3-its: Fix OF node reference leak Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0717/1276] irqchip/ts4800: Fix missing chained handler cleanup on remove Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0718/1276] virtio_net: disable cb when NAPI is busy-polled Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0719/1276] cxgb4: Fix decode strings dump for T6 adapters Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0720/1276] net/sched: act_bpf: use rcu_dereference_bh() to read the filter Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0721/1276] ksmbd: reject undersized DACLs before parsing ACEs Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0722/1276] ksmbd: fix use-after-free of fp->owner.name in durable handle owner check Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0723/1276] gpio: timberdale: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0724/1276] pinctrl: meson: restore non-sleeping GPIO access Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0725/1276] net/sched: hhf: clear heavy-hitter state on reset Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0726/1276] fs: refuse O_TMPFILE creation with an unmapped fsuid or fsgid Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0727/1276] afs: Fix error code in afs_extract_vl_addrs() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0728/1276] afs: Fix double netfs initialisation in afs_root_iget() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0729/1276] afs: use kvfree() to free memory allocated by kvcalloc() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0730/1276] afs: Remove erroneous seq |= 1 in volume lookup loop Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0731/1276] afs: Make /afs/.<cell> as well as /afs/<cell> mountpoints Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0732/1276] afs: Add rootcell checks Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0733/1276] afs: Make /afs/@cell and /afs/.@cell symlinks Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0734/1276] afs: Fix afs_atcell_get_link() to handle RCU pathwalk Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0735/1276] afs: Remove the "autocell" mount option Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0736/1276] afs: Change dynroot to create contents on demand Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0737/1276] afs: Fix misplaced inc of net->cells_outstanding Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0738/1276] afs: Fix callback service message parsers to pass through -EAGAIN Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0739/1276] afs: Fix missing NULL pointer check in afs_break_some_callbacks() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0740/1276] afs: Fix vllist leak Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0741/1276] afs: Fix the volume AFS_VOLUME_RM_TREE is set on Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0742/1276] afs: Fix unchecked-length string display in debug statement Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0743/1276] minix: avoid overflow in bitmap block count calculation Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0744/1276] ovl: fix comment about locking order Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0745/1276] netfs: Fix writeback error handling Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0746/1276] drm/xe/pt: Fix NULL pointer dereference in xe_pt_zap_ptes_entry() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0747/1276] drm/xe/hw_engine: Fix double-free of managed BO in error path Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0748/1276] drm/xe/pf: Dont attempt to process FAST_REQ or EVENT relays Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0749/1276] netfs: Drop the error arg from netfs_read_subreq_terminated() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0750/1276] cifs: Fix missing credit release on failure in cifs_issue_read() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0751/1276] ata: sata_gemini: unwind clocks on IDE pinctrl errors Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0752/1276] ata: libata-scsi: limit simulated SCSI command copy to response length Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0753/1276] HID: picolcd: prevent NULL pointer dereference in picolcd_send_and_wait() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0754/1276] HID: core: Fix OOB read in hid_get_report for numbered reports Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0755/1276] arm64/mm: Optimize TLB flush in unmap_hotplug_[pmd|pud]_range() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.12 0756/1276] HID: bpf: Fix hid_bpf_get_data() range check Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0757/1276] selftests/hid: Load only requested struct_ops maps Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0758/1276] selftests/hid: Cover hid_bpf_get_data() size overflow Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0759/1276] net: usb: net1080: validate packet_len before pad-byte access in rx_fixup Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0760/1276] gue: validate REMCSUM private option length Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0761/1276] netfilter: xt_u32: reject invalid shift counts Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0762/1276] netfilter: xt_rateest: fix u64 truncation in xt_rateest_mt() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0763/1276] netfilter: ip6tables: mark malformed IPv6 extension headers for hotdrop Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0764/1276] netfilter: xt_connmark: reject invalid shift parameters Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0765/1276] net/mlx5: LAG, MPESW, Fix missing complete() on devcom error Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0766/1276] net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0767/1276] net/mlx5e: Fix HV VHCA stats agent registration race Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0768/1276] net: microchip: vcap: fix races on the shared Super VCAP block Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0769/1276] qede: fix off-by-one in BD ring consumption on build_skb failure Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0770/1276] net: qualcomm: rmnet: validate MAP frame length before ingress parsing Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0771/1276] net/sched: act_pedit: fix TOCTOU heap OOB write in tc offload Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0772/1276] net/smc: fix UAF in smc_cdc_rx_handler() by pinning the socket Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0773/1276] amt: fix size calculation in amt_get_size() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0774/1276] Bluetooth: 6lowpan: hold L2CAP conn across debugfs control Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0775/1276] Bluetooth: MGMT: Fix adv monitor add failure cleanup Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0776/1276] Bluetooth: ISO: exclude RFU bits from ISO_SDU_Length Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0777/1276] Bluetooth: bpa10x: avoid OOB read of revision string in bpa10x_setup() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0778/1276] ring-buffer: Fix event length with forced 8-byte alignment Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0779/1276] net/tls: Consume empty data records in tls_sw_read_sock() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0780/1276] net: usb: lan78xx: move functions to avoid forward definitions Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0781/1276] net: usb: lan78xx: disable VLAN filter in promiscuous mode Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0782/1276] drm/v3d: Reject invalid indirect BO handle in indirect CSD setup Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0783/1276] net/sched: cake: reject overhead values that underflow length Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0784/1276] octeontx2-pf: check DMAC extraction support before filtering Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0785/1276] perf/x86/amd/core: Avoid enabling BRS from the SVM reload path Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0786/1276] gpio: mvebu: free generic chips on unbind Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0787/1276] ipv4: igmp: Fix potential UAF in igmp_gq_start_timer() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0788/1276] ipv6: mcast: Replace locking comments with lockdep annotations Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0789/1276] ipv6: mcast: Fix potential UAF in MLD delayed work Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0790/1276] netfilter: nft_lookup: fix catchall element handling with inverted lookups Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0791/1276] ipvs: pass parsed transport offset to state handlers Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0792/1276] ipvs: use parsed transport offset in TCP state lookup Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0793/1276] ipvs: fix PMTU for GUE/GRE tunnel ICMP errors Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0794/1276] ipvs: ensure inner headers in ICMP errors are in headroom Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0795/1276] s390/zcrypt: Remove the empty file Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0796/1276] cifs: validate DFS referral string offsets Greg Kroah-Hartman
2026-07-21 15:20 ` Greg Kroah-Hartman [this message]
2026-07-21 15:20 ` [PATCH 6.12 0798/1276] SUNRPC: pin upper rpc_clnt across the TLS connect_worker Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0799/1276] dm era: fix NULL pointer dereference in metadata_open() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0800/1276] regulator: core: regulator_lock_two() should test for EDEADLK not EDEADLOCK Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0801/1276] selftests/net: fix EVP_MD_CTX leak in tcp_mmap Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0802/1276] net/mlx5: Fix L3 tunnel entropy refcount leak Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0803/1276] octeontx2-af: fix VF bringup affecting PF promiscuous state Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0804/1276] drm/xe: remove duplicate <kunit/test-bug.h> include Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0805/1276] smb: client: fix overflow in passthrough ioctl bounds check Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0806/1276] mlxsw: fix refcount leak in mlxsw_sp_port_lag_join() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0807/1276] mlxsw: fix refcount leak in mlxsw_sp_vrs_lpm_tree_replace() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0808/1276] vduse: Fix race in vduse_dev_msg_sync and vduse_dev_read_iter Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0809/1276] ASoC: SOF: ipc4-control: Fix TOCTOU in sof_ipc4_bytes_put Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0810/1276] ASoC: SOF: ipc3-control: Use overflow checks in control_update size calc Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0811/1276] ASoC: SOF: ipc3-control: Fix TOCTOU in bytes_put and bytes_get Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0812/1276] ASoC: SOF: topology: validate vendor array size before parsing Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0813/1276] net: qrtr: fix 32-bit integer overflow in qrtr_endpoint_post() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0814/1276] net: atm: reject out-of-range traffic classes in QoS validation Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0815/1276] net: ife: require ETH_HLEN to be pullable in ife_decode() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.12 0816/1276] arm64: fpsimd: Fix type mismatch in sve_{save,load}_state() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0817/1276] arm64: dts: qcom: sdm630: describe adsp_mem region properly Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0818/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Fix ADC sampling times Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0819/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Move divergent mecio1 ADC channels to board files Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0820/1276] arm64: dts: ti: k3-am62a7-sk: Add bootph-all tag to vqmmc Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0821/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Enable internal ADC reference Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0822/1276] arm64: dts: imx8ulp-evk: Correct Type-C int GPIO flags Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0823/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Fix GPIO names typo Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0824/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Move gpio-line-names to board files Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0825/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Fix expander gpio line typo Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0826/1276] ARM: dts: stm32: stm32mp15x-mecio1-io: Move expander gpio-line-names to board files Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0827/1276] LoongArch: KVM: Check irq validity in kvm_vcpu_ioctl_interrupt() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0828/1276] LoongArch: KVM: Check the return values for put_user() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0829/1276] LoongArch: KVM: Fix FPU register width with user access API Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0830/1276] LoongArch: KVM: Return full old CSR value from kvm_emu_xchg_csr() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0831/1276] KVM: s390: pci: Fix GISC refcount leak on AIF enable failure Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0832/1276] KVM: arm64: vgic: Check the interrupt is still ours before migrating it Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0833/1276] KVM: s390: pci: Fix handling of AIF enable without AISB Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0834/1276] KVM: SEV: Do not allow intra-host migration/mirroring of SNP VMs Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0835/1276] KVM: x86: Ignore pending PV EOI if the vCPU has since disabled PV EOIs Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0836/1276] KVM: arm64: nv: Drop bogus WARN for write to ZCR_EL2 Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0837/1276] KVM: arm64: nv: Fix SPSR_EL2 restore in kvm_hyp_handle_mops() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0838/1276] fbdev: metronomefb: fix potential memory leak in metronomefb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0839/1276] fbdev: broadsheetfb: fix potential memory leak in broadsheetfb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0840/1276] fbdev: hecubafb: fix potential memory leak in hecubafb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0841/1276] fbdev: sm712: Fix operator precedence in big_swap macro Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0842/1276] fbdev: efifb: fix memory leak in efifb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0843/1276] fbdev: radeon: fix potential memory leak in radeonfb_pci_register() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0844/1276] fbdev: i740fb: fix potential memory leak in i740fb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0845/1276] fbdev: s3fb: fix potential memory leak in s3_pci_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0846/1276] fbdev: uvesafb: fix potential memory leak in uvesafb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0847/1276] fbdev: tdfxfb: fix potential memory leak in tdfxfb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0848/1276] fbdev: carminefb: fix potential memory leak in alloc_carmine_fb() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0849/1276] fbdev: vesafb: fix memory leak in vesafb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0850/1276] fbdev: nvidia: fix potential memory leak in nvidiafb_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0851/1276] fbdev: tridentfb: fix potential memory leak in trident_pci_probe() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0852/1276] ASoC: SOF: ipc3-control: Fix heap overflow in bytes_ext put/get Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0853/1276] ASoC: SOF: ipc3-control: Validate size in snd_sof_update_control Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0854/1276] ASoC: mediatek: mt8192: Release reserved memory on cleanup Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0855/1276] ASoC: mediatek: mt8183: " Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0856/1276] ASoC: qcom: q6apm: fix NULL pointer dereference in graph_callback Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0857/1276] netfilter: nf_conntrack_irc: fix parse_dcc() off-by-one OOB read Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0858/1276] netfilter: nfnl_cthelper: apply per-class values when updating policies Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0859/1276] netfilter: xt_cluster: reject template conntracks in hash match Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0860/1276] netfilter: nf_queue: pin bridge device while NFQUEUE holds fake dst Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0861/1276] netfilter: nft_set_pipapo: dont leak bad clone into future transaction Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0862/1276] netfilter: nf_nat_sip: reload possible stale data pointer Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0863/1276] netfilter: nf_conntrack_reasm: guard mac_header adjustment after IPv6 defrag Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0864/1276] netfilter: nf_conncount: fix zone comparison in tuple dedup Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0865/1276] netfilter: ecache: fix inverted time_after() check Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0866/1276] netfilter: xt_nat: reject unsupported target families Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0867/1276] netfilter: bridge: fix stale prevhdr pointer in br_ip6_fragment() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0868/1276] gpu: host1x: Fix device reference leak in host1x_device_parse_dt() error path Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0869/1276] soc: ti: k3-ringacc: Fix access mode for k3_ringacc_ring_pop_tail_io/proxy Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0870/1276] soc: fsl: qe: panic on ioremap() failure in qe_reset() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0871/1276] selinux: check connect-related permissions on TCP Fast Open Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0872/1276] selinux: avoid sk_socket dereference in selinux_sctp_bind_connect() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0873/1276] selinux: fix incorrect execmem checks on overlayfs Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0874/1276] leds: uleds: Fix potential buffer overread Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0875/1276] mfd: sm501: Fix reference leak on failed device registration Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.12 0876/1276] tools/power/x86/intel-speed-select: Harden daemon pidfile open Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0877/1276] x86/boot: Validate console=uart8250 baud rate to fix early boot hang Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0878/1276] x86/boot: Reject too long acpi_rsdp= values Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0879/1276] perf/x86/amd/lbr: Fix kernel address leakage Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0880/1276] cpufreq: intel_pstate: Set non-turbo capacity to HWP_GUARANTEED_PERF() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0881/1276] s390/perf_cpum_cf: Add missing array_index_nospec() to __hw_perf_event_init() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0882/1276] batman-adv: gw: acquire ethernet header only after skb realloc Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0883/1276] batman-adv: access unicast_ttvn skb->data " Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0884/1276] batman-adv: dat: acquire ARP hw source " Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0885/1276] batman-adv: bla: reacquire gw address " Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0886/1276] batman-adv: dat: ensure accessible eth_hdr proto field Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0887/1276] batman-adv: dat: fix tie-break for candidate selection Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0888/1276] batman-adv: tt: avoid request storms during pending request Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0889/1276] batman-adv: fix VLAN priority offset Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0890/1276] batman-adv: frag: free unfragmentable packet Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0891/1276] batman-adv: frag: fix primary_if leak on failed linearization Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0892/1276] batman-adv: mcast: avoid OOB read of num_dests header Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0893/1276] batman-adv: tt: prevent TVLV OOB check overflow Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0894/1276] cifs: invalidate cfid on unlink/rename/rmdir Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0895/1276] mfd: tps6586x: Fix OF node refcount Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0896/1276] HID: playstation: validate num_touch_reports in DualShock 4 reports Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0897/1276] Bluetooth: SCO: fix sleeping under spinlock in sco_conn_ready Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0898/1276] Bluetooth: SCO: hold sk properly " Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0899/1276] jbd2: fix integer underflow in jbd2_journal_initialize_fast_commit() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0900/1276] nvdimm/btt: Free arenas on btt_init() error paths Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0901/1276] nvdimm/btt: Free arena sub-allocations on discover_arenas() error path Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0902/1276] sunrpc: pin svc_xprt across the asynchronous TLS handshake callback Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0903/1276] sunrpc: wait for in-flight TLS handshake callback when cancel loses race Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0904/1276] lockd: Plug nlm_file leak when nlm_do_fopen() fails Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0905/1276] lockd: Plug nlm_file refcount leak on cached nlm_do_fopen() failure Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0906/1276] SUNRPC: Bound-check xdr_buf_to_bvec() stores before writing Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0907/1276] remoteproc: qcom: Fix leak when custom dump_segments addition fails Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0908/1276] MIPS: ip22-gio: fix gio device memory leak Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0909/1276] MIPS: ip22-gio: fix kfree() of static object Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0910/1276] MIPS: ip22-gio: fix device reference leak in probe Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0911/1276] MIPS: DEC: Ensure 32-bit stack location for o32 prom_printf() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0912/1276] power: supply: cpcap-battery: Fix missing nvmem_device_put() causing reference leak Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0913/1276] mm/memory_hotplug: fix incorrect altmap passing in error path Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0914/1276] mm/damon/core: make charge_addr_from aware of end-address exclusivity Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0915/1276] fs/ntfs3: fix syncing wrong inode on DIRSYNC cross-directory rename Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0916/1276] fs/ntfs3: bound DeleteIndexEntryAllocation memmove length Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0917/1276] fs/ntfs3: bound copy_lcns dp->page_lcns[] index in analysis pass Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0918/1276] fs/ntfs3: bound attr_off in UpdateResidentValue against data_off Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0919/1276] fs/ntfs3: validate lcns_follow in log_replay conversion Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0920/1276] fs/ntfs3: add depth limit to indx_find_buffer to prevent stack overflow Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0921/1276] fs/ntfs3: bound NTFS_DE view.data_off in UpdateRecordData{Root,Allocation} Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0922/1276] ntfs3: cap RESTART_TABLE free-chain walker at rt->used Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0923/1276] ntfs3: bound to_move in indx_insert_into_root before hdr_insert_head Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0924/1276] ntfs3: validate split-point offset in indx_insert_into_buffer Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0925/1276] ntfs3: fix out-of-bounds read in decompress_lznt Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0926/1276] power: supply: charger-manager: fix refcount leak in is_full_charged() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0927/1276] selftests/landlock: Test SCOPE_SIGNAL on the SIGIO/fowner pgid path Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0928/1276] mips: sched: Fix CPUMASK_OFFSTACK memory corruption Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0929/1276] riscv: cacheinfo: Fix node reference leak in populate_cache_leaves Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0930/1276] mm/damon/sysfs-schemes: fix dir put orders in access_pattern_add_dirs() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0931/1276] mm/damon/sysfs-schemes: put stats for scheme_add_dirs() internal error Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0932/1276] fs/proc/task_mmu: fix hugetlb self-deadlock in pagemap_scan_pte_hole() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0933/1276] fs/proc/task_mmu: use huge_page_size() in pagemap_scan_hugetlb_entry() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0934/1276] proc: only bump parent nlink when registering directories Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0935/1276] mm/mm_init: fix uninitialized struct pages for ZONE_DEVICE Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.12 0936/1276] kcov: use WRITE_ONCE() for selftest mode stores Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0937/1276] mtd: slram: remove failed entries from the device list Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0938/1276] 9p: skip nlink update in cacheless mode to fix WARN_ON Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0939/1276] scsi: smartpqi: Use shost_to_hba() in pqi_scan_finished() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0940/1276] scsi: sas: Skip opt_sectors when DMA reports no real optimization hint Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0941/1276] ocfs2: use kzalloc for quota recovery bitmap allocation Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0942/1276] mtd: rawnand: pl353: fix probe resource allocation Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0943/1276] net/9p: fix infinite loop in p9_client_rpc on fatal signal Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0944/1276] mtd: rawnand: fix condition in nand_select_target() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0945/1276] ocfs2: avoid moving extents to occupied clusters Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0946/1276] ocfs2: fix NULL h_transaction deref in ocfs2_assure_trans_credits Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0947/1276] ocfs2: add journal NULL check in ocfs2_checkpoint_inode() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0948/1276] ocfs2: reject dinodes with non-canonical i_mode type Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0949/1276] ocfs2: reject dinodes whose i_rdev disagrees with the file type Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0950/1276] ocfs2: reject non-inline dinodes with i_size and zero i_clusters Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0951/1276] fpga: dfl: add bounds check in dfh_get_param_size() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0952/1276] bus: mhi: ep: Protect mhi_ep_handle_syserr() in the error path Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0953/1276] net: thunderbolt: Fix frags[] overflow by bounding frame_count Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0954/1276] fpga: microchip-spi: fix zero header_size OOB read in mpf_ops_parse_header() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0955/1276] s390/pkey: Check length in PKEY_VERIFYPROTK ioctl Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0956/1276] s390/pkey: Check length in pkey_pckmo handler implementation Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0957/1276] mtd: spi-nor: swp: Improve locking user experience Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0958/1276] mtd: spi-nor: spansion: use die erase for multi-die devices only Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0959/1276] mtd: rawnand: Pause continuous reads at block boundaries Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0960/1276] mtd: maps: vmu-flash: fix NULL pointer dereference in initialization Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0961/1276] taskstats: retain dead thread stats in TGID queries Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0962/1276] irqchip/crossbar: Use correct index in crossbar_domain_free() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0963/1276] tpm: tpm_tis_spi: Use wait_woken() in wait_for_tmp_stat() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0964/1276] tpm: tpm2-sessions: wait for async KPP completion in tpm_buf_append_salt Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0965/1276] dmaengine: tegra: Fix burst size calculation Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0966/1276] dmaengine: dw-edma: Add spinlock to protect DONE_INT_MASK and ABORT_INT_MASK Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0967/1276] platform/x86: dell-laptop: fix missing cleanups in init error path Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0968/1276] platform/x86/amd/pmc: Check for intermediate wakeup in function Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0969/1276] platform/x86/amd/pmc: Delay suspend for some Lenovo Laptops Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0970/1276] platform/x86/amd/pmc: Add delay_suspend module parameter Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0971/1276] platform/x86/amd/pmc: Dont log during intermediate wakeups Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0972/1276] pkey: Move keytype check from pkey api to handler Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0973/1276] smb: client: use kvzalloc() for megabyte buffer in simple fallocate Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0974/1276] ksmbd: fix integer overflow in set_file_allocation_info() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0975/1276] hwmon: (ltc2992) add missing select REGMAP_I2C to Kconfig Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0976/1276] hwmon: (max6697) " Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0977/1276] i2c: mediatek: fix WRRD for SoCs without auto_restart option Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0978/1276] i2c: mlxbf: Fix use-after-free in mlxbf_i2c_init_resource() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0979/1276] ice: fix ice_init_link() error return preventing probe Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0980/1276] xen/gntdev: fix error handling in ioctl Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0981/1276] xfrm: use compat translator only for u64 alignment mismatch Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0982/1276] xfrm: xfrm_interface: require CAP_NET_ADMIN in the device netns for changelink Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0983/1276] tpm: fix event_size output in tpm1_binary_bios_measurements_show Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0984/1276] tpm: Make the TPM character devices non-seekable Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0985/1276] time: Fix off-by-one in compat settimeofday() usec validation Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0986/1276] spi: uniphier: Fix completion initialization order before devm_request_irq() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0987/1276] sctp: validate STALE_COOKIE cause length before reading staleness Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0988/1276] NFS: Charge unstable writes by request size, not folio size Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0989/1276] nvmet-rdma: handle inline data with a nonzero offset Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0990/1276] netdev-genl: report NAPI thread PID in the callers pid namespace Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0991/1276] can: esd_usb: kill anchored URBs before freeing netdevs Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0992/1276] can: isotp: use unconditional synchronize_rcu() in isotp_release() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0993/1276] can: bcm: defer rx_op deallocation to workqueue to fix thrtimer UAF Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0994/1276] can: bcm: fix lockless bound/ifindex race and silent RX_SETUP failure Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0995/1276] can: bcm: add missing rcu list annotations and operations Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.12 0996/1276] bpf,fork: wipe ->bpf_storage before bailouts that access it Greg Kroah-Hartman
2026-07-21 15:24 ` [PATCH 6.12 0997/1276] bpf: Add missing access_ok call to copy_user_syms Greg Kroah-Hartman
2026-07-21 15:24 ` [PATCH 6.12 0998/1276] block: fix race in blk_time_get_ns() returning 0 Greg Kroah-Hartman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260721152503.908905057@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=anna.schumaker@hammerspace.com \
--cc=chuck.lever@oracle.com \
--cc=michael.nemanov@vastdata.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.