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, "Frank Li" <Frank.Li@nxp.com>,
	"Krzysztof Wilczyński" <kwilczynski@kernel.org>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	"Richard Zhu" <hongxing.zhu@nxp.com>,
	"Manivannan Sadhasivam" <manivannan.sadhasivam@linaro.org>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.12 193/322] PCI: imx6: Add i.MX8Q PCIe Endpoint (EP) support
Date: Tue, 26 Aug 2025 13:10:08 +0200	[thread overview]
Message-ID: <20250826110920.630944423@linuxfoundation.org> (raw)
In-Reply-To: <20250826110915.169062587@linuxfoundation.org>

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

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

From: Frank Li <Frank.Li@nxp.com>

[ Upstream commit 687aedb73a401addf151c5f60e481e574b4c9ad9 ]

Add support for the i.MX8Q series (i.MX8QM, i.MX8QXP, and i.MX8DXL) PCIe
Endpoint (EP). On the i.MX8Q platforms, the PCI bus addresses differ
from the CPU addresses. However, the DesignWare (DWC) driver already
handles this in the common code.

Link: https://lore.kernel.org/r/20241119-pci_fixup_addr-v8-7-c4bfa5193288@nxp.com
Signed-off-by: Frank Li <Frank.Li@nxp.com>
[kwilczynski: commit log]
Signed-off-by: Krzysztof Wilczyński <kwilczynski@kernel.org>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Richard Zhu <hongxing.zhu@nxp.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Stable-dep-of: c523fa63ac1d ("PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features")
Signed-off-by: Sasha Levin <sashal@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/pci/controller/dwc/pci-imx6.c |   20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -72,6 +72,7 @@ enum imx_pcie_variants {
 	IMX8MQ_EP,
 	IMX8MM_EP,
 	IMX8MP_EP,
+	IMX8Q_EP,
 	IMX95_EP,
 };
 
@@ -1103,6 +1104,16 @@ static const struct pci_epc_features imx
 	.align = SZ_64K,
 };
 
+static const struct pci_epc_features imx8q_pcie_epc_features = {
+	.linkup_notifier = false,
+	.msi_capable = true,
+	.msix_capable = false,
+	.bar[BAR_1] = { .type = BAR_RESERVED, },
+	.bar[BAR_3] = { .type = BAR_RESERVED, },
+	.bar[BAR_5] = { .type = BAR_RESERVED, },
+	.align = SZ_64K,
+};
+
 /*
  * BAR#	| Default BAR enable	| Default BAR Type	| Default BAR Size	| BAR Sizing Scheme
  * ================================================================================================
@@ -1695,6 +1706,14 @@ static const struct imx_pcie_drvdata drv
 		.epc_features = &imx8m_pcie_epc_features,
 		.enable_ref_clk = imx8mm_pcie_enable_ref_clk,
 	},
+	[IMX8Q_EP] = {
+		.variant = IMX8Q_EP,
+		.flags = IMX_PCIE_FLAG_HAS_PHYDRV,
+		.mode = DW_PCIE_EP_TYPE,
+		.epc_features = &imx8q_pcie_epc_features,
+		.clk_names = imx8q_clks,
+		.clks_cnt = ARRAY_SIZE(imx8q_clks),
+	},
 	[IMX95_EP] = {
 		.variant = IMX95_EP,
 		.flags = IMX_PCIE_FLAG_HAS_SERDES |
@@ -1724,6 +1743,7 @@ static const struct of_device_id imx_pci
 	{ .compatible = "fsl,imx8mq-pcie-ep", .data = &drvdata[IMX8MQ_EP], },
 	{ .compatible = "fsl,imx8mm-pcie-ep", .data = &drvdata[IMX8MM_EP], },
 	{ .compatible = "fsl,imx8mp-pcie-ep", .data = &drvdata[IMX8MP_EP], },
+	{ .compatible = "fsl,imx8q-pcie-ep", .data = &drvdata[IMX8Q_EP], },
 	{ .compatible = "fsl,imx95-pcie-ep", .data = &drvdata[IMX95_EP], },
 	{},
 };



  parent reply	other threads:[~2025-08-26 11:44 UTC|newest]

Thread overview: 335+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-26 11:06 [PATCH 6.12 000/322] 6.12.44-rc1 review Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.12 001/322] serial: 8250: fix panic due to PSLVERR Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.12 002/322] ata: Fix SATA_MOBILE_LPM_POLICY description in Kconfig Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.12 003/322] cpufreq: armada-8k: Fix off by one in armada_8k_cpufreq_free_table() Greg Kroah-Hartman
2025-08-26 11:06 ` [PATCH 6.12 004/322] platform/chrome: cros_ec: Unregister notifier in cros_ec_unregister() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 005/322] PM: runtime: Take active children into account in pm_runtime_get_if_in_use() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 006/322] dm: dm-crypt: Do not partially accept write BIOs with zoned targets Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 007/322] dm: Check for forbidden splitting of zone write operations Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 008/322] m68k: Fix lost column on framebuffer debug console Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 009/322] usb: atm: cxacru: Merge cxacru_upload_firmware() into cxacru_heavy_init() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 010/322] usb: gadget: udc: renesas_usb3: fix device leak at unbind Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 011/322] usb: musb: omap2430: " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 012/322] usb: dwc3: meson-g12a: fix device leaks " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 013/322] usb: dwc3: imx8mp: fix device leak " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 014/322] bus: mhi: host: Fix endianness of BHI vector table Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 015/322] bus: mhi: host: Detect events pointing to unexpected TREs Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 016/322] vt: keyboard: Dont process Unicode characters in K_OFF mode Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 017/322] vt: defkeymap: Map keycodes above 127 to K_HOLE Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 018/322] lib/crypto: mips/chacha: Fix clang build and remove unneeded byteswap Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 019/322] crypto: qat - lower priority for skcipher and aead algorithms Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 020/322] crypto: caam - Prevent crash on suspend with iMX8QM / iMX8ULP Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 021/322] crypto: qat - flush misc workqueue during device shutdown Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 022/322] crypto: octeontx2 - Fix address alignment issue on ucode loading Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 023/322] crypto: octeontx2 - Fix address alignment on CN10K A0/A1 and OcteonTX2 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 024/322] crypto: octeontx2 - Fix address alignment on CN10KB and CN10KA-B0 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 025/322] Revert "vgacon: Add check for vc_origin address range in vgacon_scroll()" Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 026/322] ksmbd: fix refcount leak causing resource not released Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 027/322] ksmbd: extend the connection limiting mechanism to support IPv6 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 028/322] tracing: fprobe-event: Sanitize wildcard for fprobe event name Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 029/322] ext4: check fast symlink for ea_inode correctly Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 030/322] ext4: fix fsmap end of range reporting with bigalloc Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 031/322] ext4: fix reserved gdt blocks handling in fsmap Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 032/322] ext4: dont try to clear the orphan_present feature block device is r/o Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 033/322] ext4: use kmalloc_array() for array space allocation Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 034/322] ext4: fix hole length calculation overflow in non-extent inodes Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 035/322] btrfs: zoned: fix write time activation failure for metadata block group Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 036/322] btrfs: fix incorrect log message for nobarrier mount option Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 037/322] btrfs: restore mount option info messages during mount Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 038/322] btrfs: fix printing of mount info messages for NODATACOW/NODATASUM Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 039/322] arm64: dts: ti: k3-am62-main: Remove eMMC High Speed DDR support Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 040/322] arm64: dts: ti: k3-pinctrl: Enable Schmitt Trigger by default Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 041/322] arm64: dts: exynos: gs101: ufs: add dma-coherent property Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 042/322] arm64: dts: ti: k3-am62a7-sk: fix pinmux for main_uart1 Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 043/322] arm64: dts: ti: k3-am62-verdin: Enable pull-ups on I2C buses Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 044/322] apparmor: Fix 8-byte alignment for initial dfa blob streams Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 045/322] dt-bindings: display: sprd,sharkl3-dpu: Fix missing clocks constraints Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 046/322] dt-bindings: display: sprd,sharkl3-dsi-host: " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 047/322] scsi: dt-bindings: mediatek,ufs: Add ufs-disable-mcq flag for UFS host Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 048/322] scsi: ufs: exynos: Fix programming of HCI_UTRL_NEXUS_TYPE Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 049/322] scsi: mpi3mr: Fix race between config read submit and interrupt completion Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 050/322] ata: libata-scsi: Fix ata_to_sense_error() status handling Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 051/322] scsi: ufs: ufs-pci: Fix hibernate state transition for Intel MTL-like host controllers Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 052/322] scsi: ufs: ufs-pci: Fix default runtime and system PM levels Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 053/322] ata: libata-scsi: Fix CDL control Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 054/322] soc: qcom: mdt_loader: Ensure we dont read past the ELF header Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 055/322] zynq_fpga: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 056/322] iio: imu: bno055: fix OOB access of hw_xlate array Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 057/322] iio: adc: ad_sigma_delta: change to buffer predisable Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 058/322] wifi: brcmsmac: Remove const from tbl_ptr parameter in wlc_lcnphy_common_read_table() Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 059/322] wifi: ath12k: fix dest ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 060/322] wifi: ath12k: fix source " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 061/322] wifi: ath12k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 062/322] wifi: ath11k: fix dest ring-buffer corruption Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 063/322] wifi: ath11k: fix source " Greg Kroah-Hartman
2025-08-26 11:07 ` [PATCH 6.12 064/322] wifi: ath11k: fix dest ring-buffer corruption when ring is full Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 065/322] pwm: imx-tpm: Reset counter if CMOD is 0 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 066/322] pwm: mediatek: Handle hardware enable and clock enable separately Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 067/322] pwm: mediatek: Fix duty and period setting Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 068/322] hwmon: (gsc-hwmon) fix fan pwm setpoint show functions Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 069/322] mtd: spi-nor: Fix spi_nor_try_unlock_all() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 070/322] mtd: spinand: propagate spinand_wait() errors from spinand_write_page() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 071/322] mtd: rawnand: fsmc: Add missing check after DMA map Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 072/322] mtd: rawnand: renesas: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 073/322] readahead: fix return value of page_cache_next_miss() when no hole is found Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 074/322] PCI/portdrv: Use is_pciehp instead of is_hotplug_bridge Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 075/322] PCI: endpoint: Fix configfs group list head handling Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 076/322] PCI: endpoint: Fix configfs group removal on driver teardown Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 077/322] PCI: imx6: Add IMX8MM_EP and IMX8MP_EP fixed 256-byte BAR 4 in epc_features Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 078/322] PCI: imx6: Remove apps_reset toggling from imx_pcie_{assert/deassert}_core_reset Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 079/322] PCI: imx6: Delay link start until configfs start written Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 080/322] vsock/virtio: Validate length in packet header before skb_put() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 081/322] vhost/vsock: Avoid allocating arbitrarily-sized SKBs Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 082/322] phy: qcom: phy-qcom-m31: Update IPQ5332 M31 USB phy initialization sequence Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 083/322] amdgpu/amdgpu_discovery: increase timeout limit for IFWI init Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 084/322] ASoC: SOF: amd: acp-loader: Use GFP_KERNEL for DMA allocations in resume context Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 085/322] f2fs: fix to avoid out-of-boundary access in dnode page Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 086/322] jbd2: prevent softlockup in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 087/322] kbuild: userprogs: use correct linker when mixing clang and GNU ld Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 088/322] soc/tegra: pmc: Ensure power-domains are in a known state Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 089/322] parisc: Check region is readable by user in raw_copy_from_user() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 090/322] parisc: Define and use set_pte_at() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 091/322] parisc: Drop WARN_ON_ONCE() from flush_cache_vmap Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 092/322] parisc: Makefile: explain that 64BIT requires both 32-bit and 64-bit compilers Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 093/322] parisc: Rename pte_needs_flush() to pte_needs_cache_flush() in cache.c Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 094/322] parisc: Revise __get_user() to probe user read access Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 095/322] parisc: Revise gateway LWS calls " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 096/322] parisc: Try to fixup kernel exception in bad_area_nosemaphore path of do_page_fault() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 097/322] parisc: Update comments in make_insert_tlb Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 098/322] media: gspca: Add bounds checking to firmware parser Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 099/322] media: hi556: correct the test pattern configuration Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 100/322] media: imx: fix a potential memory leak in imx_media_csc_scaler_device_init() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 101/322] media: ipu6: isys: Use correct pads for xlate_streams() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 102/322] media: vivid: fix wrong pixel_array control size Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 103/322] media: verisilicon: Fix AV1 decoder clock frequency Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 104/322] media: v4l2-ctrls: Dont reset handlers error in v4l2_ctrl_handler_free() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 105/322] media: usbtv: Lock resolution while streaming Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 106/322] media: rainshadow-cec: fix TOCTOU race condition in rain_interrupt() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 107/322] media: pisp_be: Fix pm_runtime underrun in probe Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 108/322] media: ov2659: Fix memory leaks in ov2659_probe() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 109/322] media: mt9m114: Fix deadlock in get_frame_interval/set_frame_interval Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 110/322] media: ivsc: Fix crash at shutdown due to missing mei_cldev_disable() calls Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 111/322] media: qcom: camss: cleanup media device allocated resource on error path Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 112/322] media: venus: Add a check for packet size after reading from shared memory Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 113/322] media: venus: Fix MSM8998 frequency table Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 114/322] media: venus: hfi: explicitly release IRQ during teardown Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 115/322] media: venus: protect against spurious interrupts during probe Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 116/322] media: venus: vdec: Clamp param smaller than 1fps and bigger than 240 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 117/322] media: venus: venc: " Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 118/322] drm/amdgpu/discovery: fix fw based ip discovery Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 119/322] drm/amd: Restore cached power limit during resume Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 120/322] drm/amdgpu: Avoid extra evict-restore process Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 121/322] drm/amdgpu: check if hubbub is NULL in debugfs/amdgpu_dm_capabilities Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 122/322] drm/amdgpu: Initialize data to NULL in imu_v12_0_program_rlc_ram() Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 123/322] drm/amdgpu: Update external revid for GC v9.5.0 Greg Kroah-Hartman
2025-08-26 11:08 ` [PATCH 6.12 124/322] drm/amdgpu: update mmhub 3.0.1 client id mappings Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 125/322] drm/amdgpu: update mmhub 4.1.0 " Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 126/322] drm/amdkfd: Destroy KFD debugfs after destroy KFD wq Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 127/322] drm/amd/display: Add primary plane to commits for correct VRR handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 128/322] drm/amd/display: fix a Null pointer dereference vulnerability Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 129/322] drm/amd/display: Dont overwrite dce60_clk_mgr Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 130/322] LoongArch: KVM: Make function kvm_own_lbt() robust Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 131/322] net, hsr: reject HSR frame if skb cant hold tag Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 132/322] sched/ext: Fix invalid task state transitions on class switch Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 133/322] ipv6: sr: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 134/322] ACPI: pfr_update: Fix the driver update version check Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 135/322] mptcp: drop skb if MPTCP skb extension allocation fails Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 136/322] mptcp: pm: kernel: flush: do not reset ADD_ADDR limit Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 137/322] selftests: mptcp: pm: check flush doesnt reset limits Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 138/322] mm/damon/ops-common: ignore migration request to invalid nodes Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 139/322] x86/sev: Ensure SVSM reserved fields in a page validation entry are initialized to zero Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 140/322] USB: typec: Use str_enable_disable-like helpers Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 141/322] usb: typec: fusb302: cache PD RX state Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 142/322] btrfs: qgroup: drop unused parameter fs_info from __del_qgroup_rb() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 143/322] btrfs: qgroup: fix race between quota disable and quota rescan ioctl Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 144/322] btrfs: move transaction aborts to the error site in add_block_group_free_space() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 145/322] btrfs: always abort transaction on failure to add block group to free space tree Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 146/322] btrfs: abort transaction on unexpected eb generation at btrfs_copy_root() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 147/322] btrfs: explicitly ref count block_group on new_bgs list Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 148/322] btrfs: codify pattern for adding block_group to bg_list Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 149/322] btrfs: zoned: requeue to unused block group list if zone finish failed Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 150/322] xfs: fully decouple XFS_IBULK* flags from XFS_IWALK* flags Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 151/322] btrfs: send: factor out common logic when sending xattrs Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 152/322] btrfs: send: only use boolean variables at process_recorded_refs() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 153/322] btrfs: send: add and use helper to rename current inode when processing refs Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 154/322] btrfs: send: keep the current inodes path cached Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 155/322] btrfs: send: avoid path allocation for the current inode when issuing commands Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 156/322] btrfs: send: use fallocate for hole punching with send stream v2 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 157/322] btrfs: send: make fs_path_len() inline and constify its argument Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 158/322] netfs: Fix unbuffered write error handling Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 159/322] io_uring/net: commit partial buffers on retry Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 160/322] ata: libata-scsi: Return aborted command when missing sense and result TF Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 161/322] sched_ext: initialize built-in idle state before ops.init() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 162/322] Revert "can: ti_hecc: fix -Woverflow compiler warning" Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 163/322] io_uring/futex: ensure io_futex_wait() cleans up properly on failure Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 164/322] iov_iter: iterate_folioq: fix handling of offset >= folio size Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 165/322] iommu/arm-smmu-v3: Fix smmu_domain->nr_ats_masters decrement Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 166/322] mmc: sdhci-pci-gli: Add a new function to simplify the code Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 167/322] memstick: Fix deadlock by moving removing flag earlier Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 168/322] mmc: sdhci-pci-gli: GL9763e: Mask the replay timer timeout of AER Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 169/322] mmc: sdhci-pci-gli: GL9763e: Rename the gli_set_gl9763e() for consistency Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 170/322] NFS: Fix a race when updating an existing write Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 171/322] squashfs: fix memory leak in squashfs_fill_super Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 172/322] mm/debug_vm_pgtable: clear page table entries at destroy_args() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 173/322] mm/memory-failure: fix infinite UCE for VM_PFNMAP pfn Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 174/322] ALSA: hda/realtek: Add support for HP EliteBook x360 830 G6 and EliteBook 830 G6 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 175/322] RDMA/rxe: Flush delayed SKBs while releasing RXE resources Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 176/322] s390/sclp: Fix SCCB present check Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 177/322] platform/x86/intel-uncore-freq: Check write blocked for ELC Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 178/322] kvm: retry nx_huge_page_recovery_thread creation Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 179/322] accel/habanalabs/gaudi2: Use kvfree() for memory allocated with kvcalloc() Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 180/322] drm/amdgpu/swm14: Update power limit logic Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 181/322] drm/amd/display: Avoid a NULL pointer dereference Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 182/322] drm/amd/display: Dont overclock DCE 6 by 15% Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 183/322] drm/amd/display: Fix fractional fb divider in set_pixel_clock_v3 Greg Kroah-Hartman
2025-08-26 11:09 ` [PATCH 6.12 184/322] drm/amd/display: Fix Xorg desktop unresponsive on Replay panel Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 185/322] drm/amd/display: Fix DP audio DTO1 clock source on DCE 6 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 186/322] drm/amd/display: Find first CRTC and its line time in dce110_fill_display_configs Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 187/322] drm/amd/display: Fill display clock and vblank " Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 188/322] scsi: core: Fix command pass through retry regression Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 189/322] soc: qcom: mdt_loader: Fix error return values in mdt_header_valid() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 190/322] mptcp: remove duplicate sk_reset_timer call Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 191/322] mptcp: disable add_addr retransmission when timeout is 0 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 192/322] Mark xe driver as BROKEN if kernel page size is not 4kB Greg Kroah-Hartman
2025-08-26 11:10 ` Greg Kroah-Hartman [this message]
2025-08-26 11:10 ` [PATCH 6.12 194/322] PCI: imx6: Add IMX8MQ_EP third 64-bit BAR in epc_features Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 195/322] PCI: rockchip: Use standard PCIe definitions Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 196/322] PCI: rockchip: Set Target Link Speed to 5.0 GT/s before retraining Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 197/322] iio: adc: ad7173: fix setting ODR in probe Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 198/322] scsi: mpi3mr: Drop unnecessary volatile from __iomem pointers Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 199/322] scsi: mpi3mr: Serialize admin queue BAR writes on 32-bit systems Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 200/322] ext4: preserve SB_I_VERSION on remount Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 201/322] btrfs: subpage: keep TOWRITE tag until folio is cleaned Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 202/322] arm64: dts: ti: k3-am6*: Add boot phase flag to support MMC boot Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 203/322] arm64: dts: ti: k3-am62*: Add non-removable flag for eMMC Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 204/322] arm64: dts: ti: k3-am6*: Remove disable-wp " Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 205/322] arm64: dts: ti: k3-am62*: Move eMMC pinmux to top level board file Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 206/322] debugfs: fix mount options not being applied Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 207/322] smb: server: split ksmbd_rdma_stop_listening() out of ksmbd_rdma_destroy() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 208/322] fs/buffer: fix use-after-free when call bh_read() helper Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 209/322] use uniform permission checks for all mount propagation changes Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 210/322] cpuidle: menu: Remove iowait influence Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 211/322] cpuidle: governors: menu: Avoid selecting states with too much latency Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 212/322] drm/dp: Change AUX DPCD probe address from DPCD_REV to LANE0_1_STATUS Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 213/322] mmc: sdhci_am654: Disable HS400 for AM62P SR1.0 and SR1.1 Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 214/322] fpga: zynq_fpga: Fix the wrong usage of dma_map_sgtable() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 215/322] ftrace: Also allocate and copy hash for reading of filter files Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 216/322] iio: pressure: bmp280: Use IS_ERR() in bmp280_common_probe() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 217/322] iio: proximity: isl29501: fix buffered read on big-endian systems Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 218/322] most: core: Drop device reference after usage in get_channel() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 219/322] kcov, usb: Dont disable interrupts in kcov_remote_start_usb_softirq() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 220/322] cdx: Fix off-by-one error in cdx_rpmsg_probe() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 221/322] usb: quirks: Add DELAY_INIT quick for another SanDisk 3.2Gen1 Flash Drive Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 222/322] comedi: Make insn_rw_emulate_bits() do insn->n samples Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 223/322] comedi: pcl726: Prevent invalid irq number Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 224/322] comedi: Fix use of uninitialized memory in do_insn_ioctl() and do_insnlist_ioctl() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 225/322] usb: core: hcd: fix accessing unmapped memory in SINGLE_STEP_SET_FEATURE test Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 226/322] usb: renesas-xhci: Fix External ROM access timeouts Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 227/322] USB: storage: Add unusual-devs entry for Novatek NTK96550-based camera Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 228/322] usb: storage: realtek_cr: Use correct byte order for bcs->Residue Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 229/322] USB: storage: Ignore driver CD mode for Realtek multi-mode Wi-Fi dongles Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 230/322] usb: typec: maxim_contaminant: disable low power mode when reading comparator values Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 231/322] usb: typec: maxim_contaminant: re-enable cc toggle if cc is open and port is clean Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 232/322] usb: xhci: Fix slot_id resource race conflict Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 233/322] usb: dwc3: Ignore late xferNotReady event to prevent halt timeout Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 234/322] usb: dwc3: Remove WARN_ON for device endpoint command timeouts Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 235/322] usb: dwc3: pci: add support for the Intel Wildcat Lake Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 236/322] iio: light: Use aligned_s64 instead of open coding alignment Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 237/322] iio: light: as73211: Ensure buffer holes are zeroed Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 238/322] iio: temperature: maxim_thermocouple: use DMA-safe buffer for spi_read() Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 239/322] tracing: Remove unneeded goto out logic Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 240/322] tracing: Limit access to parser->buffer when trace_get_user failed Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 241/322] drm/i915/icl+/tc: Convert AUX powered WARN to a debug message Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 242/322] compiler: remove __ADDRESSABLE_ASM{_STR,}() again Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 243/322] drm/i915/icl+/tc: Cache the max lane count value Greg Kroah-Hartman
2025-08-26 11:10 ` [PATCH 6.12 244/322] ovl: use I_MUTEX_PARENT when locking parent in ovl_create_temp() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 245/322] powerpc/boot: Fix build with gcc 15 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 246/322] tls: fix handling of zero-length records on the rx_list Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 247/322] iio: imu: inv_icm42600: switch timestamp type from int64_t __aligned(8) to aligned_s64 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 248/322] iio: imu: inv_icm42600: use = { } instead of memset() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 249/322] iio: imu: inv_icm42600: Convert to uXX and sXX integer types Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 250/322] iio: imu: inv_icm42600: change invalid data error to -EBUSY Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 251/322] x86/cpu/hygon: Add missing resctrl_cpu_detect() in bsp_init helper Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 252/322] spi: spi-fsl-lpspi: Clamp too high speed_hz Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 253/322] drm/nouveau/nvif: Fix potential memory leak in nvif_vmm_ctor() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 254/322] cgroup/cpuset: Use static_branch_enable_cpuslocked() on cpusets_insane_config_key Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 255/322] cgroup/cpuset: Fix a partition error with CPU hotplug Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 256/322] drm/tests: Fix endian warning Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 257/322] drm/panic: Move drawing functions to drm_draw Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 258/322] drm/format-helper: Add conversion from XRGB8888 to BGR888 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 259/322] drm/format-helper: Move helpers for pixel conversion to header file Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 260/322] drm/format-helper: Add generic conversion to 32-bit formats Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 261/322] drm/tests: Do not use drm_fb_blit() in format-helper tests Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 262/322] drm/tests: Fix drm_test_fb_xrgb8888_to_xrgb2101010() on big-endian Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 263/322] iosys-map: Fix undefined behavior in iosys_map_clear() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 264/322] rust: alloc: replace aligned_size() with Kmalloc::aligned_layout() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 265/322] RDMA/erdma: Fix ignored return value of init_kernel_qp Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 266/322] RDMA/hns: Fix querying wrong SCC context for DIP algorithm Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 267/322] RDMA/bnxt_re: Fix to do SRQ armena by default Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 268/322] RDMA/bnxt_re: Fix to remove workload check in SRQ limit path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 269/322] RDMA/bnxt_re: Fix a possible memory leak in the driver Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 270/322] RDMA/bnxt_re: Fix to initialize the PBL array Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 271/322] RDMA/hns: Fix dip entries leak on devices newer than hip09 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 272/322] net: xilinx: axienet: Fix RX skb ring management in DMAengine mode Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 273/322] net: bridge: fix soft lockup in br_multicast_query_expired() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 274/322] rtase: Fix Rx descriptor CRC error bit definition Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 275/322] scsi: qla4xxx: Prevent a potential error pointer dereference Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 276/322] iommu/amd: Avoid stack buffer overflow from kernel cmdline Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 277/322] Bluetooth: hci_sync: Fix scan state after PA Sync has been established Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 278/322] Bluetooth: btmtk: Fix wait_on_bit_timeout interruption during shutdown Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 279/322] Bluetooth: hci_sync: Prevent unintended PA sync when SID is 0xFF Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 280/322] Bluetooth: hci_event: fix MTU for BN == 0 in CIS Established Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 281/322] Bluetooth: hci_conn: do return error from hci_enhanced_setup_sync() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 282/322] mlxsw: spectrum: Forward packets with an IPv4 link-local source IP Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 283/322] rust: alloc: fix `rusttest` by providing `Cmalloc::aligned_layout` too Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 284/322] drm/hisilicon/hibmc: refactored struct hibmc_drm_private Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 285/322] drm/hisilicon/hibmc: fix the i2c device resource leak when vdac init failed Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 286/322] drm/hisilicon/hibmc: fix the hibmc loaded failed bug Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 287/322] ALSA: usb-audio: Fix size validation in convert_chmap_v3() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 288/322] drm/amd/display: Add null pointer check in mod_hdcp_hdcp1_create_session() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 289/322] drm/amd/display: Dont print errors for nonexistent connectors Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 290/322] net: gso: Forbid IPv6 TSO with extensions on devices with only IPV6_CSUM Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 291/322] ipv6: sr: validate HMAC algorithm ID in seg6_hmac_info_add Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 292/322] net: ethernet: mtk_ppe: add RCU lock around dev_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 293/322] ppp: fix race conditions in ppp_fill_forward_path Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 294/322] net: ti: icssg-prueth: Fix HSR and switch offload Enablement during firwmare reload Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 295/322] cifs: Fix oops due to uninitialised variable Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 296/322] phy: mscc: Fix timestamping for vsc8584 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 297/322] net: usb: asix_devices: Fix PHY address mask in MDIO bus initialization Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 298/322] gve: prevent ethtool ops after shutdown Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 299/322] net/smc: fix UAF on smcsk after smc_listen_out() Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 300/322] microchip: lan865x: fix missing netif_start_queue() call on device open Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 301/322] microchip: lan865x: fix missing Timer Increment config for Rev.B0/B1 Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 302/322] LoongArch: Optimize module load time by optimizing PLT/GOT counting Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 303/322] s390/mm: Do not map lowcore with identity mapping Greg Kroah-Hartman
2025-08-26 11:11 ` [PATCH 6.12 304/322] ixgbe: xsk: resolve the negative overflow of budget in ixgbe_xmit_zc Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 305/322] igc: fix disabling L1.2 PCI-E link substate on I226 on init Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 306/322] net: dsa: microchip: Fix KSZ9477 HSR port setup issue Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 307/322] net/sched: Make cake_enqueue return NET_XMIT_CN when past buffer_limit Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 308/322] net/sched: Remove unnecessary WARNING condition for empty child qdisc in htb_activate Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 309/322] ALSA: timer: fix ida_free call while not allocated Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 310/322] bonding: update LACP activity flag after setting lacp_active Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 311/322] bonding: send LACPDUs periodically in passive mode after receiving partners LACPDU Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 312/322] Octeontx2-af: Skip overlap check for SPI field Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 313/322] net/mlx5: Base ECVF devlink port attrs from 0 Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 314/322] net/mlx5: Relocate function declarations from port.h to mlx5_core.h Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 315/322] net/mlx5: Add IFC bits and enums for buf_ownership Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 316/322] net/mlx5e: Query FW for buffer ownership Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 317/322] net/mlx5e: Preserve shared buffer capacity during headroom updates Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 318/322] ALSA: usb-audio: Use correct sub-type for UAC3 feature unit validation Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 319/322] s390/hypfs: Avoid unnecessary ioctl registration in debugfs Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 320/322] s390/hypfs: Enable limited access during lockdown Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 321/322] netfilter: nf_reject: dont leak dst refcount for loopback packets Greg Kroah-Hartman
2025-08-26 11:12 ` [PATCH 6.12 322/322] alloc_fdtable(): change calling conventions Greg Kroah-Hartman
2025-08-26 14:36 ` [PATCH 6.12 000/322] 6.12.44-rc1 review Miguel Ojeda
2025-08-26 17:44 ` Jon Hunter
2025-08-26 17:55 ` Brett A C Sheffield
2025-08-26 19:55 ` [PATCH 6.12 000/322] " Florian Fainelli
2025-08-26 20:30 ` Pavel Machek
2025-08-26 22:06 ` Peter Schneider
2025-08-27  9:06 ` Ron Economos
2025-08-27  9:30 ` Anders Roxell
2025-08-27 11:13 ` Mark Brown
2025-08-27 15:46 ` Harshit Mogalapalli
2025-08-27 16:04 ` Brett Mastbergen
2025-09-04  8:08 ` Pavel Machek

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=20250826110920.630944423@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Frank.Li@nxp.com \
    --cc=bhelgaas@google.com \
    --cc=hongxing.zhu@nxp.com \
    --cc=kwilczynski@kernel.org \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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