From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Daeho Jeong <daehojeong@google.com>, Chao Yu <chao@kernel.org>,
Jaegeuk Kim <jaegeuk@kernel.org>, Sasha Levin <sashal@kernel.org>,
linux-f2fs-devel@lists.sourceforge.net,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 7.0-5.10] f2fs: fix to skip empty sections in f2fs_get_victim
Date: Tue, 28 Apr 2026 06:40:41 -0400 [thread overview]
Message-ID: <20260428104133.2858589-30-sashal@kernel.org> (raw)
In-Reply-To: <20260428104133.2858589-1-sashal@kernel.org>
From: Daeho Jeong <daehojeong@google.com>
[ Upstream commit dccd324fa9bd1a2907a63fa4cc2651f687b2b5d0 ]
In age-based victim selection (ATGC, AT_SSR, or GC_CB), f2fs_get_victim
can encounter sections with zero valid blocks. This situation often
arises when checkpoint is disabled or due to race conditions between
SIT updates and dirty list management.
In such cases, f2fs_get_section_mtime() returns INVALID_MTIME, which
subsequently triggers a fatal f2fs_bug_on(sbi, mtime == INVALID_MTIME)
in add_victim_entry() or get_cb_cost().
This patch adds a check in f2fs_get_victim's selection loop to skip
sections with no valid blocks. This prevents unnecessary age
calculations for empty sections and avoids the associated kernel panic.
This change also allows removing redundant checks in add_victim_entry().
Signed-off-by: Daeho Jeong <daehojeong@google.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Now I have enough information to make a thorough decision. Let me
compile my complete analysis.
## Complete 9-Phase Analysis
### PHASE 1: COMMIT MESSAGE FORENSICS
**Step 1.1 - Parse Subject Line:**
Record: `[fs: f2fs]` `[fix]` - Fix to skip empty sections in
`f2fs_get_victim` to avoid kernel panic from `f2fs_bug_on(mtime ==
INVALID_MTIME)`.
**Step 1.2 - Parse Tags:**
Record:
- Author: `Daeho Jeong <daehojeong@google.com>` (Google Android kernel
engineer)
- `Reviewed-by: Chao Yu <chao@kernel.org>` (F2FS subsystem maintainer)
- `Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>` (F2FS maintainer)
- NO `Fixes:` tag, NO `Cc: stable` tag, NO `Reported-by:` tag, NO
`Link:` tag
**Step 1.3 - Analyze Commit Body:**
Record:
- Bug description: In age-based victim selection (ATGC, AT_SSR, GC_CB),
`f2fs_get_victim` can encounter sections with zero valid blocks
- Failure mode: `f2fs_get_section_mtime()` returns `INVALID_MTIME`,
triggering `f2fs_bug_on(sbi, mtime == INVALID_MTIME)` in
`add_victim_entry()` or `get_cb_cost()` → kernel panic (with
`CONFIG_F2FS_CHECK_FS`) or WARN + `SBI_NEED_FSCK` flag
- Root cause claim: "checkpoint is disabled or due to race conditions
between SIT updates and dirty list management"
- Commit says "This change also allows removing redundant checks in
`add_victim_entry()`" — but the final v2 does NOT remove those checks
(they remain)
**Step 1.4 - Hidden Bug Fix Detection:**
Record: Not hidden — explicitly a "fix" commit preventing a kernel
panic.
### PHASE 2: DIFF ANALYSIS
**Step 2.1 - Inventory Changes:**
Record: 1 file (`fs/f2fs/gc.c`), 3 lines added, 0 lines removed. Single-
function change within `f2fs_get_victim()`.
**Step 2.2 - Code Flow Change:**
Record:
- Before: Under `SBI_CP_DISABLED`, only LFS-mode checked
`get_ckpt_valid_blocks` and SSR-mode checked
`f2fs_segment_has_free_slot`. Sections with zero valid blocks could
proceed to `add_victim_entry()` / `get_gc_cost()`.
- After: Added `if (!get_valid_blocks(sbi, segno, true)) goto next;`
after both LFS/SSR branches — skips empty sections in CP_DISABLED mode
before they hit the BUG_ON.
**Step 2.3 - Bug Mechanism:**
Record: Category (d) memory safety / sanity-check, specifically avoiding
a `BUG_ON` trip in age-based victim selection when large sections have
all zero valid blocks (→ `f2fs_get_section_mtime` returns
`INVALID_MTIME`).
**Step 2.4 - Fix Quality:**
Record: Obviously correct — sections with zero valid blocks contain no
data to migrate, so skipping them is semantically correct. Zero
regression risk: just bypasses useless work. Fix is minimal (3 lines)
and localized.
### PHASE 3: GIT HISTORY INVESTIGATION
**Step 3.1 - Blame:**
Record: The `f2fs_bug_on(sbi, mtime == INVALID_MTIME)` and
`INVALID_MTIME` machinery were introduced by `b19ee7272208` ("f2fs:
introduce f2fs_get_section_mtime") in v6.13-rc1.
**Step 3.2 - Follow Fixes Tag:**
Record: No `Fixes:` tag. The underlying issue originated in
`b19ee7272208` (v6.13-rc1). An earlier related fix `207764e5d6f19`
("f2fs: fix to avoid return invalid mtime from
f2fs_get_section_mtime()") handled mtime fuzzing via syzbot report; it's
in stable 6.14.y, 6.15.y, 6.16.y, 6.17.y, 6.18.y, 6.19.y but not 6.13.y.
**Step 3.3 - Related Recent Changes:**
Record: `d625a2b08c089` ("f2fs: fix to avoid migrating empty section")
in Sep 2025 is thematically related — both deal with empty sections
during GC.
**Step 3.4 - Author's Other Commits:**
Record: Daeho Jeong is a regular f2fs contributor from Google working
extensively on f2fs GC logic and Android kernel integration. Multiple
GC-related commits.
**Step 3.5 - Dependencies:**
Record: Standalone — calls only `get_valid_blocks()` which exists in all
stable trees. No dependencies on newer code.
### PHASE 4: MAILING LIST RESEARCH
**Step 4.1 - Original Patch Discussion:**
Record: `b4 dig -c dccd324fa9bd1` found `https://lore.kernel.org/all/202
60316185922.2184759-1-daeho43@gmail.com/`. Patch went through v1 → v2.
v2 changelog: "changed the check position." v1 placed the check
unconditionally (before CP_DISABLED) AND removed redundant check from
`add_victim_entry()`. v2 narrowed scope to only run under CP_DISABLED
and kept redundant check.
**Step 4.2 - Reviewers:**
Record: Reviewed by Chao Yu (F2FS co-maintainer). Mailing lists: linux-
kernel, linux-f2fs-devel, kernel-team@android.com.
**Step 4.3 - Bug Report:**
Record: No explicit Reported-by or Link. The language "race conditions
between SIT updates and dirty list management" suggests it was observed
(possibly internally at Google/Android).
**Step 4.4 - Related Patches:**
Record: Not part of a series.
**Step 4.5 - Stable Mailing List:**
Record: No explicit stable nomination by reviewers in thread. Patchwork-
bot confirmed application to `jaegeuk/f2fs.git (dev)`.
### PHASE 5: CODE SEMANTIC ANALYSIS
**Step 5.1 - Key Functions:**
Record: `f2fs_get_victim()`, which calls `add_victim_entry()` (for
is_atgc) and `get_gc_cost()` → `get_cb_cost()` (for GC_CB).
**Step 5.2 - Callers:**
Record: `f2fs_get_victim` is called from `__get_victim` which is called
from `f2fs_gc`. `f2fs_gc` is called from GC background thread and from
ioctl `F2FS_IOC_GC` (user triggerable).
**Step 5.3 - Callees:**
Record: `get_valid_blocks()` reads section metadata; quick, safe call.
**Step 5.4 - Reachability:**
Record: Reachable from userspace via `ioctl(F2FS_IOC_GC)` as
demonstrated by the earlier syzbot reproducer for the related bug. Also
reached via background GC thread.
**Step 5.5 - Similar Patterns:**
Record: `add_victim_entry()` already has a similar check (`p->gc_mode ==
GC_AT && get_valid_blocks == 0`) — but it's narrower. This commit
extends the protection to all modes under CP_DISABLED.
### PHASE 6: CROSS-REFERENCING AND STABLE TREE ANALYSIS
**Step 6.1 - Code in Stable:**
Record: `f2fs_get_section_mtime` exists in 6.13.y, 6.14.y, 6.15.y,
6.16.y, 6.17.y, 6.18.y, 6.19.y. Does NOT exist in 6.12.y (introduced in
v6.13-rc1). Therefore bug only affects 6.13.y+.
**Step 6.2 - Backport Complications:**
Record: The surrounding code (CP_DISABLED block with LFS/SSR branches)
is identical in all stable branches from 6.13.y to 6.19.y. Patch applies
cleanly.
**Step 6.3 - Related Fixes Already in Stable:**
Record: `207764e5d6f19` (related INVALID_MTIME fix) already in 6.14.y,
6.15.y, 6.16.y, 6.17.y, 6.18.y, 6.19.y. This commit is complementary,
not duplicative — handles the `total_valid_blocks == 0` path that
`207764e5d6f19` left intact.
### PHASE 7: SUBSYSTEM CONTEXT
**Step 7.1 - Subsystem Criticality:**
Record: `fs/f2fs/` — IMPORTANT. Widely used on Android devices,
ChromeOS, and some embedded flash-storage systems.
**Step 7.2 - Subsystem Activity:**
Record: Very active subsystem with regular stable backports. Many
similar small fixes get backported routinely.
### PHASE 8: IMPACT AND RISK ASSESSMENT
**Step 8.1 - Affected Population:**
Record: Users of f2fs (Android, ChromeOS, embedded) running large
sections (zoned devices, some flash) with age-based GC modes, especially
when using `checkpoint=disable` mount option.
**Step 8.2 - Trigger Conditions:**
Record: Requires all of: (a) large section mode
(`__is_large_section(sbi)`), (b) `SBI_CP_DISABLED` flag set, (c) victim
selection in `is_atgc` or `GC_CB` mode, (d) a section with zero valid
blocks reaching this code path via SIT/dirty-list race. User-triggerable
via `ioctl(F2FS_IOC_GC)` or naturally during background GC.
**Step 8.3 - Failure Mode Severity:**
Record:
- With `CONFIG_F2FS_CHECK_FS=y` (dev builds, debug distros): kernel
panic via `BUG_ON` — CRITICAL
- Without: `WARN_ON` + sets `SBI_NEED_FSCK` flag (filesystem marked
needing repair, user-facing disruption) — MEDIUM
- Also, `INVALID_MTIME` (= ULLONG_MAX) then fed into age calculations
produces wildly wrong GC cost → suboptimal GC decisions.
**Step 8.4 - Risk-Benefit:**
Record:
- Benefit: Prevents panic on debug builds; avoids FS-needs-fsck flag and
bogus GC cost on production.
- Risk: Very low. 3 lines added, inside an `unlikely(CP_DISABLED)`
branch. The skipped work is legitimately unnecessary (empty sections
have nothing to migrate). No locking changes, no allocation changes.
### PHASE 9: FINAL SYNTHESIS
**Step 9.1 - Evidence Compilation:**
FOR:
- Prevents kernel panic (w/ `F2FS_CHECK_FS`) or FS-needs-fsck (w/o)
- Small, obvious 3-line fix
- Reviewed by F2FS subsystem maintainer (Chao Yu)
- Went through v1→v2 review cycle; narrowed scope based on feedback
- Zero regression risk (skipping empty sections is semantically correct)
- Bug exists in every stable branch from 6.13.y through 6.19.y
- Patch applies cleanly to all affected stable branches
- Previous related INVALID_MTIME fix (`207764e5d6f19`) already in stable
- Applicable to Android's `checkpoint=disable` usage pattern
- Reaches via user-triggerable `ioctl(F2FS_IOC_GC)` (syscall-reachable)
AGAINST:
- No `Fixes:` tag
- No `Cc: stable` tag from author/maintainer
- No explicit `Reported-by:` or `Link:` to a bug report
- Trigger conditions are specific (CP_DISABLED + large section + age-
based GC + race)
- Commit message mentions removing checks that v2 didn't remove (minor
inconsistency)
**Step 9.2 - Stable Rules Checklist:**
1. Obviously correct and tested? YES — empty sections have nothing to
migrate; reviewed by maintainer
2. Fixes a real bug? YES — documented panic path via `f2fs_bug_on(mtime
== INVALID_MTIME)`
3. Important issue? YES — kernel panic on debug kernels, FS corruption
flagging on production
4. Small and contained? YES — 3 lines, single function
5. No new features/APIs? YES
6. Applies to stable trees? YES — clean apply to 6.13.y through 6.19.y
**Step 9.3 - Exception Categories:**
Not applicable (not a device ID / quirk / DT / build / doc fix).
Standard bug-fix commit.
**Step 9.4 - Decision:**
This is a small, surgical bug fix preventing a legitimate kernel
panic/warn-and-flag-for-fsck condition, reviewed by the subsystem
maintainer, with zero regression risk. The trigger window (CP_DISABLED +
race) is uncommon but realistic on Android/ChromeOS workloads. Similar
small f2fs sanity-check fixes are routinely backported. The absence of
Fixes:/Cc:stable is expected per the instructions — this is why it needs
review.
## Verification
- [Phase 1] Read full commit message from `git show dccd324fa9bd1` —
confirmed tags (Reviewed-by Chao Yu, Signed-off-by Daeho/Jaegeuk), no
Fixes:/Cc:stable/Reported-by:/Link:
- [Phase 2] Read `fs/f2fs/gc.c` lines 850-950 and diff — confirmed
3-line addition inside the `SBI_CP_DISABLED` block of
`f2fs_get_victim`
- [Phase 2] Read `get_cb_cost` (line 367) and `add_victim_entry` (line
520) — confirmed both have `f2fs_bug_on(mtime == INVALID_MTIME)`
- [Phase 2] Read `f2fs_get_section_mtime` in `fs/f2fs/segment.c:5637` —
confirmed returns `INVALID_MTIME` when `total_valid_blocks == 0`
- [Phase 2] Read `f2fs_bug_on` macro in `f2fs.h:33-41` — confirmed
BUG_ON with CONFIG_F2FS_CHECK_FS, WARN+SBI_NEED_FSCK without
- [Phase 3] `git log -S INVALID_MTIME` — identified introduction in
`b19ee7272208`, partial fix `207764e5d6f19`
- [Phase 3] `git describe --contains b19ee7272208` → `v6.13-rc1~77^2~39`
(bug introduced in v6.13)
- [Phase 3] `git describe --contains 207764e5d6f19` → `v6.14-rc1~63^2~4`
(prior fix in v6.14)
- [Phase 3] `git branch --contains dccd324fa9bd1` — confirmed only in
`linux-next/master` and `fs-next` (not in any stable tag yet)
- [Phase 4] `b4 dig -c dccd324fa9bd1` — found submission at
`lore.kernel.org/all/20260316185922.2184759-1-daeho43@gmail.com`
- [Phase 4] `b4 dig -a` — confirmed v1→v2 evolution; v2 is what was
applied
- [Phase 4] Read `/tmp/f2fs_thread.mbox` — confirmed Chao Yu Reviewed-
by, patchwork-bot applied to `jaegeuk/f2fs.git (dev)`
- [Phase 4] Read `/tmp/20260310_daeho43_...mbx` (v1) — confirmed v1 had
unconditional check + removed redundant `add_victim_entry` check; v2
narrowed to CP_DISABLED only
- [Phase 6] `git grep -l f2fs_get_section_mtime` on each stable branch —
confirmed bug exists in 6.13.y through 6.19.y, not in 6.12.y
- [Phase 6] Inspected CP_DISABLED block in each stable branch —
confirmed identical code, patch would apply cleanly
- [Phase 6] `git log --grep "avoid return invalid mtime"` on stable
branches — confirmed `207764e5d6f19` present in 6.14.y through 6.19.y
- [Phase 8] Verified `f2fs_get_victim` reachable via `F2FS_IOC_GC` ioctl
from the stack trace in `207764e5d6f19` commit message
- UNVERIFIED: Exact frequency/reproducibility of the race condition
between SIT updates and dirty list management — commit message asserts
this but provides no reproducer
- UNVERIFIED: Whether the commit message's claim "allows removing
redundant checks in add_victim_entry()" is still meaningful for v2 (v2
doesn't actually remove them; likely leftover from v1 description)
The fix is small, surgical, reviewed by the subsystem maintainer,
prevents a real panic/filesystem-flagging bug present in all active
stable trees from 6.13.y onward, and carries negligible regression risk.
This matches the profile of f2fs fixes routinely backported to stable.
**YES**
fs/f2fs/gc.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c
index f46b2673d31f5..5c355d3da23bf 100644
--- a/fs/f2fs/gc.c
+++ b/fs/f2fs/gc.c
@@ -909,6 +909,9 @@ int f2fs_get_victim(struct f2fs_sb_info *sbi, unsigned int *result,
if (!f2fs_segment_has_free_slot(sbi, segno))
goto next;
}
+
+ if (!get_valid_blocks(sbi, segno, true))
+ goto next;
}
if (gc_type == BG_GC && test_bit(secno, dirty_i->victim_secmap))
--
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 ` Sasha Levin [this message]
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 ` [PATCH AUTOSEL 7.0] drm/amdgpu: OR init_pte_flags into invalid leaf PTE updates Sasha Levin
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-30-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=chao@kernel.org \
--cc=daehojeong@google.com \
--cc=jaegeuk@kernel.org \
--cc=linux-f2fs-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@lists.linux.dev \
--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