All of lore.kernel.org
 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,
	"Kito Xu (veritas501)" <hxzene@gmail.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 017/253] net: appletalk: Fix use-after-free in AARP proxy probe
Date: Tue, 12 Aug 2025 19:26:45 +0200	[thread overview]
Message-ID: <20250812172949.441334669@linuxfoundation.org> (raw)
In-Reply-To: <20250812172948.675299901@linuxfoundation.org>

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

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

From: Kito Xu (veritas501) <hxzene@gmail.com>

[ Upstream commit 6c4a92d07b0850342d3becf2e608f805e972467c ]

The AARP proxy‐probe routine (aarp_proxy_probe_network) sends a probe,
releases the aarp_lock, sleeps, then re-acquires the lock.  During that
window an expire timer thread (__aarp_expire_timer) can remove and
kfree() the same entry, leading to a use-after-free.

race condition:

         cpu 0                          |            cpu 1
    atalk_sendmsg()                     |   atif_proxy_probe_device()
    aarp_send_ddp()                     |   aarp_proxy_probe_network()
    mod_timer()                         |   lock(aarp_lock) // LOCK!!
    timeout around 200ms                |   alloc(aarp_entry)
    and then call                       |   proxies[hash] = aarp_entry
    aarp_expire_timeout()               |   aarp_send_probe()
                                        |   unlock(aarp_lock) // UNLOCK!!
    lock(aarp_lock) // LOCK!!           |   msleep(100);
    __aarp_expire_timer(&proxies[ct])   |
    free(aarp_entry)                    |
    unlock(aarp_lock) // UNLOCK!!       |
                                        |   lock(aarp_lock) // LOCK!!
                                        |   UAF aarp_entry !!

==================================================================
BUG: KASAN: slab-use-after-free in aarp_proxy_probe_network+0x560/0x630 net/appletalk/aarp.c:493
Read of size 4 at addr ffff8880123aa360 by task repro/13278

CPU: 3 UID: 0 PID: 13278 Comm: repro Not tainted 6.15.2 #3 PREEMPT(full)
Call Trace:
 <TASK>
 __dump_stack lib/dump_stack.c:94 [inline]
 dump_stack_lvl+0x116/0x1b0 lib/dump_stack.c:120
 print_address_description mm/kasan/report.c:408 [inline]
 print_report+0xc1/0x630 mm/kasan/report.c:521
 kasan_report+0xca/0x100 mm/kasan/report.c:634
 aarp_proxy_probe_network+0x560/0x630 net/appletalk/aarp.c:493
 atif_proxy_probe_device net/appletalk/ddp.c:332 [inline]
 atif_ioctl+0xb58/0x16c0 net/appletalk/ddp.c:857
 atalk_ioctl+0x198/0x2f0 net/appletalk/ddp.c:1818
 sock_do_ioctl+0xdc/0x260 net/socket.c:1190
 sock_ioctl+0x239/0x6a0 net/socket.c:1311
 vfs_ioctl fs/ioctl.c:51 [inline]
 __do_sys_ioctl fs/ioctl.c:906 [inline]
 __se_sys_ioctl fs/ioctl.c:892 [inline]
 __x64_sys_ioctl+0x194/0x200 fs/ioctl.c:892
 do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
 do_syscall_64+0xcb/0x250 arch/x86/entry/syscall_64.c:94
 entry_SYSCALL_64_after_hwframe+0x77/0x7f
 </TASK>

Allocated:
 aarp_alloc net/appletalk/aarp.c:382 [inline]
 aarp_proxy_probe_network+0xd8/0x630 net/appletalk/aarp.c:468
 atif_proxy_probe_device net/appletalk/ddp.c:332 [inline]
 atif_ioctl+0xb58/0x16c0 net/appletalk/ddp.c:857
 atalk_ioctl+0x198/0x2f0 net/appletalk/ddp.c:1818

Freed:
 kfree+0x148/0x4d0 mm/slub.c:4841
 __aarp_expire net/appletalk/aarp.c:90 [inline]
 __aarp_expire_timer net/appletalk/aarp.c:261 [inline]
 aarp_expire_timeout+0x480/0x6e0 net/appletalk/aarp.c:317

The buggy address belongs to the object at ffff8880123aa300
 which belongs to the cache kmalloc-192 of size 192
The buggy address is located 96 bytes inside of
 freed 192-byte region [ffff8880123aa300, ffff8880123aa3c0)

Memory state around the buggy address:
 ffff8880123aa200: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
 ffff8880123aa280: 00 00 00 00 fc fc fc fc fc fc fc fc fc fc fc fc
>ffff8880123aa300: fa fb fb fb fb fb fb fb fb fb fb fb fb fb fb fb
                                                       ^
 ffff8880123aa380: fb fb fb fb fb fb fb fb fc fc fc fc fc fc fc fc
 ffff8880123aa400: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
==================================================================

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Kito Xu (veritas501) <hxzene@gmail.com>
Link: https://patch.msgid.link/20250717012843.880423-1-hxzene@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/appletalk/aarp.c | 24 +++++++++++++++++++++---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/net/appletalk/aarp.c b/net/appletalk/aarp.c
index c7236daa24152..0d7c14a496681 100644
--- a/net/appletalk/aarp.c
+++ b/net/appletalk/aarp.c
@@ -35,6 +35,7 @@
 #include <linux/seq_file.h>
 #include <linux/export.h>
 #include <linux/etherdevice.h>
+#include <linux/refcount.h>
 
 int sysctl_aarp_expiry_time = AARP_EXPIRY_TIME;
 int sysctl_aarp_tick_time = AARP_TICK_TIME;
@@ -44,6 +45,7 @@ int sysctl_aarp_resolve_time = AARP_RESOLVE_TIME;
 /* Lists of aarp entries */
 /**
  *	struct aarp_entry - AARP entry
+ *	@refcnt: Reference count
  *	@last_sent: Last time we xmitted the aarp request
  *	@packet_queue: Queue of frames wait for resolution
  *	@status: Used for proxy AARP
@@ -55,6 +57,7 @@ int sysctl_aarp_resolve_time = AARP_RESOLVE_TIME;
  *	@next: Next entry in chain
  */
 struct aarp_entry {
+	refcount_t			refcnt;
 	/* These first two are only used for unresolved entries */
 	unsigned long		last_sent;
 	struct sk_buff_head	packet_queue;
@@ -79,6 +82,17 @@ static DEFINE_RWLOCK(aarp_lock);
 /* Used to walk the list and purge/kick entries.  */
 static struct timer_list aarp_timer;
 
+static inline void aarp_entry_get(struct aarp_entry *a)
+{
+	refcount_inc(&a->refcnt);
+}
+
+static inline void aarp_entry_put(struct aarp_entry *a)
+{
+	if (refcount_dec_and_test(&a->refcnt))
+		kfree(a);
+}
+
 /*
  *	Delete an aarp queue
  *
@@ -87,7 +101,7 @@ static struct timer_list aarp_timer;
 static void __aarp_expire(struct aarp_entry *a)
 {
 	skb_queue_purge(&a->packet_queue);
-	kfree(a);
+	aarp_entry_put(a);
 }
 
 /*
@@ -380,9 +394,11 @@ static void aarp_purge(void)
 static struct aarp_entry *aarp_alloc(void)
 {
 	struct aarp_entry *a = kmalloc(sizeof(*a), GFP_ATOMIC);
+	if (!a)
+		return NULL;
 
-	if (a)
-		skb_queue_head_init(&a->packet_queue);
+	refcount_set(&a->refcnt, 1);
+	skb_queue_head_init(&a->packet_queue);
 	return a;
 }
 
@@ -508,6 +524,7 @@ int aarp_proxy_probe_network(struct atalk_iface *atif, struct atalk_addr *sa)
 	entry->dev = atif->dev;
 
 	write_lock_bh(&aarp_lock);
+	aarp_entry_get(entry);
 
 	hash = sa->s_node % (AARP_HASH_SIZE - 1);
 	entry->next = proxies[hash];
@@ -533,6 +550,7 @@ int aarp_proxy_probe_network(struct atalk_iface *atif, struct atalk_addr *sa)
 		retval = 1;
 	}
 
+	aarp_entry_put(entry);
 	write_unlock_bh(&aarp_lock);
 out:
 	return retval;
-- 
2.39.5




  parent reply	other threads:[~2025-08-12 17:37 UTC|newest]

Thread overview: 265+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-12 17:26 [PATCH 6.1 000/253] 6.1.148-rc1 review Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 001/253] Input: gpio-keys - fix a sleep while atomic with PREEMPT_RT Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 002/253] regulator: core: fix NULL dereference on unbind due to stale coupling data Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 003/253] RDMA/core: Rate limit GID cache warning messages Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 004/253] interconnect: qcom: sc7280: Add missing num_links to xm_pcie3_1 node Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 005/253] iio: adc: ad7949: use spi_is_bpw_supported() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 006/253] regmap: fix potential memory leak of regmap_bus Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 007/253] x86/hyperv: Fix usage of cpu_online_mask to get valid cpu Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 008/253] staging: vc04_services: Drop VCHIQ_SUCCESS usage Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 009/253] staging: vc04_services: Drop VCHIQ_ERROR usage Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 010/253] staging: vc04_services: Drop VCHIQ_RETRY usage Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 011/253] staging: vchiq_arm: Make vchiq_shutdown never fail Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 012/253] xfrm: interface: fix use-after-free after changing collect_md xfrm interface Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 013/253] net/mlx5: Fix memory leak in cmd_exec() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 014/253] i40e: Add rx_missed_errors for buffer exhaustion Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 015/253] i40e: report VF tx_dropped with tx_errors instead of tx_discards Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 016/253] i40e: When removing VF MAC filters, only check PF-set MAC Greg Kroah-Hartman
2025-08-12 17:26 ` Greg Kroah-Hartman [this message]
2025-08-12 17:26 ` [PATCH 6.1 018/253] net/sched: sch_qfq: Avoid triggering might_sleep in atomic context in qfq_delete_class Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 019/253] can: dev: can_restart(): reverse logic to remove need for goto Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 020/253] can: dev: can_restart(): move debug message and stats after successful restart Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 021/253] can: netlink: can_changelink(): fix NULL pointer deref of struct can_priv::do_set_mode Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 022/253] drm/bridge: ti-sn65dsi86: Remove extra semicolon in ti_sn_bridge_probe() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 023/253] net: hns3: fix concurrent setting vlan filter issue Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 024/253] net: hns3: disable interrupt when ptp init failed Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 025/253] net: hns3: fixed vf get max channels bug Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 026/253] platform/x86: ideapad-laptop: Fix kbd backlight not remembered among boots Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 027/253] i2c: qup: jump out of the loop in case of timeout Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 028/253] i2c: tegra: Fix reset error handling with ACPI Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 029/253] i2c: virtio: Avoid hang by using interruptible completion wait Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 030/253] bus: fsl-mc: Fix potential double device reference in fsl_mc_get_endpoint() Greg Kroah-Hartman
2025-08-12 17:26 ` [PATCH 6.1 031/253] ALSA: hda/realtek - Add mute LED support for HP Pavilion 15-eg0xxx Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 032/253] dpaa2-eth: Fix device reference count leak in MAC endpoint handling Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 033/253] dpaa2-switch: " Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 034/253] e1000e: disregard NVM checksum on tgp when valid checksum bit is not set Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 035/253] e1000e: ignore uninitialized checksum word on tgp Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 036/253] gve: Fix stuck TX queue for DQ queue format Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 037/253] ice: Fix a null pointer dereference in ice_copy_and_init_pkg() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 038/253] kasan: use vmalloc_dump_obj() for vmalloc error reports Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 039/253] nilfs2: reject invalid file types when reading inodes Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 040/253] selftests: mptcp: connect: also cover alt modes Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 041/253] selftests: mptcp: connect: also cover checksum Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 042/253] mm/zsmalloc: do not pass __GFP_MOVABLE if CONFIG_COMPACTION=n Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 043/253] drm/amdkfd: Dont call mmput from MMU notifier callback Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 044/253] usb: typec: tcpm: allow to use sink in accessory mode Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 045/253] usb: typec: tcpm: allow switching to mode accessory to mux properly Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 046/253] usb: typec: tcpm: apply vbus before data bringup in tcpm_src_attach Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 047/253] x86/bugs: Fix use of possibly uninit value in amd_check_tsa_microcode() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 048/253] jfs: reject on-disk inodes of an unsupported type Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 049/253] comedi: comedi_test: Fix possible deletion of uninitialized timers Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 050/253] ALSA: hda/tegra: Add Tegra264 support Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 051/253] ALSA: hda: Add missing NVIDIA HDA codec IDs Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 052/253] drm/i915/dp: Fix 2.7 Gbps DP_LINK_BW value on g4x Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 053/253] mm: khugepaged: fix call hpage_collapse_scan_file() for anonymous vma Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 054/253] erofs: get rid of debug_one_dentry() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 055/253] erofs: sunset erofs_dbg() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 056/253] erofs: drop z_erofs_page_mark_eio() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 057/253] erofs: simplify z_erofs_transform_plain() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 058/253] erofs: address D-cache aliasing Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 059/253] usb: chipidea: add USB PHY event Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 060/253] usb: phy: mxs: disconnect line when USB charger is attached Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 061/253] ethernet: intel: fix building with large NR_CPUS Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 062/253] ASoC: amd: yc: Add DMI entries to support HP 15-fb1xxx Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 063/253] ASoC: Intel: fix SND_SOC_SOF dependencies Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 064/253] fs_context: fix parameter name in infofc() macro Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 065/253] ublk: use vmalloc for ublk_devices __queues Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 066/253] hfsplus: remove mutex_lock check in hfsplus_free_extents Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 067/253] Revert "fs/ntfs3: Replace inode_trylock with inode_lock" Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 068/253] ASoC: soc-dai: tidyup return value of snd_soc_xlate_tdm_slot_mask() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 069/253] ASoC: ops: dynamically allocate struct snd_ctl_elem_value Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 070/253] selftests: Fix errno checking in syscall_user_dispatch test Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 071/253] soc: qcom: QMI encoding/decoding for big endian Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 072/253] arm64: dts: qcom: sdm845: Expand IMEM region Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 073/253] arm64: dts: qcom: sc7180: " Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 074/253] ARM: dts: vfxxx: Correctly use two tuples for timer address Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 075/253] usb: host: xhci-plat: fix incorrect type for of_match variable in xhci_plat_probe() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 076/253] usb: misc: apple-mfi-fastcharge: Make power supply names unique Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 077/253] staging: fbtft: fix potential memory leak in fbtft_framebuffer_alloc() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 078/253] vmci: Prevent the dispatching of uninitialized payloads Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 079/253] pps: fix poll support Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 080/253] Revert "vmci: Prevent the dispatching of uninitialized payloads" Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 081/253] powercap: dtpm_cpu: Fix NULL pointer dereference in get_pd_power_uw() Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 082/253] usb: early: xhci-dbc: Fix early_ioremap leak Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 083/253] arm: dts: ti: omap: Fixup pinheader typo Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 084/253] soc/tegra: cbb: Clear ERR_FORCE register with ERR_STATUS Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 085/253] ARM: dts: imx6ul-kontron-bl-common: Fix RTS polarity for RS485 interface Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 086/253] arm64: dts: imx8mm-beacon: Fix HS400 USDHC clock speed Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 087/253] arm64: dts: imx8mn-beacon: " Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 088/253] PM / devfreq: Check governor before using governor->name Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 089/253] cpufreq: intel_pstate: Always use HWP_DESIRED_PERF in passive mode Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 090/253] cpufreq: Initialize cpufreq-based frequency-invariance later Greg Kroah-Hartman
2025-08-12 17:27 ` [PATCH 6.1 091/253] cpufreq: Init policy->rwsem before it may be possibly used Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 092/253] samples: mei: Fix building on musl libc Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 093/253] interconnect: qcom: sc8280xp: specify num_links for qnm_a1noc_cfg Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 094/253] interconnect: qcom: sc8180x: specify num_nodes Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 095/253] staging: nvec: Fix incorrect null termination of battery manufacturer Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 096/253] selftests/tracing: Fix false failure of subsystem event test Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 097/253] drm/rockchip: cleanup fb when drm_gem_fb_afbc_init failed Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 098/253] bpf, sockmap: Fix psock incorrectly pointing to sk Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 099/253] bpf, ktls: Fix data corruption when using bpf_msg_pop_data() in ktls Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 100/253] net: ipv6: ip6mr: Fix in/out netdev to pass to the FORWARD chain Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 101/253] bpftool: Fix memory leak in dump_xx_nlmsg on realloc failure Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 102/253] caif: reduce stack size, again Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 103/253] wifi: rtl818x: Kill URBs before clearing tx status queue Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 104/253] wifi: iwlwifi: Fix memory leak in iwl_mvm_init() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 105/253] iwlwifi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 106/253] wifi: ath11k: clear initialized flag for deinit-ed srng lists Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 107/253] tcp: fix tcp_ofo_queue() to avoid including too much DUP SACK range Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 108/253] net/mlx5: Check device memory pointer before usage Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 109/253] kselftest/arm64: Fix check for setting new VLs in sve-ptrace Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 110/253] m68k: Dont unregister boot console needlessly Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 111/253] drm/amd/pm/powerplay/hwmgr/smu_helper: fix order of mask and value Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 112/253] fbcon: Fix outdated registered_fb reference in comment Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 113/253] netfilter: nf_tables: adjust lockdep assertions handling Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 114/253] arch: powerpc: defconfig: Drop obsolete CONFIG_NET_CLS_TCINDEX Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 115/253] um: rtc: Avoid shadowing err in uml_rtc_start() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 116/253] net/sched: Restrict conditions for adding duplicating netems to qdisc tree Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 117/253] net_sched: act_ctinfo: use atomic64_t for three counters Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 118/253] xen/gntdev: remove struct gntdev_copy_batch from stack Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 119/253] wifi: rtl8xxxu: Fix RX skb size for aggregation disabled Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 120/253] mwl8k: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 121/253] wifi: mac80211: reject TDLS operations when station is not associated Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 122/253] wifi: plfxlc: Fix error handling in usb driver probe Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 123/253] wifi: mac80211: Do not schedule stopped TXQs Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 124/253] wifi: mac80211: Dont call fq_flow_idx() for management frames Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 125/253] wifi: mac80211: Check 802.11 encaps offloading in ieee80211_tx_h_select_key() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 126/253] Reapply "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 127/253] wifi: brcmfmac: fix P2P discovery failure in P2P peer due to missing P2P IE Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 128/253] kcsan: test: Initialize dummy variable Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 129/253] can: peak_usb: fix USB FD devices potential malfunction Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 130/253] can: kvaser_pciefd: Store device channel index Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 131/253] can: kvaser_usb: Assign netdev.dev_port based on " Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 132/253] netfilter: xt_nfacct: dont assume acct name is null-terminated Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 133/253] selftests: rtnetlink.sh: remove esp4_offload after test Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 134/253] vrf: Drop existing dst reference in vrf_ip6_input_dst Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 135/253] ipv6: prevent infinite loop in rt6_nlmsg_size() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 136/253] ipv6: fix possible infinite loop in fib6_info_uses_dev() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 137/253] ipv6: annotate data-races around rt->fib6_nsiblings Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 138/253] bpf/preload: Dont select USERMODE_DRIVER Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 139/253] PCI: rockchip-host: Fix "Unexpected Completion" log message Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 140/253] crypto: sun8i-ce - fix nents passed to dma_unmap_sg() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 141/253] crypto: marvell/cesa - Fix engine load inaccuracy Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 142/253] mtd: fix possible integer overflow in erase_xfer() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 143/253] clk: davinci: Add NULL check in davinci_lpsc_clk_register() Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 144/253] media: v4l2-ctrls: Fix H264 SEPARATE_COLOUR_PLANE check Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 145/253] clk: xilinx: vcu: unregister pll_post only if registered correctly Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 146/253] power: supply: cpcap-charger: Fix null check for power_supply_get_by_name Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 147/253] power: supply: max14577: Handle NULL pdata when CONFIG_OF is not set Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 148/253] crypto: arm/aes-neonbs - work around gcc-15 warning Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 149/253] PCI: endpoint: pci-epf-vntb: Return -ENOENT if pci_epc_get_next_free_bar() fails Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 150/253] pinctrl: sunxi: Fix memory leak on krealloc failure Greg Kroah-Hartman
2025-08-12 17:28 ` [PATCH 6.1 151/253] clk: clk-axi-clkgen: fix fpfd_max frequency for zynq Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 152/253] perf sched: Fix memory leaks for evsel->priv in timehist Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 153/253] perf sched: Fix memory leaks in perf sched latency Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 154/253] crypto: inside-secure - Fix `dma_unmap_sg()` nents value Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 155/253] crypto: ccp - Fix crash when rebind ccp device for ccp.ko Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 156/253] RDMA/hns: Fix -Wframe-larger-than issue Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 157/253] kernel: trace: preemptirq_delay_test: use offstack cpu mask Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 158/253] proc: use the same treatment to check proc_lseek as ones for proc_read_iter et.al Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 159/253] perf tests bp_account: Fix leaked file descriptor Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 160/253] clk: sunxi-ng: v3s: Fix de clock definition Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 161/253] scsi: ibmvscsi_tgt: Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 162/253] scsi: elx: efct: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 163/253] scsi: mvsas: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 164/253] scsi: isci: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 165/253] watchdog: ziirave_wdt: check record length in ziirave_firm_verify() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 166/253] hwrng: mtk - handle devm_pm_runtime_enable errors Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 167/253] crypto: keembay - Fix dma_unmap_sg() nents value Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 168/253] crypto: img-hash " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 169/253] soundwire: stream: restore params when prepare ports fail Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 170/253] PCI: endpoint: pci-epf-vntb: Fix the incorrect usage of __iomem attribute Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 171/253] fs/orangefs: Allow 2 more characters in do_c_string() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 172/253] dmaengine: mv_xor: Fix missing check after DMA map and missing unmap Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 173/253] dmaengine: nbpfaxi: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 174/253] sh: Do not use hyphen in exported variable name Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 175/253] crypto: qat - fix seq_file position update in adf_ring_next() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 176/253] fbdev: imxfb: Check fb_add_videomode to prevent null-ptr-deref Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 177/253] jfs: fix metapage reference count leak in dbAllocCtl Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 178/253] mtd: rawnand: atmel: Fix dma_mapping_error() address Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 179/253] mtd: rawnand: rockchip: Add missing check after DMA map Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 180/253] mtd: rawnand: atmel: set pmecc data setup time Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 181/253] vhost-scsi: Fix log flooding with target does not exist errors Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 182/253] bpf: Check flow_dissector ctx accesses are aligned Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 183/253] apparmor: ensure WB_HISTORY_SIZE value is a power of 2 Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 184/253] module: Restore the moduleparam prefix length check Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 185/253] ucount: fix atomic_long_inc_below() argument type Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 186/253] rtc: ds1307: fix incorrect maximum clock rate handling Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 187/253] rtc: hym8563: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 188/253] rtc: nct3018y: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 189/253] rtc: pcf85063: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 190/253] rtc: pcf8563: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 191/253] rtc: rv3028: " Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 192/253] f2fs: fix KMSAN uninit-value in extent_info usage Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 193/253] f2fs: doc: fix wrong quota mount option description Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 194/253] f2fs: fix to avoid UAF in f2fs_sync_inode_meta() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 195/253] f2fs: fix to avoid panic in f2fs_evict_inode Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 196/253] f2fs: fix to avoid out-of-boundary access in devs.path Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 197/253] f2fs: vm_unmap_ram() may be called from an invalid context Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 198/253] f2fs: fix to update upper_p in __get_secs_required() correctly Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 199/253] f2fs: fix to calculate dirty data during has_not_enough_free_secs() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 200/253] vfio/pci: Separate SR-IOV VF dev_set Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 201/253] scsi: mpt3sas: Fix a fw_event memory leak Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 202/253] scsi: Revert "scsi: iscsi: Fix HW conn removal use after free" Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 203/253] scsi: ufs: core: Use link recovery when h8 exit fails during runtime resume Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 204/253] scsi: sd: Make sd shutdown issue START STOP UNIT appropriately Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 205/253] kconfig: qconf: fix ConfigList::updateListAllforAll() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 206/253] PCI: pnv_php: Clean up allocated IRQs on unplug Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 207/253] PCI: pnv_php: Work around switches with broken presence detection Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 208/253] powerpc/eeh: Export eeh_unfreeze_pe() Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 209/253] powerpc/eeh: Rely on dev->link_active_reporting Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 210/253] powerpc/eeh: Make EEH driver device hotplug safe Greg Kroah-Hartman
2025-08-12 17:29 ` [PATCH 6.1 211/253] PCI: pnv_php: Fix surprise plug detection and recovery Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 212/253] pNFS/flexfiles: dont attempt pnfs on fatal DS errors Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 213/253] sched: Add test_and_clear_wake_up_bit() and atomic_dec_and_wake_up() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 214/253] NFS: Fix wakeup of __nfs_lookup_revalidate() in unblock_revalidate() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 215/253] NFS: Fix filehandle bounds checking in nfs_fh_to_dentry() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 216/253] NFSv4.2: another fix for listxattr Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 217/253] NFS: Fixup allocation flags for nfsiods __GFP_NORETRY Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 218/253] netpoll: prevent hanging NAPI when netcons gets enabled Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 219/253] phy: mscc: Fix parsing of unicast frames Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 220/253] pptp: ensure minimal skb length in pptp_xmit() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 221/253] net/mlx5: Correctly set gso_segs when LRO is used Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 222/253] ipv6: reject malicious packets in ipv6_gso_segment() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 223/253] net: drop UFO packets in udp_rcv_segment() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 224/253] benet: fix BUG when creating VFs Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 225/253] irqchip: Build IMX_MU_MSI only on ARM Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 226/253] ALSA: hda/ca0132: Fix missing error handling in ca0132_alt_select_out() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 227/253] smb: server: remove separate empty_recvmsg_queue Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 228/253] smb: server: make sure we call ib_dma_unmap_single() only if we called ib_dma_map_single already Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 229/253] smb: server: let recv_done() consistently call put_recvmsg/smb_direct_disconnect_rdma_connection Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 230/253] smb: server: let recv_done() avoid touching data_transfer after cleanup/move Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 231/253] smb: client: let recv_done() cleanup before notifying the callers Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 232/253] pptp: fix pptp_xmit() error path Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 233/253] perf/core: Dont leak AUX buffer refcount on allocation failure Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 234/253] perf/core: Exit early on perf_mmap() fail Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 235/253] perf/core: Prevent VMA split of buffer mappings Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 236/253] selftests/perf_events: Add a mmap() correctness test Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 237/253] net/packet: fix a race in packet_set_ring() and packet_notifier() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 238/253] vsock: Do not allow binding to VMADDR_PORT_ANY Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 239/253] ksmbd: fix null pointer dereference error in generate_encryptionkey Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 240/253] ksmbd: fix Preauh_HashValue race condition Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 241/253] ksmbd: fix corrupted mtime and ctime in smb2_open Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 242/253] ksmbd: limit repeated connections from clients with the same IP Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 243/253] smb: server: Fix extension string in ksmbd_extract_shortname() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 244/253] USB: serial: option: add Foxconn T99W709 Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 245/253] net: usbnet: Avoid potential RCU stall on LINK_CHANGE event Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 246/253] net: usbnet: Fix the wrong netif_carrier_on() call Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 247/253] x86/sev: Evict cache lines during SNP memory validation Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 248/253] ALSA: intel_hdmi: Fix off-by-one error in __hdmi_lpe_audio_probe() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 249/253] ALSA: scarlett2: Add retry on -EPROTO from scarlett2_usb_tx() Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 250/253] x86/fpu: Delay instruction pointer fixup until after warning Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 251/253] MIPS: mm: tlb-r4k: Uniquify TLB entries on init Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 252/253] mm/hmm: move pmd_to_hmm_pfn_flags() to the respective #ifdeffery Greg Kroah-Hartman
2025-08-12 17:30 ` [PATCH 6.1 253/253] usb: gadget : fix use-after-free in composite_dev_cleanup() Greg Kroah-Hartman
2025-08-12 19:54 ` [PATCH 6.1 000/253] 6.1.148-rc1 review Brett A C Sheffield
2025-08-12 20:20 ` Pavel Machek
2025-08-12 21:13 ` Florian Fainelli
2025-08-13  1:29 ` Peter Schneider
2025-08-15 14:44   ` Peter Schneider
2025-08-13 15:16 ` Shuah Khan
2025-08-13 15:47 ` Jon Hunter
2025-08-13 17:26 ` Naresh Kamboju
2025-08-13 21:56 ` Ron Economos
2025-08-14 12:00 ` Mark Brown
2025-08-14 14:37 ` Miguel Ojeda

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=20250812172949.441334669@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hxzene@gmail.com \
    --cc=kuba@kernel.org \
    --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.