patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Oleksij Rempel <o.rempel@pengutronix.de>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>,
	mcoquelin.stm32@gmail.com, alexandre.torgue@foss.st.com,
	rmk+kernel@armlinux.org.uk, andrew@lunn.ch, 0x1207@gmail.com,
	pabeni@redhat.com, alexandre.f.demers@gmail.com,
	netdev@vger.kernel.org, linux-stm32@st-md-mailman.stormreply.com,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH AUTOSEL 6.17-6.6] net: stmmac: Correctly handle Rx checksum offload errors
Date: Sat, 25 Oct 2025 11:54:33 -0400	[thread overview]
Message-ID: <20251025160905.3857885-42-sashal@kernel.org> (raw)
In-Reply-To: <20251025160905.3857885-1-sashal@kernel.org>

From: Oleksij Rempel <o.rempel@pengutronix.de>

[ Upstream commit ee0aace5f844ef59335148875d05bec8764e71e8 ]

The stmmac_rx function would previously set skb->ip_summed to
CHECKSUM_UNNECESSARY if hardware checksum offload (CoE) was enabled
and the packet was of a known IP ethertype.

However, this logic failed to check if the hardware had actually
reported a checksum error. The hardware status, indicating a header or
payload checksum failure, was being ignored at this stage. This could
cause corrupt packets to be passed up the network stack as valid.

This patch corrects the logic by checking the `csum_none` status flag,
which is set when the hardware reports a checksum error. If this flag
is set, skb->ip_summed is now correctly set to CHECKSUM_NONE,
ensuring the kernel's network stack will perform its own validation and
properly handle the corrupt packet.

Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Link: https://patch.msgid.link/20250818090217.2789521-2-o.rempel@pengutronix.de
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---

LLM Generated explanations, may be completely bogus:

YES

Explanation

- Bug fixed and user-visible
  - Current code marks all IP packets as hardware-verified when Rx
    checksum offload is enabled, even if hardware flagged a checksum
    error. See
    drivers/net/ethernet/stmicro/stmmac/stmmac_main.c:5738-5741: it sets
    `skb->ip_summed = CHECKSUM_UNNECESSARY` whenever `coe` is enabled
    and the packet has an IP ethertype, without considering hardware
    error status.
  - With enhanced descriptors, the hardware reports header or payload
    checksum failures via the `csum_none` status. The driver currently
    ignores this and can pass corrupted packets up the stack as if
    checksum was valid.

- What the patch changes
  - The patch adds the hardware error check to the decision: if `status
    & csum_none` is set, the driver does not mark the checksum as
    verified. Concretely, it changes the condition to
    - from: `if (unlikely(!coe) || !stmmac_has_ip_ethertype(skb)) ...
      else skb->ip_summed = CHECKSUM_UNNECESSARY;`
    - to: `if (unlikely(!coe) || !stmmac_has_ip_ethertype(skb) ||
      (status & csum_none)) ... else skb->ip_summed =
      CHECKSUM_UNNECESSARY;`
  - This ensures `skb->ip_summed` remains `CHECKSUM_NONE` (asserted by
    `skb_checksum_none_assert(skb)`), so the network stack will
    compute/verify checksums in software and properly drop/handle
    corrupted packets.

- Why this is correct
  - For enhanced descriptors, the driver maps hardware status
    combinations indicating IP header or payload checksum errors to
    `csum_none` (i.e., “checksum not good”). See
    drivers/net/ethernet/stmicro/stmmac/enh_desc.c:105, 107, 109 where
    `enh_desc_coe_rdes0()` returns `csum_none` when the hardware
    indicates header/payload checksum errors.
  - The `csum_none` bit is explicitly defined as an Rx frame status in
    drivers/net/ethernet/stmicro/stmmac/common.h:343 (`enum
    rx_frame_status { ... csum_none = 0x2, ... }`).
  - Normal descriptor paths already drop errored frames early (e.g., see
    drivers/net/ethernet/stmicro/stmmac/norm_desc.c:52-100), so this
    change primarily corrects behavior for enhanced descriptors.

- Scope and risk
  - The change is small, localized to a single if-condition in
    `stmmac_rx()`. No architectural changes, no ABI changes.
  - If `csum_none` is set, the fix only downgrades to software
    verification, which is conservative and safe. The worst-case impact
    is mild extra CPU work for packets with checksum errors, which is
    acceptable.
  - For hardware/paths that never set `csum_none` (e.g., normal
    descriptors), behavior is unchanged.

- Security and correctness impact
  - Previously, packets with failed L3/L4 checksum could be marked as
    checksum-validated and accepted by upper layers. This is a
    correctness bug with potential security implications (transport-
    layer checksum bypass). The patch prevents that by forcing software
    verification when hardware signals errors.

- Additional note for completeness
  - There is a similar unconditional checksum-trust in the zero-copy/XDP
    dispatch path:
    drivers/net/ethernet/stmicro/stmmac/stmmac_main.c:5221-5224. It uses
    the same pattern and likely needs the same `(status & csum_none)`
    check. While not a blocker for this fix, stable trees should
    consider pulling a companion patch for the ZC path to ensure
    consistent behavior across receive paths.

- Stable backport criteria
  - Important bugfix affecting data integrity/correctness.
  - Minimal, contained change in a driver subsystem.
  - No new features, no architectural change, low regression risk.
  - Clear positive safety/security implications.

Given the above, this commit is a strong candidate for backporting to
stable trees.

 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index b9f55e4e360fb..7a375de2258c4 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -5735,7 +5735,8 @@ static int stmmac_rx(struct stmmac_priv *priv, int limit, u32 queue)
 
 		skb->protocol = eth_type_trans(skb, priv->dev);
 
-		if (unlikely(!coe) || !stmmac_has_ip_ethertype(skb))
+		if (unlikely(!coe) || !stmmac_has_ip_ethertype(skb) ||
+		    (status & csum_none))
 			skb_checksum_none_assert(skb);
 		else
 			skb->ip_summed = CHECKSUM_UNNECESSARY;
-- 
2.51.0


  parent reply	other threads:[~2025-10-25 16:11 UTC|newest]

Thread overview: 500+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-10-25 15:53 [PATCH AUTOSEL 6.17] serial: qcom-geni: Add DFS clock mode support to GENI UART driver Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] wifi: mt76: improve phy reset on hw restart Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.1] net: phy: fixed_phy: let fixed_phy_unregister free the phy_device Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] media: nxp: imx8-isi: Fix streaming cleanup on release Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.12] Bluetooth: btusb: Add new VID/PID 13d3/3633 for MT7922 Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] drm/panel-edp: Add SHP LQ134Z1 panel for Dell XPS 9345 Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] drm/msm/a6xx: Switch to GMU AO counter Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Add AVI infoframe copy in copy_stream_update_to_stream Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Update tiled to tiled copy command Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] net: intel: fm10k: Fix parameter idx set but not used Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] ASoC: SOF: ipc4-pcm: Add fixup for channels Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: wait for otg update pending latch before clock optimization Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] iommu/vt-d: Remove LPIG from page group response descriptor Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: skip mgpu fan boost for multi-vf Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] fbcon: Use screen info to find primary device Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe/pcode: Initialize data0 for pcode read routine Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/msm/registers: Generate _HI/LO builders for reg64 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs: return ENOMEM if less than requested pages were pinned Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] ALSA: usb-audio: apply quirk for MOONDROP Quark2 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] allow finish_no_open(file, ERR_PTR(-E...)) Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] amd/amdkfd: enhance kfd process check in switch partition Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] scsi: lpfc: Define size of debugfs entry for xri rebalancing Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] iio: adc: ad7124: do not require mclk Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe: improve dma-resv handling for backup object Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] f2fs: fix infinite loop in __insert_extent_tree() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: fix nullptr err of vm_handle_moved Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.10] drm/bridge: display-connector: don't set OP_DETECT for DisplayPorts Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] wifi: iwlwifi: mld: trigger mlo scan only when not in EMLSR Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Keep PLL0 running on DCE 6.0 and 6.4 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] scsi: ufs: ufs-qcom: Disable lane clocks during phy hibern8 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: fix dmub access race condition Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.10] eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Fix pbn_div Calculation Error Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] ASoC: es8323: remove DAC enablement write from es8323_probe Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] usb: xhci-pci: add support for hosts with zero USB3 ports Sasha Levin
2025-10-25 16:47   ` Michal Pecio
2025-11-04 13:46     ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] ipv6: np->rxpmtu race annotation Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] selftests: pci_endpoint: Skip IRQ test if IRQ is out of range Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Correct info field of bad page threshold exceed CPER Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: don't enable SMU on cyan skillfish Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] extcon: axp288: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:54 ` Sasha Levin [this message]
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: Set def_wcid pointer in mt7996_mac_sta_init_link() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] rpmsg: char: Export alias for RPMSG ID rpmsg-raw from table Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu/atom: Check kcalloc() for WS buffer in amdgpu_atom_execute_table_locked() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] PCI/ERR: Update device error_state already after reset Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] PCI: imx6: Enable the Vaux supply if available Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] ASoC: ops: improve snd_soc_get_volsw Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/msm/dpu: Filter modes based on adjusted mode clock Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.1] selftests: net: replace sleeps in fcnal-test with waits Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] crypto: ccp - Fix incorrect payload size calculation in psp_poulate_hsti() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs/gaudi2: fix BMON disable configuration Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: danube: add missing device_type in pci node Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Only validate format in querystd Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] tty: serial: Modify the use of dev_err_probe() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] powerpc/eeh: Use result of error_detected() in uevent Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Cache streams targeting link when performing LT automation Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] selftests/net: Replace non-standard __WORDSIZE with sizeof(long) * 8 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.15] ALSA: seq: Fix KCSAN data-race warning at snd_seq_fifo_poll_wait() Sasha Levin
2025-11-06  8:49   ` Barry K. Nathan
2025-11-06 14:30     ` Sasha Levin
2025-11-06 23:57       ` Barry K. Nathan
2025-11-07 14:38         ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Update IPID value for bad page threshold CPER Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] ASoC: mediatek: Use SND_JACK_AVOUT for HDMI/DP jacks Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] net: macb: avoid dealing with endianness in macb_set_hwaddr() Sasha Levin
2025-11-01  9:01   ` Théo Lebrun
2025-11-01 19:18     ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] char: misc: Make misc_register() reentry for miscdevice who wants dynamic minor Sasha Levin
2025-10-26 20:20   ` Thadeu Lima de Souza Cascardo
2025-11-04 13:48     ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] selftests: drv-net: wait for carrier Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe/ptl: Apply Wa_16026007364 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/amdgpu: Release xcp drm memory after unplug Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] media: ov08x40: Fix the horizontal flip control Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] eth: fbnic: Reset hw stats upon PCI error Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] bnxt_en: Add Hyper-V VF ID Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] ASoC: pxa: add GPIOLIB_LEGACY dependency Sasha Levin
2025-10-27  9:23   ` Arnd Bergmann
2025-11-04 13:48     ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] fuse: zero initialize inode private data Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe: Set GT as wedged before sending wedged uevent Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] vfio/nvgrace-gpu: Add GB300 SKU to the devid table Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] ksmbd: use sock_create_kern interface to create kernel socket Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs: support mapping cb with vmalloc-backed coherent memory Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] crypto: sun8i-ce - remove channel timeout field Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: fix dml ms order of operations Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] selftests/net: Ensure assert() triggers in psock_tpacket.c Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] Bluetooth: ISO: Don't initiate CIS connections if there are no buffers Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] wifi: mt76: mt7996: Temporarily disable EPCS Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] iio: adc: imx93_adc: load calibrated values even calibration failed Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] x86/vsyscall: Do not require X86_PF_INSTR to emulate vsyscall Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] crypto: caam - double the entropy delay interval for retry Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] platform/x86/intel-uncore-freq: Fix warning in partitioned system Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] PCI: Set up bridge resources earlier Sasha Levin
2025-10-27 12:39   ` Ilpo Järvinen
2025-11-04 13:51     ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: Allow kfd CRIU with no buffer objects Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.10] wifi: ath10k: Fix connection after GTK rekeying Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: renew a completion for each H2C command waiting C2H event Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] docs: kernel-doc: avoid script crash on ancient Python Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe/i2c: Enable bus mastering Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] scsi: ufs: core: Change MCQ interrupt enable flow Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] orangefs: fix xattr related buffer overflow Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] net: When removing nexthops, don't call synchronize_net if it is not necessary Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] netlink: specs: fou: change local-v6/peer-v6 check Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/panel: ilitek-ili9881c: turn off power-supply when init fails Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] idpf: do not linearize big TSO packets Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] remoteproc: wkup_m3: Use devm_pm_runtime_enable() helper Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: support parsing S1G TIM PVB Sasha Levin
2025-10-25 18:36   ` Johannes Berg
2025-10-26  3:23     ` Lachlan Hodges
2025-11-04 13:52       ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] wifi: ath12k: Increase DP_REO_CMD_RING_SIZE to 256 Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] smsc911x: add second read of EEPROM mac when possible corruption seen Sasha Levin
2025-10-28 12:53   ` Colin Foster
2025-11-04 13:55     ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: Respect max pixel clock for HDMI and DVI-D (v2) Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] wifi: rtw89: disable RTW89_PHYSTS_IE09_FTR_0 for ppdu status Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: update dpp/disp clock from smu clock table Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] net: sh_eth: Disable WoL if system can not suspend Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Fix invalid access in vccqx handling Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: Add fast sync field in ultra sleep more for DMUB Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] bnxt_en: Add fw log trace support for 5731X/5741X chips Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: Fix 6 GHz Band capabilities element advertisement in lower bands Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amdgpu: refactor bad_page_work for corner case handling Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] ethernet: Extend device_get_mac_address() to use NVMEM Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] ASoC: tas2781: Add keyword "init" in profile section Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] can: rcar_canfd: Update bit rate constants for RZ/G3E and R-Car Gen4 Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] drm: panel-backlight-quirks: Make EDID match optional Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] s390/pci: Use pci_uevent_ers() in PCI recovery Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] media: em28xx: add special case for legacy gpiolib interface Sasha Levin
2025-10-27  9:24   ` Arnd Bergmann
2025-11-04 13:55     ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe/configfs: Enforce canonical device names Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] wifi: rtw89: add dummy C2H handlers for BCN resend and update done Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] HID: pidff: PERMISSIVE_CONTROL quirk autodetection Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Release hive reference properly Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: Fix dmub_cmd header alignment Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: dont wait for pipe update during medupdate/highirq Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] ntfs3: pretend $Extend records as regular files Sasha Levin
2025-10-26  8:12   ` Tetsuo Handa
2025-11-04 13:56     ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.10] udp_tunnel: use netdev_warn() instead of netdev_WARN() Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] drm/msm: make sure to not queue up recovery more than once Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/st7571-i2c: add support for inverted pixel format Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/panthor: Serialize GPU cache flush operations Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] platform/x86: think-lmi: Add extra TC BIOS error messages Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] serdev: Drop dev_pm_domain_detach() call Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] crypto: hisilicon/qm - clear all VF configurations in the hardware Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] drm/msm/dsi/phy_7nm: Fix missing initial VCO rate Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftests: drv-net: devmem: add / correct the IPv6 support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Change reset sequence for improved stability Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] hwrng: timeriomem - Use us_to_ktime() where appropriate Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] tcp: Update bind bucket state on port release Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/xe: Extend Wa_22021007897 to Xe3 platforms Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] openrisc: Add R_OR1K_32_PCREL relocation type module support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/nouveau: always set RMDevidCheckIgnore for GSP-RM Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] net: ethernet: microchip: sparx5: make it selectable for ARCH_LAN969X Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] scsi: mpi3mr: Fix controller init failure on fault during queue creation Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs/gaudi2: read preboot status after recovering from dirty state Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/xe: Cancel pending TLB inval workers on teardown Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] drm/msm/dsi/phy: Toggle back buffer resync after preparing PLL Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] PCI: Disable MSI on RDC PCI to PCIe bridges Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Disable auto-hibern8 during power mode changes Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] PCI/PM: Skip resuming to D0 if device is disconnected Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Increase AUX Intra-Hop Done Max Wait Duration Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Do not write format to device in set_fmt Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] net: Call trace_sock_exceed_buf_limit() for memcg failure with SK_MEM_RECV Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Clean up allocated queues when queue setup mbox commands fail Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] Bluetooth: btintel_pcie: Define hdev->wakeup() callback Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] ALSA: usb-audio: add mono main switch to Presonus S1824c Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] tty/vt: Add missing return value for VT_RESIZE in vt_ioctl() Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] net: bridge: Install FDB for bridge MAC on VLAN 0 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] Fix access to video_is_primary_device() when compiled without CONFIG_VIDEO Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Support HW cursor 180 rot for any number of pipe splits Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Avoid jpeg v5.0.1 poison irq call trace on sriov guest Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] drm/amd/display: Set up pixel encoding for YCBCR422 Sasha Levin
2025-10-25 18:24   ` Mario Limonciello
2025-11-04 14:13     ` Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] char: misc: Does not request module for miscdevice with dynamic minor Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] drm/amd/pm: Use cached metrics data on arcturus Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] drm/nouveau: replace snprintf() with scnprintf() in nvkm_snprintbf() Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] char: Use list_del_init() in misc_deregister() to reinitialize list pointer Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftest: net: Fix error message if empty variable Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] media: imx-mipi-csis: Only set clock rate when specified in DT Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] scsi: ufs: ufs-qcom: Align programming sequence of Shared ICE for UFS controller v5 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: danube: add missing properties to cpu node Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] wifi: mt76: mt76_eeprom_override to int Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Effective health check before reset Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display/dml2: Guard dml21_map_dc_state_into_dml_display_cfg with DC_FP_START Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] HID: pidff: Use direction fix only for conditional effects Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] ASoC: es8323: add proper left/right mixer controls via DAPM Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] dm error: mark as DM_TARGET_PASSES_INTEGRITY Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add fenced regwrite support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] wifi: mac80211: Get the correct interface for non-netdev skb status Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix vcn v5.0.1 poison irq call trace Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_ncm: Fix MAC assignment NCM ethernet Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] net: phy: dp83640: improve phydev and driver removal handling Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/tidss: Remove early fb Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] ice: Don't use %pK through printk or tracepoints Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: disable promiscuous mode by default Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: incorrect conditions for failing dto calculations Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftests: ncdevmem: don't retry EFAULT Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amd/pm: refine amdgpu pm sysfs node error code Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] IB/ipoib: Ignore L3 master device Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] selftests: Disable dad for ipv6 in fcnal-test.sh Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Skip poison aca bank from UE channel Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Wait until OTG enable state is cleared Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] wifi: rtw89: coex: Limit Wi-Fi scan slot cost to avoid A2DP glitch Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] PCI: endpoint: pci-epf-test: Limit PCIe BAR size for fixed BARs Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] net: phy: clear link parameters on admin link down Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] net: call cond_resched() less often in __release_sock() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Increase GuC crash dump buffer size Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: iwlwifi: fw: Add ASUS to PPAG and TAS list Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Init dispclk from bootup clock for DCN314 Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] net: Prevent RPS table overwrite of active flows Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: set SIFCTR register Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] drm/amd/display: add more cyan skillfish devices Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: codecs: wsa883x: Handle shared reset GPIO for WSA883x speakers Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amdgpu/vpe: cancel delayed work in hw_fini Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Fix PWM mode switch issue Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] platform/x86/amd/pmf: Fix the custom bios input handling mechanism Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/wcl: Extend L3bank mask workaround Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Set upper limit of H2G retries over CTB Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: fix BSSID comparison for non-transmitted BSSID Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Increase minimum clock for TMDS 420 with pipe splitting Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] wifi: mac80211: Fix HE capabilities element check Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Enhance recovery on hibernation exit failure Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] bus: mhi: host: pci_generic: Add support for all Foxconn T99W696 SKU variants Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.10] iommu/amd: Skip enabling command/event buffers for kdump Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] remoteproc: qcom: q6v5: Avoid handling handover twice Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] netfilter: nf_tables: all transaction allocations can now sleep Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] media: qcom: camss: csiphy-3ph: Add CSIPHY 2ph DPHY v2.0.1 init sequence Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: mt76: mt7996: fix memory leak on mt7996_mcu_sta_key_tlv error Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] NFSv4.1: fix mount hang after CREATE_SESSION failure Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] extcon: fsa9480: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.10] r8169: set EEE speed down ratio to 1 Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: mv_xor: match alloc_wc and free_wc Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe: Make page size consistent in loop Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] rds: Fix endianness annotation for RDS_MPATH_HASH Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] jfs: fix uninitialized waitqueue in transaction manager Sasha Levin
2025-10-25 16:19   ` syzbot
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] crypto: hisilicon/qm - invalidate queues in use Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.15] drm/amd/pm: Use cached metrics data on aldebaran Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] virtio_fs: fix the hash table using in virtio_fs_enqueue_req() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: stmmac: est: Drop frames causing HLBS error Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: ipv4: allow directed broadcast routes to use dst hint Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/guc: Add devm release action to safely tear down CT Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] media: redrat3: use int type to store negative error codes Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: dsa: felix: support phy-mode = "10g-qxgmii" Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] phy: renesas: r8a779f0-ether-serdes: add new step added to latest datasheet Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] wifi: mac80211: count reg connection element in the size Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] idpf: link NAPIs to queues Sasha Levin
2025-10-27 15:19   ` Alexander Lobakin
2025-10-28 17:50     ` Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/pf: Program LMTT directory pointer on all GTs within a tile Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/panthor: check bo offset alignment in vm bind Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: use reset controller Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] sparc: Replace __ASSEMBLY__ with __ASSEMBLER__ in uapi headers Sasha Levin
2025-10-27  8:09   ` Andreas Larsson
2025-11-04 14:14     ` Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] jfs: Verify inode mode when loading from disk Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Add fallback to pipe reset if KCQ ring reset fails Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] net: ipv6: fix field-spanning memcpy warning in AH output Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.15] scsi: libfc: Fix potential buffer overflow in fc_ct_ms_fill() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: exynos: fsd: Gate ref_clk and put UFS device in reset on suspend Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: reject gang submissions under SRIOV Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7925: add pci restore for hibernate Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: rtw89: Add USB ID 2001:3327 for D-Link AX18U rev. A1 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] iio: light: isl29125: Use iio_push_to_buffers_with_ts() to allow source size runtime check Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] net: mana: Reduce waiting time if HWC not responding Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] drm/amd: Avoid evicting resources at S5 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] drm/amdgpu/jpeg: Hold pg_lock before jpeg poweroff Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Check vcn sram load return value Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Indicate when custom brightness curves are in use Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: change dc stream color settings only in atomic commit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/sharp-memory: Do not access GEM-DMA vaddr directly Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] drm/bridge: cdns-dsi: Don't fail on MIPI_DSI_MODE_VIDEO_BURST Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] gpu: nova-core: register: allow fields named `offset` Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] selftests: drv-net: devmem: flip the direction of Tx tests Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] misc: pci_endpoint_test: Skip IRQ tests if irq is out of range Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ALSA: serial-generic: remove shared static buffer Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] fs: ext4: change GFP_KERNEL to GFP_NOFS to avoid deadlock Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] media: i2c: Kconfig: Ensure a dependency on HAVE_CLK for VIDEO_CAMERA_SENSOR Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] net: dsa: microchip: Set SPI as bus interface during reset for KSZ8463 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] drm/amdkfd: Handle lack of READ permissions in SVM mapping Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/xe/guc: Always add CT disable action during second init step Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] crypto: ccp: Skip SEV and SNP INIT for kdump boot Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] exfat: validate cluster allocation bits of the allocation bitmap Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] scsi: pm80xx: Fix race condition caused by static variables Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] media: pci: ivtv: Don't create fake v4l2_fh Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/bridge: write full Audio InfoFrame Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] scsi: ufs: host: mediatek: Fix adapt issue after PA_Init Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Add missing post flip calls Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] net/mlx5e: Prevent entering switchdev mode with inconsistent netns Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] wifi: rtw88: sdio: use indirect IO for device registers before power-on Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Remove check DPIA HPD status for BW Allocation Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: core: Disable timestamp functionality if not supported Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] usb: xhci: plat: Facilitate using autosuspend for xhci plat devices Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] microchip: lan865x: add ndo_eth_ioctl handler to enable PHY ioctl support Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amdgpu: validate userq input args Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/pm: Increase SMC timeout on SI and warn (v3) Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] x86/kexec: Disable kexec/kdump on platforms with TDX partial write erratum Sasha Levin
2025-10-26 22:24   ` Huang, Kai
2025-11-03  9:26     ` Huang, Kai
2025-11-04 14:46       ` Sasha Levin
2025-11-04 21:27         ` Huang, Kai
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] Octeontx2-af: Broadcast XON on all channels Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] media: imon: make send_packet() more robust Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: iwlwifi: pcie: remember when interrupts are disabled Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.15] thunderbolt: Use is_pciehp instead of is_hotplug_bridge Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Assign power mode userdata before FASTAUTO mode change Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amdgpu: add to custom amdgpu_drm_release drm_dev_enter/exit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Fix DMCUB loading sequence for DCN3.2 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] ixgbe: reduce number of reads when getting OROM data Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Don't use non-registered VUPDATE on DCE 6 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Add missing lock in suspend callback Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/xe/pf: Don't resume device from restart worker Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] sparc64: fix prototypes of reads[bwl]() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] hinic3: Queue pair endianness improvements Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ext4: increase IO priority of fastcommit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] tcp: use dst_dev_rcu() in tcp_fastopen_active_disable_ofo_check() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] HID: i2c-hid: Resolve touchpad issues on Dell systems during S4 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] Bluetooth: bcsp: receive data only if registered Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] mips: lantiq: danube: rename stp node on EASY50712 reference board Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Fix for test crash due to power gating Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] selftests: net: lib.sh: Don't defer failed commands Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ptp_ocp: make ptp_ocp driver compatible with PTP_EXTTS_REQUEST2 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_fs: Fix epfile null pointer access after ep enable Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] media: verisilicon: Explicitly disable selection api ioctls for decoders Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] accel/amdxdna: Unify pm and rpm suspend and resume callbacks Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: wow: remove notify during WoWLAN net-detect Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] f2fs: fix to detect potential corrupted nid in free_nid_list Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add speedbins for A663 GPU Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ovl: make sure that ovl_create_real() returns a hashed dentry Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: cfg80211: update the time stamps in hidden ssid Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] Bluetooth: btusb: Add new VID/PID 13d3/3627 for MT7925 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iommu/amd: Reuse device table for kdump Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] selftests: traceroute: Use require_command() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: add range check for RAS bad page address Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iio: imu: bmi270: Match PNP ID found on newer GPD firmware Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: add support for cyan skillfish gpu_info Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] tty: serial: ip22zilog: Use platform device for probing Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] drm/amdgpu: Use memdup_array_user in amdgpu_cs_wait_fences_ioctl Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: print just once for unknown C2H events Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] x86/virt/tdx: Mark memory cache state incoherent when making SEAMCALL Sasha Levin
2025-10-26 22:25   ` Huang, Kai
2025-10-28 17:49     ` Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: es8323: enable DAPM power widgets for playback DAC and output Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] media: pci: mgb4: Fix timings comparison in VIDIOC_S_DV_TIMINGS Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] net: stmmac: Check stmmac_hw_setup() in stmmac_resume() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] PCI: cadence: Check for the existence of cdns_pcie::ops before using it Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Correct the counts of nr_banks and nr_errors Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_hid: Fix zero length packet transfer Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Fix DVI-D/HDMI adapters Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] extcon: adc-jack: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Avoid vcn v5.0.1 poison irq call trace on sriov guest Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] ipv6: Add sanity checks on ipv6_devconf.rpl_seg_enabled Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Return an error code if the GuC load fails Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/xe: Ensure GT is in C0 during resumes Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Notify pmfw bad page threshold exceeded Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: add .symmetric_xxx on snd_soc_dai_driver Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/xe: rework PDE PAT index selection Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] iommu/vt-d: Replace snprintf with scnprintf in dmar_latency_snapshot() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] f2fs: fix wrong layout information on 16KB page Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] amd/amdkfd: resolve a race in amdgpu_amdkfd_device_fini_sw Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] crypto: qat - use kcalloc() in qat_uclo_map_objs_from_mof() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] dt-bindings: display/msm/gmu: Update Adreno 623 bindings Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] net/mlx5e: Don't query FEC statistics when FEC is disabled Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: ensure committing streams is seamless Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Avoid rma causes GPU duplicate reset Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] RDMA/mana_ib: Drain send wrs of GSI QP Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/amdgpu: validate userq buffer virtual address and size Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] media: fix uninitialized symbol warnings Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: support writing MAC TXD for AddBA Request Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] drm/tidss: Use the crtc_* timings when programming the HW Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] watchdog: s3c2410_wdt: Fix max_timeout being calculated larger Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] drm/tidss: Set crtc modesetting parameters with adjusted mode Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/msm: Use of_reserved_mem_region_to_resource() for "memory-region" Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] iommu/apple-dart: Clear stream error indicator bits for T8110 DARTs Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] vfio/pci: Fix INTx handling on legacy non-PCI 2.3 devices Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] media: ipu6: isys: Set embedded data type correctly for metadata formats Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] scsi: mpi3mr: Fix I/O failures during controller reset Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iommu/amd: Add support to remap/unmap IOMMU buffers for kdump Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: tidyup DMAC stop timing Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] media: i2c: og01a1b: Specify monochrome media bus format instead of Bayer Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] NFSv4: handle ERR_GRACE on delegation recalls Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] mei: make a local copy of client uuid in connect Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] media: amphion: Delete v4l2_fh synchronously in .release() Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amd/display: Consider sink max slice width limitation for dsc Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/panel: ilitek-ili9881c: move display_on/_off dcs calls to (un-)prepare Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] x86/virt/tdx: Use precalculated TDVPR page physical address Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] scsi: mpi3mr: Fix device loss during enclosure reboot due to zero link speed Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Ensure PLOGI_ACC is sent prior to PRLI in Point to Point topology Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] vfio: return -ENOTTY for unsupported device feature Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] iio: adc: spear_adc: mask SPEAR_ADC_STATUS channel and avg sample before setting register Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] mips: lantiq: danube: add model to EASY50712 dts Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] bng_en: make bnge_alloc_ring() self-unwind on failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ionic: use int type for err in ionic_get_module_eeprom_by_page Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] drm/amdkfd: return -ENOTTY for unsupported IOCTLs Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] page_pool: Clamp pool size to max 16K pages Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] selftests: drv-net: hds: restore hds settings Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: dw-edma: Set status for callback_result Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] ftrace: Fix softlockup in ftrace_module_enable Sasha Levin
2025-10-25 19:25   ` Steven Rostedt
2025-10-28 17:48     ` Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: traceroute: Return correct value on failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] bridge: Redirect to backup port when port is administratively down Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Fix auto-hibern8 timer configuration Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/msm: Fix 32b size truncation Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Fix unbalanced IRQ enable issue Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] net: devmem: expose tcp_recvmsg_locked errors Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] platform/x86/intel-uncore-freq: Present unique domain ID per package Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] ASoC: stm32: sai: manage context in set_sysclk callback Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: drv-net: rss_ctx: fix the queue count check Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] net: phy: clear EEE runtime state in PHY_HALTED/PHY_ERROR Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: mptcp: join: allow more time to send ADD_ADDR Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.15] RDMA/irdma: Update Kconfig Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Correct the loss of aca bank reg info Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] net: phy: mscc: report and configure in-band auto-negotiation for SGMII/QSGMII Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Enhance recovery on resume failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] ACPI: scan: Update honor list for RPMI System MSI Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] smb: client: transport: avoid reconnects triggered by pending task work Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] drm/amdkfd: fix vram allocation failure for a special case Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Initialize jpeg v5_0_1 ras function Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: obtain RX path from ppdu status IE00 Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ASoC: Intel: avs: Do not share the name pointer between components Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] phy: cadence: cdns-dphy: Enable lower resolutions in dphy Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] drm/amdkfd: Tie UNMAP_LATENCY to queue_preemption Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] wifi: mt76: use altx queue for offchannel tx on connac+ Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Disable VRR on DCE 6 Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.10] exfat: limit log print for IO error Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: drv-net: rss_ctx: make the test pass with few queues Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix build error when CONFIG_SUSPEND is disabled Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: Track NAN interface start/stop Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Decrement ndlp kref after FDISC retries exhausted Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] smb: client: update cfid->last_access_time in open_cached_dir_by_dentry() Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] bus: mhi: core: Improve mhi_sync_power_up handling for SYS_ERR state Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.10] net: phy: marvell: Fix 88e1510 downshift counter errata Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: forwarding: Reorder (ar)ping arguments to obey POSIX getopt Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] net: wangxun: limit tx_max_coalesced_frames_irq Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] selftests: net: make the dump test less sensitive to mem accounting Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ALSA: usb-audio: don't apply interface quirk to Presonus S1824c Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] net: nfc: nci: Increase NCI_DATA_TIMEOUT to 3000 ms Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] hinic3: Fix missing napi->dev in netif_queue_set_napi Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] platform/x86: x86-android-tablets: Stop using EPROBE_DEFER Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.15] drm/amd: add more cyan skillfish PCI ids Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] PCI/AER: Fix NULL pointer access by aer_info Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] phy: rockchip: phy-rockchip-inno-csidphy: allow writes to grf register 0 Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix fence signaling race condition in userqueue Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] selftests: Replace sleep with slowwait Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.10] ALSA: usb-audio: Add validation of UAC2/UAC3 effect units Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] scsi: pm8001: Use int instead of u32 to store error codes Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] PCI: dwc: Verify the single eDMA IRQ in dw_pcie_edma_irq_verify() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: fix condition for setting timing_adjust_pending Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] Bluetooth: btintel: Add support for BlazarIW core Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: Fix mt7996_reverse_frag0_hdr_trans for MLO Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] netfilter: nf_reject: don't reply to icmp error messages Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/gpusvm: fix hmm_pfn_to_map_order() usage Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] Bluetooth: ISO: Use sk_sndtimeo as conn_timeout Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: sh: setup_xref error handling Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add speedbin data for A623 GPU Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] move_mount(2): take sanity checks in 'beneath' case into do_lock_mount() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Correct system PM flow Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Add more GuC load error status codes Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] tools: ynl-gen: validate nested arrays Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] Bluetooth: SCO: Fix UAF on sco_conn_free Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.1] 6pack: drop redundant locking and refcounting Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Reset apply_eamless_boot_optimization when dpms_off Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] drm/bridge: cdns-dsi: Fix REG_WAKEUP_TIME value Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: xway: sysctrl: rename stp clock Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] eeprom: at25: support Cypress FRAMs without device ID Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] sparc/module: Add R_SPARC_UA64 relocation handling Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/xe: Fix oops in xe_gem_fault when running core_hotunplug test Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] HID: asus: add Z13 folio to generic group for multitouch to work Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] inet_diag: annotate data-races in inet_diag_bc_sk() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] wifi: rtw89: 8851b: rfk: update IQK TIA setting Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] page_pool: always add GFP_NOWARN for ATOMIC allocations Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] net/cls_cgroup: Fix task_get_classid() during qdisc run Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] ptp: Limit time setting of PTP clocks Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Move setup_stream_attribute Sasha Levin

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=20251025160905.3857885-42-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=0x1207@gmail.com \
    --cc=alexandre.f.demers@gmail.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=andrew@lunn.ch \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=o.rempel@pengutronix.de \
    --cc=pabeni@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=rmk+kernel@armlinux.org.uk \
    --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).