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, Aric Cyr <aric.cyr@amd.com>,
	Karthi Kandasamy <karthi.kandasamy@amd.com>,
	Ivan Lipski <ivan.lipski@amd.com>,
	Dan Wheeler <daniel.wheeler@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 413/565] drm/amd/display: Add AVI infoframe copy in copy_stream_update_to_stream
Date: Tue, 11 Nov 2025 09:44:29 +0900	[thread overview]
Message-ID: <20251111004536.158044109@linuxfoundation.org> (raw)
In-Reply-To: <20251111004526.816196597@linuxfoundation.org>

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

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

From: Karthi Kandasamy <karthi.kandasamy@amd.com>

[ Upstream commit c8bedab2d9a1a0daa49ac20f9928a943f7205582 ]

[WHY]
Ensure AVI infoframe updates from stream updates are applied to the active
stream so OS overrides are not lost.

[HOW]
Copy avi_infopacket to stream when valid flag is set.
Follow existing infopacket copy pattern and perform a basic validity check before assignment.

Reviewed-by: Aric Cyr <aric.cyr@amd.com>
Signed-off-by: Karthi Kandasamy <karthi.kandasamy@amd.com>
Signed-off-by: Ivan Lipski <ivan.lipski@amd.com>
Tested-by: Dan Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c          | 7 ++++++-
 drivers/gpu/drm/amd/display/dc/core/dc_resource.c | 6 ++++++
 drivers/gpu/drm/amd/display/dc/dc_stream.h        | 3 +++
 3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 426912d82179c..257d77aa7c979 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -3035,6 +3035,9 @@ static void copy_stream_update_to_stream(struct dc *dc,
 	if (update->adaptive_sync_infopacket)
 		stream->adaptive_sync_infopacket = *update->adaptive_sync_infopacket;
 
+	if (update->avi_infopacket)
+		stream->avi_infopacket = *update->avi_infopacket;
+
 	if (update->dither_option)
 		stream->dither_option = *update->dither_option;
 
@@ -3325,7 +3328,8 @@ static void commit_planes_do_stream_update(struct dc *dc,
 					stream_update->vsp_infopacket ||
 					stream_update->hfvsif_infopacket ||
 					stream_update->adaptive_sync_infopacket ||
-					stream_update->vtem_infopacket) {
+					stream_update->vtem_infopacket ||
+					stream_update->avi_infopacket) {
 				resource_build_info_frame(pipe_ctx);
 				dc->hwss.update_info_frame(pipe_ctx);
 
@@ -4759,6 +4763,7 @@ static bool full_update_required(struct dc *dc,
 			stream_update->hfvsif_infopacket ||
 			stream_update->vtem_infopacket ||
 			stream_update->adaptive_sync_infopacket ||
+			stream_update->avi_infopacket ||
 			stream_update->dpms_off ||
 			stream_update->allow_freesync ||
 			stream_update->vrr_active_variable ||
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
index 36f8eb37e6710..07473e9604277 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_resource.c
@@ -4156,8 +4156,14 @@ static void set_avi_info_frame(
 	unsigned int fr_ind = pipe_ctx->stream->timing.fr_index;
 	enum dc_timing_3d_format format;
 
+	if (stream->avi_infopacket.valid) {
+		*info_packet = stream->avi_infopacket;
+		return;
+	}
+
 	memset(&hdmi_info, 0, sizeof(union hdmi_info_packet));
 
+
 	color_space = pipe_ctx->stream->output_color_space;
 	if (color_space == COLOR_SPACE_UNKNOWN)
 		color_space = (stream->timing.pixel_encoding == PIXEL_ENCODING_RGB) ?
diff --git a/drivers/gpu/drm/amd/display/dc/dc_stream.h b/drivers/gpu/drm/amd/display/dc/dc_stream.h
index 8b9af1a6a0316..1ecf956a71020 100644
--- a/drivers/gpu/drm/amd/display/dc/dc_stream.h
+++ b/drivers/gpu/drm/amd/display/dc/dc_stream.h
@@ -200,6 +200,7 @@ struct dc_stream_state {
 	struct dc_info_packet hfvsif_infopacket;
 	struct dc_info_packet vtem_infopacket;
 	struct dc_info_packet adaptive_sync_infopacket;
+	struct dc_info_packet avi_infopacket;
 	uint8_t dsc_packed_pps[128];
 	struct rect src; /* composition area */
 	struct rect dst; /* stream addressable area */
@@ -331,6 +332,8 @@ struct dc_stream_update {
 	struct dc_info_packet *hfvsif_infopacket;
 	struct dc_info_packet *vtem_infopacket;
 	struct dc_info_packet *adaptive_sync_infopacket;
+	struct dc_info_packet *avi_infopacket;
+
 	bool *dpms_off;
 	bool integer_scaling_update;
 	bool *allow_freesync;
-- 
2.51.0




  parent reply	other threads:[~2025-11-11  1:23 UTC|newest]

Thread overview: 575+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-11  0:37 [PATCH 6.12 000/565] 6.12.58-rc1 review Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 001/565] NFSD: Fix crash in nfsd4_read_release() Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 002/565] net: usb: asix_devices: Check return value of usbnet_get_endpoints Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 003/565] fbcon: Set fb_display[i]->mode to NULL when the mode is released Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 004/565] fbdev: atyfb: Check if pll_ops->init_pll failed Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 005/565] ACPI: video: Fix use-after-free in acpi_video_switch_brightness() Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 006/565] ACPI: button: Call input_free_device() on failing input device registration Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 007/565] virtio-net: drop the multi-buffer XDP packet in zerocopy Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 008/565] fbdev: bitblit: bound-check glyph index in bit_putcs* Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 009/565] Bluetooth: rfcomm: fix modem control handling Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 010/565] wifi: brcmfmac: fix crash while sending Action Frames in standalone AP Mode Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 011/565] fbdev: pvr2fb: Fix leftover reference to ONCHIP_NR_DMA_CHANNELS Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 012/565] fbdev: valkyriefb: Fix reference count leak in valkyriefb_init Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 013/565] mptcp: drop bogus optimization in __mptcp_check_push() Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 014/565] mptcp: restore window probe Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 015/565] ASoC: qdsp6: q6asm: do not sleep while atomic Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 016/565] s390/pci: Restore IRQ unconditionally for the zPCI device Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 017/565] smb: client: fix potential cfid UAF in smb2_query_info_compound Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 018/565] x86/fpu: Ensure XFD state on signal delivery Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 019/565] wifi: ath10k: Fix memory leak on unsupported WMI command Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 020/565] wifi: ath11k: Add missing platform IDs for quirk table Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 021/565] wifi: ath12k: free skb during idr cleanup callback Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 022/565] wifi: ath11k: add support for MU EDCA Greg Kroah-Hartman
2025-11-11  0:37 ` [PATCH 6.12 023/565] wifi: ath11k: avoid bit operation on key flags Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 024/565] drm/msm/a6xx: Fix GMU firmware parser Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 025/565] ALSA: usb-audio: fix control pipe direction Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 026/565] ASoC: cs-amp-lib-test: Fix missing include of kunit/test-bug.h Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 027/565] wifi: mac80211: dont mark keys for inactive links as uploaded Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 028/565] wifi: mac80211: fix key tailroom accounting leak Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 029/565] kunit: test_dev_action: Correctly cast priv pointer to long* Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 030/565] bpf: Sync pending IRQ work before freeing ring buffer Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 031/565] scsi: ufs: core: Initialize value of an attribute returned by uic cmd Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 032/565] bpf: Find eligible subprogs for private stack support Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 033/565] bpf, x86: Avoid repeated usage of bpf_prog->aux->stack_depth Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 034/565] bpf: Do not audit capability check in do_jit() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 035/565] crypto: aspeed - fix double free caused by devm Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 036/565] ASoC: Intel: avs: Unprepare a stream when XRUN occurs Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 037/565] ASoC: Intel: avs: Disable periods-elapsed work when closing PCM Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 038/565] ASoC: fsl_sai: fix bit order for DSD format Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 039/565] libbpf: Fix powerpcs stack register definition in bpf_tracing.h Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 040/565] usbnet: Prevents free active kevent Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 041/565] Bluetooth: hci_sync: fix race in hci_cmd_sync_dequeue_once Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 042/565] Bluetooth: ISO: Update hci_conn_hash_lookup_big for Broadcast slave Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 043/565] Bluetooth: ISO: Fix BIS connection dst_type handling Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 044/565] Bluetooth: btmtksdio: Add pmctrl handling for BT closed state during reset Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 045/565] Bluetooth: HCI: Fix tracking of advertisement set/instance 0x00 Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 046/565] Bluetooth: ISO: Fix another instance of dst_type handling Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 047/565] Bluetooth: hci_core: Fix tracking of periodic advertisement Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 048/565] drm/etnaviv: fix flush sequence logic Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 049/565] tools: ynl: fix string attribute length to include null terminator Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 050/565] net: hns3: return error code when function fails Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 051/565] sfc: fix potential memory leak in efx_mae_process_mport() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 052/565] dpll: spec: add missing module-name and clock-id to pin-get reply Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 053/565] ASoC: fsl_sai: Fix sync error in consumer mode Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 054/565] drm/radeon: Do not kfree() devres managed rdev Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 055/565] drm/radeon: Remove calls to drm_put_dev() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 056/565] drm/amd/pm: fix smu table id bound check issue in smu_cmn_update_table() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 057/565] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Fiji Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 058/565] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Iceland Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 059/565] ACPI: fan: Use ACPI handle when retrieving _FST Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 060/565] block: fix op_is_zone_mgmt() to handle REQ_OP_ZONE_RESET_ALL Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 061/565] block: make REQ_OP_ZONE_OPEN a write operation Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 062/565] perf/x86/intel: Fix KASAN global-out-of-bounds warning Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 063/565] regmap: slimbus: fix bus_context pointer in regmap init calls Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 064/565] s390/mm: Fix memory leak in add_marker() when kvrealloc() fails Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 065/565] drm/xe: Do not wake device during a GT reset Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 066/565] drm/sysfb: Do not dereference NULL pointer in plane reset Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 067/565] drm/sched: avoid killing parent entity on child SIGKILL Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 068/565] drm/nouveau: Fix race in nouveau_sched_fini() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 069/565] drm/mediatek: Fix device use-after-free on unbind Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 070/565] drm/ast: Clear preserved bits from register output value Greg Kroah-Hartman
2025-11-11 15:36   ` Peter Schneider
2025-11-11  0:38 ` [PATCH 6.12 071/565] drm/amd: Check that VPE has reached DPM0 in idle handler Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 072/565] drm/amd/display: Fix incorrect return of vblank enable on unconfigured crtc Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 073/565] ACPI: fan: Add fan speed reporting for fans with only _FST Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 074/565] ACPI: fan: Use platform device for devres-related actions Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 075/565] net: phy: add phy_disable_eee Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 076/565] net: phy: dp83867: Disable EEE support as not implemented Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 077/565] sched_ext: Mark scx_bpf_dsq_move_set_[slice|vtime]() with KF_RCU Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 078/565] cpuidle: governors: menu: Rearrange main loop in menu_select() Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 079/565] cpuidle: governors: menu: Select polling state in some more cases Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 080/565] mfd: kempld: Switch back to earlier ->init() behavior Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 081/565] x86/CPU/AMD: Add RDSEED fix for Zen5 Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 082/565] usb: gadget: f_fs: Fix epfile null pointer access after ep enable Greg Kroah-Hartman
2025-11-11  0:38 ` [PATCH 6.12 083/565] drm/sched: Optimise drm_sched_entity_push_job Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 084/565] drm/sched: Re-group and rename the entity run-queue lock Greg Kroah-Hartman
2025-11-11 14:30   ` Philipp Stanner
2025-11-12  0:59     ` Greg Kroah-Hartman
2025-11-12 12:26       ` Philipp Stanner
2025-11-11  0:39 ` [PATCH 6.12 085/565] drm/sched: Fix race in drm_sched_entity_select_rq() Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 086/565] s390/pci: Avoid deadlock between PCI error recovery and mlx5 crdump Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 087/565] s390: Disable ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 088/565] soc: aspeed: socinfo: Add AST27xx silicon IDs Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 089/565] firmware: qcom: scm: preserve assign_mem() error return value Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 090/565] soc: qcom: smem: Fix endian-unaware access of num_entries Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 091/565] spi: loopback-test: Dont use %pK through printk Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 092/565] soc: ti: pruss: dont " Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 093/565] bpf: Dont " Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 094/565] pinctrl: single: fix bias pull up/down handling in pin_config_set Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 095/565] mmc: host: renesas_sdhi: Fix the actual clock Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 096/565] memstick: Add timeout to prevent indefinite waiting Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 097/565] cpufreq: ti: Add support for AM62D2 Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 098/565] bpf: Use tnums for JEQ/JNE is_branch_taken logic Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 099/565] firewire: ohci: move self_id_complete tracepoint after validating register Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 100/565] irqchip/sifive-plic: Respect mask state when setting affinity Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 101/565] io_uring/zctx: check chained notif contexts Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 102/565] ACPI: sysfs: Use ACPI_FREE() for freeing an ACPI object Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 103/565] ACPI: video: force native for Lenovo 82K8 Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 104/565] libbpf: Fix USDT SIB argument handling causing unrecognized register error Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 105/565] selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2 Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 106/565] cpufreq/longhaul: handle NULL policy in longhaul_exit Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 107/565] arc: Fix __fls() const-foldability via __builtin_clzl() Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 108/565] bpftool: Add CET-aware symbol matching for x86_64 architectures Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 109/565] selftests/bpf: Upon failures, exit with code 1 in test_xsk.sh Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 110/565] irqchip/gic-v2m: Handle Multiple MSI base IRQ Alignment Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 111/565] ACPI: PRM: Skip handlers with NULL handler_address or NULL VA Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 112/565] ACPI: resource: Skip IRQ override on ASUS Vivobook Pro N6506CU Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 113/565] ACPI: scan: Add Intel CVS ACPI HIDs to acpi_ignore_dep_ids[] Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 114/565] thermal: gov_step_wise: Allow cooling level to be reduced earlier Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 115/565] thermal: intel: selftests: workload_hint: Mask unsupported types Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 116/565] power: supply: qcom_battmgr: add OOI chemistry Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 117/565] hwmon: (k10temp) Add thermal support for AMD Family 1Ah-based models Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 118/565] hwmon: (k10temp) Add device ID for Strix Halo Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 119/565] hwmon: (lenovo-ec-sensors) Update P8 supprt Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 120/565] hwmon: (sbtsi_temp) AMD CPU extended temperature range support Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 121/565] pinctrl: keembay: release allocated memory in detach path Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 122/565] power: supply: sbs-charger: Support multiple devices Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 123/565] hwmon: sy7636a: add alias Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 124/565] irqchip/loongson-pch-lpc: Use legacy domain for PCH-LPC IRQ controller Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 125/565] cpufreq: ondemand: Update the efficient idle check for Intel extended Families Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 126/565] arm64: zynqmp: Disable coresight by default Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 127/565] arm64: zynqmp: Revert usb node drive strength and slew rate for zcu106 Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 128/565] soc/tegra: fuse: Add Tegra114 nvmem cells and fuse lookups Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 129/565] ARM: tegra: p880: set correct touchscreen clipping Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 130/565] ARM: tegra: transformer-20: add missing magnetometer interrupt Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 131/565] ARM: tegra: transformer-20: fix audio-codec interrupt Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 132/565] firmware: qcom: tzmem: disable sc7180 platform Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 133/565] mmc: sdhci-msm: Enable tuning for SDR50 mode for SD card Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 134/565] pwm: pca9685: Use bulk write to atomicially update registers Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 135/565] ACPICA: dispatcher: Use acpi_ds_clear_operands() in acpi_ds_call_control_method() Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 136/565] tee: allow a driver to allocate a tee_device without a pool Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 137/565] nvmet-fc: avoid scheduling association deletion twice Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 138/565] nvme-fc: use lock accessing port_state and rport state Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 139/565] bpf: Do not limit bpf_cgroup_from_id to currents namespace Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 140/565] i3c: mipi-i3c-hci-pci: Add support for Intel Wildcat Lake-U I3C Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 141/565] video: backlight: lp855x_bl: Set correct EPROM start for LP8556 Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 142/565] tools/cpupower: fix error return value in cpupower_write_sysfs() Greg Kroah-Hartman
2025-11-11  0:39 ` [PATCH 6.12 143/565] pmdomain: apple: Add "apple,t8103-pmgr-pwrstate" Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 144/565] power: supply: qcom_battmgr: handle charging state change notifications Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 145/565] bpftool: Fix -Wuninitialized-const-pointer warnings with clang >= 21 Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 146/565] cpuidle: Fail cpuidle device registration if there is one already Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 147/565] futex: Dont leak robust_list pointer on exec race Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 148/565] selftests/bpf: Fix selftest verifier_arena_large failure Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 149/565] spi: rpc-if: Add resume support for RZ/G3E Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 150/565] ACPI: SPCR: Support Precise Baud Rate field Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 151/565] clocksource/drivers/vf-pit: Replace raw_readl/writel to readl/writel Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 152/565] clocksource/drivers/timer-rtl-otto: Work around dying timers Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 153/565] clocksource/drivers/timer-rtl-otto: Do not interfere with interrupts Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 154/565] blk-cgroup: fix possible deadlock while configuring policy Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 155/565] riscv: bpf: Fix uninitialized symbol retval_off Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 156/565] bpf: Clear pfmemalloc flag when freeing all fragments Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 157/565] nvme: Use non zero KATO for persistent discovery connections Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 158/565] uprobe: Do not emulate/sstep original instruction when ip is changed Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 159/565] hwmon: (asus-ec-sensors) increase timeout for locking ACPI mutex Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 160/565] hwmon: (dell-smm) Remove Dell Precision 490 custom config data Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 161/565] tools/cpupower: Fix incorrect size in cpuidle_state_disable() Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 162/565] selftests/bpf: Fix flaky bpf_cookie selftest Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 163/565] tools/power x86_energy_perf_policy: Fix incorrect fopen mode usage Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 164/565] tools/power x86_energy_perf_policy: Enhance HWP enable Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 165/565] tools/power x86_energy_perf_policy: Prefer driver HWP limits Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 166/565] mfd: stmpe: Remove IRQ domain upon removal Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 167/565] mfd: stmpe-i2c: Add missing MODULE_LICENSE Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 168/565] mfd: madera: Work around false-positive -Wininitialized warning Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 169/565] mfd: da9063: Split chip variant reading in two bus transactions Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 170/565] mfd: core: Increment of_nodes refcount before linking it to the platform device Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 171/565] mfd: intel-lpss: Add Intel Wildcat Lake LPSS PCI IDs Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 172/565] drm/amd/display: fix condition for setting timing_adjust_pending Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 173/565] drm/amd/display: ensure committing streams is seamless Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 174/565] drm/amdgpu: add range check for RAS bad page address Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 175/565] drm/amdgpu: Check vcn sram load return value Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 176/565] drm/amd/display: Move setup_stream_attribute Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 177/565] drm/amd/display: Increase AUX Intra-Hop Done Max Wait Duration Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 178/565] drm/xe/guc: Add more GuC load error status codes Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 179/565] drm/xe: Fix oops in xe_gem_fault when running core_hotunplug test Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 180/565] drm/amdgpu: Avoid rma causes GPU duplicate reset Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 181/565] drm/amd/amdgpu: Release xcp drm memory after unplug Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 182/565] drm/amdgpu: Skip poison aca bank from UE channel Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 183/565] drm/amd/display: add more cyan skillfish devices Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 184/565] drm/amd/display: update dpp/disp clock from smu clock table Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 185/565] drm/amd/pm: Use cached metrics data on aldebaran Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 186/565] drm/amd/pm: Use cached metrics data on arcturus Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 187/565] drm/amdgpu/jpeg: Hold pg_lock before jpeg poweroff Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 188/565] drm/nouveau: replace snprintf() with scnprintf() in nvkm_snprintbf() Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 189/565] ASoC: mediatek: Use SND_JACK_AVOUT for HDMI/DP jacks Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 190/565] drm/amd/display: Reset apply_eamless_boot_optimization when dpms_off Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 191/565] drm/amd/display: Wait until OTG enable state is cleared Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 192/565] PCI: Disable MSI on RDC PCI to PCIe bridges Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 193/565] selftests/net: Replace non-standard __WORDSIZE with sizeof(long) * 8 Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 194/565] selftests/net: Ensure assert() triggers in psock_tpacket.c Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 195/565] wifi: rtw89: print just once for unknown C2H events Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 196/565] wifi: rtw88: sdio: use indirect IO for device registers before power-on Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 197/565] drm/amdkfd: return -ENOTTY for unsupported IOCTLs Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 198/565] media: pci: ivtv: Dont create fake v4l2_fh Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 199/565] media: amphion: Delete v4l2_fh synchronously in .release() Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 200/565] drm/tidss: Use the crtc_* timings when programming the HW Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 201/565] drm/bridge: cdns-dsi: Fix REG_WAKEUP_TIME value Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 202/565] drm/bridge: cdns-dsi: Dont fail on MIPI_DSI_MODE_VIDEO_BURST Greg Kroah-Hartman
2025-11-11  0:40 ` [PATCH 6.12 203/565] drm/tidss: Set crtc modesetting parameters with adjusted mode Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 204/565] media: i2c: Kconfig: Ensure a dependency on HAVE_CLK for VIDEO_CAMERA_SENSOR Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 205/565] PCI/ERR: Update device error_state already after reset Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 206/565] x86/vsyscall: Do not require X86_PF_INSTR to emulate vsyscall Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 207/565] net: stmmac: Check stmmac_hw_setup() in stmmac_resume() Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 208/565] ice: Dont use %pK through printk or tracepoints Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 209/565] thunderbolt: Use is_pciehp instead of is_hotplug_bridge Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 210/565] tty: serial: ip22zilog: Use platform device for probing Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 211/565] powerpc/eeh: Use result of error_detected() in uevent Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 212/565] s390/pci: Use pci_uevent_ers() in PCI recovery Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 213/565] bridge: Redirect to backup port when port is administratively down Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 214/565] scsi: ufs: host: mediatek: Fix auto-hibern8 timer configuration Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 215/565] scsi: ufs: host: mediatek: Fix PWM mode switch issue Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 216/565] scsi: ufs: host: mediatek: Assign power mode userdata before FASTAUTO mode change Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 217/565] scsi: ufs: host: mediatek: Change reset sequence for improved stability Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 218/565] scsi: ufs: host: mediatek: Fix invalid access in vccqx handling Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 219/565] net: ipv6: fix field-spanning memcpy warning in AH output Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 220/565] media: imon: make send_packet() more robust Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 221/565] drm/panthor: Serialize GPU cache flush operations Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 222/565] HID: pidff: Use direction fix only for conditional effects Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 223/565] HID: pidff: PERMISSIVE_CONTROL quirk autodetection Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 224/565] drm/bridge: display-connector: dont set OP_DETECT for DisplayPorts Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 225/565] drm/amdgpu: fix nullptr err of vm_handle_moved Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 226/565] drm/amdkfd: Handle lack of READ permissions in SVM mapping Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 227/565] iio: adc: spear_adc: mask SPEAR_ADC_STATUS channel and avg sample before setting register Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 228/565] iio: adc: imx93_adc: load calibrated values even calibration failed Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 229/565] usb: gadget: f_ncm: Fix MAC assignment NCM ethernet Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 230/565] wifi: rtw89: wow: remove notify during WoWLAN net-detect Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 231/565] wifi: rtw89: fix BSSID comparison for non-transmitted BSSID Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 232/565] dm error: mark as DM_TARGET_PASSES_INTEGRITY Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 233/565] char: misc: Make misc_register() reentry for miscdevice who wants dynamic minor Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 234/565] char: misc: Does not request module for miscdevice with " Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 235/565] net: When removing nexthops, dont call synchronize_net if it is not necessary Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 236/565] net: stmmac: Correctly handle Rx checksum offload errors Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 237/565] net: Call trace_sock_exceed_buf_limit() for memcg failure with SK_MEM_RECV Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 238/565] f2fs: fix to detect potential corrupted nid in free_nid_list Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 239/565] PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 240/565] bnxt_en: Add Hyper-V VF ID Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 241/565] tty: serial: Modify the use of dev_err_probe() Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 242/565] ALSA: usb-audio: Add validation of UAC2/UAC3 effect units Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 243/565] idpf: do not linearize big TSO packets Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 244/565] rds: Fix endianness annotation for RDS_MPATH_HASH Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 245/565] net: wangxun: limit tx_max_coalesced_frames_irq Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 246/565] media: ipu6: isys: Set embedded data type correctly for metadata formats Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 247/565] rpmsg: char: Export alias for RPMSG ID rpmsg-raw from table Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 248/565] net: ipv4: allow directed broadcast routes to use dst hint Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 249/565] scsi: mpi3mr: Fix I/O failures during controller reset Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 250/565] scsi: mpi3mr: Fix controller init failure on fault during queue creation Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 251/565] scsi: pm80xx: Fix race condition caused by static variables Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 252/565] extcon: adc-jack: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 253/565] remoteproc: wkup_m3: Use devm_pm_runtime_enable() helper Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 254/565] net: phy: fixed_phy: let fixed_phy_unregister free the phy_device Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 255/565] fuse: zero initialize inode private data Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 256/565] drm/amdgpu: Correct the counts of nr_banks and nr_errors Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 257/565] drm/amdkfd: fix vram allocation failure for a special case Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 258/565] drm/amd/display: Support HW cursor 180 rot for any number of pipe splits Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 259/565] drm/amdkfd: Tie UNMAP_LATENCY to queue_preemption Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 260/565] platform/x86/intel-uncore-freq: Fix warning in partitioned system Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 261/565] selftests: drv-net: rss_ctx: fix the queue count check Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 262/565] media: fix uninitialized symbol warnings Greg Kroah-Hartman
2025-11-11  0:41 ` [PATCH 6.12 263/565] media: pci: mgb4: Fix timings comparison in VIDIOC_S_DV_TIMINGS Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 264/565] ASoC: SOF: ipc4-pcm: Add fixup for channels Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 265/565] drm/amd/display: Increase minimum clock for TMDS 420 with pipe splitting Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 266/565] drm/amd/display: incorrect conditions for failing dto calculations Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 267/565] drm/amdgpu: Avoid vcn v5.0.1 poison irq call trace on sriov guest Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 268/565] drm/amdgpu: Respect max pixel clock for HDMI and DVI-D (v2) Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 269/565] mips: lantiq: danube: add missing properties to cpu node Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 270/565] mips: lantiq: danube: add model to EASY50712 dts Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 271/565] mips: lantiq: danube: add missing device_type in pci node Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 272/565] mips: lantiq: xway: sysctrl: rename stp clock Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 273/565] mips: lantiq: danube: rename stp node on EASY50712 reference board Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 274/565] inet_diag: annotate data-races in inet_diag_bc_sk() Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 275/565] microchip: lan865x: add ndo_eth_ioctl handler to enable PHY ioctl support Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 276/565] tcp: use dst_dev_rcu() in tcp_fastopen_active_disable_ofo_check() Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 277/565] crypto: qat - use kcalloc() in qat_uclo_map_objs_from_mof() Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 278/565] scsi: pm8001: Use int instead of u32 to store error codes Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 279/565] scsi: ufs: exynos: fsd: Gate ref_clk and put UFS device in reset on suspend Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 280/565] ptp: Limit time setting of PTP clocks Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 281/565] dmaengine: sh: setup_xref error handling Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 282/565] dmaengine: mv_xor: match alloc_wc and free_wc Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 283/565] dmaengine: dw-edma: Set status for callback_result Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 284/565] drm/msm/dsi/phy: Toggle back buffer resync after preparing PLL Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 285/565] drm/msm/dsi/phy_7nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 286/565] drm/amdgpu: Allow kfd CRIU with no buffer objects Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 287/565] drm/xe/guc: Increase GuC crash dump buffer size Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 288/565] selftests: drv-net: rss_ctx: make the test pass with few queues Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 289/565] ipv6: Add sanity checks on ipv6_devconf.rpl_seg_enabled Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 290/565] drm/panthor: check bo offset alignment in vm bind Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 291/565] drm: panel-backlight-quirks: Make EDID match optional Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 292/565] net: nfc: nci: Increase NCI_DATA_TIMEOUT to 3000 ms Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 293/565] media: adv7180: Add missing lock in suspend callback Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 294/565] media: adv7180: Do not write format to device in set_fmt Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 295/565] media: adv7180: Only validate format in querystd Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 296/565] media: verisilicon: Explicitly disable selection api ioctls for decoders Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 297/565] wifi: mac80211: Fix 6 GHz Band capabilities element advertisement in lower bands Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 298/565] ALSA: usb-audio: apply quirk for MOONDROP Quark2 Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 299/565] PCI: imx6: Enable the Vaux supply if available Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 300/565] drm/xe/guc: Set upper limit of H2G retries over CTB Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 301/565] net: call cond_resched() less often in __release_sock() Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 302/565] smsc911x: add second read of EEPROM mac when possible corruption seen Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 303/565] iommu/amd: Skip enabling command/event buffers for kdump Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 304/565] crypto: ccp: Skip SEV and SNP INIT for kdump boot Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 305/565] iommu/apple-dart: Clear stream error indicator bits for T8110 DARTs Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 306/565] drm/amd: add more cyan skillfish PCI ids Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 307/565] drm/amdgpu: dont enable SMU on cyan skillfish Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 308/565] drm/amdgpu: add support for cyan skillfish gpu_info Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 309/565] drm/amd/display: Fix pbn_div Calculation Error Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 310/565] net: dsa: felix: support phy-mode = "10g-qxgmii" Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 311/565] usb: gadget: f_hid: Fix zero length packet transfer Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 312/565] usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 313/565] tty/vt: Add missing return value for VT_RESIZE in vt_ioctl() Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 314/565] drm/msm: make sure to not queue up recovery more than once Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 315/565] char: Use list_del_init() in misc_deregister() to reinitialize list pointer Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 316/565] PCI: endpoint: pci-epf-test: Limit PCIe BAR size for fixed BARs Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 317/565] wifi: iwlwifi: fw: Add ASUS to PPAG and TAS list Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 318/565] media: ov08x40: Fix the horizontal flip control Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 319/565] media: i2c: og01a1b: Specify monochrome media bus format instead of Bayer Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 320/565] f2fs: fix wrong layout information on 16KB page Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 321/565] selftests: mptcp: join: allow more time to send ADD_ADDR Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 322/565] scsi: ufs: host: mediatek: Enhance recovery on resume failure Greg Kroah-Hartman
2025-11-11  0:42 ` [PATCH 6.12 323/565] scsi: ufs: host: mediatek: Fix unbalanced IRQ enable issue Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 324/565] scsi: ufs: host: mediatek: Enhance recovery on hibernation exit failure Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 325/565] net: phy: marvell: Fix 88e1510 downshift counter errata Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 326/565] scsi: ufs: host: mediatek: Correct system PM flow Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 327/565] scsi: ufs: host: mediatek: Disable auto-hibern8 during power mode changes Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 328/565] ntfs3: pretend $Extend records as regular files Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 329/565] wifi: mac80211: Fix HE capabilities element check Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 330/565] phy: cadence: cdns-dphy: Enable lower resolutions in dphy Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 331/565] Fix access to video_is_primary_device() when compiled without CONFIG_VIDEO Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 332/565] phy: renesas: r8a779f0-ether-serdes: add new step added to latest datasheet Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 333/565] phy: rockchip: phy-rockchip-inno-csidphy: allow writes to grf register 0 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 334/565] drm/msm/registers: Generate _HI/LO builders for reg64 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 335/565] net: sh_eth: Disable WoL if system can not suspend Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 336/565] selftests: net: replace sleeps in fcnal-test with waits Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 337/565] media: redrat3: use int type to store negative error codes Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 338/565] selftests: traceroute: Use require_command() Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 339/565] selftests: traceroute: Return correct value on failure Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 340/565] openrisc: Add R_OR1K_32_PCREL relocation type module support Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 341/565] netfilter: nf_reject: dont reply to icmp error messages Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 342/565] x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 343/565] selftests: Disable dad for ipv6 in fcnal-test.sh Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 344/565] eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 345/565] selftests: Replace sleep with slowwait Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 346/565] net: devmem: expose tcp_recvmsg_locked errors Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 347/565] udp_tunnel: use netdev_warn() instead of netdev_WARN() Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 348/565] HID: asus: add Z13 folio to generic group for multitouch to work Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 349/565] watchdog: s3c2410_wdt: Fix max_timeout being calculated larger Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 350/565] crypto: sun8i-ce - remove channel timeout field Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 351/565] PCI: dwc: Verify the single eDMA IRQ in dw_pcie_edma_irq_verify() Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 352/565] crypto: ccp - Fix incorrect payload size calculation in psp_poulate_hsti() Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 353/565] crypto: caam - double the entropy delay interval for retry Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 354/565] net/cls_cgroup: Fix task_get_classid() during qdisc run Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 355/565] wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 356/565] wifi: mt76: mt7996: Temporarily disable EPCS Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 357/565] wifi: mt76: mt76_eeprom_override to int Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 358/565] ALSA: serial-generic: remove shared static buffer Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 359/565] wifi: mt76: mt7996: fix memory leak on mt7996_mcu_sta_key_tlv error Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 360/565] drm/amdgpu: Use memdup_array_user in amdgpu_cs_wait_fences_ioctl Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 361/565] drm/amd/display: Set up pixel encoding for YCBCR422 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 362/565] drm/amd/display: fix dml ms order of operations Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 363/565] drm/amd: Avoid evicting resources at S5 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 364/565] drm/amd/display: Fix DVI-D/HDMI adapters Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 365/565] drm/amd/display: Disable VRR on DCE 6 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 366/565] drm/amd/display/dml2: Guard dml21_map_dc_state_into_dml_display_cfg with DC_FP_START Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 367/565] page_pool: always add GFP_NOWARN for ATOMIC allocations Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 368/565] ethernet: Extend device_get_mac_address() to use NVMEM Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 369/565] HID: i2c-hid: Resolve touchpad issues on Dell systems during S4 Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 370/565] drm/xe/guc: Return an error code if the GuC load fails Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 371/565] drm/amdgpu: reject gang submissions under SRIOV Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 372/565] selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 373/565] scsi: ufs: core: Disable timestamp functionality if not supported Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 374/565] scsi: lpfc: Clean up allocated queues when queue setup mbox commands fail Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 375/565] scsi: lpfc: Decrement ndlp kref after FDISC retries exhausted Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 376/565] scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 377/565] scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 378/565] scsi: lpfc: Define size of debugfs entry for xri rebalancing Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 379/565] scsi: lpfc: Ensure PLOGI_ACC is sent prior to PRLI in Point to Point topology Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 380/565] allow finish_no_open(file, ERR_PTR(-E...)) Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 381/565] usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 382/565] usb: xhci: plat: Facilitate using autosuspend for xhci plat devices Greg Kroah-Hartman
2025-11-11  0:43 ` [PATCH 6.12 383/565] f2fs: fix infinite loop in __insert_extent_tree() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 384/565] wifi: rtw89: obtain RX path from ppdu status IE00 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 385/565] wifi: rtw89: renew a completion for each H2C command waiting C2H event Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 386/565] usb: xhci-pci: add support for hosts with zero USB3 ports Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 387/565] ipv6: np->rxpmtu race annotation Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 388/565] RDMA/irdma: Update Kconfig Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 389/565] IB/ipoib: Ignore L3 master device Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 390/565] jfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 391/565] jfs: fix uninitialized waitqueue in transaction manager Greg Kroah-Hartman
2025-11-11  1:22   ` syzbot
2025-11-11  0:44 ` [PATCH 6.12 392/565] drm/amdgpu/atom: Check kcalloc() for WS buffer in amdgpu_atom_execute_table_locked() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 393/565] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 394/565] net: phy: clear link parameters on admin link down Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 395/565] net: ethernet: microchip: sparx5: make it selectable for ARCH_LAN969X Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 396/565] bus: mhi: core: Improve mhi_sync_power_up handling for SYS_ERR state Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 397/565] iommu/vt-d: Replace snprintf with scnprintf in dmar_latency_snapshot() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 398/565] wifi: ath10k: Fix connection after GTK rekeying Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 399/565] wifi: mac80211: Track NAN interface start/stop Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 400/565] net: intel: fm10k: Fix parameter idx set but not used Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 401/565] r8169: set EEE speed down ratio to 1 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 402/565] PCI: cadence: Check for the existence of cdns_pcie::ops before using it Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 403/565] sparc/module: Add R_SPARC_UA64 relocation handling Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 404/565] sparc64: fix prototypes of reads[bwl]() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 405/565] vfio: return -ENOTTY for unsupported device feature Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 406/565] crypto: hisilicon/qm - invalidate queues in use Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 407/565] crypto: hisilicon/qm - clear all VF configurations in the hardware Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 408/565] PCI/PM: Skip resuming to D0 if device is disconnected Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 409/565] selftests: forwarding: Reorder (ar)ping arguments to obey POSIX getopt Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 410/565] remoteproc: qcom: q6v5: Avoid handling handover twice Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 411/565] wifi: ath12k: Increase DP_REO_CMD_RING_SIZE to 256 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 412/565] net: dsa: microchip: Set SPI as bus interface during reset for KSZ8463 Greg Kroah-Hartman
2025-11-11  0:44 ` Greg Kroah-Hartman [this message]
2025-11-11  0:44 ` [PATCH 6.12 414/565] drm/amd/display: Init dispclk from bootup clock for DCN314 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 415/565] drm/amd/display: Fix for test crash due to power gating Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 416/565] drm/amd/display: change dc stream color settings only in atomic commit Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 417/565] NFSv4: handle ERR_GRACE on delegation recalls Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 418/565] NFSv4.1: fix mount hang after CREATE_SESSION failure Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 419/565] nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 420/565] net: bridge: Install FDB for bridge MAC on VLAN 0 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 421/565] scsi: libfc: Fix potential buffer overflow in fc_ct_ms_fill() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 422/565] accel/habanalabs/gaudi2: fix BMON disable configuration Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 423/565] scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 424/565] accel/habanalabs: return ENOMEM if less than requested pages were pinned Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 425/565] accel/habanalabs/gaudi2: read preboot status after recovering from dirty state Greg Kroah-Hartman
2025-11-12 22:06   ` Sinyuk, Konstantin
2025-11-11  0:44 ` [PATCH 6.12 426/565] accel/habanalabs: support mapping cb with vmalloc-backed coherent memory Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 427/565] fs: ext4: change GFP_KERNEL to GFP_NOFS to avoid deadlock Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 428/565] ext4: increase IO priority of fastcommit Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 429/565] amd/amdkfd: resolve a race in amdgpu_amdkfd_device_fini_sw Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 430/565] ASoC: stm32: sai: manage context in set_sysclk callback Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 431/565] ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 432/565] ACPI: scan: Update honor list for RPMI System MSI Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 433/565] vfio/pci: Fix INTx handling on legacy non-PCI 2.3 devices Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 434/565] net/mlx5e: Dont query FEC statistics when FEC is disabled Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 435/565] net: macb: avoid dealing with endianness in macb_set_hwaddr() Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 436/565] Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 437/565] Bluetooth: SCO: Fix UAF on sco_conn_free Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 438/565] Bluetooth: btusb: Add new VID/PID 13d3/3633 for MT7922 Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 439/565] Bluetooth: bcsp: receive data only if registered Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 440/565] ALSA: usb-audio: add mono main switch to Presonus S1824c Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 441/565] net: stmmac: est: Drop frames causing HLBS error Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 442/565] exfat: limit log print for IO error Greg Kroah-Hartman
2025-11-11  0:44 ` [PATCH 6.12 443/565] exfat: validate cluster allocation bits of the allocation bitmap Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 444/565] 6pack: drop redundant locking and refcounting Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 445/565] page_pool: Clamp pool size to max 16K pages Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 446/565] orangefs: fix xattr related buffer overflow Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 447/565] ftrace: Fix softlockup in ftrace_module_enable Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 448/565] ksmbd: use sock_create_kern interface to create kernel socket Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 449/565] smb: client: transport: avoid reconnects triggered by pending task work Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 450/565] ima: dont clear IMA_DIGSIG flag when setting or removing non-IMA xattr Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 451/565] usb: xhci-pci: Fix USB2-only root hub registration Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 452/565] char: misc: restrict the dynamic range to exclude reserved minors Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 453/565] drm/amd/display: Add fallback path for YCBCR422 Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 454/565] ACPICA: Update dsmethod.c to get rid of unused variable warning Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 455/565] RDMA/irdma: Fix SD index calculation Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 456/565] RDMA/irdma: Remove unused struct irdma_cq fields Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 457/565] RDMA/irdma: Set irdma_cq cq_num field during CQ create Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 458/565] RDMA/hns: Fix recv CQ and QP cache affinity Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 459/565] RDMA/hns: Fix the modification of max_send_sge Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 460/565] RDMA/hns: Fix wrong WQE data when QP wraps around Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 461/565] btrfs: fix memory leak of qgroup_list in btrfs_add_qgroup_relation Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 462/565] btrfs: mark dirty extent range for out of bound prealloc extents Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 463/565] clk: qcom: gcc-ipq6018: rework nss_port5 clock to multiple conf Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 464/565] fs/hpfs: Fix error code for new_inode() failure in mkdir/create/mknod/symlink Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 465/565] um: Fix help message for ssl-non-raw Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 466/565] clk: sunxi-ng: sun6i-rtc: Add A523 specifics Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 467/565] rtc: pcf2127: clear minute/second interrupt Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 468/565] ARM: at91: pm: save and restore ACR during PLL disable/enable Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 469/565] clk: at91: sam9x7: Add peripheral clock id for pmecc Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 470/565] clk: at91: clk-master: Add check for divide by 3 Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 471/565] clk: at91: clk-sam9x60-pll: force write to PLL_UPDT register Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 472/565] 9p/trans_fd: p9_fd_request: kick rx thread if EPOLLIN Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 473/565] clk: ti: am33xx: keep WKUP_DEBUGSS_CLKCTRL enabled Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 474/565] clk: scmi: Add duty cycle ops only when duty cycle is supported Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 475/565] clk: clocking-wizard: Fix output clock register offset for Versal platforms Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 476/565] NTB: epf: Allow arbitrary BAR mapping Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 477/565] 9p: fix /sys/fs/9p/caches overwriting itself Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 478/565] cpufreq: tegra186: Initialize all cores to max frequencies Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 479/565] 9p: sysfs_init: dont hardcode error to ENOMEM Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 480/565] scsi: ufs: core: Include UTP error in INT_FATAL_ERRORS Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 481/565] ACPI: property: Return present device nodes only on fwnode interface Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 482/565] LoongArch: Handle new atomic instructions for probes Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 483/565] tools bitmap: Add missing asm-generic/bitsperlong.h include Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 484/565] tools: lib: thermal: dont preserve owner in install Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 485/565] tools: lib: thermal: use pkg-config to locate libnl3 Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 486/565] fbdev: Add bounds checking in bit_putcs to fix vmalloc-out-of-bounds Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 487/565] rtc: pcf2127: fix watchdog interrupt mask on pcf2131 Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 488/565] net: wwan: t7xx: add support for HP DRMR-H01 Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 489/565] kbuild: uapi: Strip comments before size type check Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 490/565] ASoC: meson: aiu-encoder-i2s: fix bit clock polarity Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 491/565] drm/amdkfd: Fix mmap write lock not release Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 492/565] ceph: add checking of wait_for_completion_killable() return value Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 493/565] ceph: fix potential race condition in ceph_ioctl_lazyio() Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 494/565] ceph: refactor wake_up_bit() pattern of calling Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 495/565] ceph: fix multifs mds auth caps issue Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 496/565] x86: use cmov for user address masking Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 497/565] x86/runtime-const: Add the RUNTIME_CONST_PTR assembly macro Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 498/565] x86: uaccess: dont use runtime-const rewriting in modules Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 499/565] ALSA: hda/realtek: Audio disappears on HP 15-fc000 after warm boot again Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 500/565] btrfs: ensure no dirty metadata is written back for an fs with errors Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 501/565] media: uvcvideo: Use heuristic to find stream entity Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 502/565] media: videobuf2: forbid remove_bufs when legacy fileio is active Greg Kroah-Hartman
2025-11-11  0:45 ` [PATCH 6.12 503/565] drm/mediatek: Disable AFBC support on Mediatek DRM driver Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 504/565] Revert "wifi: ath10k: avoid unnecessary wait for service ready message" Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 505/565] ring-buffer: Do not warn in ring_buffer_map_get_reader() when reader catches up Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 506/565] net: libwx: fix device bus LAN ID Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 507/565] riscv: stacktrace: Disable KASAN checks for non-current tasks Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 508/565] riscv: ptdump: use seq_puts() in pt_dump_seq_puts() macro Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 509/565] Bluetooth: hci_event: validate skb length for unknown CC opcode Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 510/565] Bluetooth: btrtl: Fix memory leak in rtlbt_parse_firmware_v2() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 511/565] net: dsa: tag_brcm: legacy: reorganize functions Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 512/565] net: dsa: tag_brcm: legacy: fix untagged rx on unbridged ports for bcm63xx Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 513/565] selftests/net: fix out-of-order delivery of FIN in gro:tcp test Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 514/565] selftests/net: use destination options instead of hop-by-hop Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 515/565] selftests: netdevsim: Fix ethtool-coalesce.sh fail by installing ethtool-common.sh Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 516/565] net: vlan: sync VLAN features with lower device Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 517/565] gpio: swnode: dont use the swnodes name as the key for GPIO lookup Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 518/565] gpiolib: fix invalid pointer access in debugfs Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 519/565] net: dsa: b53: fix resetting speed and pause on forced link Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 520/565] net: dsa: b53: fix bcm63xx RGMII port link adjustment Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 521/565] net: dsa: b53: fix enabling ip multicast Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 522/565] net: dsa: b53: stop reading ARL entries if search is done Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 523/565] sctp: Hold RCU read lock while iterating over address list Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 524/565] sctp: Prevent TOCTOU out-of-bounds write Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 525/565] sctp: Hold sock lock while iterating over address list Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 526/565] net: ionic: add dma_wmb() before ringing TX doorbell Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 527/565] net: ionic: map SKB after pseudo-header checksum prep Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 528/565] net: usb: qmi_wwan: initialize MAC header offset in qmimux_rx_fixup Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 529/565] bnxt_en: Fix a possible memory leak in bnxt_ptp_init Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 530/565] bnxt_en: Add mem_valid bit to struct bnxt_ctx_mem_type Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 531/565] bnxt_en: Refactor bnxt_free_ctx_mem() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 532/565] bnxt_en: Add a force parameter to bnxt_free_ctx_mem() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 533/565] wifi: mac80211_hwsim: Limit destroy_on_close radio removal to netgroup Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 534/565] net/mlx5e: Fix return value in case of module EEPROM read error Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 535/565] net: ti: icssg-prueth: Fix fdb hash size configuration Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 536/565] net/mlx5e: SHAMPO, Fix skb size check for 64K pages Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 537/565] net: wan: framer: pef2256: Switch to devm_mfd_add_devices() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 538/565] net: dsa: microchip: Fix reserved multicast address table programming Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 539/565] lan966x: Fix sleeping in atomic context Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 540/565] net: bridge: fix use-after-free due to MST port state bypass Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 541/565] net: bridge: fix MST static key usage Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 542/565] tracing: Fix memory leaks in create_field_var() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 543/565] drm/amd/display: Enable mst when its detected but yet to be initialized Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 544/565] drm/sched: Fix deadlock in drm_sched_entity_kill_jobs_cb Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 545/565] Bluetooth: MGMT: Fix OOB access in parse_adv_monitor_pattern() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 546/565] iommufd: Dont overflow during division for dirty tracking Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 547/565] parisc: Avoid crash due to unaligned access in unwinder Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 548/565] rtc: rx8025: fix incorrect register reference Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 549/565] x86/microcode/AMD: Add more known models to entry sign checking Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 550/565] smb: client: validate change notify buffer before copy Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 551/565] smb: client: fix potential UAF in smb2_close_cached_fid() Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 552/565] drm/amdgpu/smu: Handle S0ix for vangogh Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 553/565] drm/amd/display: Fix NULL deref in debugfs odm_combine_segments Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 554/565] virtio-net: fix received length check in big packets Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 555/565] lib/crypto: curve25519-hacl64: Fix older clang KASAN workaround for GCC Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 556/565] scsi: ufs: ufs-pci: Fix S0ix/S3 for Intel controllers Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 557/565] scsi: ufs: ufs-pci: Set UFSHCD_QUIRK_PERFORM_LINK_STARTUP_ONCE for Intel ADL Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 558/565] scsi: ufs: core: Add a quirk to suppress link_startup_again Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 559/565] drm/amd/display: update color on atomic commit time Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 560/565] extcon: adc-jack: Cleanup wakeup source only if it was enabled Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 561/565] ACPI: SPCR: Check for table version when using precise baudrate Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 562/565] drm/amdgpu: Fix unintended error log in VCN5_0_0 Greg Kroah-Hartman
2025-11-11  0:46 ` [PATCH 6.12 563/565] drm/amdgpu: Fix function header names in amdgpu_connectors.c Greg Kroah-Hartman
2025-11-11  0:47 ` [PATCH 6.12 564/565] drm/amd/display: Fix black screen with HDMI outputs Greg Kroah-Hartman
2025-11-11  0:47 ` [PATCH 6.12 565/565] net: phy: fix phy_disable_eee Greg Kroah-Hartman
2025-11-11 18:00 ` [PATCH 6.12 000/565] 6.12.58-rc1 review Shuah Khan
2025-11-11 19:47   ` Slade Watkins
2025-11-11 20:41     ` Shuah Khan

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=20251111004536.158044109@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.deucher@amd.com \
    --cc=aric.cyr@amd.com \
    --cc=daniel.wheeler@amd.com \
    --cc=ivan.lipski@amd.com \
    --cc=karthi.kandasamy@amd.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is 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).