From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Vadim Fedorenko <vadim.fedorenko@linux.dev>,
Michal Simek <michal.simek@amd.com>,
Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>,
linux-spi@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-6.1] spi: xilinx: let transfers timeout in case of no IRQ
Date: Mon, 31 Aug 2026 09:27:03 -0400 [thread overview]
Message-ID: <20260831133314.4125787-395-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Vadim Fedorenko <vadim.fedorenko@linux.dev>
[ Upstream commit 0f95264f49ace739d411fd9149e2b3545d741d06 ]
In case of failed HW the driver may not see an interrupt and will stuck
in waiting forever. We can avoid such situation by timing out of
transfers if the interrupt is not seen in a reasonable time.
This problem can be found on unload of ptp_ocp driver for TimeCard which
uses Xilinx SPI AXI and SPI-NOR flash memory. During tear-down process
spi-nor drivers send soft reset command which is not triggering an
interrupt stalling the unload process completely.
Signed-off-by: Vadim Fedorenko <vadim.fedorenko@linux.dev>
Acked-by: Michal Simek <michal.simek@amd.com>
Link: https://patch.msgid.link/20260610222843.782337-1-vadim.fedorenko@linux.dev
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
# Stable Backport Analysis: `spi: xilinx: let transfers timeout in case
of no IRQ`
**Local tree:** `v6.18.44-1-g2736c32da98b9` (linux-6.18.y stable)
**Commit under review:** `0f95264f49ace` (mainline; **not** in this tree
yet)
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: Subject Line
**Record:** `[spi: xilinx]` `[let]` — Add transfer timeout when IRQ-
based completion never arrives.
### Step 1.2: Tags
**Record:**
- **Signed-off-by:** Vadim Fedorenko `<vadim.fedorenko@linux.dev>`
(author)
- **Acked-by:** Michal Simek `<michal.simek@amd.com>` (Xilinx/AMD
maintainer)
- **Link:** https://patch.msgid.link/20260610222843.782337-1-
vadim.fedorenko@linux.dev
- **Signed-off-by:** Mark Brown `<broonie@kernel.org>` (subsystem
maintainer, committer)
- No Fixes:, Reported-by:, Tested-by:, Cc: stable, or syzbot tags
- Notable: maintainer Ack from Xilinx/AMD; no user/fuzzer report, but
concrete hardware scenario described
### Step 1.3: Body Analysis
**Record:**
- **Bug:** In IRQ transfer mode, if the TX-empty interrupt never fires,
`wait_for_completion()` blocks forever.
- **Symptom:** Complete hang during `ptp_ocp` driver unload on TimeCard
hardware (Xilinx SPI AXI + SPI-NOR). During teardown, spi-nor sends a
soft reset that does not trigger an interrupt, stalling unload
indefinitely.
- **Root cause:** IRQ path has no timeout; polling path already has
stall detection (added in 2017).
- **Version info:** None explicit; bug predates `force_irq` (2023) but
is exposed by it.
### Step 1.4: Hidden Bug Fix?
**Record:** No — this is an explicit bug fix for an infinite-wait hang,
not disguised cleanup.
---
## PHASE 2: DIFF ANALYSIS
### Step 2.1: Inventory
**Record:**
- **Files:** `drivers/spi/spi-xilinx.c` (+5 / -1)
- **Function:** `xilinx_spi_txrx_bufs()`
- **Scope:** Single-file surgical fix in IRQ transfer path
### Step 2.2: Code Flow Change
**Record:**
- **Hunk (IRQ path, ~line 288):**
- **Before:** `wait_for_completion(&xspi->done)` — blocks forever if
IRQ never arrives
- **After:** `wait_for_completion_timeout(&xspi->done,
secs_to_jiffies(1))` — on timeout: log error, call
`xspi_init_hw(xspi)`, return `-ETIMEDOUT`
- **Path affected:** IRQ-based SPI transfers (`use_irq == true`),
entered when `xspi->irq >= 0` and (`force_irq` or `remaining_words >
buffer_size`)
### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Logic/correctness — missing timeout on blocking wait
(hang/deadlock class)
- **Mechanism:** `xilinx_spi_irq()` calls `complete(&xspi->done)` only
on `XSPI_INTR_TX_EMPTY`. If that IRQ never fires (soft reset during
teardown, failed HW), the caller blocks indefinitely. The polling path
already detects stalls via status-register polling; the IRQ path had
no equivalent safety net.
### Step 2.4: Fix Quality
**Record:**
- **Quality:** High — minimal, follows established SPI subsystem pattern
- **Regression risk:** Very low — 1-second timeout is generous for SPI;
matches `spi.c` core and many other SPI drivers; `xspi_init_hw()` is
already used on stall detection in the same function
- **No red flags:** No API changes, no locking changes, no refactoring
---
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: Blame
**Record:** `wait_for_completion(&xspi->done)` introduced in
`5fe11cc09ce81b` (Ricardo Ribalda, 2015-01-28, "spi/xilinx: Support
cores with no interrupt"). Bug present since IRQ mode was added — long-
standing in this tree.
### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag. Bug is inherent to IRQ-path design, not
introduced by a single recent commit.
### Step 3.3: Related File History
**Record:**
- `5a1314fa697fc` (2017): stall detection for polling path — **in
tree**, Cc: stable
- `939edfaa10f1d` (2025): increased stall retry count — **in tree**
- `1dd46599f83ac` (2023): `force_irq` for QSPI — **in tree**, same
author (Fedorenko); forces IRQ path on ptp_ocp TimeCard
- `1c9246a199e19` (2026): FIFO buffer size fix — **in tree** (separate
hang in IRQ mode, already backported)
- Standalone fix, not part of a multi-patch series
### Step 3.4: Author Context
**Record:** Vadim Fedorenko authored `force_irq` for xilinx SPI (2023)
and works on ptp_ocp/TimeCard. Michal Simek (AMD/Xilinx) Acked. Mark
Brown (SPI maintainer) committed.
### Step 3.5: Dependencies
**Record:** No dependencies. `force_irq`, `xspi_init_hw()`,
`wait_for_completion_timeout()`, and `secs_to_jiffies()` all exist in
this tree. Cherry-pick to HEAD auto-merges cleanly.
---
## PHASE 4: MAILING LIST AND EXTERNAL RESEARCH
### Step 4.1: Original Discussion
**Record:**
- **URL:** https://patch.msgid.link/20260610222843.782337-1-
vadim.fedorenko@linux.dev
- **Series:** v1 only (single patch, no revisions)
- **Feedback:** Mark Brown applied to broonie/spi `for-7.2`; Michal
Simek Acked-by in thread
- **No NAKs or objections** found in mbox
- **No explicit Cc: stable** nomination in thread
### Step 4.2: Reviewers
**Record:** CC'd: Mark Brown, Michal Simek, linux-spi@vger.kernel.org.
Subsystem maintainer and Xilinx maintainer both involved.
### Step 4.3: Bug Report
**Record:** No external bug tracker or syzbot report. Bug described from
real hardware (TimeCard/ptp_ocp unload). Severity from reporter:
complete unload hang.
### Step 4.4: Related Patches
**Record:** Related but independent from `1c9246a199e19` (FIFO size IRQ
hang). Both are IRQ-path hang fixes; neither depends on the other.
### Step 4.5: Stable List History
**Record:** No stable-list discussion found for this specific patch.
(WebFetch to lore blocked by bot protection; used b4 mbox download
instead.)
---
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: Key Functions
**Record:** `xilinx_spi_txrx_bufs()` (modified), `xilinx_spi_irq()`
(completes wait), `xspi_init_hw()` (recovery on timeout)
### Step 5.2: Callers
**Record:** `xilinx_spi_txrx_bufs` assigned to `xspi->bitbang.txrx_bufs`
at probe; invoked via `spi_bitbang` → `spi_sync()` for all SPI transfers
on this controller. Called from probe, normal I/O, and module-remove
teardown paths.
### Step 5.3: Callees
**Record:** `wait_for_completion_timeout()`, `xspi_init_hw()`,
`dev_err()`, `xspi->write_fn()`/`read_fn()` for register access
### Step 5.4: Call Chain / Reachability
**Record:**
```
rmmod ptp_ocp → spi-nor remove → spi_nor_soft_reset() →
spi_mem_exec_op()
→ spi_sync() → spi_bitbang → xilinx_spi_txrx_bufs() [IRQ path with
force_irq]
→ wait_for_completion() [hangs forever without fix]
```
Reachable from module unload on TimeCard hardware. Also reachable on any
IRQ-mode transfer where HW fails to assert TX-empty interrupt.
### Step 5.5: Similar Patterns
**Record:** Many SPI drivers use `wait_for_completion_timeout(...,
msecs_to_jiffies(1000))` or `secs_to_jiffies(1)`. Core `spi.c` uses
adaptive timeout with `-ETIMEDOUT` return. xilinx was an outlier using
unbounded `wait_for_completion()`.
---
## PHASE 6: CROSS-REFERENCING AGAINST LOCAL TREE
### Step 6.1: Buggy Code Exists?
**Record:** **Yes.** `drivers/spi/spi-xilinx.c:288` still has
`wait_for_completion(&xspi->done)`. `ptp_ocp.c:702` sets `.force_irq =
true` for TimeCard Xilinx SPI. Bug introduced 2015; exposed on TimeCard
since `force_irq` (2023).
### Step 6.2: Backport Complications
**Record:** Cherry-pick of `0f95264f49ace` onto HEAD succeeds with auto-
merge (tested). Expected: **clean apply**.
### Step 6.3: Related Fixes Already Present?
**Record:** Polling-path stall detection (`5a1314fa697fc`,
`939edfaa10f1d`) and FIFO size fix (`1c9246a199e19`) are in tree. **This
IRQ-timeout fix is not** — grep for "SPI transfer timed out" in spi-
xilinx.c returns nothing.
---
## PHASE 7: SUBSYSTEM CONTEXT
### Step 7.1: Subsystem Criticality
**Record:** `drivers/spi/` — **IMPORTANT** (peripheral driver, but SPI
core path used by many devices; ptp_ocp is production timing hardware)
### Step 7.2: Subsystem Activity
**Record:** Active — 3 commits to spi-xilinx.c in 2025–2026 in this tree
(stall retries, FIFO fix, cleanups)
---
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: Who Is Affected
**Record:** Users of Xilinx SPI in IRQ mode — especially `ptp_ocp`
TimeCard (`force_irq = true`). Also any platform with failed/misbehaving
HW that fails to generate TX-empty IRQ. Config: driver built-in or
module; no special Kconfig beyond SPI + device.
### Step 8.2: Trigger Conditions
**Record:**
- **Primary:** `rmmod ptp_ocp` on TimeCard (soft reset during teardown)
- **Secondary:** Any IRQ-mode transfer where interrupt never fires (HW
failure)
- **Likelihood:** Deterministic on affected hardware during unload; rare
but catastrophic when it hits
- **Unprivileged trigger:** Module unload typically requires
root/CAP_SYS_MODULE
### Step 8.3: Failure Mode Severity
**Record:** **CRITICAL** — unbounded hang (hung task), module cannot be
unloaded, may block reboot/shutdown. Not data corruption, but system
becomes unresponsive for that operation.
### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** HIGH — prevents permanent hang on module unload and HW-
failure scenarios
- **Risk:** VERY LOW — 5-line change, established pattern, hardware
reset on timeout matches existing stall recovery
- **Ratio:** Strongly favors backport
---
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: Evidence Summary
**FOR backporting:**
- Fixes real, reproducible infinite hang on ptp_ocp unload (TimeCard)
- CRITICAL severity (hung task, blocked unload)
- Minimal 5-line fix, obviously correct
- Matches SPI core and peer driver conventions
- Acked by Xilinx maintainer, committed by SPI maintainer
- Buggy code confirmed present in 6.18.44 tree
- Cherry-picks cleanly
- No dependencies, standalone patch
- Complements existing polling-path stall detection (fills IRQ-path gap)
**AGAINST backporting:**
- Affects relatively niche hardware (TimeCard/ptp_ocp with force_irq)
- No syzbot/fuzzer report
- No explicit Cc: stable nomination
- Theoretical false-timeout risk on extremely slow transfers (mitigated
by 1-second timeout, same as rest of SPI subsystem)
**Unresolved:** None that affect the decision.
### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — standard timeout pattern;
Acked-by Xilinx maintainer
2. Fixes a real bug affecting users? **PASS** — ptp_ocp unload hang on
TimeCard
3. Important issue? **PASS** — CRITICAL hang on module unload
4. Small and contained? **PASS** — 5 lines, 1 file
5. No new features or APIs? **PASS** — error-path safety only
6. Can apply to local tree? **PASS** — cherry-pick auto-merges
### Step 9.3: Exception Categories
**Record:** N/A — standard bug fix, not device ID/quirk/DT/build/docs
exception.
### Step 9.4: Decision Rationale
For **linux-6.18.y**, the IRQ-path infinite wait is a real bug with a
concrete trigger on hardware this tree supports (`ptp_ocp` +
`force_irq`). Without the fix, `rmmod` hangs forever. The fix is
minimal, follows established SPI patterns, resets hardware on timeout
(same as existing stall path), and applies cleanly. This meets all
stable kernel criteria.
---
## Verification
- [Phase 1] `git show 0f95264f49ace`: parsed full commit message and
tags
- [Phase 1] Acked-by Michal Simek confirmed in commit and mbox
- [Phase 2] `git show 0f95264f49ace -p`: verified +5/-1 diff in
`xilinx_spi_txrx_bufs()`
- [Phase 2] Read `drivers/spi/spi-xilinx.c:238-336`: confirmed IRQ vs
polling paths and existing stall handling
- [Phase 3] `git blame -L 286,292 drivers/spi/spi-xilinx.c`:
`wait_for_completion` from 2015 (`5fe11cc09ce81b`)
- [Phase 3] `git log --oneline -20 -- drivers/spi/spi-xilinx.c`: related
stall/FIFO/force_irq commits identified
- [Phase 3] `git merge-base --is-ancestor`: `5a1314fa697fc`,
`1dd46599f83ac`, `939edfaa10f1d` confirmed in HEAD; `0f95264f49ace`
NOT in HEAD
- [Phase 4] `b4 dig -c 0f95264f49ace -w`: recipients Mark Brown, Michal
Simek, linux-spi
- [Phase 4] `b4 dig -c 0f95264f49ace -a`: single v1 patch, no revisions
- [Phase 4] `b4 dig -c 0f95264f49ace -m /tmp/spi-xilinx-timeout.mbx`:
downloaded thread; Mark Brown applied, Michal Simek Acked, no NAKs
- [Phase 5] Read `drivers/ptp/ptp_ocp.c:693-707`: confirmed `.force_irq
= true` for TimeCard Xilinx SPI
- [Phase 5] Read `drivers/mtd/spi-nor/core.c:3282-3304`: confirmed
`spi_nor_soft_reset()` during remove path
- [Phase 5] Grep `wait_for_completion_timeout` in `drivers/spi/`: many
drivers use 1-second timeout pattern
- [Phase 5] Read `drivers/spi/spi.c:1463-1471`: core SPI layer uses
timeout + `-ETIMEDOUT`
- [Phase 6] `git describe HEAD`: v6.18.44 (linux-6.18.y)
- [Phase 6] Grep `wait_for_completion` in spi-xilinx.c: buggy line at
:288 confirmed
- [Phase 6] Grep "SPI transfer timed out" in tree: only in spi.c, not
spi-xilinx.c (fix not present)
- [Phase 6] `git cherry-pick --no-commit 0f95264f49ace`: auto-merge
succeeded; reset afterward
- [Phase 8] Failure mode: infinite hang on IRQ-path transfer without
interrupt — severity CRITICAL
**YES**
drivers/spi/spi-xilinx.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/spi/spi-xilinx.c b/drivers/spi/spi-xilinx.c
index 8085571913c8b..dac6c695f0727 100644
--- a/drivers/spi/spi-xilinx.c
+++ b/drivers/spi/spi-xilinx.c
@@ -285,7 +285,11 @@ static int xilinx_spi_txrx_bufs(struct spi_device *spi, struct spi_transfer *t)
if (use_irq) {
xspi->write_fn(cr, xspi->regs + XSPI_CR_OFFSET);
- wait_for_completion(&xspi->done);
+ if (!wait_for_completion_timeout(&xspi->done, secs_to_jiffies(1))) {
+ dev_err(&spi->dev, "SPI transfer timed out\n");
+ xspi_init_hw(xspi);
+ return -ETIMEDOUT;
+ }
/* A transmit has just completed. Process received data
* and check for more data to transmit. Always inhibit
* the transmitter while the Isr refills the transmit
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:45 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: handle 320MHz bandwidth in RXV and TXS Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-5.10] arm64: fixmap: Allow 256K early_ioremap() at any offset Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-5.10] clk: keystone: don't cache clock rate Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] arm64: kprobes: Only handle faults originating from XOL slot Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18] arm64: panic from init_IRQ if IRQ handler stacks cannot be allocated Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] net: airoha: Reserve RX headroom to avoid skb reallocation Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.12] hwmon: (raspberrypi) Fix delayed-work teardown race Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] arm64: kprobes: Allow reentering kprobes while single-stepping Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] PCI: rockchip: Protect root bus removal with rescan lock Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] iommu/rockchip: disable fetch dte time limit Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Handle runtime PM resume failures in set_fmt Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18] pinctrl: mediatek: common-v1: bypass pinctrl GPIO layer in set GPIO direction Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] ASoC: mediatek: mt8365-afe-pcm: fix possible NULL-pointer dereferences in mt8365_afe_suspend() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] rtc: aspeed: add AST2700 compatible Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] usb: gadget: aspeed_udc: avoid past-the-end iterator in dequeue Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] arm64/daifflags: Make local_daif_*() helpers __always_inline Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] mailbox: imx: use devm_of_platform_populate() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] mailbox: imx: Add a channel shutdown field Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] net: thunderx: fix PTP device ref leak in nicvf_probe() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] clk: samsung: exynos850: mark APM I3C clocks as critical Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] net: stmmac: xgmac2: disable RBUE in default RX interrupt mask Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] pinctrl: meson: amlogic-a4: use nolock get range Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] irqchip/gic-v4: Don't advertise VLPIs if no ITS is probed Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-6.12] drm/mediatek: dsi: Add compatible for mt8167-dsi Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.15] crypto: ixp4xx - fix buffer chain unwind on allocation failure Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] wifi: mt76: transform aspm_conf for pci_disable_link_state Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add Netgear A8500 USB device ID Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] coresight: perf: Retrieve path and source from event data Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: add 320MHz bandwidth to bss_rlm_tlv Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] wifi: mt76: mt7925: populate EHT 320MHz MCS map in sta_rec Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.15] firmware: arm_scmi: Validate SENSOR_UPDATE payload size Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] irqchip/gic-v5: Immediately exec priority drop following activate Sasha Levin
2026-08-31 13:27 ` Sasha Levin [this message]
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] watchdog: imx7ulp_wdt: Keep WDOG running until A55 enters WFI on i.MX94 Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] mailbox: imx: Use devm_pm_runtime_enable() Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] net: microchip: sparx5: clean up PSFP resources on flower setup failure Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] Bluetooth: btmtk: Disable remote wakeup for MT7922/MT7925 Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] clk: samsung: exynos990: Fix PERIC0/1 USI clock types Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.12] crypto: atmel-sha204a - remove sysfs group before hwrng Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: spdif: Restore regcache cache-only mode on sync failure Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] ASoC: rockchip: rockchip_pdm: Reorder clock enable sequence Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] firmware: arm_scmi: Validate BASE_ERROR_EVENT payload size Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] crypto: testmgr - allow authenc(hmac(sha{256,384}),cts(cbc(aes))) in FIPS mode Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.12] iommu: arm-smmu-qcom: Ensure smmu is powered up in set_ttbr0_cfg Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] crypto: atmel-ecc - add support for atecc608b Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] coresight: Disable source helpers in coresight_disable_path() Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] wifi: mt76: route TDLS-peer frames as 3-addr non-DS in HW encap Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] PCI: iproc: Protect root bus removal with rescan lock 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=20260831133314.4125787-395-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=broonie@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=michal.simek@amd.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=vadim.fedorenko@linux.dev \
/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