stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Paul Chaignon <paul.chaignon@gmail.com>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Jakub Kicinski <kuba@kernel.org>
Subject: [PATCH 5.15 407/411] bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE
Date: Mon, 23 Jun 2025 15:09:11 +0200	[thread overview]
Message-ID: <20250623130643.929123492@linuxfoundation.org> (raw)
In-Reply-To: <20250623130632.993849527@linuxfoundation.org>

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

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

From: Paul Chaignon <paul.chaignon@gmail.com>

commit ead7f9b8de65632ef8060b84b0c55049a33cfea1 upstream.

In Cilium, we use bpf_csum_diff + bpf_l4_csum_replace to, among other
things, update the L4 checksum after reverse SNATing IPv6 packets. That
use case is however not currently supported and leads to invalid
skb->csum values in some cases. This patch adds support for IPv6 address
changes in bpf_l4_csum_update via a new flag.

When calling bpf_l4_csum_replace in Cilium, it ends up calling
inet_proto_csum_replace_by_diff:

    1:  void inet_proto_csum_replace_by_diff(__sum16 *sum, struct sk_buff *skb,
    2:                                       __wsum diff, bool pseudohdr)
    3:  {
    4:      if (skb->ip_summed != CHECKSUM_PARTIAL) {
    5:          csum_replace_by_diff(sum, diff);
    6:          if (skb->ip_summed == CHECKSUM_COMPLETE && pseudohdr)
    7:              skb->csum = ~csum_sub(diff, skb->csum);
    8:      } else if (pseudohdr) {
    9:          *sum = ~csum_fold(csum_add(diff, csum_unfold(*sum)));
    10:     }
    11: }

The bug happens when we're in the CHECKSUM_COMPLETE state. We've just
updated one of the IPv6 addresses. The helper now updates the L4 header
checksum on line 5. Next, it updates skb->csum on line 7. It shouldn't.

For an IPv6 packet, the updates of the IPv6 address and of the L4
checksum will cancel each other. The checksums are set such that
computing a checksum over the packet including its checksum will result
in a sum of 0. So the same is true here when we update the L4 checksum
on line 5. We'll update it as to cancel the previous IPv6 address
update. Hence skb->csum should remain untouched in this case.

The same bug doesn't affect IPv4 packets because, in that case, three
fields are updated: the IPv4 address, the IP checksum, and the L4
checksum. The change to the IPv4 address and one of the checksums still
cancel each other in skb->csum, but we're left with one checksum update
and should therefore update skb->csum accordingly. That's exactly what
inet_proto_csum_replace_by_diff does.

This special case for IPv6 L4 checksums is also described atop
inet_proto_csum_replace16, the function we should be using in this case.

This patch introduces a new bpf_l4_csum_replace flag, BPF_F_IPV6,
to indicate that we're updating the L4 checksum of an IPv6 packet. When
the flag is set, inet_proto_csum_replace_by_diff will skip the
skb->csum update.

Fixes: 7d672345ed295 ("bpf: add generic bpf_csum_diff helper")
Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
Acked-by: Daniel Borkmann <daniel@iogearbox.net>
Link: https://patch.msgid.link/96a6bc3a443e6f0b21ff7b7834000e17fb549e05.1748509484.git.paul.chaignon@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
[ Note: Fixed conflict due to unrelated comment change. ]
Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 include/uapi/linux/bpf.h       |    2 ++
 net/core/filter.c              |    5 +++--
 tools/include/uapi/linux/bpf.h |    2 ++
 3 files changed, 7 insertions(+), 2 deletions(-)

--- a/include/uapi/linux/bpf.h
+++ b/include/uapi/linux/bpf.h
@@ -1695,6 +1695,7 @@ union bpf_attr {
  * 		for updates resulting in a null checksum the value is set to
  * 		**CSUM_MANGLED_0** instead. Flag **BPF_F_PSEUDO_HDR** indicates
  * 		the checksum is to be computed against a pseudo-header.
+ * 		Flag **BPF_F_IPV6** should be set for IPv6 packets.
  *
  * 		This helper works in combination with **bpf_csum_diff**\ (),
  * 		which does not update the checksum in-place, but offers more
@@ -5106,6 +5107,7 @@ enum {
 	BPF_F_PSEUDO_HDR		= (1ULL << 4),
 	BPF_F_MARK_MANGLED_0		= (1ULL << 5),
 	BPF_F_MARK_ENFORCE		= (1ULL << 6),
+	BPF_F_IPV6			= (1ULL << 7),
 };
 
 /* BPF_FUNC_skb_set_tunnel_key and BPF_FUNC_skb_get_tunnel_key flags. */
--- a/net/core/filter.c
+++ b/net/core/filter.c
@@ -1951,10 +1951,11 @@ BPF_CALL_5(bpf_l4_csum_replace, struct s
 	bool is_pseudo = flags & BPF_F_PSEUDO_HDR;
 	bool is_mmzero = flags & BPF_F_MARK_MANGLED_0;
 	bool do_mforce = flags & BPF_F_MARK_ENFORCE;
+	bool is_ipv6   = flags & BPF_F_IPV6;
 	__sum16 *ptr;
 
 	if (unlikely(flags & ~(BPF_F_MARK_MANGLED_0 | BPF_F_MARK_ENFORCE |
-			       BPF_F_PSEUDO_HDR | BPF_F_HDR_FIELD_MASK)))
+			       BPF_F_PSEUDO_HDR | BPF_F_HDR_FIELD_MASK | BPF_F_IPV6)))
 		return -EINVAL;
 	if (unlikely(offset > 0xffff || offset & 1))
 		return -EFAULT;
@@ -1970,7 +1971,7 @@ BPF_CALL_5(bpf_l4_csum_replace, struct s
 		if (unlikely(from != 0))
 			return -EINVAL;
 
-		inet_proto_csum_replace_by_diff(ptr, skb, to, is_pseudo, false);
+		inet_proto_csum_replace_by_diff(ptr, skb, to, is_pseudo, is_ipv6);
 		break;
 	case 2:
 		inet_proto_csum_replace2(ptr, skb, from, to, is_pseudo);
--- a/tools/include/uapi/linux/bpf.h
+++ b/tools/include/uapi/linux/bpf.h
@@ -1695,6 +1695,7 @@ union bpf_attr {
  * 		for updates resulting in a null checksum the value is set to
  * 		**CSUM_MANGLED_0** instead. Flag **BPF_F_PSEUDO_HDR** indicates
  * 		the checksum is to be computed against a pseudo-header.
+ * 		Flag **BPF_F_IPV6** should be set for IPv6 packets.
  *
  * 		This helper works in combination with **bpf_csum_diff**\ (),
  * 		which does not update the checksum in-place, but offers more
@@ -5106,6 +5107,7 @@ enum {
 	BPF_F_PSEUDO_HDR		= (1ULL << 4),
 	BPF_F_MARK_MANGLED_0		= (1ULL << 5),
 	BPF_F_MARK_ENFORCE		= (1ULL << 6),
+	BPF_F_IPV6			= (1ULL << 7),
 };
 
 /* BPF_FUNC_clone_redirect and BPF_FUNC_redirect flags. */



  parent reply	other threads:[~2025-06-23 22:19 UTC|newest]

Thread overview: 424+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-23 13:02 [PATCH 5.15 000/411] 5.15.186-rc1 review Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 001/411] tracing: Fix compilation warning on arm32 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 002/411] pinctrl: armada-37xx: use correct OUTPUT_VAL register for GPIOs > 31 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 003/411] pinctrl: armada-37xx: set GPIO output value before setting direction Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 004/411] acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 005/411] rtc: Make rtc_time64_to_tm() support dates before 1970 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 006/411] rtc: Fix offset calculation for .start_secs < 0 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 007/411] usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 008/411] usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 009/411] USB: serial: pl2303: add new chip PL2303GC-Q20 and PL2303GT-2AB Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 010/411] usb: usbtmc: Fix timeout value in get_stb Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 011/411] thunderbolt: Do not double dequeue a configuration request Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 012/411] gfs2: gfs2_create_inode error handling fix Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 013/411] perf/core: Fix broken throttling when max_samples_per_tick=1 Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 014/411] crypto: sun8i-ss - do not use sg_dma_len before calling DMA functions Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 015/411] x86/cpu: Sanitize CPUID(0x80000000) output Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 016/411] crypto: marvell/cesa - Handle zero-length skcipher requests Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 017/411] crypto: marvell/cesa - Avoid empty transfer descriptor Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 018/411] crypto: lrw - Only add ecb if it is not already there Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 019/411] crypto: xts " Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 020/411] crypto: sun8i-ce - move fallback ahash_request to the end of the struct Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 021/411] EDAC/skx_common: Fix general protection fault Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 022/411] power: reset: at91-reset: Optimize at91_reset() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 023/411] PM: wakeup: Delete space in the end of string shown by pm_show_wakelocks() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 024/411] x86/mtrr: Check if fixed-range MTRRs exist in mtrr_save_fixed_ranges() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 025/411] ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions" Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 026/411] spi: sh-msiof: Fix maximum DMA transfer size Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 027/411] drm/amd/pp: Fix potential NULL pointer dereference in atomctrl_initialize_mc_reg_table Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 028/411] media: rkvdec: Fix frame size enumeration Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 029/411] fs/ntfs3: handle hdr_first_de() return value Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 030/411] m68k: mac: Fix macintosh_config for Mac II Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 031/411] firmware: psci: Fix refcount leak in psci_dt_init Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 032/411] selftests/seccomp: fix syscall_restart test for arm compat Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 033/411] drm: rcar-du: Fix memory leak in rcar_du_vsps_init() Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 034/411] drm/vkms: Adjust vkms_state->active_planes allocation type Greg Kroah-Hartman
2025-06-23 13:02 ` [PATCH 5.15 035/411] drm/tegra: rgb: Fix the unbound reference count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 036/411] firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 037/411] wifi: ath11k: fix node corruption in ar->arvifs list Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 038/411] IB/cm: use rwlock for MAD agent lock Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 039/411] bpf, sockmap: fix duplicated data transmission Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 040/411] f2fs: fix to do sanity check on sbi->total_valid_block_count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 041/411] net: ncsi: Fix GCPS 64-bit member variables Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 042/411] libbpf: Fix buffer overflow in bpf_object__init_prog Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 043/411] wifi: rtw88: do not ignore hardware read error during DPK Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 045/411] iommu: Protect against overflow in iommu_pgsize() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 046/411] f2fs: clean up w/ fscrypt_is_bounce_page() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 047/411] f2fs: fix to detect gcing page in f2fs_is_cp_guaranteed() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 048/411] libbpf: Use proper errno value in linker Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 049/411] netfilter: bridge: Move specific fragmented packet to slow_path instead of dropping it Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 050/411] netfilter: nft_quota: match correctly when the quota just depleted Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 051/411] RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 052/411] bpf: Fix uninitialized values in BPF_{CORE,PROBE}_READ Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 053/411] clk: qcom: gcc-sm6350: Add *_wait_val values for GDSCs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 054/411] clk: bcm: rpi: Add NULL check in raspberrypi_clk_register() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 055/411] ktls, sockmap: Fix missing uncharge operation Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 056/411] libbpf: Use proper errno value in nlattr Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 057/411] pinctrl: at91: Fix possible out-of-boundary access Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 058/411] bpf: Fix WARN() in get_bpf_raw_tp_regs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 059/411] clk: qcom: gcc-msm8939: Fix mclk0 & mclk1 for 24 MHz Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 060/411] s390/bpf: Store backchain even for leaf progs Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 061/411] wifi: rtw88: fix the para buffer size to avoid reading out of bounds Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 062/411] wifi: ath9k_htc: Abort software beacon handling if disabled Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 063/411] netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 064/411] vfio/type1: Fix error unwind in migration dirty bitmap allocation Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 065/411] bpf, sockmap: Avoid using sk_socket after free when sending Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 066/411] netfilter: nft_tunnel: fix geneve_opt dump Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 067/411] net: usb: aqc111: fix error handling of usbnet read calls Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 068/411] bpf: Avoid __bpf_prog_ret0_warn when jit fails Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 069/411] net: lan743x: rename lan743x_reset_phy to lan743x_hw_reset_phy Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 070/411] calipso: Dont call calipso functions for AF_INET sk Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 071/411] net: openvswitch: Fix the dead loop of MPLS parse Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 072/411] net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 073/411] f2fs: use d_inode(dentry) cleanup dentry->d_inode Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 074/411] f2fs: fix to correct check conditions in f2fs_cross_rename Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 075/411] ARM: dts: at91: usb_a9263: fix GPIO for Dataflash chip select Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 076/411] ARM: dts: at91: at91sam9263: fix NAND chip selects Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 077/411] arm64: dts: imx8mm-beacon: Fix RTC capacitive load Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 078/411] arm64: dts: imx8mn-beacon: " Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 079/411] Squashfs: check return result of sb_min_blocksize Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 080/411] ocfs2: fix possible memory leak in ocfs2_finish_quota_recovery Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 081/411] nilfs2: add pointer check for nilfs_direct_propagate() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 082/411] nilfs2: do not propagate ENOENT error from nilfs_btree_propagate() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 083/411] bus: fsl-mc: fix double-free on mc_dev Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 084/411] ARM: dts: qcom: apq8064 merge hw splinlock into corresponding syscon device Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 085/411] arm64: dts: rockchip: disable unrouted USB controllers and PHY on RK3399 Puma with Haikou Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 086/411] soc: aspeed: lpc: Fix impossible judgment condition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 087/411] soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 088/411] fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 089/411] randstruct: gcc-plugin: Remove bogus void member Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 090/411] randstruct: gcc-plugin: Fix attribute addition Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 091/411] perf build: Warn when libdebuginfod devel files are not available Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 092/411] perf ui browser hists: Set actions->thread before calling do_zoom_thread() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 093/411] backlight: pm8941: Add NULL check in wled_configure() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 094/411] perf scripts python: exported-sql-viewer.py: Fix pattern matching with Python 3 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.15 095/411] remoteproc: qcom_wcnss_iris: Add missing put_device() on error in probe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 096/411] rpmsg: qcom_smd: Fix uninitialized return variable in __qcom_smd_send() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 097/411] mfd: exynos-lpass: Avoid calling exynos_lpass_disable() twice in exynos_lpass_remove() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 098/411] mfd: stmpe-spi: Correct the name used in MODULE_DEVICE_TABLE Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 099/411] perf tests switch-tracking: Fix timestamp comparison Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 100/411] perf record: Fix incorrect --user-regs comments Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 101/411] nfs: clear SB_RDONLY before getting superblock Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 102/411] nfs: ignore SB_RDONLY when remounting nfs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 103/411] rtc: sh: assign correct interrupts with DT Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 104/411] PCI: cadence: Fix runtime atomic count underflow Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 105/411] dmaengine: ti: Add NULL check in udma_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 106/411] PCI/DPC: Initialize aer_err_info before using it Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 107/411] usb: renesas_usbhs: Reorder clock handling and power management in probe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 108/411] serial: Fix potential null-ptr-deref in mlb_usio_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 109/411] iio: adc: ad7124: Fix 3dB filter frequency reading Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 110/411] MIPS: Loongson64: Add missing #interrupt-cells for loongson64c_ls7a Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 111/411] vt: remove VT_RESIZE and VT_RESIZEX from vt_compat_ioctl() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 112/411] net: stmmac: platform: guarantee uniqueness of bus_id Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 113/411] gve: Fix RX_BUFFERS_POSTED stat to report per-queue fill_cnt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 114/411] net: tipc: fix refcount warning in tipc_aead_encrypt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 115/411] driver: net: ethernet: mtk_star_emac: fix suspend/resume issue Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 116/411] net/mlx4_en: Prevent potential integer overflow calculating Hz Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 117/411] spi: bcm63xx-spi: fix shared reset Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 118/411] spi: bcm63xx-hsspi: " Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 119/411] Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 120/411] ice: create new Tx scheduler nodes for new queues only Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 121/411] net: dsa: tag_brcm: legacy: fix pskb_may_pull length Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 122/411] vmxnet3: correctly report gso type for UDP tunnels Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 123/411] PM: sleep: Fix power.is_suspended cleanup for direct-complete devices Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 124/411] gve: add missing NULL check for gve_alloc_pending_packet() in TX DQO Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 125/411] netfilter: nf_set_pipapo_avx2: fix initial map fill Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 126/411] wireguard: device: enable threaded NAPI Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 127/411] seg6: Fix validation of nexthop addresses Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 128/411] fix propagation graph breakage by MOVE_MOUNT_SET_GROUP move_mount(2) Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 129/411] do_change_type(): refuse to operate on unmounted/not ours mounts Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 130/411] pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 131/411] Input: synaptics-rmi4 - convert to use sysfs_emit() APIs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 132/411] Input: synaptics-rmi - fix crash with unsupported versions of F34 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 133/411] arm64: dts: ti: k3-am65-main: Drop deprecated ti,otap-del-sel property Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 134/411] arm64: dts: ti: k3-am65-main: Fix sdhci node properties Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 135/411] arm64: dts: ti: k3-am65-main: Add missing taps to sdhci0 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 136/411] serial: sh-sci: Check if TX data was written to device in .tx_empty() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 137/411] serial: sh-sci: Move runtime PM enable to sci_probe_single() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 138/411] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 139/411] scsi: core: ufs: Fix a hang in the error handler Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 140/411] ptp: remove ptp->n_vclocks check logic in ptp_vclock_in_use() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 141/411] ath10k: snoc: fix unbalanced IRQ enable in crash recovery Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 142/411] scsi: iscsi: Fix incorrect error path labels for flashnode operations Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 143/411] net_sched: sch_sfq: fix a potential crash on gso_skb handling Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 144/411] powerpc/powernv/memtrace: Fix out of bounds issue in memtrace mmap Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 145/411] powerpc/vas: Return -EINVAL if the offset is non-zero in mmap() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 146/411] drm/meson: use unsigned long long / Hz for frequency types Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 147/411] drm/meson: fix debug log statement when setting the HDMI clocks Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 148/411] drm/meson: use vclk_freq instead of pixel_freq in debug print Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 149/411] drm/meson: fix more rounding issues with 59.94Hz modes Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 150/411] i40e: return false from i40e_reset_vf if reset is in progress Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 151/411] i40e: retry VFLR handling if there is ongoing VF reset Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 152/411] net: Fix TOCTOU issue in sk_is_readable() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 153/411] macsec: MACsec SCI assignment for ES = 0 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 154/411] net: mdio: C22 is now optional, EOPNOTSUPP if not provided Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.15 155/411] net/mdiobus: Fix potential out-of-bounds read/write access Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 156/411] net/mlx5: Ensure fw pages are always allocated on same NUMA Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 157/411] net/mlx5: Fix return value when searching for existing flow group Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 158/411] net_sched: prio: fix a race in prio_tune() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 159/411] net_sched: red: fix a race in __red_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 160/411] net_sched: tbf: fix a race in tbf_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 161/411] sch_ets: make est_qlen_notify() idempotent Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 162/411] net_sched: ets: fix a race in ets_qdisc_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 163/411] fs/filesystems: Fix potential unsigned integer underflow in fs_name() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 164/411] nvmet-fcloop: access fcpreq only when holding reqlock Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 165/411] perf: Ensure bpf_perf_link path is properly serialized Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 166/411] ALSA: usb-audio: Add implicit feedback quirk for RODE AI-1 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 167/411] posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 168/411] x86/boot/compressed: prefer cc-option for CFLAGS additions Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 169/411] MIPS: Move -Wa,-msoft-float check from as-option to cc-option Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 170/411] MIPS: Prefer cc-option for additions to cflags Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 171/411] kbuild: Update assembler calls to use proper flags and language target Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 172/411] drm/amd/display: Do not add -mhard-float to dml_ccflags for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 173/411] mips: Include KBUILD_CPPFLAGS in CHECKFLAGS invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 175/411] kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 176/411] kbuild: Add KBUILD_CPPFLAGS to as-option invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 177/411] drm/amd/display: Do not add -mhard-float to dcn2{1,0}_resource.o for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 178/411] usb: usbtmc: Fix read_stb function and get_stb ioctl Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 179/411] VMCI: fix race between vmci_host_setup_notify and vmci_ctx_unset_notify Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 180/411] usb: cdnsp: Fix issue with detecting command completion event Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 181/411] usb: cdnsp: Fix issue with detecting USB 3.2 speed Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 182/411] usb: Flush altsetting 0 endpoints before reinitializating them after reset Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 183/411] usb: typec: tcpm/tcpci_maxim: Fix bounds check in process_rx() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 184/411] xen/arm: call uaccess_ttbr0_enable for dm_op hypercall Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 185/411] x86/iopl: Cure TIF_IO_BITMAP inconsistencies Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 186/411] calipso: unlock rcu before returning -EAFNOSUPPORT Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 187/411] net: usb: aqc111: debug info before sanitation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 188/411] drm/meson: Use 1000ULL when operating with mode->clock Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 189/411] kbuild: userprogs: fix bitsize and target detection on clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 190/411] kbuild: hdrcheck: fix cross build with clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 191/411] xfs: allow inode inactivation during a ro mount log recovery Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 192/411] configfs: Do not override creating attribute file failure in populate_attrs() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 193/411] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 194/411] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 195/411] ASoC: qcom: sdm845: Add error handling in sdm845_slim_snd_hw_params() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 196/411] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 197/411] powerpc/pseries/msi: Avoid reading PCI device registers in reduced power states Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 198/411] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 199/411] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 200/411] wifi: p54: prevent buffer-overflow in p54_rx_eeprom_readback() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 201/411] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 202/411] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 203/411] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 204/411] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 205/411] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 206/411] media: ccs-pll: Start VT pre-PLL multiplier search from correct value Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 207/411] media: ccs-pll: Start OP " Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 208/411] media: ccs-pll: Correct the upper limit of maximum op_pre_pll_clk_div Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 209/411] media: ccs-pll: Check for too high VT PLL multiplier in dual PLL case Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 210/411] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 211/411] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 212/411] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 213/411] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 214/411] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.15 215/411] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 216/411] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 217/411] media: uvcvideo: Return the number of processed controls Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 218/411] media: uvcvideo: Send control events for partial succeeds Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 219/411] media: uvcvideo: Fix deferred probing error Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 220/411] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 221/411] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 222/411] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 223/411] can: tcan4x5x: fix power regulator retrieval during probe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 224/411] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 225/411] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 226/411] bus: fsl-mc: fix GET/SET_TAILDROP command ids Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 227/411] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 228/411] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 229/411] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 230/411] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 231/411] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 232/411] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 233/411] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 234/411] NFC: nci: uart: Set tty->disc_data only in success path Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 235/411] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 236/411] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 237/411] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 238/411] parisc: fix building with gcc-15 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 239/411] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 240/411] ipc: fix to protect IPCS lookups using RCU Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 241/411] RDMA/iwcm: Fix use-after-free of work objects after cm_id destruction Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 242/411] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 243/411] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 244/411] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 245/411] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 246/411] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 247/411] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 248/411] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 249/411] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 250/411] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 251/411] remoteproc: core: Cleanup acquired resources when rproc_handle_resources() fails in rproc_attach() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 252/411] remoteproc: core: Release rproc->clean_table after rproc_attach() fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 253/411] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 254/411] PCI: cadence-ep: Correct PBA offset in .set_msix() callback Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 255/411] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 256/411] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 257/411] PCI: dw-rockchip: Fix PHY function call sequence in rockchip_pcie_phy_deinit() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 258/411] iio: accel: fxls8962af: Fix temperature scan element sign Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 259/411] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 260/411] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 261/411] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 262/411] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 263/411] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 264/411] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 265/411] ACPI: bus: Bail out if acpi_kobj registration fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 266/411] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 267/411] power: supply: bq27xxx: Retrieve again when busy Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 268/411] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 269/411] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 270/411] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 271/411] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 272/411] drm/amdgpu/gfx6: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 273/411] sunrpc: update nextcheck time when adding new cache entries Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 274/411] drm/bridge: analogix_dp: Add irq flag IRQF_NO_AUTOEN instead of calling disable_irq() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.15 275/411] exfat: fix double free in delayed_free Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 276/411] drm/bridge: anx7625: change the gpiod_set_value API Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 277/411] media: i2c: imx334: Enable runtime PM before sub-device registration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 278/411] drm/msm/hdmi: add runtime PM calls to DDC transfer function Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 279/411] media: uapi: v4l: Fix V4L2_TYPE_IS_OUTPUT condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 280/411] drm/amd/display: Add NULL pointer checks in dm_force_atomic_commit() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 281/411] drm/msm/a6xx: Increase HFI response timeout Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 282/411] media: i2c: imx334: Fix runtime PM handling in remove function Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 283/411] drm/amdgpu/gfx10: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 284/411] media: ccs-pll: Better validate VT PLL branch Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 285/411] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 286/411] drm/amdgpu/gfx7: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 287/411] ext4: ext4: unify EXT4_EX_NOCACHE|NOFAIL flags in ext4_ext_remove_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 288/411] jfs: fix array-index-out-of-bounds read in add_missing_indices Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 289/411] media: ti: cal: Fix wrong goto on error path Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 290/411] media: rkvdec: Initialize the m2m context before the controls Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 291/411] sunrpc: fix race in cache cleanup causing stale nextcheck time Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 292/411] ext4: prevent stale extent cache entries caused by concurrent get es_cache Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 293/411] drm/amdgpu/gfx8: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 294/411] drm/amdgpu/gfx9: " Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 295/411] jfs: Fix null-ptr-deref in jfs_ioc_trim Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 296/411] drm/msm/dpu: dont select single flush for active CTL blocks Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 297/411] drm/amdkfd: Set SDMA_RLCx_IB_CNTL/SWITCH_INSIDE_IB Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 298/411] media: tc358743: ignore video while HPD is low Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 299/411] media: platform: exynos4-is: Add hardware sync wait to fimc_is_hw_change_mode() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 300/411] media: i2c: imx334: update mode_3840x2160_regs array Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 301/411] nios2: force update_mmu_cache on spurious tlb-permission--related pagefaults Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 302/411] pmdomain: ti: Fix STANDBY handling of PER power domain Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 303/411] thermal/drivers/qcom/tsens: Update conditions to strictly evaluate for IP v2+ Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 304/411] cpufreq: Force sync policy boost with global boost on sysfs update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 305/411] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 306/411] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 307/411] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 308/411] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 309/411] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 310/411] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 311/411] cpufreq: scmi: Skip SCMI devices that arent used by the CPUs Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 312/411] i2c: npcm: Add clock toggle recovery Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 313/411] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 314/411] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 315/411] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 316/411] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 317/411] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 318/411] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 319/411] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 320/411] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 321/411] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 322/411] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 323/411] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 324/411] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 325/411] libbpf: Add identical pointer detection to btf_dedup_is_equiv() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 326/411] scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 327/411] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 328/411] net: bridge: mcast: re-implement br_multicast_{enable, disable}_port functions Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 329/411] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 330/411] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 331/411] pinctrl: mcp23s08: Reset all pins to input at probe Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 332/411] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 333/411] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 334/411] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.15 335/411] bpf, sockmap: Fix data lost during EAGAIN retries Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 336/411] octeontx2-pf: Add error log forcn10k_map_unmap_rq_policer() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 337/411] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 338/411] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 339/411] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 340/411] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 341/411] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 342/411] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 343/411] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 344/411] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 345/411] Revert "x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2" on v6.6 and older Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 346/411] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 347/411] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 348/411] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 349/411] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 350/411] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 351/411] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 352/411] selftests/x86: Add a test to detect infinite SIGTRAP handler loop Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 353/411] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 354/411] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 355/411] HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 356/411] block: default BLOCK_LEGACY_AUTOLOAD to y Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 357/411] Input: sparcspkr - avoid unannotated fall-through Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 358/411] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 359/411] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 360/411] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 361/411] iio: accel: fxls8962af: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 362/411] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 363/411] mm: hugetlb: independent PMD page table shared count Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 364/411] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 365/411] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 366/411] drm/msm/dsi/dsi_phy_10nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 367/411] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 368/411] hwmon: (occ) Add soft minimum power cap attribute Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 369/411] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 370/411] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 371/411] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 372/411] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 373/411] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 374/411] ptp: fix breakage after ptp_vclock_in_use() rework Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 375/411] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 376/411] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 377/411] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 378/411] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 379/411] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 380/411] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 381/411] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 382/411] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 383/411] ARM: dts: am335x-bone-common: Add GPIO PHY reset on revision C3 board Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 384/411] ARM: dts: am335x-bone-common: Increase MDIO reset deassert time Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 385/411] ARM: dts: am335x-bone-common: Increase MDIO reset deassert delay to 50ms Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 386/411] serial: sh-sci: Increment the runtime usage counter for the earlycon device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 387/411] Revert "cpufreq: tegra186: Share policy per cluster" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 388/411] arm64: move AARCH64_BREAK_FAULT into insn-def.h Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 389/411] arm64: insn: add encoders for atomic operations Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 390/411] arm64: insn: Add support for encoding DSB Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 391/411] arm64: proton-pack: Expose whether the platform is mitigated by firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 392/411] arm64: proton-pack: Expose whether the branchy loop k value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 393/411] arm64: spectre: increase parameters that can be used to turn off bhb mitigation individually Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 394/411] arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.15 395/411] arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 396/411] arm64: proton-pack: Add new CPUs k values for branch mitigation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 397/411] net_sched: sch_sfq: annotate data-races around q->perturb_period Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 398/411] net_sched: sch_sfq: handle bigger packets Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 399/411] net_sched: sch_sfq: dont allow 1 packet limit Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 400/411] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 401/411] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 402/411] net_sched: sch_sfq: reject invalid perturb period Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 403/411] mm/huge_memory: fix dereferencing invalid pmd migration entry Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 404/411] ext4: make abort mount option handling standard Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 405/411] ext4: avoid remount errors with abort mount option Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 406/411] net: Fix checksum update for ILA adj-transport Greg Kroah-Hartman
2025-06-23 13:09 ` Greg Kroah-Hartman [this message]
2025-06-23 13:09 ` [PATCH 5.15 408/411] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 409/411] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 410/411] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.15 411/411] scsi: elx: efct: Fix memory leak in efct_hw_parse_filter() Greg Kroah-Hartman
2025-06-23 20:42 ` [PATCH 5.15 000/411] 5.15.186-rc1 review Naresh Kamboju
2025-06-24 10:18   ` Greg Kroah-Hartman
2025-06-25  1:45     ` Naresh Kamboju
2025-06-25  8:39       ` Greg Kroah-Hartman
2025-06-23 20:49 ` Florian Fainelli
2025-06-24  8:39 ` Ron Economos
2025-06-25  7:23 ` Jon Hunter
2025-06-25  7:32 ` Vijayendra Suman
2025-07-07 18:05 ` Guenter Roeck
2025-07-08 16:05   ` Martin Blumenstingl
2025-07-12 12:37     ` Greg Kroah-Hartman
2025-07-14 19:56       ` Martin Blumenstingl
2025-07-21 13:48         ` Greg Kroah-Hartman
2025-07-21 14:12         ` Guenter Roeck

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=20250623130643.929123492@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=daniel@iogearbox.net \
    --cc=kuba@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=paul.chaignon@gmail.com \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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