From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Siwei He <siwei.he@amd.com>, Philip Yang <philip.yang@amd.com>,
Alex Deucher <alexander.deucher@amd.com>,
Sasha Levin <sashal@kernel.org>,
christian.koenig@amd.com, Xinhui.Pan@amd.com, airlied@gmail.com,
daniel@ffwll.ch, amd-gfx@lists.freedesktop.org,
dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 7.0] drm/amdgpu: OR init_pte_flags into invalid leaf PTE updates
Date: Tue, 28 Apr 2026 06:41:05 -0400 [thread overview]
Message-ID: <20260428104133.2858589-54-sashal@kernel.org> (raw)
In-Reply-To: <20260428104133.2858589-1-sashal@kernel.org>
From: Siwei He <siwei.he@amd.com>
[ Upstream commit 778bf584f2fb0a2b09594f568faf400bf6858091 ]
Invalid leaf clears that only set AMDGPU_PTE_EXECUTABLE match the old
GMC9 fault-priority workaround but omit adev->gmc.init_pte_flags.
On GFX12 that includes AMDGPU_PTE_IS_PTE; without it, some cleared
PTEs can fault as no-retry and bypass the SVM/XNACK handler when a
VA is reused after a BO unmap.
Apply init_pte_flags in amdgpu_vm_pte_update_flags() alongside
EXECUTABLE so range-driven clears (e.g. amdgpu_vm_clear_freed) match
amdgpu_vm_pt_clear() for leaf templates.
Signed-off-by: Siwei He <siwei.he@amd.com>
Reviewed-by: Philip Yang <philip.yang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 9d47b2c36b9a6c6b844c33cab407a5d7ad102234)
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Now I have all the information needed for a thorough analysis.
## Phase 1: Commit Message Forensics
**Step 1.1 - Subject Line Parse**
- Subsystem: `drm/amdgpu` (AMD GPU driver, virtual memory page table
code)
- Action verb: "OR" (operator), implies a missing flag combination → bug
fix
- Record: `drm/amdgpu` adds `init_pte_flags` to invalid leaf PTE updates
to match `amdgpu_vm_pt_clear()` behavior
**Step 1.2 - Tags Inventory**
- Signed-off-by: Siwei He (author)
- Reviewed-by: Philip Yang (AMD/amdkfd maintainer)
- Signed-off-by: Alex Deucher (DRM/amdgpu maintainer)
- `(cherry picked from commit 9d47b2c36b9a6c6b844c33cab407a5d7ad102234)`
— already merged upstream
- No Fixes:, no Cc: stable, no syzbot/Reported-by (expected per pipeline
rules)
- Record: Reviewed and signed by relevant subsystem maintainers; cherry
pick from upstream
**Step 1.3 - Commit Body Analysis**
- Bug description: leaf PTE clears that only set `AMDGPU_PTE_EXECUTABLE`
omit `adev->gmc.init_pte_flags`
- Affected hardware: GFX12 (where `init_pte_flags` includes
`AMDGPU_PTE_IS_PTE`)
- Symptom: cleared PTEs can fault as no-retry and bypass SVM/XNACK
handler when VA is reused after BO unmap
- Root cause: code template inconsistency between `amdgpu_vm_pt_clear()`
(already updated) and `amdgpu_vm_pte_update_flags()` (range-driven
clear path used by e.g., `amdgpu_vm_clear_freed`)
- Record: clearly states bug mechanism; affects real GFX12 hardware
running SVM/XNACK after BO unmap → VA reuse
**Step 1.4 - Hidden Bug Fix Detection**
- Although not titled "fix", the body explicitly describes a fault-
handler bypass on GFX12 — this IS a bug fix
- Record: explicit bug fix (not hidden)
## Phase 2: Diff Analysis
**Step 2.1 - Inventory**
- Single file: `drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c`
- Hunks: 1; lines: net +1 (statement extended), comment expanded
- Function modified: `amdgpu_vm_pte_update_flags()`
- Scope: surgical, single-line semantic change in one function
- Record: tiny single-file fix, ~2 lines of logic change
**Step 2.2 - Code Flow Change**
- Before: when handling an invalid leaf clear (`level==PTB && !VALID &&
!PRT`), `flags |= AMDGPU_PTE_EXECUTABLE`
- After: `flags |= AMDGPU_PTE_EXECUTABLE | adev->gmc.init_pte_flags`
- On GFX12.1, `init_pte_flags = AMDGPU_PTE_IS_PTE`; on GMC9 it's 0 (no
behavior change there)
- Record: aligns the leaf-clear template with `amdgpu_vm_pt_clear()`
(line 416 already does the same)
**Step 2.3 - Bug Mechanism**
- Category: Logic/correctness fix → consistency between two clear paths
- Mechanism: template mismatch on GFX12 page table clears caused PTEs to
be marked without `IS_PTE`, leading to no-retry faults that bypass the
SVM/XNACK fault handler
- Record: same template now used in both leaf-clear sites; this is a
hardware-correctness fix
**Step 2.4 - Fix Quality**
- Obviously correct: mirrors existing pattern at line 416 of same file
(`amdgpu_vm_pt_clear`)
- Minimal/surgical: a single OR with a per-ASIC field that defaults to 0
- Regression risk: very low — on non-GFX12 hardware `init_pte_flags ==
0`, so behavior is unchanged
- Record: high quality, low regression risk
## Phase 3: Git History Investigation
**Step 3.1 - Blame**
- The buggy line existed before, but the *omission* was created by
`db29ddf6505f3` ("drm/amdgpu: Add per-ASIC PTE init flag", Apr 24,
2025) which added `init_pte_flags` and applied it in
`amdgpu_vm_pt_clear()` only — not in `amdgpu_vm_pte_update_flags()`
- Record: bug introduced by db29ddf6505f3
**Step 3.2 - Fixes Target**
- No explicit `Fixes:` tag in this commit, but the underlying fault-
handler-bypass bug requires `init_pte_flags` to exist, which only
appeared in `db29ddf6505f3`
- That commit lands in v7.0-rc1 (verified: `git tag --contains
db29ddf6505f3` shows v7.0-rc1+ only)
- Record: bug only exists in v7.0+; older stable trees do not have
`init_pte_flags`
**Step 3.3 - File History**
- Last commit on `amdgpu_vm_pt.c`: `db29ddf6505f3` (the very commit that
introduced the inconsistency)
- Record: this fix immediately follows the bug-introducing commit;
standalone, no prerequisite missing
**Step 3.4 - Author**
- Siwei He (AMD developer) — the upstream cherry-pick is reviewed by
Philip Yang and signed by Alex Deucher (amdgpu maintainer)
- Record: properly vetted by amdgpu maintainership
**Step 3.5 - Dependencies**
- Requires `adev->gmc.init_pte_flags` — present in v7.0+ via
`db29ddf6505f3`
- No other dependency
- Record: standalone fix in v7.0; not applicable to pre-v7.0 stable
trees
## Phase 4: Mailing List / External Research
- `b4 dig -c 9d47b2c36b9a6c6b844c33cab407a5d7ad102234` — SHA not present
in local repo (cherry-pick hash from a tree this repo doesn't have)
- `b4 dig -c db29ddf6505f3` — no lore match found
- `lore.kernel.org` direct fetch blocked by Anubis bot challenge / 403
from raw curl — could not retrieve discussion
- Record: UNVERIFIED — could not retrieve the original lore discussion
thread; relying on the in-tree review trail (Reviewed-by Philip Yang,
Signed-off-by Alex Deucher)
## Phase 5: Code Semantic Analysis
**Step 5.1 - Functions in Diff**
- `amdgpu_vm_pte_update_flags()`
**Step 5.2 - Callers**
- Called from `amdgpu_vm_update_ptes()` (line 909 in the same file)
- That is called from `amdgpu_vm_update_range()` in `amdgpu_vm.c`
- `amdgpu_vm_update_range()` is called from many sites:
`amdgpu_vm_clear_freed` (line 1573, with flags=0 → exact bug path),
`amdgpu_vm_bo_update`, `amdgpu_gem_va_ioctl`, etc.
- Record: the buggy path is reached on EVERY BO unmap that places
mappings on `vm->freed`
**Step 5.3 - Callees**
- Calls `update_funcs->update()` to write PTEs
- Record: writes the actual page table entries — direct hardware effect
**Step 5.4 - Reachability**
- `amdgpu_vm_clear_freed` runs from normal GEM unmap/CS paths and from
KFD memory paths
- Triggerable by any user/process unmapping a GPU buffer with a VA that
gets reused
- Record: trivially reachable from userspace via standard amdgpu/KFD
ioctls
**Step 5.5 - Similar Patterns**
- Only two leaf-clear template sites; the other one
(`amdgpu_vm_pt_clear` line 416) was already updated to use
`init_pte_flags`. This patch makes the second site consistent.
- Record: closes the only remaining inconsistent site
## Phase 6: Cross-Referencing & Stable Tree Analysis
**Step 6.1 - Bug Presence in Stable Trees**
- `init_pte_flags` field exists only in v7.0+ — verified by `git tag
--contains db29ddf6505f3` showing earliest tag `v7.0-rc1`
- Pre-v7.0 stable trees (6.6.y, 6.1.y, 5.15.y, 5.10.y) do NOT have this
field, so this fix does not apply there and the specific bug being
addressed does not exist in that form there
- Record: target stable tree for this fix is v7.0.y (matches workspace
path `linux-autosel-7.0`)
**Step 6.2 - Backport Difficulty**
- `amdgpu_vm_pte_update_flags()` exists unchanged in v7.0.y; the diff
applies cleanly
- Record: clean apply to 7.0.y
**Step 6.3 - Related Fixes Already In Stable**
- The companion fix at `amdgpu_vm_pt_clear()` (line 416) is part of
`db29ddf6505f3` which is in v7.0
- This commit is the second half of that fix
- Record: 7.0.y already has half of the pattern; this patch completes it
## Phase 7: Subsystem Context
**Step 7.1 - Subsystem Criticality**
- `drivers/gpu/drm/amd/amdgpu` — important driver subsystem (large user
base for AMD GPUs)
- This specific code path: GFX12 (RDNA4 / RX 9000 series) SVM/XNACK —
real shipping consumer hardware
- Record: IMPORTANT (driver-specific, affects current AMD hardware)
**Step 7.2 - Activity**
- amdgpu is a very active subsystem with frequent fixes
- Record: highly active; fixes-quickly-integrated subsystem
## Phase 8: Impact and Risk Assessment
**Step 8.1 - Affected Users**
- GFX12.1 (RDNA4 / RX 9000 series) hardware users running compute
workloads with SVM/XNACK enabled (ROCm, HIP, OpenCL, etc.)
- Record: driver-specific (GFX12 only with SVM); on other ASICs
`init_pte_flags == 0` so no behavior change
**Step 8.2 - Trigger**
- Trigger: any unmap of a GPU buffer where the VA later gets reused
- Reachable from unprivileged user code via standard amdgpu/KFD ioctls
- Common in compute workloads that allocate/free buffers
- Record: easily triggered from userspace; common in real workloads
**Step 8.3 - Severity**
- Failure mode: PTEs faulting as no-retry that bypass the SVM/XNACK
handler — the handler is what makes SVM-on-demand actually work, so
its bypass leads to incorrect fault behavior on GPU memory accesses
- Severity: HIGH for affected users (broken SVM/XNACK semantics on new
HW); MEDIUM-CRITICAL depending on workload (silent incorrect access
vs. application failure)
- Record: HIGH severity for GFX12 SVM users
**Step 8.4 - Risk/Benefit**
- Benefit: high — fixes broken SVM on current shipping AMD hardware
- Risk: very low — single OR with a field that is 0 on every other ASIC;
mirrors a sibling site already in the tree
- Record: clear net positive for backport
## Phase 9: Final Synthesis
**Evidence FOR backport**
- Real bug on real shipping GFX12 hardware (RX 9000 / RDNA4) with
SVM/XNACK
- Trivial 2-line fix; mirrors existing pattern (`amdgpu_vm_pt_clear`) at
line 416 of the same file
- Reviewed by Philip Yang (amdkfd) and signed by Alex Deucher (amdgpu
maintainer)
- Buggy template inconsistency was introduced in v7.0-rc1 by
`db29ddf6505f3`; lands cleanly in v7.0.y
- On non-GFX12 ASICs `init_pte_flags == 0` → guaranteed no behavior
change there
- Reachable via standard userspace ioctls (BO unmap → VA reuse)
**Evidence AGAINST backport**
- No `Fixes:` or `Cc: stable` tag (expected per pipeline rules; not a
negative signal)
- Lore discussion could not be fetched for further verification
(UNVERIFIED)
- Does NOT apply to pre-v7.0 stable trees (no `init_pte_flags` field
there); only relevant to 7.0.y
**Stable Rules Checklist**
1. Obviously correct & tested: yes — mirrors a sibling site, very small
change, signed off by maintainers
2. Fixes a real bug: yes — fault-handler bypass on GFX12 SVM/XNACK
3. Important issue: yes — broken VA-reuse semantics on shipping hardware
4. Small and contained: yes — single hunk, ~2 lines logic
5. No new features/APIs: yes — pure consistency fix
6. Applies to stable: yes for 7.0.y (clean), N/A for older
**Decision**
This is a small, surgical, maintainer-reviewed fix that closes a
hardware-correctness gap on shipping AMD GPUs (GFX12 SVM/XNACK) by
mirroring an already-applied pattern in the same file. The matching
companion fix is already in 7.0, so this completes that work. Risk is
essentially nil on non-GFX12 hardware (zero OR'd in).
## Verification
- [Phase 1] Parsed commit message tags and body: identified Reviewed-by
Philip Yang, Signed-off-by Alex Deucher; no syzbot, no Fixes
(expected)
- [Phase 2] Read diff and surrounding code at `amdgpu_vm_pt.c:679-721`:
confirmed single hunk in `amdgpu_vm_pte_update_flags()`, change is
`flags |= AMDGPU_PTE_EXECUTABLE | adev->gmc.init_pte_flags`
- [Phase 2] Read `amdgpu_vm_pt.c:361-418` to verify the sibling site
`amdgpu_vm_pt_clear()` already uses the same template at line 416
(`flags = AMDGPU_PTE_EXECUTABLE | adev->gmc.init_pte_flags`)
- [Phase 3] `git log --oneline --grep="PTE init flag" master` → found
`db29ddf6505f3`
- [Phase 3] `git show db29ddf6505f3` → confirmed it added
`init_pte_flags` field, set `init_pte_flags = AMDGPU_PTE_IS_PTE` for
GFX12.1, and updated only `amdgpu_vm_pt_clear()` (not
`amdgpu_vm_pte_update_flags()`)
- [Phase 3] `git tag --contains db29ddf6505f3` → earliest tag `v7.0-rc1`
— confirms bug lives in v7.0+ only
- [Phase 3] `git log --oneline --
drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c` → no other intermediate
fixes between `db29ddf6505f3` and HEAD
- [Phase 4] `b4 dig -c 9d47b2c36b9a6c6b844c33cab407a5d7ad102234` → SHA
not in this repo (cherry-pick hash from elsewhere)
- [Phase 4] `b4 dig -c db29ddf6505f3` → no lore match found
- [Phase 4] WebFetch / curl to lore.kernel.org → blocked by Anubis bot
challenge / 403 — UNVERIFIED for original mailing list discussion
content
- [Phase 5] `Grep AMDGPU_PTE_EXECUTABLE` and `Grep AMDGPU_PTE_IS_PTE`
and `Grep init_pte_flags` across `drivers/gpu/drm/amd` → confirmed
only two leaf-clear template sites; `init_pte_flags` is only set non-
zero for GFX12.1 (`gmc_v12_0.c:643`)
- [Phase 5] Read `amdgpu_vm_pt.c:880-921` → verified caller chain:
`amdgpu_vm_update_ptes` → `amdgpu_vm_pte_update_flags`
- [Phase 5] `Grep amdgpu_vm_clear_freed` and read
`amdgpu_vm.c:1548-1577` → confirmed `amdgpu_vm_clear_freed` calls
`amdgpu_vm_update_range` with flags=0, hitting the patched `else if`
branch
- [Phase 6] `git tag --contains db29ddf6505f3` → confirms
`init_pte_flags` only in v7.0+; older stable trees lack the field, fix
is not applicable to them
- [Phase 6] Read of HEAD source confirms `amdgpu_vm_pte_update_flags`
exists unchanged in v7.0.1 → diff applies cleanly
- [Phase 8] Bug mechanism verified via commit body + code: leaf-clear
template inconsistency on GFX12 → no-retry faults bypass SVM/XNACK
handler on VA reuse
- UNVERIFIED: original lore discussion (lore blocked by anti-bot)
- UNVERIFIED: independent reproduction reports / bug-report links (none
in commit body)
The fix is small, obviously correct, addresses a real hardware-
correctness bug on current AMD GPUs, mirrors a sibling site already in
v7.0, and is essentially a no-op on non-GFX12 ASICs. It is appropriate
for the v7.0.y stable tree.
**YES**
drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c
index 31a437ce95704..a930f1522f962 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_vm_pt.c
@@ -693,8 +693,11 @@ static void amdgpu_vm_pte_update_flags(struct amdgpu_vm_update_params *params,
!(flags & AMDGPU_PTE_VALID) &&
!(flags & AMDGPU_PTE_PRT_FLAG(params->adev))) {
- /* Workaround for fault priority problem on GMC9 */
- flags |= AMDGPU_PTE_EXECUTABLE;
+ /* Workaround for fault priority problem on GMC9 and GFX12,
+ * EXECUTABLE for GMC9 fault priority and init_pte_flags
+ * (e.g. AMDGPU_PTE_IS_PTE on GFX12)
+ */
+ flags |= AMDGPU_PTE_EXECUTABLE | adev->gmc.init_pte_flags;
}
/*
--
2.53.0
next prev parent reply other threads:[~2026-04-28 10:42 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-28 10:40 [PATCH AUTOSEL 7.0] ALSA: hda/realtek: add quirk for HONOR MRB-XXX M1020 Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] tools/power/x86/intel-speed-select: Avoid current base freq as maximum Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] um: fix address-of CMSG_DATA() rvalue in stub Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] tty: serial: samsung_tty: avoid dev_dbg deadlock Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] drm/amdgpu: fix CPER ring header parsing Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] io_uring/rsrc: unify nospec indexing for direct descriptors Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] um: avoid struct sigcontext redefinition with musl Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] leds: lgm-sso: Fix typo in macro for src offset Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] fs/ntfs3: increase CLIENT_REC name field size Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] ksmbd: fix CreateOptions sanitization clobbering the whole field Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.1] thunderbolt: Disable CLx on Titan Ridge-based devices with old firmware Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.6] NFS: Use nlmclnt_shutdown_rpc_clnt() to safely shut down NLM Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] smb: client: compress: fix buffer overrun in lz77_compress() Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] drm/amd/display: Pass min page size from SOC BB to dml2_1 plane config Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] usb: dwc3: Support USB3340x ULPI PHY high-speed negotiation Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] smb: client: compress: fix counting in LZ77 match finding Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] mfd: mt6397: Properly fix CID of MT6328, MT6331 and MT6332 Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.1] um: Disable GCOV_PROFILE_ALL on 32-bit UML with Clang 20/21 Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] ASoC: qcom: x1e80100: limit speaker volumes Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] smb: client: compress: fix bad encoding on last LZ77 flag Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] fs/ntfs3: fix potential double iput on d_make_root() failure Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] scsi: storvsc: Handle PERSISTENT_RESERVE_IN truncation for Hyper-V vFC Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0] fs: aio: set VMA_DONTCOPY_BIT in mmap to fix NULL-pointer-dereference error Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] dt-bindings: arm64: add Marvell 7k COMe boards Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] ecryptfs: Set s_time_gran to get correct time granularity Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] usb: usbip: fix OOB read/write in usbip_pad_iso() Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] scsi: lpfc: Remove unnecessary ndlp kref get in lpfc_check_nlp_post_devloss Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] leds: core: Implement fallback to software node name for LED names Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] ntfs3: reject inodes with zero non-DOS link count Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] f2fs: fix to skip empty sections in f2fs_get_victim Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0] NFS: fix writeback in presence of errors Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.6] dt-bindings: rtc: microcrystal,rv3028: Allow to specify vdd-supply Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] fs: aio: reject partial mremap to avoid Null-pointer-dereference error Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] fs/ntfs3: fix $LXDEV xattr lookup Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] scsi: ufs: ufs-pci: Add support for Intel Nova Lake Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.1] scsi: lpfc: Fix incorrect txcmplq_cnt during cleanup in lpfc_sli_abort_ring() Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.18] drm/amdgpu: drop userq fence driver refs out of fence process() Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.15] ksmbd: fix O(N^2) DoS in smb2_lock via unbounded LockCount Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] usb: gadget: bdc: validate status-report endpoint indices Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] coda_flag_children(): fix a UAF Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] fbdev: savage: fix probe-path EDID cleanup leaks Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0] scsi: virtio_scsi: Move INIT_WORK calls to virtscsi_probe() Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] iio: ABI: fix current_trigger description Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] staging: octeon: fix free_irq dev_id mismatch in cvm_oct_rx_shutdown Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] mfd: intel-lpss: Add Intel Nova Lake-H PCI IDs Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] tty: serial: imx: keep dma request disabled before dma transfer setup Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-6.12] greybus: beagleplay: bound bootloader RX buffer copy Sasha Levin
2026-04-28 10:40 ` [PATCH AUTOSEL 7.0-5.10] serial: qcom-geni: Fix RTS behavior with flow control Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] selftests: fib_nexthops: test stale has_v4 on nexthop replace Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.1] ntfs3: fix OOB write in attr_wof_frame_info() Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] arm64: cputype: Add C1-Pro definitions Sasha Levin
2026-04-28 11:13 ` Mark Rutland
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] drm/amd/display: Fix HostVMMinPageSize unit mismatch in DML2.1 Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.12] 9p/trans_xen: make cleanup idempotent after dataring alloc errors Sasha Levin
2026-04-28 10:41 ` Sasha Levin [this message]
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.6] scsi: ufs: core: Disable timestamp for Kioxia THGJFJT0E25BAIP Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] f2fs: fix to freeze GC and discard threads quickly Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] scsi: esas2r: Fix __printf annotation on esas2r_log_master() Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] rtc: max77686: convert to i2c_new_ancillary_device Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.1] rtc: ti-k3: Add support to resume from IO DDR low power mode Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.12] bus: mhi: host: pci_generic: Add Telit FE912C04 modem support Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] usb: usbip: fix integer overflow in usbip_recv_iso() Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] clk: qcom: rcg2: expand frac table for mdss_pixel_clk_src Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] usb: usbip: validate iso frame actual_length in usbip_recv_iso() Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.12] bus: mhi: host: pci_generic: Add Qualcomm SDX35 modem Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0] drm/amd/display: Use overlay cursor when color pipeline is active Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] platform/x86: hp-wmi: Add support for Omen 16-wf1xxx (8C77) Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.12] smb: server: stop sending fake security descriptors Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] ALSA: usb-audio: Add quirk entries for NexiGo N930W webcam Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.15] ntfs3: fix memory leak in indx_create_allocate() Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] staging: fbtft: fix unchecked write return value in fb_agm1264k-fl Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.10] ipv6: Cap TLV scan in ip6_tnl_parse_tlv_enc_lim Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] scsi: lpfc: Add PCI ID support for LPe42100 series adapters Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.12] io_uring: take page references for NOMMU pbuf_ring mmaps Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-6.18] iio: imu: st_lsm6dsx: Add ACPI ID for SHIFT13mi gyroscope Sasha Levin
2026-04-28 10:41 ` [PATCH AUTOSEL 7.0-5.15] dt-bindings: clock: qcom,gcc-sc8180x: Add missing GDSCs 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=20260428104133.2858589-54-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=Xinhui.Pan@amd.com \
--cc=airlied@gmail.com \
--cc=alexander.deucher@amd.com \
--cc=amd-gfx@lists.freedesktop.org \
--cc=christian.koenig@amd.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=philip.yang@amd.com \
--cc=siwei.he@amd.com \
--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