patches.lists.linux.dev 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, Namjae Jeon <linkinjeon@kernel.org>,
	Steve French <smfrench@gmail.com>, Tom Talpey <tom@talpey.com>,
	linux-cifs@vger.kernel.org, samba-technical@lists.samba.org,
	Stefan Metzmacher <metze@samba.org>,
	Steve French <stfrench@microsoft.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 502/587] smb: server: split ksmbd_rdma_stop_listening() out of ksmbd_rdma_destroy()
Date: Tue, 26 Aug 2025 13:10:51 +0200	[thread overview]
Message-ID: <20250826111005.755074187@linuxfoundation.org> (raw)
In-Reply-To: <20250826110952.942403671@linuxfoundation.org>

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

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

From: Stefan Metzmacher <metze@samba.org>

[ Upstream commit bac7b996d42e458a94578f4227795a0d4deef6fa ]

We can't call destroy_workqueue(smb_direct_wq); before stop_sessions()!

Otherwise already existing connections try to use smb_direct_wq as
a NULL pointer.

Cc: Namjae Jeon <linkinjeon@kernel.org>
Cc: Steve French <smfrench@gmail.com>
Cc: Tom Talpey <tom@talpey.com>
Cc: linux-cifs@vger.kernel.org
Cc: samba-technical@lists.samba.org
Fixes: 0626e6641f6b ("cifsd: add server handler for central processing and tranport layers")
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/smb/server/connection.c     | 3 ++-
 fs/smb/server/transport_rdma.c | 5 ++++-
 fs/smb/server/transport_rdma.h | 4 +++-
 3 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/fs/smb/server/connection.c b/fs/smb/server/connection.c
index 66b20c3d963e..f5ebc200dd73 100644
--- a/fs/smb/server/connection.c
+++ b/fs/smb/server/connection.c
@@ -503,7 +503,8 @@ void ksmbd_conn_transport_destroy(void)
 {
 	mutex_lock(&init_lock);
 	ksmbd_tcp_destroy();
-	ksmbd_rdma_destroy();
+	ksmbd_rdma_stop_listening();
 	stop_sessions();
+	ksmbd_rdma_destroy();
 	mutex_unlock(&init_lock);
 }
diff --git a/fs/smb/server/transport_rdma.c b/fs/smb/server/transport_rdma.c
index 6c3a57bff147..a4ff1167c9a1 100644
--- a/fs/smb/server/transport_rdma.c
+++ b/fs/smb/server/transport_rdma.c
@@ -2193,7 +2193,7 @@ int ksmbd_rdma_init(void)
 	return 0;
 }
 
-void ksmbd_rdma_destroy(void)
+void ksmbd_rdma_stop_listening(void)
 {
 	if (!smb_direct_listener.cm_id)
 		return;
@@ -2202,7 +2202,10 @@ void ksmbd_rdma_destroy(void)
 	rdma_destroy_id(smb_direct_listener.cm_id);
 
 	smb_direct_listener.cm_id = NULL;
+}
 
+void ksmbd_rdma_destroy(void)
+{
 	if (smb_direct_wq) {
 		destroy_workqueue(smb_direct_wq);
 		smb_direct_wq = NULL;
diff --git a/fs/smb/server/transport_rdma.h b/fs/smb/server/transport_rdma.h
index 77aee4e5c9dc..a2291b77488a 100644
--- a/fs/smb/server/transport_rdma.h
+++ b/fs/smb/server/transport_rdma.h
@@ -54,13 +54,15 @@ struct smb_direct_data_transfer {
 
 #ifdef CONFIG_SMB_SERVER_SMBDIRECT
 int ksmbd_rdma_init(void);
+void ksmbd_rdma_stop_listening(void);
 void ksmbd_rdma_destroy(void);
 bool ksmbd_rdma_capable_netdev(struct net_device *netdev);
 void init_smbd_max_io_size(unsigned int sz);
 unsigned int get_smbd_max_read_write_size(void);
 #else
 static inline int ksmbd_rdma_init(void) { return 0; }
-static inline int ksmbd_rdma_destroy(void) { return 0; }
+static inline void ksmbd_rdma_stop_listening(void) { }
+static inline void ksmbd_rdma_destroy(void) { }
 static inline bool ksmbd_rdma_capable_netdev(struct net_device *netdev) { return false; }
 static inline void init_smbd_max_io_size(unsigned int sz) { }
 static inline unsigned int get_smbd_max_read_write_size(void) { return 0; }
-- 
2.50.1




  parent reply	other threads:[~2025-08-26 13:10 UTC|newest]

Thread overview: 603+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-26 11:02 [PATCH 6.6 000/587] 6.6.103-rc1 review Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 001/587] io_uring: dont use int for ABI Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 002/587] ALSA: usb-audio: Validate UAC3 power domain descriptors, too Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 003/587] ALSA: usb-audio: Validate UAC3 cluster segment descriptors Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 004/587] ALSA: hda/realtek: Fix headset mic on HONOR BRB-X Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 005/587] ALSA: hda/realtek: Add Framework Laptop 13 (AMD Ryzen AI 300) to quirks Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 006/587] smb3: fix for slab out of bounds on mount to ksmbd Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 007/587] smb: client: remove redundant lstrp update in negotiate protocol Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 008/587] gpio: virtio: Fix config space reading Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 009/587] gpio: mlxbf2: use platform_get_irq_optional() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 010/587] Revert "gpio: mlxbf3: only get IRQ for device instance 0" Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 011/587] gpio: mlxbf3: use platform_get_irq_optional() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 012/587] Revert "leds: trigger: netdev: Configure LED blink interval for HW offload" Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 013/587] netlink: avoid infinite retry looping in netlink_unicast() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 014/587] net: phy: micrel: fix KSZ8081/KSZ8091 cable test Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 015/587] net: gianfar: fix device leak when querying time stamp info Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 016/587] net: enetc: fix device and OF node leak at probe Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 017/587] net: mtk_eth_soc: fix device " Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 018/587] net: ti: icss-iep: fix device and OF node leaks " Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 019/587] net: dpaa: fix device leak when querying time stamp info Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 020/587] net: usb: asix_devices: add phy_mask for ax88772 mdio bus Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 021/587] io_uring/net: commit partial buffers on retry Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 022/587] nfsd: handle get_client_locked() failure in nfsd4_setclientid_confirm() Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 023/587] NFSD: detect mismatch of file handle and delegation stateid in OPEN op Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 024/587] NFS: Fix the setting of capabilities when automounting a new filesystem Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 025/587] PCI: Extend isolated function probing to LoongArch Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 026/587] LoongArch: BPF: Fix jump offset calculation in tailcall Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 027/587] sunvdc: Balance device refcount in vdc_port_mpgroup_check Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 028/587] fs: Prevent file descriptor table allocations exceeding INT_MAX Greg Kroah-Hartman
2025-08-26 18:16   ` Salvatore Bonaccorso
2025-08-27  3:31     ` Sasha Levin
2025-08-26 11:02 ` [PATCH 6.6 029/587] eventpoll: Fix semi-unbounded recursion Greg Kroah-Hartman
2025-08-26 11:02 ` [PATCH 6.6 030/587] Documentation: ACPI: Fix parent device references Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 031/587] ACPI: processor: perflib: Fix initial _PPC limit application Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 032/587] ACPI: processor: perflib: Move problematic pr->performance check Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 033/587] smb: client: let send_done() cleanup before calling smbd_disconnect_rdma_connection() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 034/587] smb: client: dont wait for info->send_pending == 0 on error Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 035/587] KVM: x86/hyper-v: Skip non-canonical addresses during PV TLB flush Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 036/587] KVM: SVM: Set RFLAGS.IF=1 in C code, to get VMRUN out of the STI shadow Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 037/587] KVM: x86: Plumb in the vCPU to kvm_x86_ops.hwapic_isr_update() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 038/587] KVM: nVMX: Defer SVI update to vmcs01 on EOI when L2 is active w/o VID Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 039/587] KVM: x86: Snapshot the hosts DEBUGCTL in common x86 Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 040/587] KVM: x86: Snapshot the hosts DEBUGCTL after disabling IRQs Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 041/587] KVM: x86: Plumb "force_immediate_exit" into kvm_entry() tracepoint Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 042/587] KVM: VMX: Re-enter guest in fastpath for "spurious" preemption timer exits Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 043/587] KVM: VMX: Handle forced exit due to preemption timer in fastpath Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 044/587] KVM: x86: Move handling of is_guest_mode() into fastpath exit handlers Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 045/587] KVM: VMX: Handle KVM-induced preemption timer exits in fastpath for L2 Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 046/587] KVM: x86: Fully defer to vendor code to decide how to force immediate exit Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 047/587] KVM: x86: Convert vcpu_run()s immediate exit param into a generic bitmap Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 048/587] KVM: x86: Drop kvm_x86_ops.set_dr6() in favor of a new KVM_RUN flag Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 049/587] KVM: VMX: Allow guest to set DEBUGCTL.RTM_DEBUG if RTM is supported Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 050/587] KVM: VMX: Extract checking of guests DEBUGCTL into helper Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 051/587] KVM: nVMX: Check vmcs12->guest_ia32_debugctl on nested VM-Enter Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 052/587] KVM: VMX: Wrap all accesses to IA32_DEBUGCTL with getter/setter APIs Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 053/587] KVM: VMX: Preserve hosts DEBUGCTLMSR_FREEZE_IN_SMM while running the guest Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 054/587] udp: also consider secpath when evaluating ipsec use for checksumming Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 055/587] netfilter: ctnetlink: fix refcount leak on table dump Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 056/587] net: ti: icss-iep: Fix incorrect type for return value in extts_enable() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 057/587] sctp: linearize cloned gso packets in sctp_rcv Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 058/587] intel_idle: Allow loading ACPI tables for any family Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 059/587] cpuidle: governors: menu: Avoid using invalid recent intervals data Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 060/587] ptp: prevent possible ABBA deadlock in ptp_clock_freerun() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 061/587] tls: handle data disappearing from under the TLS ULP Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 062/587] hfs: fix general protection fault in hfs_find_init() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 063/587] hfs: fix slab-out-of-bounds in hfs_bnode_read() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 064/587] hfsplus: fix slab-out-of-bounds in hfsplus_bnode_read() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 065/587] hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 066/587] hfsplus: dont use BUG_ON() in hfsplus_create_attributes_file() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 067/587] arm64: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 068/587] smb/server: avoid deadlock when linking with ReplaceIfExists Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 069/587] nvme-pci: try function level reset on init failure Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 070/587] gfs2: Set .migrate_folio in gfs2_{rgrp,meta}_aops Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 071/587] loop: Avoid updating block size under exclusive owner Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 072/587] udf: Verify partition map count Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 073/587] drbd: add missing kref_get in handle_write_conflicts Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 074/587] hfs: fix not erasing deleted b-tree node issue Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 075/587] better lockdep annotations for simple_recursive_removal() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 076/587] ata: libata-sata: Disallow changing LPM state if not supported Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 077/587] fs/ntfs3: Add sanity check for file name Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 078/587] fs/ntfs3: correctly create symlink for relative path Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 079/587] ext2: Handle fiemap on empty files to prevent EINVAL Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 080/587] fix locking in efi_secret_unlink() Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 081/587] securityfs: dont pin dentries twice, once is enough Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 082/587] tracefs: Add d_delete to remove negative dentries Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 083/587] usb: xhci: print xhci->xhc_state when queue_command failed Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 084/587] platform/x86/amd: pmc: Add Lenovo Yoga 6 13ALC6 to pmc quirk list Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 085/587] cpufreq: CPPC: Mark driver with NEED_UPDATE_LIMITS flag Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 086/587] selftests/futex: Define SYS_futex on 32-bit architectures with 64-bit time_t Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 087/587] usb: typec: ucsi: psy: Set current max to 100mA for BC 1.2 and Default Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 088/587] usb: xhci: Avoid showing warnings for dying controller Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 089/587] usb: xhci: Set avg_trb_len = 8 for EP0 during Address Device Command Greg Kroah-Hartman
2025-08-26 11:03 ` [PATCH 6.6 090/587] usb: xhci: Avoid showing errors during surprise removal Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 091/587] soc: qcom: rpmh-rsc: Add RSC version 4 support Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 092/587] ACPI: APEI: send SIGBUS to current task if synchronous memory error not recovered Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 093/587] remoteproc: imx_rproc: skip clock enable when M-core is managed by the SCU Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 094/587] gpio: wcd934x: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 095/587] cpufreq: Exit governor when failed to start old governor Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 096/587] ARM: rockchip: fix kernel hang during smp initialization Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 097/587] PM / devfreq: governor: Replace sscanf() with kstrtoul() in set_freq_store() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 098/587] EDAC/synopsys: Clear the ECC counters on init Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 099/587] ASoC: soc-dapm: set bias_level if snd_soc_dapm_set_bias_level() was successed Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 100/587] thermal/drivers/qcom-spmi-temp-alarm: Enable stage 2 shutdown when required Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 101/587] tools/nolibc: define time_t in terms of __kernel_old_time_t Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 102/587] iio: adc: ad_sigma_delta: dont overallocate scan buffer Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 103/587] gpio: tps65912: check the return value of regmap_update_bits() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 104/587] ARM: tegra: Use I/O memcpy to write to IRAM Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 105/587] tools/build: Fix s390(x) cross-compilation with clang Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 106/587] selftests: tracing: Use mutex_unlock for testing glob filter Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 107/587] ACPI: PRM: Reduce unnecessary printing to avoid user confusion Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 108/587] firmware: tegra: Fix IVC dependency problems Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 109/587] PM: runtime: Clear power.needs_force_resume in pm_runtime_reinit() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 110/587] thermal: sysfs: Return ENODATA instead of EAGAIN for reads Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 111/587] PM: sleep: console: Fix the black screen issue Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 112/587] ACPI: processor: fix acpi_object initialization Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 113/587] mmc: sdhci-msm: Ensure SD card power isnt ON when card removed Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 114/587] ACPI: APEI: GHES: add TAINT_MACHINE_CHECK on GHES panic path Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 115/587] pps: clients: gpio: fix interrupt handling order in remove path Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 116/587] reset: brcmstb: Enable reset drivers for ARCH_BCM2835 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 117/587] char: misc: Fix improper and inaccurate error code returned by misc_init() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 118/587] mei: bus: Check for still connected devices in mei_cl_bus_dev_release() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 119/587] mmc: rtsx_usb_sdmmc: Fix error-path in sd_set_power_mode() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 120/587] ALSA: hda: Handle the jack polling always via a work Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 121/587] ALSA: hda: Disable jack polling at shutdown Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 122/587] x86/bugs: Avoid warning when overriding return thunk Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 123/587] ASoC: hdac_hdmi: Rate limit logging on connection and disconnection Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 124/587] ALSA: intel8x0: Fix incorrect codec index usage in mixer for ICH4 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 125/587] ASoC: core: Check for rtd == NULL in snd_soc_remove_pcm_runtime() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 126/587] usb: typec: intel_pmc_mux: Defer probe if SCU IPC isnt present Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 127/587] usb: core: usb_submit_urb: downgrade type check Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 128/587] pm: cpupower: Fix the snapshot-order of tsc,mperf, clock in mperf_stop() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 129/587] imx8m-blk-ctrl: set ISI panic write hurry level Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 130/587] soc: qcom: mdt_loader: Actually use the e_phoff Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 131/587] platform/x86: thinkpad_acpi: Handle KCOV __init vs inline mismatches Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 132/587] platform/chrome: cros_ec_typec: Defer probe on missing EC parent Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 133/587] ALSA: hda/ca0132: Fix buffer overflow in add_tuning_control Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 134/587] ALSA: pcm: Rewrite recalculate_boundary() to avoid costly loop Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 135/587] ALSA: usb-audio: Avoid precedence issues in mixer_quirks macros Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 136/587] iio: adc: ad7768-1: Ensure SYNC_IN pulse minimum timing requirement Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 137/587] ASoC: codecs: rt5640: Retry DEVICE_ID verification Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 138/587] ASoC: qcom: use drvdata instead of component to keep id Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 139/587] powerpc/thp: tracing: Hide hugepage events under CONFIG_PPC_BOOK3S_64 Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 140/587] Bluetooth: hci_sock: Reset cookie to zero in hci_sock_free_cookie() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 141/587] xen/netfront: Fix TX response spurious interrupts Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 142/587] net: usb: cdc-ncm: check for filtering capability Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 143/587] wifi: ath12k: Correct tid cleanup when tid setup fails Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 144/587] ktest.pl: Prevent recursion of default variable options Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 145/587] wifi: cfg80211: reject HTC bit for management frames Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 146/587] s390/time: Use monotonic clock in get_cycles() Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 147/587] be2net: Use correct byte order and format string for TCP seq and ack_seq Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 148/587] wifi: rtw89: Lower the timeout in rtw89_fw_read_c2h_reg() for USB Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 149/587] et131x: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:04 ` [PATCH 6.6 150/587] net: ag71xx: " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 151/587] net/mlx5e: Properly access RCU protected qdisc_sleeping variable Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 152/587] arm64: Mark kernel as tainted on SAE and SError panic Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 153/587] rcu: Protect ->defer_qs_iw_pending from data race Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 154/587] net: mctp: Prevent duplicate binds Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 155/587] wifi: cfg80211: Fix interface type validation Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 156/587] net: ipv4: fix incorrect MTU in broadcast routes Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 157/587] net: thunderx: Fix format-truncation warning in bgx_acpi_match_id() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 158/587] net: phy: micrel: Add ksz9131_resume() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 159/587] perf/cxlpmu: Remove unintended newline from IRQ name format string Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 160/587] wifi: iwlwifi: mvm: set gtk id also in older FWs Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 161/587] um: Re-evaluate thread flags repeatedly Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 162/587] wifi: iwlwifi: mvm: fix scan request validation Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 163/587] s390/stp: Remove udelay from stp_sync_clock() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 164/587] sched/fair: Bump sd->max_newidle_lb_cost when newidle balance fails Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 165/587] wifi: mac80211: dont complete management TX on SAE commit Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 166/587] (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 167/587] ipv6: mcast: Check inet6_dev->dead under idev->mc_lock in __ipv6_dev_mc_inc() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 168/587] wifi: mac80211: fix rx link assignment for non-MLO stations Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 169/587] drm/msm: use trylock for debugfs Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 170/587] wifi: rtw89: Fix rtw89_mac_power_switch() for USB Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 171/587] wifi: rtw89: Disable deep power saving for USB/SDIO Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 172/587] wifi: mt76: mt7915: mcu: re-init MCU before loading FW patch Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 173/587] kselftest/arm64: Specify SVE data when testing VL set in sve-ptrace Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 174/587] net: thunderbolt: Enable end-to-end flow control also in transmit Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 175/587] net: thunderbolt: Fix the parameter passing of tb_xdomain_enable_paths()/tb_xdomain_disable_paths() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 176/587] xfrm: Duplicate SPI Handling Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 177/587] net: atlantic: add set_power to fw_ops for atl2 to fix wol Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 178/587] net: fec: allow disable coalescing Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 179/587] drm/amd/display: Separate set_gsl from set_gsl_source_select Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 180/587] wifi: ath12k: Add memset and update default rate value in wmi tx completion Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 181/587] wifi: iwlwifi: dvm: fix potential overflow in rs_fill_link_cmd() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 182/587] wifi: iwlwifi: fw: Fix possible memory leak in iwl_fw_dbg_collect Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 183/587] drm/amd/display: Fix failed to blank crtc! Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 184/587] wifi: mac80211: update radar_required in channel context after channel switch Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 185/587] wifi: rtlwifi: fix possible skb memory leak in `_rtl_pci_rx_interrupt()` Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 186/587] wifi: ath12k: Enable REO queue lookup table feature on QCN9274 hw2.0 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 187/587] wifi: ath12k: Decrement TID on RX peer frag setup error handling Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 188/587] powerpc: floppy: Add missing checks after DMA map Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 189/587] netmem: fix skb_frag_address_safe with unreadable skbs Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 190/587] wifi: iwlegacy: Check rate_idx range after addition Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 191/587] neighbour: add support for NUD_PERMANENT proxy entries Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 192/587] dpaa_eth: dont use fixed_phy_change_carrier Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 193/587] drm/amd: Allow printing VanGogh OD SCLK levels without setting dpm to manual Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 194/587] net: vlan: Make is_vlan_dev() a stub when VLAN is not configured Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 195/587] net: vlan: Replace BUG() with WARN_ON_ONCE() in vlan_dev_* stubs Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 196/587] gve: Return error for unknown admin queue command Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 197/587] net: dsa: b53: fix b53_imp_vlan_setup for BCM5325 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 198/587] net: dsa: b53: prevent GMII_PORT_OVERRIDE_CTRL access on BCM5325 Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 199/587] net: dsa: b53: prevent DIS_LEARNING " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 200/587] net: dsa: b53: prevent SWITCH_CTRL " Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 201/587] bpftool: Fix JSON writer resource leak in version command Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 202/587] ptp: Use ratelimite for freerun error message Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 203/587] wifi: rtlwifi: fix possible skb memory leak in _rtl_pci_init_one_rxdesc() Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 204/587] ionic: clean dbpage in de-init Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 205/587] net: ncsi: Fix buffer overflow in fetching version id Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 206/587] drm: renesas: rz-du: mipi_dsi: Add min check for VCLK range Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 207/587] drm/ttm: Should to return the evict error Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 208/587] uapi: in6: restore visibility of most IPv6 socket options Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 209/587] bpf: Make reg_not_null() true for CONST_PTR_TO_MAP Greg Kroah-Hartman
2025-08-26 11:05 ` [PATCH 6.6 210/587] selftests/bpf: Fix a user_ringbuf failure with arm64 64KB page size Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 211/587] drm/amd/display: Avoid trying AUX transactions on disconnected ports Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 212/587] drm/ttm: Respect the shrinker core free target Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 213/587] rcu: Fix rcu_read_unlock() deadloop due to IRQ work Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 214/587] net: dsa: b53: fix IP_MULTICAST_CTRL on BCM5325 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 215/587] vsock/virtio: Resize receive buffers so that each SKB fits in a 4K page Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 216/587] vhost: fail early when __vhost_add_used() fails Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 217/587] drm/amd/display: Only finalize atomic_obj if it was initialized Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 218/587] drm/amd/display: Avoid configuring PSR granularity if PSR-SU not supported Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 219/587] watchdog: sbsa: Adjust keepalive timeout to avoid MediaTek WS0 race condition Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 220/587] cifs: Fix calling CIFSFindFirst() for root path without msearch Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 221/587] fbdev: fix potential buffer overflow in do_register_framebuffer() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 222/587] crypto: hisilicon/hpre - fix dma unmap sequence Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 223/587] ext4: do not BUG when INLINE_DATA_FL lacks system.data xattr Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 224/587] clk: tegra: periph: Fix error handling and resolve unsigned compare warning Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 225/587] mfd: axp20x: Set explicit ID for AXP313 regulator Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 226/587] phy: rockchip-pcie: Properly disable TEST_WRITE strobe signal Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 227/587] scsi: libiscsi: Initialize iscsi_conn->dd_data only if memory is allocated Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 228/587] fs/orangefs: use snprintf() instead of sprintf() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 229/587] watchdog: dw_wdt: Fix default timeout Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 230/587] hwmon: (emc2305) Set initial PWM minimum value during probe based on thermal state Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 231/587] clk: qcom: ipq5018: keep XO clock always on Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 232/587] MIPS: vpe-mt: add missing prototypes for vpe_{alloc,start,stop,free} Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 233/587] watchdog: iTCO_wdt: Report error if timeout configuration fails Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 234/587] scsi: bfa: Double-free fix Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 235/587] jfs: truncate good inode pages when hard link is 0 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 236/587] jfs: Regular file corruption check Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 237/587] jfs: upper bound check of tree index in dbAllocAG Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 238/587] crypto: jitter - fix intermediary handling Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 239/587] MIPS: Dont crash in stack_top() for tasks without ABI or vDSO Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 240/587] MIPS: lantiq: falcon: sysctrl: fix request memory check logic Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 241/587] media: v4l2-common: Reduce warnings about missing V4L2_CID_LINK_FREQ control Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 242/587] leds: leds-lp50xx: Handle reg to get correct multi_index Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 243/587] dmaengine: stm32-dma: configure next sg only if there are more than 2 sgs Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 244/587] RDMA: hfi1: fix possible divide-by-zero in find_hw_thread_mask() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 245/587] RDMA/core: reduce stack using in nldev_stat_get_doit() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 246/587] scsi: lpfc: Check for hdwq null ptr when cleaning up lpfc_vport structure Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 247/587] power: supply: qcom_battmgr: Add lithium-polymer entry Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 248/587] scsi: mpt3sas: Correctly handle ATA device errors Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 249/587] scsi: mpi3mr: " Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 250/587] pinctrl: stm32: Manage irq affinity settings Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 251/587] media: tc358743: Check I2C succeeded during probe Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 252/587] media: tc358743: Return an appropriate colorspace from tc358743_set_fmt Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 253/587] media: tc358743: Increase FIFO trigger level to 374 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 254/587] media: usb: hdpvr: disable zero-length read messages Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 255/587] media: dvb-frontends: dib7090p: fix null-ptr-deref in dib7090p_rw_on_apb() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 256/587] media: dvb-frontends: w7090p: fix null-ptr-deref in w7090p_tuner_write_serpar and w7090p_tuner_read_serpar Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 257/587] media: uvcvideo: Fix bandwidth issue for Alcor camera Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 258/587] crypto: octeontx2 - add timeout for load_fvc completion poll Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 259/587] soundwire: amd: serialize amd manager resume sequence during pm_prepare Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 260/587] soundwire: Move handle_nested_irq outside of sdw_dev_lock Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 261/587] md: dm-zoned-target: Initialize return variable r to avoid uninitialized use Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 262/587] module: Prevent silent truncation of module name in delete_module(2) Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 263/587] i3c: add missing include to internal header Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 264/587] rtc: ds1307: handle oscillator stop flag (OSF) for ds1341 Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 265/587] apparmor: shift ouid when mediating hard links in userns Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 266/587] i3c: dont fail if GETHDRCAP is unsupported Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 267/587] i3c: master: Initialize ret in i3c_i2c_notifier_call() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 268/587] dm-mpath: dont print the "loaded" message if registering fails Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 269/587] dm-table: fix checking for rq stackable devices Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.6 270/587] apparmor: use the condition in AA_BUG_FMT even with debug disabled Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 271/587] i2c: Force DLL0945 touchpad i2c freq to 100khz Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 272/587] exfat: add cluster chain loop check for dir Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 273/587] f2fs: check the generic conditions first Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 274/587] kconfig: lxdialog: replace strcpy() with strncpy() in inputbox.c Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 275/587] vfio/type1: conditional rescheduling while pinning Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 276/587] kconfig: nconf: Ensure null termination where strncpy is used Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 277/587] scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 278/587] scsi: target: core: Generate correct identifiers for PR OUT transport IDs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 279/587] scsi: aacraid: Stop using PCI_IRQ_AFFINITY Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 280/587] vfio/mlx5: fix possible overflow in tracking max message size Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 281/587] ipmi: Use dev_warn_ratelimited() for incorrect message warnings Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 282/587] kconfig: gconf: avoid hardcoding model2 in on_treeview2_cursor_changed() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 283/587] kconfig: gconf: fix potential memory leak in renderer_edited() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 284/587] kconfig: lxdialog: fix space to (de)select options Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 285/587] ipmi: Fix strcpy source and destination the same Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 286/587] net: phy: smsc: add proper reset flags for LAN8710A Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 287/587] ASoC: Intel: avs: Fix uninitialized pointer error in probe() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 288/587] block: avoid possible overflow for chunk_sectors check in blk_stack_limits() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 289/587] pNFS: Fix stripe mapping in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 290/587] pNFS: Fix disk addr range check " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 291/587] pNFS: Handle RPC size limit for layoutcommits Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 292/587] pNFS: Fix uninited ptr deref in block/scsi layout Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 293/587] rtc: ds1307: remove clear of oscillator stop flag (OSF) in probe Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 294/587] scsi: lpfc: Remove redundant assignment to avoid memory leak Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 295/587] ASoC: fsl_sai: replace regmap_write with regmap_update_bits Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 296/587] drm/amdgpu: fix incorrect vm flags to map bo Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 297/587] cifs: reset iface weights when we cannot find a candidate Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 298/587] iommu/arm-smmu-qcom: Add SM6115 MDSS compatible Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 299/587] iommufd: Report unmapped bytes in the error path of iopt_unmap_iova_range Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 300/587] iommufd: Prevent ALIGN() overflow Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 301/587] ext4: fix zombie groups in average fragment size lists Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 302/587] ext4: fix largest free orders lists corruption on mb_optimize_scan switch Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 303/587] usb: core: config: Prevent OOB read in SS endpoint companion parsing Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 304/587] misc: rtsx: usb: Ensure mmc child device is active when card is present Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 305/587] usb: typec: ucsi: Update power_supply on power role change Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 306/587] comedi: fix race between polling and detaching Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 307/587] thunderbolt: Fix copy+paste error in match_service_id() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 308/587] cdc-acm: fix race between initial clearing halt and open Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 309/587] btrfs: zoned: use filesystem size not disk size for reclaim decision Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 310/587] btrfs: abort transaction during log replay if walk_log_tree() failed Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 311/587] btrfs: zoned: do not remove unwritten non-data block group Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 312/587] btrfs: clear dirty status from extent buffer on error at insert_new_root() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 313/587] btrfs: fix log tree replay failure due to file with 0 links and extents Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 314/587] btrfs: zoned: do not select metadata BG as finish target Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 315/587] btrfs: do not allow relocation of partially dropped subvolumes Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 316/587] fbdev: Fix vmalloc out-of-bounds write in fast_imageblit Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 317/587] hv_netvsc: Fix panic during namespace deletion with VF Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 318/587] parisc: Makefile: fix a typo in palo.conf Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 319/587] mm/kmemleak: avoid soft lockup in __kmemleak_do_cleanup() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 320/587] mm/kmemleak: avoid deadlock by moving pr_warn() outside kmemleak_lock Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 321/587] media: uvcvideo: Fix 1-byte out-of-bounds read in uvc_parse_format() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 322/587] media: venus: Fix OOB read due to missing payload bound check Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 323/587] media: uvcvideo: Do not mark valid metadata as invalid Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 324/587] tools/nolibc: fix spelling of FD_SETBITMASK in FD_* macros Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 325/587] RDMA/siw: Fix the sendmsg byte count in siw_tcp_sendpages Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 326/587] HID: magicmouse: avoid setting up battery timer when not needed Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 327/587] HID: apple: avoid setting up battery timer for devices without battery Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 328/587] rcu: Fix racy re-initialization of irq_work causing hangs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 329/587] serial: 8250: fix panic due to PSLVERR Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.6 330/587] cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 331/587] platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 332/587] m68k: Fix lost column on framebuffer debug console Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 333/587] usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 334/587] usb: gadget: udc: renesas_usb3: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 335/587] usb: musb: omap2430: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 336/587] usb: dwc3: meson-g12a: fix device leaks " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 337/587] bus: mhi: host: Fix endianness of BHI vector table Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 338/587] bus: mhi: host: Detect events pointing to unexpected TREs Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 339/587] vt: keyboard: Dont process Unicode characters in K_OFF mode Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 340/587] vt: defkeymap: Map keycodes above 127 to K_HOLE Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 341/587] lib/crypto: mips/chacha: Fix clang build and remove unneeded byteswap Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 342/587] crypto: qat - lower priority for skcipher and aead algorithms Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 343/587] crypto: qat - flush misc workqueue during device shutdown Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 344/587] Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 345/587] ksmbd: fix refcount leak causing resource not released Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 346/587] ksmbd: extend the connection limiting mechanism to support IPv6 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 347/587] tracing: fprobe-event: Sanitize wildcard for fprobe event name Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 348/587] ext4: check fast symlink for ea_inode correctly Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 349/587] ext4: fix fsmap end of range reporting with bigalloc Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 350/587] ext4: fix reserved gdt blocks handling in fsmap Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 351/587] ext4: dont try to clear the orphan_present feature block device is r/o Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 352/587] ext4: use kmalloc_array() for array space allocation Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 353/587] ext4: fix hole length calculation overflow in non-extent inodes Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 354/587] btrfs: zoned: fix write time activation failure for metadata block group Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 355/587] arm64: dts: ti: k3-pinctrl: Enable Schmitt Trigger by default Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 356/587] arm64: dts: ti: k3-am62a7-sk: fix pinmux for main_uart1 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 357/587] arm64: dts: ti: k3-am62-verdin: Enable pull-ups on I2C buses Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 358/587] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 359/587] dt-bindings: display: sprd,sharkl3-dsi-host: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 360/587] scsi: mpi3mr: Fix race between config read submit and interrupt completion Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 361/587] ata: libata-scsi: Fix ata_to_sense_error() status handling Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 362/587] scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 363/587] scsi: ufs: ufs-pci: Fix default runtime and system PM levels Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 364/587] ata: libata-scsi: Fix CDL control Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 365/587] soc: qcom: mdt_loader: Ensure we dont read past the ELF header Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 366/587] zynq_fpga: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 367/587] iio: imu: bno055: fix OOB access of hw_xlate array Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 368/587] iio: adc: ad_sigma_delta: change to buffer predisable Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 369/587] wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 370/587] wifi: ath12k: fix dest ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 371/587] wifi: ath12k: fix source " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 372/587] wifi: ath12k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 373/587] wifi: ath11k: fix dest ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 374/587] wifi: ath11k: fix source " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 375/587] wifi: ath11k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 376/587] pwm: imx-tpm: Reset counter if CMOD is 0 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 377/587] pwm: mediatek: Handle hardware enable and clock enable separately Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 378/587] pwm: mediatek: Fix duty and period setting Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 379/587] hwmon: (gsc-hwmon) fix fan pwm setpoint show functions Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 380/587] mtd: spi-nor: Fix spi_nor_try_unlock_all() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 381/587] mtd: spinand: propagate spinand_wait() errors from spinand_write_page() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 382/587] mtd: rawnand: fsmc: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 383/587] mtd: rawnand: renesas: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 384/587] PCI: endpoint: Fix configfs group list head handling Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 385/587] PCI: endpoint: Fix configfs group removal on driver teardown Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 386/587] vsock/virtio: Validate length in packet header before skb_put() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 387/587] vhost/vsock: Avoid allocating arbitrarily-sized SKBs Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 388/587] phy: qcom: phy-qcom-m31: Update IPQ5332 M31 USB phy initialization sequence Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 389/587] f2fs: fix to avoid out-of-boundary access in dnode page Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.6 390/587] jbd2: prevent softlockup in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 391/587] soc/tegra: pmc: Ensure power-domains are in a known state Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 392/587] parisc: Check region is readable by user in raw_copy_from_user() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 393/587] parisc: Define and use set_pte_at() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 394/587] parisc: Drop WARN_ON_ONCE() from flush_cache_vmap Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 395/587] parisc: Makefile: explain that 64BIT requires both 32-bit and 64-bit compilers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 396/587] parisc: Rename pte_needs_flush() to pte_needs_cache_flush() in cache.c Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 397/587] parisc: Revise __get_user() to probe user read access Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 398/587] parisc: Revise gateway LWS calls " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 399/587] parisc: Try to fixup kernel exception in bad_area_nosemaphore path of do_page_fault() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 400/587] parisc: Update comments in make_insert_tlb Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 401/587] media: gspca: Add bounds checking to firmware parser Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 402/587] media: hi556: correct the test pattern configuration Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 403/587] media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 404/587] media: vivid: fix wrong pixel_array control size Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 405/587] media: verisilicon: Fix AV1 decoder clock frequency Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 406/587] media: v4l2-ctrls: Dont reset handlers error in v4l2_ctrl_handler_free() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 407/587] media: usbtv: Lock resolution while streaming Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 408/587] media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 409/587] media: ov2659: Fix memory leaks in ov2659_probe() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 410/587] media: ivsc: Fix crash at shutdown due to missing mei_cldev_disable() calls Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 411/587] media: qcom: camss: cleanup media device allocated resource on error path Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 412/587] media: venus: Add a check for packet size after reading from shared memory Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 413/587] media: venus: hfi: explicitly release IRQ during teardown Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 414/587] media: venus: protect against spurious interrupts during probe Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 415/587] media: venus: vdec: Clamp param smaller than 1fps and bigger than 240 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 416/587] media: venus: venc: " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 417/587] drm/amd: Restore cached power limit during resume Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 418/587] drm/amdgpu: Avoid extra evict-restore process Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 419/587] drm/amdgpu: update mmhub 3.0.1 client id mappings Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 420/587] drm/amdkfd: Destroy KFD debugfs after destroy KFD wq Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 421/587] drm/amd/display: Add primary plane to commits for correct VRR handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 422/587] drm/amd/display: Dont overwrite dce60_clk_mgr Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 423/587] net, hsr: reject HSR frame if skb cant hold tag Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 424/587] ipv6: sr: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 425/587] ACPI: pfr_update: Fix the driver update version check Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 426/587] mptcp: drop skb if MPTCP skb extension allocation fails Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 427/587] mptcp: pm: kernel: flush: do not reset ADD_ADDR limit Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 428/587] mm: drop the assumption that VM_SHARED always implies writable Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 429/587] mm: update memfd seal write check to include F_SEAL_WRITE Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 430/587] mm: reinstate ability to map write-sealed memfd mappings read-only Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 431/587] selftests/memfd: add test for mapping write-sealed memfd read-only Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 432/587] net: Add net_passive_inc() and net_passive_dec() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 433/587] net: better track kernel sockets lifetime Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 434/587] smb: client: fix netns refcount leak after net_passive changes Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 435/587] net_sched: sch_ets: implement lockless ets_dump() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 436/587] net/sched: ets: use old nbands while purging unused classes Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 437/587] leds: flash: leds-qcom-flash: Limit LED current based on thermal condition Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 438/587] leds: flash: leds-qcom-flash: Fix registry access after re-bind Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 439/587] fscrypt: Dont use problematic non-inline crypto engines Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 440/587] block: reject invalid operation in submit_bio_noacct Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 441/587] block: Make REQ_OP_ZONE_FINISH a write operation Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 442/587] PCI/ACPI: Fix runtime PM ref imbalance on Hot-Plug Capable ports Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 443/587] usb: typec: fusb302: cache PD RX state Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 444/587] btrfs: dont ignore inode missing when replaying log tree Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 445/587] btrfs: qgroup: fix race between quota disable and quota rescan ioctl Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 446/587] btrfs: move transaction aborts to the error site in add_block_group_free_space() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 447/587] btrfs: always abort transaction on failure to add block group to free space tree Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 448/587] btrfs: abort transaction on unexpected eb generation at btrfs_copy_root() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 449/587] xfs: fully decouple XFS_IBULK* flags from XFS_IWALK* flags Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.6 450/587] btrfs: open code timespec64 in struct btrfs_inode Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 451/587] btrfs: fix ssd_spread overallocation Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 452/587] btrfs: constify more pointer parameters Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 453/587] btrfs: populate otime when logging an inode item Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 454/587] btrfs: send: factor out common logic when sending xattrs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 455/587] btrfs: send: only use boolean variables at process_recorded_refs() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 456/587] btrfs: send: add and use helper to rename current inode when processing refs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 457/587] btrfs: send: keep the current inodes path cached Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 458/587] btrfs: send: avoid path allocation for the current inode when issuing commands Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 459/587] btrfs: send: use fallocate for hole punching with send stream v2 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 460/587] btrfs: send: make fs_path_len() inline and constify its argument Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 461/587] s390/mm: Remove possible false-positive warning in pte_free_defer() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 462/587] KVM: x86: Take irqfds.lock when adding/deleting IRQ bypass producer Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 463/587] wifi: mac80211: check basic rates validity in sta_link_apply_parameters Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 464/587] mm/ptdump: take the memory hotplug lock inside ptdump_walk_pgd() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 465/587] usb: dwc3: imx8mp: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 466/587] ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 467/587] PM: runtime: Simplify pm_runtime_get_if_active() usage Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 468/587] PM: runtime: Take active children into account in pm_runtime_get_if_in_use() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 469/587] ata: libata-scsi: Return aborted command when missing sense and result TF Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 470/587] kbuild: userprogs: use correct linker when mixing clang and GNU ld Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 471/587] sched/topology: Add a new arch_scale_freq_ref() method Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 472/587] cpufreq: Use the fixed and coherent frequency for scaling capacity Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 473/587] cpufreq/schedutil: Use a fixed reference frequency Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 474/587] energy_model: " Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 475/587] cpufreq/cppc: Set the frequency used for computing the capacity Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 476/587] arm64/amu: Use capacity_ref_freq() to set AMU ratio Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 477/587] topology: Set capacity_freq_ref in all cases Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 478/587] sched/fair: Fix frequency selection for non-invariant case Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 479/587] KVM: arm64: Fix kernel BUG() due to bad backport of FPSIMD/SVE/SME fix Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 480/587] memstick: Fix deadlock by moving removing flag earlier Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 481/587] mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 482/587] squashfs: fix memory leak in squashfs_fill_super Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 483/587] mm/debug_vm_pgtable: clear page table entries at destroy_args() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 484/587] mm/memory-failure: fix infinite UCE for VM_PFNMAP pfn Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 485/587] ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 486/587] s390/sclp: Fix SCCB present check Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 487/587] drm/amd/display: Avoid a NULL pointer dereference Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 488/587] drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 489/587] drm/amd/display: Fix DP audio DTO1 clock source on DCE 6 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 490/587] drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 491/587] drm/amd/display: Fill display clock and vblank " Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 492/587] soc: qcom: mdt_loader: Fix error return values in mdt_header_valid() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 493/587] PCI: rockchip: Use standard PCIe definitions Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 494/587] PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 495/587] PCI: imx6: Delay link start until configfs start written Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 496/587] PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 497/587] scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 498/587] scsi: mpi3mr: Drop unnecessary volatile from __iomem pointers Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 499/587] scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 500/587] ext4: preserve SB_I_VERSION on remount Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 501/587] arm64: dts: ti: k3-am62-main: Remove eMMC High Speed DDR support Greg Kroah-Hartman
2025-08-26 11:10 ` Greg Kroah-Hartman [this message]
2025-08-26 11:10 ` [PATCH 6.6 503/587] fs/buffer: fix use-after-free when call bh_read() helper Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 504/587] use uniform permission checks for all mount propagation changes Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 505/587] mptcp: remove duplicate sk_reset_timer call Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 506/587] mptcp: disable add_addr retransmission when timeout is 0 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 507/587] selftests: mptcp: pm: check flush doesnt reset limits Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 508/587] mmc: sdhci-pci-gli: Use PCI AER definitions, not hard-coded values Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 509/587] mmc: sdhci-pci-gli: Add a new function to simplify the code Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.6 510/587] cpuidle: menu: Remove iowait influence Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 511/587] cpuidle: governors: menu: Avoid selecting states with too much latency Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 512/587] drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 513/587] fpga: zynq_fpga: Fix the wrong usage of dma_map_sgtable() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 514/587] ftrace: Also allocate and copy hash for reading of filter files Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 515/587] iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 516/587] iio: proximity: isl29501: fix buffered read on big-endian systems Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 517/587] most: core: Drop device reference after usage in get_channel() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 518/587] cdx: Fix off-by-one error in cdx_rpmsg_probe() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 519/587] usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 520/587] comedi: Make insn_rw_emulate_bits() do insn->n samples Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 521/587] comedi: pcl726: Prevent invalid irq number Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 522/587] comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 523/587] usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 524/587] usb: renesas-xhci: Fix External ROM access timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 525/587] USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 526/587] usb: storage: realtek_cr: Use correct byte order for bcs->Residue Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 527/587] USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 528/587] usb: dwc3: Ignore late xferNotReady event to prevent halt timeout Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 529/587] usb: dwc3: Remove WARN_ON for device endpoint command timeouts Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 530/587] usb: dwc3: pci: add support for the Intel Wildcat Lake Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 531/587] drm/amd/display: Dont overclock DCE 6 by 15% Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 532/587] compiler: remove __ADDRESSABLE_ASM{_STR,}() again Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 533/587] mmc: sdhci-pci-gli: GL9763e: Mask the replay timer timeout of AER Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 534/587] powerpc/boot: Fix build with gcc 15 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 535/587] tls: fix handling of zero-length records on the rx_list Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 536/587] tracing: Remove unneeded goto out logic Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 537/587] tracing: Limit access to parser->buffer when trace_get_user failed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 538/587] iio: light: as73211: Ensure buffer holes are zeroed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 539/587] iio: temperature: maxim_thermocouple: use DMA-safe buffer for spi_read() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 540/587] iio: imu: inv_icm42600: switch timestamp type from int64_t __aligned(8) to aligned_s64 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 541/587] iio: imu: inv_icm42600: use = { } instead of memset() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 542/587] iio: imu: inv_icm42600: Convert to uXX and sXX integer types Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 543/587] iio: imu: inv_icm42600: change invalid data error to -EBUSY Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 544/587] usb: xhci: Fix slot_id resource race conflict Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 545/587] usb: typec: maxim_contaminant: re-enable cc toggle if cc is open and port is clean Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 546/587] usb: typec: maxim_contaminant: disable low power mode when reading comparator values Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 547/587] x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 548/587] spi: spi-fsl-lpspi: Clamp too high speed_hz Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 549/587] drm/nouveau/nvif: Fix potential memory leak in nvif_vmm_ctor() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 550/587] cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 551/587] iosys-map: Fix undefined behavior in iosys_map_clear() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 552/587] RDMA/erdma: Fix ignored return value of init_kernel_qp Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 553/587] RDMA/bnxt_re: Fix to do SRQ armena by default Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 554/587] RDMA/bnxt_re: Fix to remove workload check in SRQ limit path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 555/587] RDMA/bnxt_re: Fix to initialize the PBL array Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 556/587] net: bridge: fix soft lockup in br_multicast_query_expired() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 557/587] scsi: qla4xxx: Prevent a potential error pointer dereference Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 558/587] iommu/amd: Avoid stack buffer overflow from kernel cmdline Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 559/587] Bluetooth: hci_event: fix MTU for BN == 0 in CIS Established Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 560/587] Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 561/587] mlxsw: spectrum: Forward packets with an IPv4 link-local source IP Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 562/587] drm/hisilicon/hibmc: fix the hibmc loaded failed bug Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 563/587] ALSA: usb-audio: Fix size validation in convert_chmap_v3() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 564/587] drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 565/587] net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 566/587] ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 567/587] net: ethernet: mtk_ppe: add RCU lock around dev_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 568/587] ppp: fix race conditions in ppp_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 569/587] phy: mscc: Fix timestamping for vsc8584 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.6 570/587] net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 571/587] gve: prevent ethtool ops after shutdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 572/587] net/smc: fix UAF on smcsk after smc_listen_out() Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 573/587] LoongArch: Optimize module load time by optimizing PLT/GOT counting Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 574/587] ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 575/587] igc: fix disabling L1.2 PCI-E link substate on I226 on init Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 576/587] net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 577/587] net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 578/587] bonding: update LACP activity flag after setting lacp_active Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 579/587] bonding: Add independent control state machine Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 580/587] bonding: send LACPDUs periodically in passive mode after receiving partners LACPDU Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 581/587] Octeontx2-af: Skip overlap check for SPI field Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 582/587] net/mlx5: Base ECVF devlink port attrs from 0 Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 583/587] net/mlx5e: Preserve shared buffer capacity during headroom updates Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 584/587] ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 585/587] s390/hypfs: Avoid unnecessary ioctl registration in debugfs Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 586/587] s390/hypfs: Enable limited access during lockdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.6 587/587] netfilter: nf_reject: dont leak dst refcount for loopback packets Greg Kroah-Hartman
2025-08-26 12:42 ` [PATCH 6.6 000/587] 6.6.103-rc1 review Brett A C Sheffield
2025-08-26 12:50   ` Greg Kroah-Hartman
2025-08-26 14:58     ` Brett Sheffield
2025-08-29 17:08       ` Brett Sheffield
2025-08-26 13:36   ` Brett A C Sheffield
2025-08-26 14:30 ` Miguel Ojeda
2025-08-26 17:43 ` Jon Hunter
2025-08-26 17:52 ` Brett A C Sheffield
2025-08-26 18:55 ` [PATCH 6.6 000/587] " Florian Fainelli
2025-08-26 19:18 ` Peter Schneider
2025-08-27  9:13 ` Ron Economos
2025-08-27  9:29 ` Anders Roxell
2025-08-27 11:17 ` Mark Brown

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=20250826111005.755074187@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linkinjeon@kernel.org \
    --cc=linux-cifs@vger.kernel.org \
    --cc=metze@samba.org \
    --cc=patches@lists.linux.dev \
    --cc=samba-technical@lists.samba.org \
    --cc=sashal@kernel.org \
    --cc=smfrench@gmail.com \
    --cc=stable@vger.kernel.org \
    --cc=stfrench@microsoft.com \
    --cc=tom@talpey.com \
    /path/to/YOUR_REPLY

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

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