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, Takashi Iwai <tiwai@suse.de>,
	Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.17 331/563] ASoC: Intel: bytcr_rt5640: Fix invalid quirk input mapping
Date: Mon, 13 Oct 2025 16:43:12 +0200	[thread overview]
Message-ID: <20251013144423.253534693@linuxfoundation.org> (raw)
In-Reply-To: <20251013144411.274874080@linuxfoundation.org>

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

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

From: Takashi Iwai <tiwai@suse.de>

[ Upstream commit fba404e4b4af4f4f747bb0e41e9fff7d03c7bcc0 ]

When an invalid value is passed via quirk option, currently
bytcr_rt5640 driver only shows an error message but leaves as is.
This may lead to unepxected results like OOB access.

This patch corrects the input mapping to the certain default value if
an invalid value is passed.

Fixes: 063422ca2a9d ("ASoC: Intel: bytcr_rt5640: Set card long_name based on quirks")
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Message-ID: <20250902171826.27329-3-tiwai@suse.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 sound/soc/intel/boards/bytcr_rt5640.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/sound/soc/intel/boards/bytcr_rt5640.c b/sound/soc/intel/boards/bytcr_rt5640.c
index 0f3b8f44e7011..bc846558480e4 100644
--- a/sound/soc/intel/boards/bytcr_rt5640.c
+++ b/sound/soc/intel/boards/bytcr_rt5640.c
@@ -68,7 +68,8 @@ enum {
 	BYT_RT5640_OVCD_SF_1P5		= (RT5640_OVCD_SF_1P5 << 13),
 };
 
-#define BYT_RT5640_MAP(quirk)		((quirk) &  GENMASK(3, 0))
+#define BYT_RT5640_MAP_MASK		GENMASK(3, 0)
+#define BYT_RT5640_MAP(quirk)		((quirk) & BYT_RT5640_MAP_MASK)
 #define BYT_RT5640_JDSRC(quirk)		(((quirk) & GENMASK(7, 4)) >> 4)
 #define BYT_RT5640_OVCD_TH(quirk)	(((quirk) & GENMASK(12, 8)) >> 8)
 #define BYT_RT5640_OVCD_SF(quirk)	(((quirk) & GENMASK(14, 13)) >> 13)
@@ -140,7 +141,9 @@ static void log_quirks(struct device *dev)
 		dev_info(dev, "quirk NO_INTERNAL_MIC_MAP enabled\n");
 		break;
 	default:
-		dev_err(dev, "quirk map 0x%x is not supported, microphone input will not work\n", map);
+		dev_warn_once(dev, "quirk sets invalid input map: 0x%x, default to DMIC1_MAP\n", map);
+		byt_rt5640_quirk &= ~BYT_RT5640_MAP_MASK;
+		byt_rt5640_quirk |= BYT_RT5640_DMIC1_MAP;
 		break;
 	}
 	if (byt_rt5640_quirk & BYT_RT5640_HSMIC2_ON_IN1)
-- 
2.51.0




  parent reply	other threads:[~2025-10-13 15:34 UTC|newest]

Thread overview: 591+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-13 14:37 [PATCH 6.17 000/563] 6.17.3-rc1 review Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 001/563] arch: copy_thread: pass clone_flags as u64 Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 002/563] filelock: add FL_RECLAIM to show_fl_flags() macro Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 003/563] init: INITRAMFS_PRESERVE_MTIME should depend on BLK_DEV_INITRD Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 004/563] pid: use ns_capable_noaudit() when determining net sysctl permissions Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 005/563] Fix CC_HAS_ASM_GOTO_OUTPUT on non-x86 architectures Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 006/563] seccomp: Fix a race with WAIT_KILLABLE_RECV if the tracer replies too fast Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 007/563] kbuild: Add missing $(objtree) prefix to powerpc crtsavres.o artifact Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 008/563] selftests: arm64: Check fread return value in exec_target Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 009/563] selftests: arm64: Fix -Waddress warning in tpidr2 test Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 010/563] kselftest/arm64/gcs: Correctly check return value when disabling GCS Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 011/563] hfsplus: fix slab-out-of-bounds read in hfsplus_uni2asc() Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 012/563] gfs2: Fix GLF_INVALIDATE_IN_PROGRESS flag clearing in do_xmote Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 013/563] gfs2: Remove space before newline Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 014/563] gfs2: Further sanitize lock_dlm.c Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 015/563] gfs2: Fix LM_FLAG_TRY* logic in add_to_queue Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 016/563] gfs2: Remove duplicate check in do_xmote Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 017/563] gfs2: Get rid of GLF_INVALIDATE_IN_PROGRESS Greg Kroah-Hartman
2025-10-13 14:37 ` [PATCH 6.17 018/563] gfs2: do_xmote cleanup Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 019/563] gfs2: Add proper lockspace locking Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 020/563] powerpc/8xx: Remove left-over instruction and comments in DataStoreTLBMiss handler Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 021/563] powerpc/603: Really copy kernel PGD entries into all PGDIRs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 022/563] powerpc/ftrace: ensure ftrace record ops are always set for NOPs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 023/563] powerpc64/modules: correctly iterate over stubs in setup_ftrace_ool_stubs Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 024/563] uprobes: uprobe_warn should use passed task Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 025/563] raid6: riscv: Clean up unused header file inclusion Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 026/563] coresight: trbe: Prevent overflow in PERF_IDX2OFF() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 027/563] perf: arm_spe: " Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 028/563] erofs: avoid reading more for fragment maps Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 029/563] smb: client: fix sending the iwrap custom IRD/ORD negotiation messages Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 030/563] smb: server: fix IRD/ORD negotiation with the client Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 031/563] EDAC/i10nm: Skip DIMM enumeration on a disabled memory controller Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 032/563] perf/x86/intel: Use early_initcall() to hook bts_init() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 033/563] perf/x86/intel: Fix IA32_PMC_x_CFG_B MSRs access error Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 034/563] x86/vdso: Fix output operand size of RDPID Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 035/563] selftests: cgroup: Make test_pids backwards compatible Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 036/563] sched/fair: Get rid of sched_domains_curr_level hack for tl->cpumask() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 037/563] lsm: CONFIG_LSM can depend on CONFIG_SECURITY Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 038/563] cpuset: fix failure to enable isolated partition when containing isolcpus Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 039/563] btrfs: return any hit error from extent_writepage_io() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 040/563] btrfs: fix symbolic link reading when bs > ps Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 041/563] pinctrl: renesas: rzg2l: Fix invalid unsigned return in rzg3s_oen_read() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 042/563] arm64: dts: renesas: rzg2lc-smarc: Disable CAN-FD channel0 Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 043/563] bpf: Tidy verifier bug message Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 044/563] regmap: Remove superfluous check for !config in __regmap_init() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 045/563] selftests/bpf: Copy test_kmods when installing selftest Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 046/563] rust: cpumask: Mark CpumaskVar as transparent Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 047/563] bpf/selftests: Fix test_tcpnotify_user Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 048/563] bpf: Remove migrate_disable in kprobe_multi_link_prog_run Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 049/563] libbpf: Fix reuse of DEVMAP Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 050/563] tools/nolibc: fix error return value of clock_nanosleep() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 051/563] ARM: dts: renesas: porter: Fix CAN pin group Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 052/563] leds: max77705: Function return instead of variable assignment Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 053/563] leds: flash: leds-qcom-flash: Update torch current clamp setting Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 054/563] s390/bpf: Do not write tail call counter into helper and kfunc frames Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 055/563] s390/bpf: Write back tail call counter for BPF_PSEUDO_CALL Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 056/563] s390/bpf: Write back tail call counter for BPF_TRAMP_F_CALL_ORIG Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 057/563] cpufreq: scmi: Account for malformed DT in scmi_dev_used_by_cpus() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 058/563] arm64: dts: renesas: sparrow-hawk: Invert microSD voltage selector on EVTB1 Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 059/563] arm64: dts: renesas: sparrow-hawk: Set VDDQ18_25_AVB voltage " Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 060/563] libbpf: Export bpf_object__prepare symbol Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 061/563] firmware: arm_scmi: Mark VirtIO ready before registering scmi_virtio_driver Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 062/563] arm64: dts: imx93-kontron: Fix GPIO for panel regulator Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 063/563] arm64: dts: imx93-kontron: Fix USB port assignment Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 064/563] arm64: dts: imx95: Correct the lpuart7 and lpuart8 srcid Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 065/563] bpf: Remove preempt_disable in bpf_try_get_buffers Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 066/563] ACPI: processor: idle: Fix memory leak when register cpuidle device failed Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 067/563] genirq: Add irq_chip_(startup/shutdown)_parent() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 068/563] PCI/MSI: Add startup/shutdown for per device domains Greg Kroah-Hartman
2025-10-13 21:16   ` Bjorn Helgaas
2025-10-16  1:07     ` Stefan Lippers-Hollmann
2025-10-16  2:07       ` Inochi Amaoto
2025-10-17  2:33         ` Stefan Lippers-Hollmann
2025-10-17  6:56     ` Greg Kroah-Hartman
2025-10-19  5:29       ` Eric Naim
2025-10-20  8:28         ` Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 069/563] irqchip/sg2042-msi: Fix broken affinity setting Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 070/563] scripts/misc-check: update export checks for EXPORT_SYMBOL_FOR_MODULES() Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 071/563] soc: qcom: rpmh-rsc: Unconditionally clear _TRIGGER bit for TCS Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 072/563] pinctrl: meson-gxl: add missing i2c_d pinmux Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 073/563] blk-mq: check kobject state_in_sysfs before deleting in blk_mq_unregister_hctx Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 074/563] selftests/futex: Remove the -g parameter from futex_priv_hash Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 075/563] ARM: at91: pm: fix MCKx restore routine Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 076/563] arm64: dts: apple: t8103-j457: Fix PCIe ethernet iommu-map Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 077/563] regulator: scmi: Use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:38 ` [PATCH 6.17 078/563] selftests/futex: Fix some futex_numa_mpol subtests Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 079/563] tools/nolibc: avoid error in dup2() if old fd equals new fd Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 080/563] selftests/nolibc: fix EXPECT_NZ macro Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 081/563] leds: leds-lp55xx: Use correct address for memory programming Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 082/563] PCI/MSI: Check MSI_FLAG_PCI_MSI_MASK_PARENT in cond_[startup|shutdown]_parent() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 083/563] block: use int to store blk_stack_limits() return value Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 084/563] ARM: dts: stm32: stm32mp151c-plyaqm: Use correct dai-format property Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 085/563] dt-bindings: vendor-prefixes: Add undocumented vendor prefixes Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 086/563] genirq/test: Fix depth tests on architectures with NOREQUEST by default Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 087/563] genirq/test: Select IRQ_DOMAIN Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 088/563] genirq/test: Depend on SPARSE_IRQ Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 089/563] genirq/test: Drop CONFIG_GENERIC_IRQ_MIGRATION assumptions Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 090/563] genirq/test: Ensure CPU 1 is online for hotplug test Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 091/563] selftests/bpf: Fix count write in testapp_xdp_metadata_copy() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 092/563] vdso/datastore: Gate time data behind CONFIG_GENERIC_GETTIMEOFDAY Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 093/563] PM: sleep: core: Clear power.must_resume in noirq suspend error path Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 094/563] blk-mq: fix elevator depth_updated method Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 095/563] vdso: Add struct __kernel_old_timeval forward declaration to gettime.h Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 096/563] ARM: dts: ti: omap: am335x-baltos: Fix ti,en-ck32k-xtal property in DTS to use correct boolean syntax Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 097/563] ARM: dts: ti: omap: omap3-devkit8000-lcd: Fix ti,keep-vref-on property to use correct boolean syntax in DTS Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 098/563] ARM: dts: omap: am335x-cm-t335: Remove unused mcasp num-serializer property Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 099/563] PM / devfreq: mtk-cci: Fix potential error pointer dereference in probe() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 100/563] power: supply: cw2015: Fix a alignment coding style issue Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 101/563] hwmon: (asus-ec-sensors) Narrow lock for X870E-CREATOR WIFI Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 102/563] pinctrl: renesas: Use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 103/563] pinctrl: eswin: Fix regulator error check and Kconfig dependency Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 104/563] null_blk: Fix the description of the cache_size module argument Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 105/563] blk-throttle: fix access race during throttle policy activation Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 106/563] selftests: vDSO: Fix -Wunitialized in powerpc VDSO_CALL() wrapper Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 107/563] selftests: vDSO: vdso_test_abi: Correctly skip whole test with missing vDSO Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 108/563] irqchip/gic-v5: Fix loop in gicv5_its_create_itt_two_level() cleanup path Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 109/563] irqchip/gic-v5: Fix error handling in gicv5_its_irq_domain_alloc() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 110/563] tick: Do not set device to detached state in tick_shutdown() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 111/563] arm64: dts: mediatek: mt8195: Remove suspend-breaking reset from pcie0 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 112/563] arm64: dts: mediatek: mt8183: Fix out of range pull values Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 113/563] nbd: restrict sockets to TCP and UDP Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 114/563] PM / devfreq: rockchip-dfi: double count on RK3588 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 115/563] firmware: firmware: meson-sm: fix compile-test default Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 116/563] dts: arm: amlogic: fix pwm node for c3 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 117/563] soc: mediatek: mtk-svs: fix device leaks on mt8183 probe failure Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 118/563] soc: mediatek: mtk-svs: fix device leaks on mt8192 " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 119/563] cpuidle: qcom-spm: fix device and OF node leaks at probe Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 120/563] block: cleanup bio_issue Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 121/563] block: initialize bio issue time in blk_mq_submit_bio() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 122/563] block: factor out a helper bio_submit_split_bioset() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 123/563] block: skip unnecessary checks for split bio Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 124/563] block: fix ordering of recursive split IO Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 125/563] blk-mq: remove useless checkings in blk_mq_update_nr_requests() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 126/563] blk-mq: check invalid nr_requests in queue_requests_store() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 127/563] blk-mq: convert to serialize updating nr_requests with update_nr_hwq_lock Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 128/563] blk-mq: cleanup shared tags case in blk_mq_update_nr_requests() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 129/563] blk-mq: split bitmap grow and resize " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 130/563] blk-mq-sched: add new parameter nr_requests in blk_mq_alloc_sched_tags() Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 131/563] blk-mq: fix potential deadlock while nr_requests grown Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 132/563] arm64: dts: allwinner: a527: cubie-a5e: Add ethernet PHY reset setting Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 133/563] arm64: dts: allwinner: t527: avaota-a1: " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 134/563] arm64: dts: rockchip: Add RTC on rk3576-evb1-v10 Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 135/563] arm64: dts: rockchip: Add WiFi " Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 136/563] arm64: dts: rockchip: Fix network on rk3576 evb1 board Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 137/563] arm64: dts: ti: k3-j742s2-mcu-wakeup: Override firmware-name for MCU R5F cores Greg Kroah-Hartman
2025-10-13 14:39 ` [PATCH 6.17 138/563] arm64: dts: ti: k3: Rename rproc reserved-mem nodes to memory@addr Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 139/563] Revert "arm64: dts: ti: k3-j721e-sk: Fix reversed C6x carveout locations" Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 140/563] Revert "arm64: dts: ti: k3-j721e-beagleboneai64: " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 141/563] arm64: dts: mediatek: mt8188: Change efuse fallback compatible to mt8186 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 142/563] arm64: dts: mediatek: mt8186-tentacruel: Fix touchscreen model Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 143/563] arm64: dts: ti: k3-pinctrl: Fix the bug in existing macros Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 144/563] arm64: dts: renesas: r9a09g047e57-smarc: Fix gpio keys pin control node Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 145/563] arm64: dts: mediatek: mt6331: Fix pmic, regulators, rtc, keys node names Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 146/563] mmc: core: Fix variable shadowing in mmc_route_rpmb_frames() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 147/563] arm64: dts: mediatek: mt6795-xperia-m5: Fix mmc0 latch-ck value Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 148/563] arm64: dts: mediatek: mt7986a: Fix PCI-Express T-PHY node address Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 149/563] arm64: dts: mediatek: mt8395-kontron-i1200: Fix MT6360 regulator nodes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 150/563] arm64: dts: mediatek: mt8516-pumpkin: Fix machine compatible Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 151/563] arm64: dts: allwinner: a527: cubie-a5e: Add LEDs Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 152/563] arm64: dts: allwinner: a527: cubie-a5e: Drop external 32.768 KHz crystal Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 153/563] arm64: dts: allwinner: t527: avaota-a1: hook up external 32k crystal Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 154/563] arm64: dts: allwinner: t527: orangepi-4a: " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 155/563] pwm: tiehrpwm: Dont drop runtime PM reference in .free() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 156/563] pwm: tiehrpwm: Make code comment in .free() more useful Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 157/563] pwm: tiehrpwm: Fix various off-by-one errors in duty-cycle calculation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 158/563] pwm: tiehrpwm: Fix corner case in clock divisor calculation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 159/563] ACPICA: Apply ACPI_NONSTRING Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 160/563] ACPICA: Fix largest possible resource descriptor index Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 161/563] riscv, bpf: Sign extend struct ops return values properly Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 162/563] nvme-auth: update bi_directional flag Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 163/563] nvmet-fc: move lsop put work to nvmet_fc_ls_req_op Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 164/563] nvmet-fcloop: call done callback even when remote port is gone Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 165/563] nvme-tcp: send only permitted commands for secure concat Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 166/563] i3c: master: svc: Use manual response for IBI events Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 167/563] i3c: master: svc: Recycle unused IBI slot Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 168/563] block: update validation of atomic writes boundary for stacked devices Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 169/563] block: fix stacking of atomic writes when atomics are not supported Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 170/563] selftests: watchdog: skip ping loop if WDIOF_KEEPALIVEPING " Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 171/563] selftests/kselftest_harness: Add harness-selftest.expected to TEST_FILES Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 172/563] blk-throttle: fix throtl_data leak during disk release Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 173/563] bpf: Explicitly check accesses to bpf_sock_addr Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 174/563] mmc: select REGMAP_MMIO with MMC_LOONGSON2 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 175/563] selftests/futex: Fix futex_wait() for 32bit ARM Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 176/563] selftest/futex: Make the error check more precise for futex_numa_mpol Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 177/563] selftest/futex: Compile also with libnuma < 2.0.16 Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 178/563] bpf: dont report verifier bug for missing bpf_scc_visit on speculative path Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 179/563] bpf, arm64: Call bpf_jit_binary_pack_finalize() in bpf_jit_free() Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 180/563] arm64: dts: apple: t600x: Add missing WiFi properties Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 181/563] arm64: dts: apple: t600x: Add bluetooth device nodes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 182/563] arm64: dts: apple: Add ethernet0 alias for J375 template Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 183/563] selftests: always install UAPI headers to the correct directory Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 184/563] smp: Fix up and expand the smp_call_function_many() kerneldoc Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 185/563] mfd: max77705: max77705_charger: move active discharge setting to mfd parent Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 186/563] power: supply: max77705_charger: refactoring: rename charger to chg Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 187/563] power: supply: max77705_charger: use regfields for config registers Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 188/563] power: supply: max77705_charger: rework interrupts Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 189/563] tools/nolibc: make time_t robust if __kernel_old_time_t is missing in host headers Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 190/563] spi: fix return code when spi device has too many chipselects Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 191/563] clocksource/drivers/timer-tegra186: Avoid 64-bit divide operation Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 192/563] clocksource/drivers/tegra186: Avoid 64-bit division Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 193/563] bpf: Mark kfuncs as __noclone Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 194/563] once: fix race by moving DO_ONCE to separate section Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 195/563] hwmon: (mlxreg-fan) Separate methods of fan setting coming from different subsystems Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 196/563] tools/nolibc: add stdbool.h to nolibc includes Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 197/563] thermal/drivers/qcom: Make LMH select QCOM_SCM Greg Kroah-Hartman
2025-10-13 14:40 ` [PATCH 6.17 198/563] thermal/drivers/qcom/lmh: Add missing IRQ includes Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 199/563] i2c: mediatek: fix potential incorrect use of I2C_MASTER_WRRD Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 200/563] i2c: spacemit: ensure bus release check runs when wait_bus_idle() fails Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 201/563] i2c: spacemit: remove stop function to avoid bus error Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 202/563] i2c: spacemit: disable SDA glitch fix to avoid restart delay Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 203/563] i2c: spacemit: check SDA instead of SCL after bus reset Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 204/563] i2c: spacemit: ensure SDA is released " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 205/563] i2c: designware: Fix clock issue when PM is disabled Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 206/563] i2c: designware: Add disabling clocks when probe fails Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 207/563] libbpf: Fix error when st-prefix_ops and ops from differ btf Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 208/563] bpf: Enforce expected_attach_type for tailcall compatibility Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 209/563] i3c: fix big-endian FIFO transfers Greg Kroah-Hartman
2025-10-13 15:36   ` Guntupalli, Manikanta
2025-10-13 17:33     ` Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 210/563] mfd: max77705: Setup the core driver as an interrupt controller Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 211/563] drm/sched: Fix a race in DRM_GPU_SCHED_STAT_NO_HANG test Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 212/563] drm/panel-edp: Add disable to 100ms for MNB601LS1-4 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 213/563] drm/display: bridge-connector: correct CEC bridge pointers in drm_bridge_connector_init Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 214/563] drm/panel-edp: Add 50ms disable delay for four panels Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 215/563] drm/vmwgfx: fix missing assignment to ts Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 216/563] drm/amd/display: Reduce Stack Usage by moving audio_output into stream_res v4 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 217/563] drm/panel: novatek-nt35560: Fix invalid return value Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 218/563] drm/amdgpu: fix link error for !PM_SLEEP Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 219/563] drm/amdgpu: Fix jpeg v4.0.3 poison irq call trace on sriov guest Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 220/563] drm/amdgpu: Fix vcn " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 221/563] PCI: endpoint: pci-ep-msi: Fix NULL vs IS_ERR() check in pci_epf_write_msi_msg() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 222/563] PCI: xgene-msi: Return negative -EINVAL in xgene_msi_handler_setup() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 223/563] drm/radeon/r600_cs: clean up of dead code in r600_cs Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 224/563] f2fs: fix condition in __allow_reserved_blocks() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 225/563] f2fs: fix to avoid overflow while left shift operation Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 226/563] f2fs: fix to zero data after EOF for compressed file correctly Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 227/563] drm/bridge: it6505: select REGMAP_I2C Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 228/563] wifi: rtw88: Lock rtwdev->mutex before setting the LED Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 229/563] HID: steelseries: refactor probe() and remove() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 230/563] drm/amdgpu: fix incorrect vm flags to map bo Greg Kroah-Hartman
2025-10-14  6:04   ` Jiri Slaby
2025-10-15  8:50     ` Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 231/563] media: zoran: Remove zoran_fh structure Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 232/563] phy: rockchip: naneng-combphy: Enable U3 OTG port for RK3568 Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 233/563] drm/bridge: cdns-dsi: Fix the _atomic_check() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 234/563] usb: host: max3421-hcd: Fix error pointer dereference in probe cleanup Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 235/563] usb: misc: qcom_eud: Access EUD_MODE_MANAGER2 through secure calls Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 236/563] PCI/pwrctrl: Fix double cleanup on devm_add_action_or_reset() failure Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 237/563] misc: pci_endpoint_test: Fix array underflow in pci_endpoint_test_ioctl() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 238/563] serial: max310x: Add error checking in probe() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 239/563] drm/amd/display: Remove redundant semicolons Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 240/563] drm/amd/display: Add NULL pointer checks in dc_stream cursor attribute functions Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 241/563] crypto: keembay - Add missing check after sg_nents_for_len() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 242/563] hwrng: nomadik - add ARM_AMBA dependency Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 243/563] docs: iio: ad3552r: Fix malformed code-block directive Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 244/563] fwctl/mlx5: Fix memory alloc/free in mlx5ctl_fw_rpc() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 245/563] scsi: pm80xx: Restore support for expanders Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 246/563] scsi: pm80xx: Fix array-index-out-of-of-bounds on rmmod Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 247/563] scsi: libsas: Add dev_parent_is_expander() helper Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 248/563] scsi: pm80xx: Use " Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 249/563] scsi: pm80xx: Add helper function to get the local phy id Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 250/563] scsi: pm80xx: Fix pm8001_abort_task() for chip_8006 when using an expander Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 251/563] mptcp: Fix up subflows memcg when CONFIG_SOCK_CGROUP_DATA=n Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 252/563] scsi: myrs: Fix dma_alloc_coherent() error check Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 253/563] f2fs: fix to clear unusable_cap for checkpoint=enable Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 254/563] f2fs: fix to avoid NULL pointer dereference in f2fs_check_quota_consistency() Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 255/563] f2fs: fix to allow removing qf_name Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 256/563] drm/dp: drm_edp_backlight_set_level: do not always send 3-byte commands Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 257/563] crypto: octeontx2 - Call strscpy() with correct size argument Greg Kroah-Hartman
2025-10-13 14:41 ` [PATCH 6.17 258/563] drm: re-allow no-op changes on non-primary planes in async flips Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 259/563] media: rj54n1cb0c: Fix memleak in rj54n1_probe() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 260/563] media: staging/ipu7: convert to use pci_alloc_irq_vectors() API Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 261/563] media: staging/ipu7: Dont set name for IPU7 PCI device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 262/563] media: staging/ipu7: cleanup the MMU correctly in IPU7 driver release Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 263/563] media: i2c: vd55g1: Fix duster register address Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 264/563] drm/panel: Allow powering on panel follower after panel is enabled Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 265/563] HID: i2c-hid: Make elan touch controllers power on " Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 266/563] RDMA/mlx5: Better estimate max_qp_wr to reflect WQE count Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 267/563] RDMA/mlx5: Fix vport loopback forcing for MPV device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 268/563] wifi: rtw88: Use led->brightness_set_blocking for PCI too Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 269/563] net: phy: introduce phy_id_compare_vendor() PHY ID helper Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 270/563] net: phy: as21xxx: better handle PHY HW reset on soft-reboot Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 271/563] PCI: rcar-host: Pass proper IRQ domain to generic_handle_domain_irq() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 272/563] fuse: remove unneeded offset assignment when filling write pages Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 273/563] PCI: qcom: Restrict port parsing only to PCIe bridge child nodes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 274/563] cdx: dont select CONFIG_GENERIC_MSI_IRQ Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 275/563] PCI/ACPI: Fix pci_acpi_preserve_config() memory leak Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 276/563] HID: i2c-hid: Fix test in i2c_hid_core_register_panel_follower() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 277/563] ALSA: lx_core: use int type to store negative error codes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 278/563] media: st-delta: avoid excessive stack usage Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 279/563] drm/amdgpu/vcn: Add regdump helper functions Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 280/563] drm/amdgpu/vcn: Hold pg_lock before vcn power off Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 281/563] drm/amdgpu: Check vcn state before profile switch Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 282/563] accel/amdxdna: Use int instead of u32 to store error codes Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 283/563] efi: Explain OVMF acronym in OVMF_DEBUG_LOG help text Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 284/563] net: dst: introduce dst->dev_rcu Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 285/563] ipv6: mcast: Add ip6_mc_find_idev() helper Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 286/563] ipv6: start using dst_dev_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 287/563] ipv6: use RCU in ip6_xmit() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 288/563] ipv6: use RCU in ip6_output() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 289/563] net: use dst_dev_rcu() in sk_setup_caps() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 290/563] tcp_metrics: use dst_dev_net_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 291/563] ipv4: start using dst_dev_rcu() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 292/563] crypto: hisilicon/zip - remove unnecessary validation for high-performance mode configurations Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 293/563] crypto: hisilicon - re-enable address prefetch after device resuming Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 294/563] crypto: hisilicon - check the sva module status while enabling or disabling address prefetch Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 295/563] crypto: hisilicon/qm - check whether the input function and PF are on the same device Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 296/563] crypto: hisilicon/qm - request reserved interrupt for virtual function Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 297/563] inet: ping: check sock_net() in ping_get_port() and ping_lookup() Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 298/563] dmaengine: Fix dma_async_tx_descriptor->tx_submit documentation Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 299/563] coresight: trbe: Add ISB after TRBLIMITR write Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 300/563] coresight: Fix missing include for FIELD_GET Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 301/563] coresight: Only register perf symlink for sinks with alloc_buffer Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 302/563] drm/amdgpu: Power up UVD 3 for FW validation (v2) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 303/563] drm/amd/pm: Disable ULV even if unsupported (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 304/563] drm/amd/pm: Fix si_upload_smc_data (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 305/563] drm/amd/pm: Adjust si_upload_smc_data register programming (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 306/563] drm/amd/pm: Treat zero vblank time as too short in si_dpm (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 307/563] drm/amd/pm: Disable MCLK switching with non-DC at 120 Hz+ (v2) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 308/563] drm/amd/pm: Disable SCLK switching on Oland with high pixel clocks (v3) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 309/563] wifi: mac80211: Make CONNECTION_MONITOR optional for MLO sta Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 310/563] wifi: mwifiex: send world regulatory domain to driver Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 311/563] wifi: brcmfmac: fix 43752 SDIO FWVID incorrectly labelled as Cypress (CYW) Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 312/563] drm/msm: Do not validate SSPP when it is not ready Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 313/563] PCI: tegra: Fix devm_kcalloc() argument order for port->phys allocation Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 314/563] wifi: mac80211: consider links for validating SCAN_FLAG_AP in scan request during MLO Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 315/563] PCI: qcom: Add equalization settings for 8.0 GT/s and 32.0 GT/s Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 316/563] tcp: fix __tcp_close() to only send RST when required Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 317/563] fanotify: Validate the return value of mnt_ns_from_dentry() before dereferencing Greg Kroah-Hartman
2025-10-13 14:42 ` [PATCH 6.17 318/563] drm/amdkfd: Fix error code sign for EINVAL in svm_ioctl() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 319/563] usb: phy: twl6030: Fix incorrect type for ret Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 320/563] usb: gadget: configfs: Correctly set use_os_string at bind Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 321/563] tty: n_gsm: Dont block input queue by waiting MSC Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 322/563] misc: genwqe: Fix incorrect cmd field being reported in error Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 323/563] pps: fix warning in pps_register_cdev when register device fail Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 324/563] drm/msm: Fix obj leak in VM_BIND error path Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 325/563] drm/msm: Fix missing VM_BIND offset/range validation Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 326/563] wifi: iwlwifi: Remove redundant header files Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 327/563] drm/msm/mdp4: stop supporting no-IOMMU configuration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 328/563] drm/msm: " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 329/563] idpf: fix Rx descriptor ready check barrier in splitq Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 330/563] ASoC: Intel: bytcht_es8316: Fix invalid quirk input mapping Greg Kroah-Hartman
2025-10-13 14:43 ` Greg Kroah-Hartman [this message]
2025-10-13 14:43 ` [PATCH 6.17 332/563] ASoC: Intel: bytcr_rt5651: " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 333/563] ipv6: snmp: do not use SNMP_MIB_SENTINEL anymore Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 334/563] ipv6: snmp: do not track per idev ICMP6_MIB_RATELIMITHOST Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 335/563] drm/msm: Fix bootup splat with separate_gpu_drm modparam Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 336/563] drm/msm/dpu: fix incorrect type for ret Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 337/563] wifi: mac80211: fix reporting of all valid links in sta_set_sinfo() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 338/563] fs: ntfs3: Fix integer overflow in run_unpack() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 339/563] fs/ntfs3: reject index allocation if $BITMAP is empty but blocks exist Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 340/563] iio: consumers: Fix handling of negative channel scale in iio_convert_raw_to_processed() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 341/563] iio: consumers: Fix offset handling " Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 342/563] mm/slub: Fix cmp_loc_by_count() to return 0 when counts are equal Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 343/563] tools: ynl: fix undefined variable name Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 344/563] RDMA/mlx5: Fix page size bitmap calculation for KSM mode Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 345/563] netfilter: ipset: Remove unused htable_bits in macro ahash_region Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 346/563] ipvs: Use READ_ONCE/WRITE_ONCE for ipvs->enable Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 347/563] HID: steelseries: Fix STEELSERIES_SRWS1 handling in steelseries_remove() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 348/563] watchdog: intel_oc_wdt: Do not try to write into const memory Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 349/563] watchdog: mpc8xxx_wdt: Reload the watchdog timer when enabling the watchdog Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 350/563] PCI: endpoint: pci-epf-test: Fix doorbell test support Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 351/563] drivers/base/node: handle error properly in register_one_node() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 352/563] RDMA/cm: Rate limit destroy CM ID timeout error message Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 353/563] wifi: mt76: mt7996: Fix mt7996_mcu_sta_ba wcid configuration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 354/563] wifi: mt76: mt7996: Fix mt7996_mcu_bss_mld_tlv routine Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 355/563] wifi: mt76: fix potential memory leak in mt76_wmac_probe() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 356/563] wifi: mt76: mt7996: Use proper link_id in link_sta_rc_update callback Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 357/563] wifi: mt76: mt7996: Check phy before init msta_link in mt7996_mac_sta_add_links() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 358/563] wifi: mt76: mt7996: Fix tx-queues initialization for second phy on mt7996 Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 359/563] wifi: mt76: mt7996: Fix RX packets configuration for primary WED device Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 360/563] wifi: mt76: mt7996: Convert mt7996_wed_rro_addr to LE Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 361/563] wifi: mt76: mt7915: fix mt7981 pre-calibration Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 362/563] wifi: mt76: mt7996: remove redundant per-phy mac80211 calls during restart Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 363/563] ASoC: Intel: hda-sdw-bpt: set persistent_buffer false Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 364/563] srcu/tiny: Remove preempt_disable/enable() in srcu_gp_start_if_needed() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 365/563] drm/amdgpu: Fix allocating extra dwords for rings (v2) Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 366/563] f2fs: fix to update map->m_next_extent correctly in f2fs_map_blocks() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 367/563] f2fs: fix to truncate first page in error path of f2fs_truncate() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 368/563] f2fs: fix to avoid migrating empty section Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 369/563] f2fs: fix to mitigate overhead of f2fs_zero_post_eof_page() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 370/563] RISC-V: KVM: Write hgatp register with valid mode bits Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 371/563] ALSA: pcm: Disable bottom softirqs as part of spin_lock_irq() on PREEMPT_RT Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 372/563] ACPI: NFIT: Fix incorrect ndr_desc being reportedin dev_err message Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 373/563] scsi: qla2xxx: edif: Fix incorrect sign of error code Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 374/563] scsi: qla2xxx: Fix incorrect sign of error code in START_SP_W_RETRIES() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 375/563] scsi: qla2xxx: Fix incorrect sign of error code in qla_nvme_xmt_ls_rsp() Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 376/563] HID: hidraw: tighten ioctl command parsing Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 377/563] f2fs: fix zero-sized extent for precache extents Greg Kroah-Hartman
2025-10-13 14:43 ` [PATCH 6.17 378/563] smc: Fix use-after-free in __pnet_find_base_ndev() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 379/563] smc: Use __sk_dst_get() and dst_dev_rcu() in in smc_clc_prfx_set() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 380/563] smc: Use __sk_dst_get() and dst_dev_rcu() in smc_clc_prfx_match() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 381/563] smc: Use __sk_dst_get() and dst_dev_rcu() in smc_vlan_by_tcpsk() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 382/563] tls: Use __sk_dst_get() and dst_dev_rcu() in get_netdev_for_sock() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 383/563] mptcp: Call dst_release() in mptcp_active_enable() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 384/563] mptcp: Use __sk_dst_get() and dst_dev_rcu() " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 385/563] Revert "usb: xhci: Avoid Stop Endpoint retry loop if the endpoint seems Running" Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 386/563] RDMA/core: Resolve MAC of next-hop device without ARP support Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 387/563] IB/sa: Fix sa_local_svc_timeout_ms read race Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 388/563] Documentation: trace: historgram-design: Separate sched_waking histogram section heading and the following diagram Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 389/563] ASoC: SOF: ipc4-pcm: Fix incorrect comparison with number of tdm_slots Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 390/563] wifi: ath12k: initialize eirp_power before use Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 391/563] wifi: ath12k: fix overflow warning on num_pwr_levels Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 392/563] wifi: ath12k: fix signal in radiotap for WCN7850 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 393/563] wifi: ath12k: fix HAL_PHYRX_COMMON_USER_INFO handling in monitor mode Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 394/563] wifi: ath12k: fix the fetching of combined rssi Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 395/563] wifi: ath12k: Add fallback for invalid channel number in PHY metadata Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 396/563] wifi: ath12k: fix wrong logging ID used for CE Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 397/563] wifi: ath10k: avoid unnecessary wait for service ready message Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 398/563] iommu/vt-d: debugfs: Fix legacy mode page table dump logic Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 399/563] wifi: mac80211: fix Rx packet handling when pubsta information is not available Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 400/563] ASoC: Intel: sof_sdw: Prevent jump to NULL add_sidecar callback Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 401/563] sparc: fix accurate exception reporting in copy_{from_to}_user for UltraSPARC Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 402/563] sparc: fix accurate exception reporting in copy_{from_to}_user for UltraSPARC III Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 403/563] sparc: fix accurate exception reporting in copy_{from_to}_user for Niagara Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 404/563] sparc: fix accurate exception reporting in copy_to_user for Niagara 4 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 405/563] sparc: fix accurate exception reporting in copy_{from,to}_user for M7 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 406/563] vfio/pds: replace bitmap_free with vfree Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 407/563] crypto: comp - Use same definition of context alloc and free ops Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 408/563] crypto: hisilicon/qm - set NULL to qm->debug.qm_diff_regs Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 409/563] wifi: ath12k: Fix peer lookup in ath12k_dp_mon_rx_deliver_msdu() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 410/563] rpmsg: qcom_smd: Fix fallback to qcom,ipc parse Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 411/563] remoteproc: qcom_q6v5_mss: support loading MBN file on msm8974 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 412/563] RDMA/rxe: Fix race in do_task() when draining Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 413/563] selftests/mm: fix va_high_addr_switch.sh failure on x86_64 Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 414/563] wifi: rtw89: fix leak in rtw89_core_send_nullfunc() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 415/563] wifi: rtw89: avoid circular locking dependency in ser_state_run() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 416/563] PCI: tegra194: Fix duplicate PLL disable in pex_ep_event_pex_rst_assert() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 417/563] remoteproc: qcom: q6v5: Avoid disabling handover IRQ twice Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 418/563] remoteproc: qcom: pas: Shutdown lite ADSP DTB on X1E Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 419/563] wifi: ath12k: Refactor RX TID deletion handling into helper function Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 420/563] wifi: ath12k: Fix flush cache failure during RX queue update Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 421/563] wifi: cfg80211: fix width unit in cfg80211_radio_chandef_valid() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 422/563] dm vdo: return error on corrupted metadata in start_restoring_volume functions Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 423/563] coresight: fix indentation error in cscfg_remove_owned_csdev_configs() Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 424/563] coresight-etm4x: Conditionally access register TRCEXTINSELR Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 425/563] coresight: tmc: Support atclk Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 426/563] coresight: catu: " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 427/563] coresight: etm4x: " Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 428/563] coresight: Appropriately disable programming clocks Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 429/563] coresight: Appropriately disable trace bus clocks Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 430/563] coresight: Avoid enable programming clock duplicately Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 431/563] coresight: trbe: Return NULL pointer for allocation failures Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 432/563] coresight: tpda: fix the logic to setup the element size Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 433/563] coresight: Fix incorrect handling for return value of devm_kzalloc Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 434/563] NFSv4.1: fix backchannel max_resp_sz verification check Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 435/563] net: ethtool: tsconfig: set command must provide a reply Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 436/563] ipvs: Defer ip_vs_ftp unregister during netns cleanup Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 437/563] netfilter: nfnetlink: reset nlh pointer during batch replay Greg Kroah-Hartman
2025-10-13 14:44 ` [PATCH 6.17 438/563] netfilter: nf_conntrack: do not skip entries in /proc/net/nf_conntrack Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 439/563] scsi: ufs: core: Fix data race in CPU latency PM QoS request handling Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 440/563] scsi: mpt3sas: Fix crash in transport port remove by using ioc_info() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 441/563] usb: vhci-hcd: Prevent suspending virtually attached devices Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 442/563] PCI: rcar-gen4: Add missing 1ms delay after PWR reset assertion Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 443/563] PCI: rcar-gen4: Assure reset occurs before DBI access Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 444/563] PCI: rcar-gen4: Fix inverted break condition in PHY initialization Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 445/563] ASoC: qcom: sc8280xp: use sa8775p/ subdir for QCS9100 / QCS9075 Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 446/563] iommu/vt-d: Disallow dirty tracking if incoherent page walk Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 447/563] iommu/selftest: prevent use of uninitialized variable Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 448/563] RDMA/siw: Always report immediate post SQ errors Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 449/563] net: enetc: Fix probing error message typo for the ENETCv4 PF driver Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 450/563] net: usb: Remove disruptive netif_wake_queue in rtl8150_set_multicast Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 451/563] ptp: Add a upper bound on max_vclocks Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 452/563] vhost: vringh: Fix copy_to_iter return value check Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 453/563] net: macb: remove illusion about TBQPH/RBQPH being per-queue Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 454/563] net: macb: move ring size computation to functions Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 455/563] net: macb: single dma_alloc_coherent() for DMA descriptors Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 456/563] Bluetooth: btintel_pcie: Refactor Device Coredump Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 457/563] Bluetooth: MGMT: Fix not exposing debug UUID on MGMT_OP_READ_EXP_FEATURES_INFO Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 458/563] Bluetooth: ISO: Fix possible UAF on iso_conn_free Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 459/563] Bluetooth: ISO: free rx_skb if not consumed Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 460/563] Bluetooth: ISO: dont leak skb in ISO_CONT RX Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 461/563] Bluetooth: hci_sync: Fix using random address for BIG/PA advertisements Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 462/563] KEYS: X.509: Fix Basic Constraints CA flag parsing Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 463/563] hwrng: ks-sa - fix division by zero in ks_sa_rng_init Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 464/563] cramfs: fix incorrect physical page address calculation Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 465/563] ocfs2: fix double free in user_cluster_connect() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 466/563] drivers/base/node: fix double free in register_one_node() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 467/563] f2fs: fix UAF issue in f2fs_merge_page_bio() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 468/563] mtd: rawnand: atmel: Fix error handling path in atmel_nand_controller_add_nands Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 469/563] PCI: j721e: Fix incorrect error message in probe() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 470/563] idpf: fix mismatched free function for dma_alloc_coherent Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 471/563] tcp: use skb->len instead of skb->truesize in tcp_can_ingest() Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 472/563] nfp: fix RSS hash key size when RSS is not supported Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 473/563] net: ena: return 0 in ena_get_rxfh_key_size() when RSS hash key is not configurable Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 474/563] net: dlink: handle copy_thresh allocation failure Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 475/563] net/mlx5: Stop polling for command response if interface goes down Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 476/563] net/mlx5: pagealloc: Fix reclaim race during command interface teardown Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 477/563] net/mlx5: fw reset, add reset timeout work Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 478/563] smb: client: fix crypto buffers in non-linear memory Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 479/563] bonding: fix xfrm offload feature setup on active-backup mode Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 480/563] net: enetc: initialize SW PIR and CIR based HW PIR and CIR values Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 481/563] iommufd: Register iommufd mock devices with fwspec Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 482/563] Revert "net/mlx5e: Update and set Xon/Xoff upon MTU set" Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 483/563] NFSD: filecache: add STATX_DIOALIGN and STATX_DIO_READ_ALIGN support Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 484/563] nfs/localio: avoid issuing misaligned IO using O_DIRECT Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 485/563] octeontx2-vf: fix bitmap leak Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 486/563] octeontx2-pf: " Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 487/563] vhost: vringh: Modify the return value check Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 488/563] selftests/bpf: Fix typos and grammar in test sources Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 489/563] selftests/bpf: move get_ksyms and get_addrs to trace_helpers.c Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 490/563] selftests/bpf: Fix realloc size in bpf_get_addrs Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 491/563] bpf: Skip scalar adjustment for BPF_NEG if dst is a pointer Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 492/563] bpf: Reject negative offsets for ALU ops Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 493/563] tpm: Disable TPM2_TCG_HMAC by default Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 494/563] ALSA: hda/hdmi: Add pin fix for HP ProDesk model Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 495/563] ALSA: hda/realtek: Add quirk for HP Spectre 14t-ea100 Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 496/563] Squashfs: fix uninit-value in squashfs_get_parent Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 497/563] uio_hv_generic: Let userspace take care of interrupt mask Greg Kroah-Hartman
2025-10-13 14:45 ` [PATCH 6.17 498/563] hisi_acc_vfio_pci: Fix reference leak in hisi_acc_vfio_debug_init Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 499/563] io_uring/waitid: always prune wait queue entry in io_waitid_wait() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 500/563] io_uring/zcrx: fix overshooting recv limit Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 501/563] ASoC: wcd934x: fix error handling in wcd934x_codec_parse_data() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 502/563] ASoC: SOF: ipc3-topology: Fix multi-core and static pipelines tear down Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 503/563] ASoC: codecs: wcd937x: set the comp soundwire port correctly Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 504/563] ASoC: codecs: wcd937x: make stub functions inline Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 505/563] ASoC: SOF: ipc4-pcm: fix delay calculation when DSP resamples Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 506/563] ASoC: SOF: ipc4-pcm: fix start offset calculation for chain DMA Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 507/563] fs: udf: fix OOB read in lengthAllocDescs handling Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 508/563] net: nfc: nci: Add parameter validation for packet data Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 509/563] mfd: rz-mtu3: Fix MTU5 NFCR register offset Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 510/563] mfd: intel_soc_pmic_chtdc_ti: Set use_single_read regmap_config flag Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 511/563] mfd: vexpress-sysreg: Check the return value of devm_gpiochip_add_data() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 512/563] tracing: Fix lock imbalance in s_start() memory allocation failure path Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 513/563] tracing: Fix race condition in kprobe initialization causing NULL pointer dereference Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 514/563] tracing: Fix wakeup tracers on failure of acquiring calltime Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 515/563] tracing: Fix irqoff " Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 516/563] tracing: Have trace_marker use per-cpu data to read user space Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 517/563] tracing: Fix tracing_mark_raw_write() to use buf and not ubuf Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 518/563] tracing: Stop fortify-string from warning in tracing_mark_raw_write() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 519/563] dm: fix queue start/stop imbalance under suspend/load/resume races Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 520/563] dm: fix NULL pointer dereference in __dm_suspend() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 521/563] LoongArch: Automatically disable kaslr if boot from kexec_file Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 522/563] pwm: loongson: Fix LOONGSON_PWM_FREQ_DEFAULT Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 523/563] LoongArch: BPF: Sign-extend struct ops return values properly Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 524/563] LoongArch: BPF: No support of struct argument in trampoline programs Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 525/563] LoongArch: BPF: Dont align trampoline size Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 526/563] LoongArch: BPF: Make trampoline size stable Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 527/563] LoongArch: BPF: Make error handling robust in arch_prepare_bpf_trampoline() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 528/563] LoongArch: BPF: Remove duplicated bpf_flush_icache() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 529/563] LoongArch: BPF: No text_poke() for kernel text Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 530/563] LoongArch: BPF: Remove duplicated flags check Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 531/563] LoongArch: BPF: Fix uninitialized symbol retval_off Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 532/563] mm/ksm: fix flag-dropping behavior in ksm_madvise Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 533/563] ksmbd: Fix race condition in RPC handle list access Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 534/563] ksmbd: fix error code overwriting in smb2_get_info_filesystem() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 535/563] ksmbd: add max ip connections parameter Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 536/563] ext4: fix potential null deref in ext4_mb_init() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 537/563] ext4: fix checks for orphan inodes Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 538/563] KVM: SVM: Skip fastpath emulation on VM-Exit if next RIP isnt valid Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 539/563] fbdev: simplefb: Fix use after free in simplefb_detach_genpds() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 540/563] mm: hugetlb: avoid soft lockup when mprotect to large memory area Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 541/563] selftests/mm: skip soft-dirty tests when CONFIG_MEM_SOFT_DIRTY is disabled Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 542/563] nvdimm: ndtest: Return -ENOMEM if devm_kcalloc() fails in ndtest_probe() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 543/563] misc: fastrpc: Save actual DMA size in fastrpc_map structure Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 544/563] misc: fastrpc: Fix fastrpc_map_lookup operation Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 545/563] misc: fastrpc: fix possible map leak in fastrpc_put_args Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 546/563] misc: fastrpc: Skip reference for DMA handles Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 547/563] Input: atmel_mxt_ts - allow reset GPIO to sleep Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 548/563] Input: uinput - zero-initialize uinput_ff_upload_compat to avoid info leak Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 549/563] sunrpc: fix null pointer dereference on zero-length checksum Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 550/563] PCI/AER: Avoid NULL pointer dereference in aer_ratelimit() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 551/563] remoteproc: pru: Fix potential NULL pointer dereference in pru_rproc_set_ctable() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 552/563] PCI: endpoint: pci-epf-test: Add NULL check for DMA channels before release Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 553/563] thunderbolt: Fix use-after-free in tb_dp_dprx_work Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 554/563] tee: fix register_shm_helper() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 555/563] pinctrl: check the return value of pinmux_ops::get_function_name() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 556/563] bus: fsl-mc: Check return value of platform_get_resource() Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 557/563] net/9p: Fix buffer overflow in USB transport layer Greg Kroah-Hartman
2025-10-13 14:46 ` [PATCH 6.17 558/563] net: usb: asix: hold PM usage ref to avoid PM/MDIO + RTNL deadlock Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 559/563] usb: typec: tipd: Clear interrupts first Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 560/563] arm64: dts: qcom: qcm2290: Disable USB SS bus instances in park mode Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 561/563] usb: cdns3: cdnsp-pci: remove redundant pci_disable_device() call Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 562/563] scsi: ufs: core: Fix PM QoS mutex initialization Greg Kroah-Hartman
2025-10-13 14:47 ` [PATCH 6.17 563/563] drm/amdgpu/vcn: Fix double-free of vcn dump buffer Greg Kroah-Hartman
2025-10-13 16:09 ` [PATCH 6.17 000/563] 6.17.3-rc1 review Ronald Warsow
2025-10-13 17:05 ` Brett A C Sheffield
2025-10-13 17:09 ` Florian Fainelli
2025-10-14  3:18 ` Peter Schneider
2025-10-14  3:40 ` Takeshi Ogasawara
2025-10-14  7:58 ` Naresh Kamboju
2025-10-14  8:13 ` Pascal Ernster
2025-10-14  9:47 ` Dileep malepu
2025-10-14 10:43 ` Ron Economos
2025-10-14 13:09 ` Jon Hunter
2025-10-14 16:58 ` Shuah Khan
2025-10-14 18:15 ` Miguel Ojeda
2025-10-14 22:19 ` Justin Forbes
2025-10-17 18:03 ` Guenter Roeck
2025-10-22 13:08   ` Nathan Chancellor
2025-10-23 15:37     ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20251013144423.253534693@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=broonie@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.de \
    /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).