public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Hans de Goede <hdegoede@redhat.com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 228/466] ACPI: x86: Make UART skip quirks work on PCI UARTs without an UID
Date: Thu, 12 Dec 2024 15:56:37 +0100	[thread overview]
Message-ID: <20241212144315.781827871@linuxfoundation.org> (raw)
In-Reply-To: <20241212144306.641051666@linuxfoundation.org>

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

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

From: Hans de Goede <hdegoede@redhat.com>

[ Upstream commit 7f261203d7c2e0c06e668b25dfaaee091a79ab25 ]

The Vexia EDU ATLA 10 tablet (9V version) which shipped with Android 4.2
as factory OS has the usual broken DSDT issues for x86 Android tablets.

On top of that this tablet is special because all its LPSS island
peripherals are enumerated as PCI devices rather then as ACPI devices as
they typically are.

For the x86-android-tablets kmod to be able to instantiate a serdev client
for the Bluetooth HCI on this tablet, an ACPI_QUIRK_UART1_SKIP quirk is
necessary.

Modify acpi_dmi_skip_serdev_enumeration() to work with PCI enumerated
UARTs without an UID, such as the UARTs on this tablet.

Also make acpi_dmi_skip_serdev_enumeration() exit early if there are no
quirks, since there is nothing to do then.

And add the necessary quirks for the Vexia EDU ATLA 10 tablet.

This should compile with CONFIG_PCI being unset without issues because
dev_is_pci() is defined as "(false)" then.

Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://patch.msgid.link/20241109215936.83004-1-hdegoede@redhat.com
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/acpi/x86/utils.c | 47 +++++++++++++++++++++++++++++++++-------
 1 file changed, 39 insertions(+), 8 deletions(-)

diff --git a/drivers/acpi/x86/utils.c b/drivers/acpi/x86/utils.c
index 6af546b21574f..3eec889d4f5f8 100644
--- a/drivers/acpi/x86/utils.c
+++ b/drivers/acpi/x86/utils.c
@@ -12,6 +12,7 @@
 
 #include <linux/acpi.h>
 #include <linux/dmi.h>
+#include <linux/pci.h>
 #include <linux/platform_device.h>
 #include <asm/cpu_device_id.h>
 #include <asm/intel-family.h>
@@ -391,6 +392,19 @@ static const struct dmi_system_id acpi_quirk_skip_dmi_ids[] = {
 		.driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS |
 					ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY),
 	},
+	{
+		/* Vexia Edu Atla 10 tablet 9V version */
+		.matches = {
+			DMI_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
+			DMI_MATCH(DMI_BOARD_NAME, "Aptio CRB"),
+			/* Above strings are too generic, also match on BIOS date */
+			DMI_MATCH(DMI_BIOS_DATE, "08/25/2014"),
+		},
+		.driver_data = (void *)(ACPI_QUIRK_SKIP_I2C_CLIENTS |
+					ACPI_QUIRK_UART1_SKIP |
+					ACPI_QUIRK_SKIP_ACPI_AC_AND_BATTERY |
+					ACPI_QUIRK_SKIP_GPIO_EVENT_HANDLERS),
+	},
 	{
 		/* Whitelabel (sold as various brands) TM800A550L */
 		.matches = {
@@ -439,18 +453,35 @@ static int acpi_dmi_skip_serdev_enumeration(struct device *controller_parent, bo
 	struct acpi_device *adev = ACPI_COMPANION(controller_parent);
 	const struct dmi_system_id *dmi_id;
 	long quirks = 0;
-	u64 uid;
-	int ret;
+	u64 uid = 0;
 
-	ret = acpi_dev_uid_to_integer(adev, &uid);
-	if (ret)
+	dmi_id = dmi_first_match(acpi_quirk_skip_dmi_ids);
+	if (!dmi_id)
 		return 0;
 
-	dmi_id = dmi_first_match(acpi_quirk_skip_dmi_ids);
-	if (dmi_id)
-		quirks = (unsigned long)dmi_id->driver_data;
+	quirks = (unsigned long)dmi_id->driver_data;
+
+	/* uid is left at 0 on errors and 0 is not a valid UART UID */
+	acpi_dev_uid_to_integer(adev, &uid);
+
+	/* For PCI UARTs without an UID */
+	if (!uid && dev_is_pci(controller_parent)) {
+		struct pci_dev *pdev = to_pci_dev(controller_parent);
+
+		/*
+		 * Devfn values for PCI UARTs on Bay Trail SoCs, which are
+		 * the only devices where this fallback is necessary.
+		 */
+		if (pdev->devfn == PCI_DEVFN(0x1e, 3))
+			uid = 1;
+		else if (pdev->devfn == PCI_DEVFN(0x1e, 4))
+			uid = 2;
+	}
+
+	if (!uid)
+		return 0;
 
-	if (!dev_is_platform(controller_parent)) {
+	if (!dev_is_platform(controller_parent) && !dev_is_pci(controller_parent)) {
 		/* PNP enumerated UARTs */
 		if ((quirks & ACPI_QUIRK_PNP_UART1_SKIP) && uid == 1)
 			*skip = true;
-- 
2.43.0




  parent reply	other threads:[~2024-12-12 15:17 UTC|newest]

Thread overview: 487+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-12 14:52 [PATCH 6.12 000/466] 6.12.5-rc1 review Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 001/466] iTCO_wdt: mask NMI_NOW bit for update_no_reboot_bit() call Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 002/466] watchdog: xilinx_wwdt: Calculate max_hw_heartbeat_ms using clock frequency Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 003/466] watchdog: apple: Actually flush writes after requesting watchdog restart Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 004/466] watchdog: mediatek: Make sure system reset gets asserted in mtk_wdt_restart() Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 005/466] can: gs_usb: add usb endpoint address detection at driver probe step Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 006/466] can: c_can: c_can_handle_bus_err(): update statistics if skb allocation fails Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 007/466] can: sun4i_can: sun4i_can_err(): call can_change_state() even if cf is NULL Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 008/466] can: hi311x: hi3110_can_ist(): fix potential use-after-free Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 009/466] can: m_can: m_can_handle_lec_err(): fix {rx,tx}_errors statistics Greg Kroah-Hartman
2024-12-12 14:52 ` [PATCH 6.12 010/466] can: ifi_canfd: ifi_canfd_handle_lec_err(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 011/466] can: hi311x: hi3110_can_ist(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 012/466] can: sja1000: sja1000_err(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 013/466] can: sun4i_can: sun4i_can_err(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 014/466] can: ems_usb: ems_usb_rx_err(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 015/466] can: f81604: f81604_handle_can_bus_errors(): " Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 016/466] ipvs: fix UB due to uninitialized stack access in ip_vs_protocol_init() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 017/466] netfilter: x_tables: fix LED ID check in led_tg_check() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 018/466] netfilter: nft_socket: remove WARN_ON_ONCE on maximum cgroup level Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 019/466] selftests: hid: fix typo and exit code Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 020/466] net: enetc: Do not configure preemptible TCs if SIs do not support Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 021/466] ptp: Add error handling for adjfine callback in ptp_clock_adjtime Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 022/466] net/sched: tbf: correct backlog statistic for GSO packets Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 023/466] net: hsr: avoid potential out-of-bound access in fill_frame_info() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 024/466] bnxt_en: ethtool: Supply ntuple rss context action Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 025/466] net: Fix icmp host relookup triggering ip_rt_bug Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 026/466] ipv6: avoid possible NULL deref in modify_prefix_route() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 027/466] can: j1939: j1939_session_new(): fix skb reference counting Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 028/466] platform/x86: asus-wmi: Ignore return value when writing thermal policy Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 029/466] net: phy: microchip: Reset LAN88xx PHY to ensure clean link state on LAN7800/7850 Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 030/466] net/ipv6: release expired exception dst cached in socket Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 031/466] dccp: Fix memory leak in dccp_feat_change_recv Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 032/466] tipc: Fix use-after-free of kernel socket in cleanup_bearer() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 033/466] net/smc: initialize close_work early to avoid warning Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 034/466] net/smc: fix LGR and link use-after-free issue Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 035/466] net/qed: allow old cards not supporting "num_images" to work Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 036/466] net: hsr: must allocate more bytes for RedBox support Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 037/466] ice: fix PHY Clock Recovery availability check Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 038/466] ice: fix PHY timestamp extraction for ETH56G Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 039/466] ice: Fix VLAN pruning in switchdev mode Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 040/466] idpf: set completion tag for "empty" bufs associated with a packet Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 041/466] ixgbevf: stop attempting IPSEC offload on Mailbox API 1.5 Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 042/466] ixgbe: downgrade logging of unsupported VF API version to debug Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 043/466] ixgbe: Correct BASE-BX10 compliance code Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 044/466] igb: Fix potential invalid memory access in igb_init_module() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 045/466] netfilter: nft_inner: incorrect percpu area handling under softirq Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 046/466] Revert "udp: avoid calling sock_def_readable() if possible" Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 047/466] net: sched: fix erspan_opt settings in cls_flower Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 048/466] netfilter: ipset: Hold module reference while requesting a module Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 049/466] netfilter: nft_set_hash: skip duplicated elements pending gc run Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 050/466] ethtool: Fix wrong mod state in case of verbose and no_mask bitset Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 051/466] mlxsw: spectrum_acl_flex_keys: Constify struct mlxsw_afk_element_inst Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 052/466] mlxsw: spectrum_acl_flex_keys: Use correct key block on Spectrum-4 Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 053/466] geneve: do not assume mac header is set in geneve_xmit_skb() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 054/466] net/mlx5: HWS: Fix memory leak in mlx5hws_definer_calc_layout Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 055/466] net/mlx5: HWS: Properly set bwc queue locks lock classes Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 056/466] net/mlx5e: SD, Use correct mdev to build channel param Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 057/466] net/mlx5e: Remove workaround to avoid syndrome for internal port Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 058/466] vsock/test: fix failures due to wrong SO_RCVLOWAT parameter Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 059/466] vsock/test: fix parameter types in SO_VM_SOCKETS_* calls Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 060/466] net: avoid potential UAF in default_operstate() Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 061/466] gpio: grgpio: use a helper variable to store the address of ofdev->dev Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 062/466] gpio: grgpio: Add NULL check in grgpio_probe Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 063/466] mmc: mtk-sd: use devm_mmc_alloc_host Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 064/466] mmc: mtk-sd: Fix error handle of probe function Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 065/466] mmc: mtk-sd: fix devm_clk_get_optional usage Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 066/466] mmc: mtk-sd: Fix MMC_CAP2_CRYPTO flag setting Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 067/466] mmc: sd: SDUC Support Recognition Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 068/466] mmc: core: Adjust ACMD22 to SDUC Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 069/466] mmc: core: Use GFP_NOIO in ACMD22 Greg Kroah-Hartman
2024-12-12 14:53 ` [PATCH 6.12 070/466] zram: do not mark idle slots that cannot be idle Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 071/466] zram: clear IDLE flag in mark_idle() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 072/466] ntp: Remove invalid cast in time offset math Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 073/466] f2fs: clean up w/ F2FS_{BLK_TO_BYTES,BTYES_TO_BLK} Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 074/466] f2fs: fix to adjust appropriate length for fiemap Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 075/466] f2fs: fix to requery extent which cross boundary of inquiry Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 076/466] i3c: master: Replace hard code 2 with macro I3C_ADDR_SLOT_STATUS_BITS Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 077/466] i3c: master: Extend address status bit to 4 and add I3C_ADDR_SLOT_EXT_DESIRED Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 078/466] i3c: master: Fix dynamic address leak when assigned-address is present Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 079/466] drm/amd/display: calculate final viewport before TAP optimization Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 080/466] drm/amd/display: Ignore scalar validation failure if pipe is phantom Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 081/466] scsi: ufs: core: Always initialize the UIC done completion Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 082/466] scsi: ufs: core: Add ufshcd_send_bsg_uic_cmd() for UFS BSG Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 083/466] bpf, vsock: Fix poll() missing a queue Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 084/466] bpf, vsock: Invoke proto::close on close() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 085/466] xsk: always clear DMA mapping information when unmapping the pool Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 086/466] bpftool: fix potential NULL pointer dereferencing in prog_dump() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 087/466] drm/sti: Add __iomem for mixer_dbg_mxns parameter Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 088/466] tcp_bpf: Fix the sk_mem_uncharge logic in tcp_bpf_sendmsg Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 089/466] ALSA: seq: ump: Fix seq port updates per FB info notify Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 090/466] ALSA: usb-audio: Notify xrun for low-latency mode Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 091/466] tools: Override makefile ARCH variable if defined, but empty Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 092/466] spi: mpc52xx: Add cancel_work_sync before module remove Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 093/466] ASoC: SOF: ipc3-topology: Convert the topology pin index to ALH dai index Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 094/466] ASoC: SOF: ipc3-topology: fix resource leaks in sof_ipc3_widget_setup_comp_dai() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 095/466] pmdomain: core: Add missing put_device() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 096/466] pmdomain: core: Fix error path in pm_genpd_init() when ida alloc fails Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 097/466] nvme: dont apply NVME_QUIRK_DEALLOCATE_ZEROES when DSM is not supported Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 098/466] x86/pkeys: Change caller of update_pkru_in_sigframe() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 099/466] x86/pkeys: Ensure updated PKRU value is XRSTORd Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 100/466] bpf: Ensure reg is PTR_TO_STACK in process_iter_arg Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 101/466] irqchip/stm32mp-exti: CONFIG_STM32MP_EXTI should not default to y when compile-testing Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 102/466] drivers/virt: pkvm: Dont fail ioremap() call if MMIO_GUARD fails Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 103/466] bpf: Dont mark STACK_INVALID as STACK_MISC in mark_stack_slot_misc Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 104/466] bpf: Fix narrow scalar spill onto 64-bit spilled scalar slots Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 105/466] nvme-fabrics: handle zero MAXCMD without closing the connection Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 106/466] nvme-tcp: fix the memleak while create new ctrl failed Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 107/466] nvme-rdma: unquiesce admin_q before destroy it Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 108/466] scsi: sg: Fix slab-use-after-free read in sg_release() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 109/466] scsi: scsi_debug: Fix hrtimer support for ndelay Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 110/466] ASoC: mediatek: mt8188-mt6359: Remove hardcoded dmic codec Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 111/466] drm/v3d: Enable Performance Counters before clearing them Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 112/466] ocfs2: free inode when ocfs2_get_init_inode() fails Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 113/466] scatterlist: fix incorrect func name in kernel-doc Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 114/466] iio: magnetometer: yas530: use signed integer type for clamp limits Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 115/466] smb: client: fix potential race in cifs_put_tcon() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 116/466] bpf: Handle BPF_EXIST and BPF_NOEXIST for LPM trie Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 117/466] bpf: Remove unnecessary kfree(im_node) in lpm_trie_update_elem Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 118/466] bpf: Handle in-place update for full LPM trie correctly Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 119/466] bpf: Fix exact match conditions in trie_get_next_key() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 120/466] x86/CPU/AMD: WARN when setting EFER.AUTOIBRS if and only if the WRMSR fails Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 121/466] rust: allow `clippy::needless_lifetimes` Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 122/466] HID: i2c-hid: Revert to using power commands to wake on resume Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 123/466] HID: wacom: fix when get product name maybe null pointer Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 124/466] LoongArch: Add architecture specific huge_pte_clear() Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 125/466] LoongArch: KVM: Protect kvm_check_requests() with SRCU Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 126/466] ksmbd: fix Out-of-Bounds Read in ksmbd_vfs_stream_read Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 127/466] ksmbd: fix Out-of-Bounds Write in ksmbd_vfs_stream_write Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 128/466] watchdog: rti: of: honor timeout-sec property Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 129/466] can: dev: can_set_termination(): allow sleeping GPIOs Greg Kroah-Hartman
2024-12-12 14:54 ` [PATCH 6.12 130/466] can: mcp251xfd: mcp251xfd_get_tef_len(): work around erratum DS80000789E 6 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 131/466] tracing: Fix cmp_entries_dup() to respect sort() comparison rules Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 132/466] net :mana :Request a V2 response version for MANA_QUERY_GF_STAT Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 133/466] iommufd: Fix out_fput in iommufd_fault_alloc() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 134/466] arm64: mm: Fix zone_dma_limit calculation Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 135/466] arm64: Ensure bits ASID[15:8] are masked out when the kernel uses 8-bit ASIDs Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 136/466] arm64: ptrace: fix partial SETREGSET for NT_ARM_TAGGED_ADDR_CTRL Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 137/466] arm64: ptrace: fix partial SETREGSET for NT_ARM_FPMR Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 138/466] arm64: ptrace: fix partial SETREGSET for NT_ARM_POE Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 139/466] ALSA: usb-audio: Fix a DMA to stack memory bug Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 140/466] ALSA: usb-audio: Add extra PID for RME Digiface USB Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 141/466] ALSA: hda/realtek: fix micmute LEDs dont work on HP Laptops Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 142/466] ALSA: usb-audio: add mixer mapping for Corsair HS80 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 143/466] ALSA: hda/realtek: Enable mute and micmute LED on HP ProBook 430 G8 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 144/466] ALSA: hda/realtek: Add support for Samsung Galaxy Book3 360 (NP730QFG) Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 145/466] scsi: qla2xxx: Fix abort in bsg timeout Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 146/466] scsi: qla2xxx: Fix NVMe and NPIV connect issue Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 147/466] scsi: qla2xxx: Supported speed displayed incorrectly for VPorts Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 148/466] scsi: qla2xxx: Fix use after free on unload Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 149/466] scsi: qla2xxx: Remove check req_sg_cnt should be equal to rsp_sg_cnt Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 150/466] scsi: ufs: core: sysfs: Prevent div by zero Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 151/466] scsi: ufs: core: Cancel RTC work during ufshcd_remove() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 152/466] scsi: ufs: qcom: Only free platform MSIs when ESI is enabled Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 153/466] scsi: ufs: pltfrm: Disable runtime PM during removal of glue drivers Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 154/466] scsi: ufs: core: Add missing post notify for power mode change Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 155/466] nilfs2: fix potential out-of-bounds memory access in nilfs_find_entry() Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 156/466] fs/smb/client: avoid querying SMB2_OP_QUERY_WSL_EA for SMB3 POSIX Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 157/466] fs/smb/client: Implement new SMB3 POSIX type Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 158/466] fs/smb/client: cifs_prime_dcache() for SMB3 POSIX reparse points Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 159/466] smb3.1.1: fix posix mounts to older servers Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 160/466] io_uring: Change res2 parameter type in io_uring_cmd_done Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 161/466] bcache: revert replacing IS_ERR_OR_NULL with IS_ERR again Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 162/466] Revert "readahead: properly shorten readahead when falling back to do_page_cache_ra()" Greg Kroah-Hartman
2024-12-12 18:12   ` Philippe Troin
2024-12-13 11:35     ` Greg Kroah-Hartman
2024-12-13 13:55     ` Jan Kara
2024-12-12 14:55 ` [PATCH 6.12 163/466] pmdomain: imx: gpcv2: Adjust delay after power up handshake Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 164/466] selftests/damon: add _damon_sysfs.py to TEST_FILES Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 165/466] selftest: hugetlb_dio: fix test naming Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 166/466] cacheinfo: Allocate memory during CPU hotplug if not done from the primary CPU Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 167/466] x86/cacheinfo: Delete global num_cache_leaves Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 168/466] drm/amdkfd: hard-code cacheline for gc943,gc944 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 169/466] drm/dp_mst: Fix MST sideband message body length check Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 170/466] drm/amdkfd: add MEC version that supports no PCIe atomics for GFX12 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 171/466] drm/amd/pm: fix and simplify workload handling Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 172/466] drm/dp_mst: Verify request type in the corresponding down message reply Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 173/466] drm/dp_mst: Fix resetting msg rx state after topology removal Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 174/466] drm/amd/display: Correct prefetch calculation Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 175/466] drm/amd/display: Limit VTotal range to max hw cap minus fp Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 176/466] drm/amd/display: Add a left edge pixel if in YCbCr422 or YCbCr420 and odm Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 177/466] drm/amdgpu/hdp6.0: do a posting read when flushing HDP Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 178/466] drm/amdgpu/hdp4.0: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 179/466] drm/amdgpu/hdp5.0: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 180/466] drm/amdgpu/hdp7.0: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 181/466] drm/amdgpu/hdp5.2: " Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 182/466] modpost: Add .irqentry.text to OTHER_SECTIONS Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 183/466] x86/kexec: Restore GDT on return from ::preserve_context kexec Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 184/466] bpf: fix OOB devmap writes when deleting elements Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 185/466] dma-buf: fix dma_fence_array_signaled v4 Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 186/466] dma-fence: Fix reference leak on fence merge failure path Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 187/466] dma-fence: Use kernels sort for merging fences Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 188/466] xsk: fix OOB map writes when deleting elements Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 189/466] regmap: detach regmap from dev on regmap_exit Greg Kroah-Hartman
2024-12-12 14:55 ` [PATCH 6.12 190/466] arch_numa: Restore nid checks before registering a memblock with a node Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 191/466] mmc: sdhci-pci: Add DMI quirk for missing CD GPIO on Vexia Edu Atla 10 tablet Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 192/466] mmc: core: Further prevent card detect during shutdown Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 193/466] x86/cpu: Add Lunar Lake to list of CPUs with a broken MONITOR implementation Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 194/466] ocfs2: update seq_file index in ocfs2_dlm_seq_next Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 195/466] stackdepot: fix stack_depot_save_flags() in NMI context Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 196/466] lib: stackinit: hide never-taken branch from compiler Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 197/466] sched/numa: fix memory leak due to the overwritten vma->numab_state Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 198/466] kasan: make report_lock a raw spinlock Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 199/466] mm/gup: handle NULL pages in unpin_user_pages() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 200/466] mm/mempolicy: fix migrate_to_node() assuming there is at least one VMA in a MM Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 201/466] x86/cpu/topology: Remove limit of CPUs due to disabled IO/APIC Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 202/466] x86/mm: Add _PAGE_NOPTISHADOW bit to avoid updating userspace page tables Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 203/466] mm/damon: fix order of arguments in damos_before_apply tracepoint Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 204/466] mm: memcg: declare do_memsw_account inline Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 205/466] mm: open-code PageTail in folio_flags() and const_folio_flags() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 206/466] mm: open-code page_folio() in dump_page() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 207/466] mm: fix vrealloc()s KASAN poisoning logic Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 208/466] mm: respect mmap hint address when aligning for THP Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 209/466] scsi: ufs: pltfrm: Drop PM runtime reference count after ufshcd_remove() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 210/466] memblock: allow zero threshold in validate_numa_converage() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 211/466] rust: enable arbitrary_self_types and remove `Receiver` Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 212/466] s390/pci: Sort PCI functions prior to creating virtual busses Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 213/466] s390/pci: Use topology ID for multi-function devices Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 214/466] s390/pci: Ignore RID for isolated VFs Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 215/466] epoll: annotate racy check Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 216/466] kselftest/arm64: Log fp-stress child startup errors to stdout Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 217/466] s390/cpum_sf: Handle CPU hotplug remove during sampling Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 218/466] block: RCU protect disk->conv_zones_bitmap Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 219/466] btrfs: dont take dev_replace rwsem on task already holding it Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 220/466] btrfs: avoid unnecessary device path update for the same device Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 221/466] btrfs: canonicalize the device path before adding it Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 222/466] btrfs: do not clear read-only when adding sprout device Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 223/466] kselftest/arm64: Dont leak pipe fds in pac.exec_sign_all() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 224/466] ext4: partial zero eof block on unaligned inode size extension Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 225/466] crypto: ecdsa - Avoid signed integer overflow on signature decoding Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 226/466] kcsan: Turn report_filterlist_lock into a raw_spinlock Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 227/466] hwmon: (nct6775) Add 665-ACE/600M-CL to ASUS WMI monitoring list Greg Kroah-Hartman
2024-12-12 14:56 ` Greg Kroah-Hartman [this message]
2024-12-12 14:56 ` [PATCH 6.12 229/466] ACPI: x86: Add adev NULL check to acpi_quirk_skip_serdev_enumeration() Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 230/466] ACPI: video: force native for Apple MacbookPro11,2 and Air7,2 Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 231/466] perf/x86/amd: Warn only on new bits set Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 232/466] cleanup: Adjust scoped_guard() macros to avoid potential warning Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 233/466] iio: magnetometer: fix if () scoped_guard() formatting Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 234/466] timekeeping: Always check for negative motion Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 235/466] gpio: free irqs that are still requested when the chip is being removed Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 236/466] spi: spi-fsl-lpspi: Adjust type of scldiv Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 237/466] soc: qcom: llcc: Use designated initializers for LLC settings Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 238/466] HID: add per device quirk to force bind to hid-generic Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 239/466] firmware: qcom: scm: Allow QSEECOM on Lenovo Yoga Slim 7x Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 240/466] soc: qcom: pd-mapper: Add QCM6490 PD maps Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 241/466] media: uvcvideo: RealSense D421 Depth module metadata Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 242/466] media: uvcvideo: Add a quirk for the Kaiweets KTI-W02 infrared camera Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 243/466] media: uvcvideo: Force UVC version to 1.0a for 0408:4033 Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 244/466] media: cx231xx: Add support for Dexatek USB Video Grabber 1d19:6108 Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 245/466] mmc: core: Add SD card quirk for broken poweroff notification Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 246/466] mmc: sdhci-esdhc-imx: enable quirks SDHCI_QUIRK_NO_LED Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 247/466] firmware: qcom: scm: Allow QSEECOM on Dell XPS 13 9345 Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 248/466] soc: imx8m: Probe the SoC driver as platform driver Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 249/466] regmap: maple: Provide lockdep (sub)class for maple trees internal lock Greg Kroah-Hartman
2024-12-12 14:56 ` [PATCH 6.12 250/466] selftests/resctrl: Protect against array overflow when reading strings Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 251/466] sched_ext: add a missing rcu_read_lock/unlock pair at scx_select_cpu_dfl() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 252/466] HID: magicmouse: Apple Magic Trackpad 2 USB-C driver support Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 253/466] drm/xe/pciids: separate RPL-U and RPL-P PCI IDs Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 254/466] drm/xe/pciids: separate ARL and MTL " Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 255/466] drm/vc4: hdmi: Avoid log spam for audio start failure Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 256/466] drm/vc4: hvs: Set AXI panic modes for the HVS Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 257/466] drm/xe/pciids: Add PVCs PCI device ID macros Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 258/466] wifi: rtw88: use ieee80211_purge_tx_queue() to purge TX skb Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 259/466] drm/xe/pciid: Add new PCI id for ARL Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 260/466] drm: panel-orientation-quirks: Add quirk for AYA NEO 2 model Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 261/466] drm: panel-orientation-quirks: Add quirk for AYA NEO Founder edition Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 262/466] drm: panel-orientation-quirks: Add quirk for AYA NEO GEEK Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 263/466] drm/bridge: it6505: Enable module autoloading Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 264/466] drm/mcde: " Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 265/466] wifi: rtw89: check return value of ieee80211_probereq_get() for RNR Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 266/466] drm/amd/display: Fix out-of-bounds access in dcn21_link_encoder_create Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 267/466] drm/radeon/r600_cs: Fix possible int overflow in r600_packet3_check() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 268/466] ASoC: Intel: sof_rt5682: Add HDMI-In capture with rt5682 support for MTL Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 269/466] dlm: fix possible lkb_resource null dereference Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 270/466] drm/amd/display: skip disable CRTC in seemless bootup case Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 271/466] drm/amd/display: Fix garbage or black screen when resetting otg Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 272/466] drm/amd/display: disable SG displays on cyan skillfish Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 273/466] drm/xe/ptl: L3bank mask is not available on the media GT Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 274/466] drm/xe/xe3: Add initial set of workarounds Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 275/466] drm/display: Fix building with GCC 15 Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 276/466] ALSA: hda: Use own quirk lookup helper Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 277/466] ALSA: hda/conexant: Use the new codec SSID matching Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 278/466] ALSA: hda/realtek: Use codec SSID matching for Lenovo devices Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 279/466] r8169: dont apply UDP padding quirk on RTL8126A Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 280/466] samples/bpf: Fix a resource leak Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 281/466] wifi: ath12k: fix atomic calls in ath12k_mac_op_set_bitrate_mask() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 282/466] accel/qaic: Add AIC080 support Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 283/466] drm/amd/display: Full exit out of IPS2 when all allow signals have been cleared Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 284/466] net: fec_mpc52xx_phy: Use %pa to format resource_size_t Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 285/466] net: ethernet: fs_enet: " Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 286/466] net/sched: cbs: Fix integer overflow in cbs_set_port_rate() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 287/466] af_packet: avoid erroring out after sock_init_data() in packet_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 288/466] Bluetooth: L2CAP: do not leave dangling sk pointer on error in l2cap_sock_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 289/466] Bluetooth: RFCOMM: avoid leaving dangling sk pointer in rfcomm_sock_alloc() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 290/466] net: af_can: do not leave a dangling sk pointer in can_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 291/466] net: ieee802154: do not leave a dangling sk pointer in ieee802154_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 292/466] net: inet: do not leave a dangling sk pointer in inet_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 293/466] net: inet6: do not leave a dangling sk pointer in inet6_create() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 294/466] wifi: ath10k: avoid NULL pointer error during sdio remove Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 295/466] wifi: ath5k: add PCI ID for SX76X Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 296/466] wifi: ath5k: add PCI ID for Arcadyan devices Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 297/466] fanotify: allow reporting errors on failure to open fd Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 298/466] bpf: Prevent tailcall infinite loop caused by freplace Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 299/466] ASoC: sdw_utils: Add support for exclusion DAI quirks Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 300/466] ASoC: sdw_utils: Add a quirk to allow the cs42l43 mic DAI to be ignored Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 301/466] ASoC: Intel: sof_sdw: Add quirk for cs42l43 system using host DMICs Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 302/466] ASoC: Intel: sof_sdw: Add quirks for some new Lenovo laptops Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 303/466] drm/xe/guc/ct: Flush g2h worker in case of g2h response timeout Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 304/466] drm/panel: simple: Add Microchip AC69T88A LVDS Display panel Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 305/466] net: sfp: change quirks for Alcatel Lucent G-010S-P Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 306/466] net: stmmac: Programming sequence for VLAN packets with split header Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 307/466] drm/sched: memset() job in drm_sched_job_init() Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 308/466] drm/amd/display: Adding array index check to prevent memory corruption Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 309/466] drm/amdgpu/gfx9: Add cleaner shader for GFX9.4.2 Greg Kroah-Hartman
2024-12-12 14:57 ` [PATCH 6.12 310/466] drm/amdgpu: clear RB_OVERFLOW bit when enabling interrupts for vega20_ih Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 311/466] drm/amdgpu: Dereference the ATCS ACPI buffer Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 312/466] netlink: specs: Add missing bitset attrs to ethtool spec Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 313/466] drm/amdgpu: refine error handling in amdgpu_ttm_tt_pin_userptr Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 314/466] ASoC: sdw_utils: Add quirk to exclude amplifier function Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 315/466] ASoC: Intel: soc-acpi-intel-arl-match: Add rt722 and rt1320 support Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 316/466] drm/amd/display: Fix underflow when playing 8K video in full screen mode Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 317/466] mptcp: annotate data-races around subflow->fully_established Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 318/466] dma-debug: fix a possible deadlock on radix_lock Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 319/466] jfs: array-index-out-of-bounds fix in dtReadFirst Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 320/466] jfs: fix shift-out-of-bounds in dbSplit Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 321/466] jfs: fix array-index-out-of-bounds in jfs_readdir Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 322/466] jfs: add a check to prevent array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 323/466] fsl/fman: Validate cell-index value obtained from Device Tree Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 324/466] net/tcp: Add missing lockdep annotations for TCP-AO hlist traversals Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 325/466] drm/panic: Add ABGR2101010 support Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 326/466] drm/amd/display: Remove hw w/a toggle if on DP2/HPO Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 327/466] drm/amd/display: parse umc_info or vram_info based on ASIC Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 328/466] drm/amd/display: Prune Invalid Modes For HDMI Output Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 329/466] drm/amdgpu: skip amdgpu_device_cache_pci_state under sriov Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 330/466] virtio-net: fix overflow inside virtnet_rq_alloc Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 331/466] ALSA: usb-audio: Make mic volume workarounds globally applicable Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 332/466] drm/amdgpu: set the right AMDGPU sg segment limitation Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 333/466] wifi: ipw2x00: libipw_rx_any(): fix bad alignment Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 334/466] wifi: brcmfmac: Fix oops due to NULL pointer dereference in brcmf_sdiod_sglist_rw() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 335/466] bpf: Call free_htab_elem() after htab_unlock_bucket() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 336/466] mptcp: fix possible integer overflow in mptcp_reset_tout_timer Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 337/466] dsa: qca8k: Use nested lock to avoid splat Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 338/466] i2c: i801: Add support for Intel Panther Lake Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 339/466] Bluetooth: hci_conn: Reduce hci_conn_drop() calls in two functions Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 340/466] Bluetooth: btusb: Add RTL8852BE device 0489:e123 to device tables Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 341/466] Bluetooth: btusb: Add USB HW IDs for MT7920/MT7925 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 342/466] Bluetooth: hci_conn: Use disable_delayed_work_sync Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 343/466] Bluetooth: hci_core: Fix not checking skb length on hci_acldata_packet Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 344/466] Bluetooth: Add new quirks for ATS2851 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 345/466] Bluetooth: Support " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 346/466] Bluetooth: Set " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 347/466] Bluetooth: btusb: Add new VID/PID 0489/e111 for MT7925 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 348/466] Bluetooth: btusb: Add new VID/PID 0489/e124 " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 349/466] Bluetooth: btusb: Add 3 HWIDs " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 350/466] ASoC: hdmi-codec: reorder channel allocation list Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 351/466] rocker: fix link status detection in rocker_carrier_init() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 352/466] net/neighbor: clear error in case strict check is not set Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 353/466] netpoll: Use rcu_access_pointer() in __netpoll_setup Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 354/466] pinctrl: freescale: fix COMPILE_TEST error with PINCTRL_IMX_SCU Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 355/466] rtla: Fix consistency in getopt_long for timerlat_hist Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 356/466] tracing/ftrace: disable preemption in syscall probe Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 357/466] tracing: Use atomic64_inc_return() in trace_clock_counter() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 358/466] tools/rtla: fix collision with glibc sched_attr/sched_set_attr Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 359/466] rtla/timerlat: Make timerlat_top_cpu->*_count unsigned long long Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 360/466] rtla/timerlat: Make timerlat_hist_cpu->*_count " Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 361/466] scsi: hisi_sas: Add cond_resched() for no forced preemption model Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 362/466] scsi: hisi_sas: Create all dump files during debugfs initialization Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 363/466] ring-buffer: Limit time with disabled interrupts in rb_check_pages() Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 364/466] pinmux: Use sequential access to access desc->pinmux data Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 365/466] scsi: ufs: core: Make DMA mask configuration more flexible Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 366/466] iommu/amd: Fix corruption when mapping large pages from 0 Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 367/466] bpf: put bpf_links program when link is safe to be deallocated Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 368/466] scsi: lpfc: Call lpfc_sli4_queue_unset() in restart and rmmod paths Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 369/466] scsi: lpfc: Check SLI_ACTIVE flag in FDMI cmpl before submitting follow up FDMI Greg Kroah-Hartman
2024-12-12 14:58 ` [PATCH 6.12 370/466] scsi: lpfc: Prevent NDLP reference count underflow in dev_loss_tmo callback Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 371/466] clk: qcom: rcg2: add clk_rcg2_shared_floor_ops Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 372/466] clk: qcom: rpmh: add support for SAR2130P Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 373/466] clk: qcom: tcsrcc-sm8550: add SAR2130P support Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 374/466] clk: qcom: dispcc-sm8550: enable support for SAR2130P Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 375/466] clk: qcom: clk-alpha-pll: Add NSS HUAYRA ALPHA PLL support for ipq9574 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 376/466] leds: class: Protect brightness_show() with led_cdev->led_access mutex Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 377/466] scsi: st: Dont modify unknown block number in MTIOCGET Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 378/466] scsi: st: Add MTIOCGET and MTLOAD to ioctls allowed after device reset Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 379/466] pinctrl: qcom-pmic-gpio: add support for PM8937 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 380/466] pinctrl: qcom: spmi-mpp: Add PM8937 compatible Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 381/466] thermal/drivers/qcom/tsens-v1: Add support for MSM8937 tsens Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 382/466] nvdimm: rectify the illogical code within nd_dax_probe() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 383/466] smb: client: memcpy() with surrounding object base address Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 384/466] tracing: Fix function name for trampoline Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 385/466] tools/rtla: Enhance argument parsing in timerlat_load.py Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 386/466] verification/dot2: Improve dot parser robustness Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 387/466] mailbox: pcc: Check before sending MCTP PCC response ACK Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 388/466] f2fs: fix f2fs_bug_on when uninstalling filesystem call f2fs_evict_inode Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 389/466] KMSAN: uninit-value in inode_go_dump (5) Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 390/466] i3c: mipi-i3c-hci: Mask ring interrupts before ring stop request Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 391/466] PCI: qcom: Add support for IPQ9574 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 392/466] PCI: vmd: Add DID 8086:B06F and 8086:B60B for Intel client SKUs Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 393/466] PCI: vmd: Set devices to D0 before enabling PM L1 Substates Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 394/466] PCI: Detect and trust built-in Thunderbolt chips Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 395/466] PCI: starfive: Enable controller runtime PM before probing host bridge Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 396/466] PCI: Add reset_subordinate to reset hierarchy below bridge Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 397/466] PCI: Add ACS quirk for Wangxun FF5xxx NICs Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 398/466] remoteproc: qcom: pas: enable SAR2130P audio DSP support Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 399/466] i3c: Use i3cdev->desc->info instead of calling i3c_device_get_info() to avoid deadlock Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 400/466] f2fs: print message if fscorrupted was found in f2fs_new_node_page() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 401/466] f2fs: fix to shrink read extent node in batches Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 402/466] f2fs: add a sysfs node to limit max read extent count per-inode Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 403/466] ACPI: x86: Add skip i2c clients quirk for Acer Iconia One 8 A1-840 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 404/466] ACPI: x86: Clean up Asus entries in acpi_quirk_skip_dmi_ids[] Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 405/466] LoongArch: Fix sleeping in atomic context for PREEMPT_RT Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 406/466] fs/ntfs3: Fix warning in ni_fiemap Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 407/466] fs/ntfs3: Fix case when unmarked clusters intersect with zone Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 408/466] regulator: qcom-rpmh: Update ranges for FTSMPS525 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 409/466] usb: chipidea: add CI_HDRC_HAS_SHORT_PKT_LIMIT flag Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 410/466] usb: chipidea: udc: limit usb request length to max 16KB Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 411/466] usb: chipidea: udc: create bounce buffer for problem sglist entries if possible Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 412/466] usb: chipidea: udc: handle USB Error Interrupt if IOC not set Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 413/466] usb: typec: ucsi: Do not call ACPI _DSM method for UCSI read operations Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 414/466] iio: adc: ad7192: properly check spi_get_device_match_data() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 415/466] iio: light: ltr501: Add LTER0303 to the supported devices Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 416/466] usb: typec: ucsi: glink: be more precise on orientation-aware ports Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 417/466] ASoC: amd: yc: fix internal mic on Redmi G 2022 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 418/466] drm/amdgpu/vcn: reset fw_shared when VCPU buffers corrupted on vcn v4.0.3 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 419/466] MIPS: Loongson64: DTS: Really fix PCIe port nodes for ls7a Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 420/466] ASoC: amd: yc: Add quirk for microphone on Lenovo Thinkpad T14s Gen 6 21M1CTO1WW Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 421/466] powerpc/prom_init: Fixup missing powermac #size-cells Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 422/466] misc: eeprom: eeprom_93cx6: Add quirk for extra read clock cycle Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 423/466] rtc: cmos: avoid taking rtc_lock for extended period of time Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 424/466] serial: 8250_dw: Add Sophgo SG2044 quirk Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 425/466] Revert "nvme: make keep-alive synchronous operation" Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 426/466] irqchip/gicv3-its: Add workaround for hip09 ITS erratum 162100801 Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 427/466] smb: client: dont try following DFS links in cifs_tree_connect() Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 428/466] setlocalversion: work around "git describe" performance Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 429/466] io_uring/tctx: work around xa_store() allocation error issue Greg Kroah-Hartman
2024-12-12 14:59 ` [PATCH 6.12 430/466] scsi: ufs: pltfrm: Dellocate HBA during ufshcd_pltfrm_remove() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 431/466] drm/xe/devcoredump: Use drm_puts and already cached local variables Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 432/466] drm/xe/devcoredump: Improve section headings and add tile info Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 433/466] drm/xe/devcoredump: Add ASCII85 dump helper function Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 434/466] drm/xe/guc: Copy GuC log prior to dumping Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 435/466] drm/xe/forcewake: Add a helper xe_force_wake_ref_has_domain() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 436/466] drm/xe/devcoredump: Update handling of xe_force_wake_get return Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 437/466] drm/amd/display: Update Interface to Check UCLK DPM Greg Kroah-Hartman
2024-12-12 17:45   ` Jiri Slaby
2024-12-13 14:28     ` Greg Kroah-Hartman
2024-12-13 14:34       ` Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 438/466] drm/amd/display: Add option to retrieve detile buffer size Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 439/466] sched: fix warning in sched_setaffinity Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 440/466] sched/core: Remove the unnecessary need_resched() check in nohz_csd_func() Greg Kroah-Hartman
2024-12-12 17:52   ` K Prateek Nayak
2024-12-13 14:27     ` Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 441/466] sched/fair: Check idle_cpu() before need_resched() to detect ilb CPU turning busy Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 442/466] sched/core: Prevent wakeup of ksoftirqd during idle load balance Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 443/466] sched/deadline: Fix warning in migrate_enable for boosted tasks Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 444/466] btrfs: drop unused parameter options from open_ctree() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 445/466] btrfs: drop unused parameter data from btrfs_fill_super() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 446/466] btrfs: fix mount failure due to remount races Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 447/466] btrfs: fix missing snapshot drew unlock when root is dead during swap activation Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 448/466] clk: en7523: Initialize num before accessing hws in en7523_register_clocks() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 449/466] tracing/eprobe: Fix to release eprobe when failed to add dyn_event Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 450/466] x86: Fix build regression with CONFIG_KEXEC_JUMP enabled Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 451/466] Revert "unicode: Dont special case ignorable code points" Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 452/466] vfio/mlx5: Align the page tracking max message size with the device capability Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 453/466] selftests/ftrace: adjust offset for kprobe syntax error test Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 454/466] KVM: x86/mmu: Ensure that kvm_release_pfn_clean() takes exact pfn from kvm_faultin_pfn() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 455/466] jffs2: Prevent rtime decompress memory corruption Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 456/466] jffs2: Fix rtime decompressor Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 457/466] media: ipu6: use the IPU6 DMA mapping APIs to do mapping Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 458/466] ocfs2: Revert "ocfs2: fix the la space leak when unmounting an ocfs2 volume" Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 459/466] net/mlx5: unique names for per device caches Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 460/466] ASoC: Intel: avs: Fix return status of avs_pcm_hw_constraints_init() Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 461/466] drm/amdgpu: rework resume handling for display (v2) Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 462/466] ALSA: hda: Fix build error without CONFIG_SND_DEBUG Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 463/466] Revert "drm/amd/display: parse umc_info or vram_info based on ASIC" Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 464/466] s390/pci: Fix leak of struct zpci_dev when zpci_add_device() fails Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 465/466] ALSA: hda/realtek: Fix spelling mistake "Firelfy" -> "Firefly" Greg Kroah-Hartman
2024-12-12 15:00 ` [PATCH 6.12 466/466] clocksource: Make negative motion detection more robust Greg Kroah-Hartman
2024-12-12 16:03 ` [PATCH 6.12 000/466] 6.12.5-rc1 review Luna Jernberg
2024-12-12 18:05 ` Naresh Kamboju
2024-12-12 19:34   ` Naresh Kamboju
2024-12-12 19:48     ` Naresh Kamboju
2024-12-13 11:34       ` Greg Kroah-Hartman
2024-12-13  0:56 ` Christian Heusel
2024-12-13  1:18 ` Peter Schneider
2024-12-13 10:10 ` Jon Hunter
2024-12-13 13:15 ` Mark Brown
2024-12-13 16:39 ` Shuah Khan
2024-12-13 16:41   ` Luna Jernberg
2024-12-13 19:07 ` SeongJae Park

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=20241212144315.781827871@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hdegoede@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=rafael.j.wysocki@intel.com \
    --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