From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Dave Chen <davechen@synology.com>,
Filipe Manana <fdmanana@suse.com>,
Robbie Ko <robbieko@synology.com>,
David Sterba <dsterba@suse.com>, Sasha Levin <sashal@kernel.org>,
clm@fb.com, josef@toxicpanda.com, linux-btrfs@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 7.0-5.15] btrfs: use BTRFS_FS_UPDATE_UUID_TREE_GEN flag for UUID tree rescan check
Date: Mon, 20 Apr 2026 09:08:59 -0400 [thread overview]
Message-ID: <20260420131539.986432-73-sashal@kernel.org> (raw)
In-Reply-To: <20260420131539.986432-1-sashal@kernel.org>
From: Dave Chen <davechen@synology.com>
[ Upstream commit e70e3f858e084aee34a2206e5f4dd49a47673f6a ]
The UUID tree rescan check in open_ctree() compares
fs_info->generation with the superblock's uuid_tree_generation.
This comparison is not reliable because fs_info->generation is
bumped at transaction start time in join_transaction(), while
uuid_tree_generation is only updated at commit time via
update_super_roots().
Between the early BTRFS_FS_UPDATE_UUID_TREE_GEN flag check and the
late rescan decision, mount operations such as file orphan cleanup
from an unclean shutdown start transactions without committing
them. This advances fs_info->generation past uuid_tree_generation
and produces a false-positive mismatch.
Use the BTRFS_FS_UPDATE_UUID_TREE_GEN flag directly instead. The
flag was already set earlier in open_ctree() when the generations
were known to match, and accurately represents "UUID tree is up to
date" without being affected by subsequent transaction starts.
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: Dave Chen <davechen@synology.com>
Signed-off-by: Robbie Ko <robbieko@synology.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
Now I have a complete picture. Let me compile the final analysis.
---
## PHASE 1: COMMIT MESSAGE FORENSICS
### Step 1.1: PARSE THE SUBJECT LINE
Record: [btrfs] [use] [Replace unreliable generation comparison with
reliable flag for UUID tree rescan check]
### Step 1.2: PARSE ALL COMMIT MESSAGE TAGS
- **Reviewed-by:** Filipe Manana <fdmanana@suse.com> — Filipe is a
prolific btrfs maintainer/developer (verified: 5+ recent commits in
btrfs)
- **Signed-off-by:** Dave Chen <davechen@synology.com> — Author
- **Signed-off-by:** Robbie Ko <robbieko@synology.com> — Co-
author/submitter from Synology
- **Signed-off-by:** Filipe Manana <fdmanana@suse.com> — Committer path
- **Signed-off-by:** David Sterba <dsterba@suse.com> — Btrfs tree
maintainer
No Fixes: tag, no Reported-by, no Link, no Cc: stable. Absence is
expected.
Record: Patch was reviewed by Filipe Manana (btrfs expert) and committed
through Filipe and David Sterba (btrfs maintainer). Strong review chain.
### Step 1.3: ANALYZE THE COMMIT BODY TEXT
The commit explains:
- **Bug mechanism:** `fs_info->generation` is bumped at transaction
start time in `join_transaction()`, while `uuid_tree_generation` is
only updated at commit time in `update_super_roots()`.
- **What goes wrong:** Between the early `BTRFS_FS_UPDATE_UUID_TREE_GEN`
flag check and the late UUID rescan decision, mount operations (orphan
cleanup from unclean shutdown) start transactions without committing
them. This advances `fs_info->generation` past `uuid_tree_generation`,
producing a **false-positive mismatch**.
- **Result:** Unnecessary UUID tree rescan on mount after unclean
shutdown.
- **Fix:** Use the `BTRFS_FS_UPDATE_UUID_TREE_GEN` flag directly instead
of re-comparing generations.
Record: Real bug — false-positive UUID tree rescan triggered on mount
after unclean shutdown. Root cause is generation counter advancing from
uncommitted transactions between the flag-set point and the check point.
### Step 1.4: DETECT HIDDEN BUG FIXES
This IS a real bug fix, though the commit message doesn't use the word
"fix" directly. The language "not reliable," "false-positive mismatch,"
and the explanation of the broken mechanism clearly describe a bug being
corrected.
Record: Yes, this is a real bug fix for an incorrect condition that
triggers unnecessary rescans.
## PHASE 2: DIFF ANALYSIS
### Step 2.1: INVENTORY THE CHANGES
- **File:** `fs/btrfs/disk-io.c` — 1 line changed (1 removed, 1 added)
- **Function:** `open_ctree()` — the main btrfs mount function
- **Scope:** Single-file, single-line, surgical fix
Record: 1 file, 1 line change, in `open_ctree()`. Minimal scope.
### Step 2.2: UNDERSTAND THE CODE FLOW CHANGE
**Before (line 3677):**
```c
fs_info->generation != btrfs_super_uuid_tree_generation(disk_super)
```
Compares current in-memory generation counter vs. on-disk
uuid_tree_generation.
**After:**
```c
!test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)
```
Tests the flag that was set earlier at line 3537 when generations were
known to match.
Record: Normal mount path affected. Changes the condition from an
unreliable runtime comparison to a stable flag check.
### Step 2.3: IDENTIFY THE BUG MECHANISM
This is a **logic/correctness bug**. The comparison `fs_info->generation
!= uuid_tree_generation` was correct at the time it was originally
written, but commit 44c0ca211a4da (Boris Burkov, 2020) refactored the
code to move orphan cleanup and other rw mount operations *before* this
check via `btrfs_start_pre_rw_mount()`. Those operations start
transactions (confirmed: `btrfs_orphan_cleanup()` calls
`btrfs_start_transaction()` at line 3870 of `inode.c`), which bumps
`fs_info->generation` (confirmed: `join_transaction()` at line 392 of
`transaction.c`). The on-disk `uuid_tree_generation` doesn't change
until `update_super_roots()` at commit time (confirmed: line 1985-1986
of `transaction.c`).
Record: Logic bug category. Condition became incorrect after code was
reordered by refactoring commit 44c0ca211a4da.
### Step 2.4: ASSESS THE FIX QUALITY
- Obviously correct: The flag `BTRFS_FS_UPDATE_UUID_TREE_GEN` is already
set at line 3537 exactly when the generations match, and is unaffected
by transaction starts
- Minimal/surgical: 1 line change
- No regression risk: The flag is already the authoritative indicator
(used by `update_super_roots()` at commit time)
- Reviewed by Filipe Manana
Record: Fix quality is excellent. Obviously correct, minimal, no
regression risk.
## PHASE 3: GIT HISTORY INVESTIGATION
### Step 3.1: BLAME THE CHANGED LINES
The buggy line (3677) was introduced by commit 44c0ca211a4da9 (Boris
Burkov, 2020-11-18) — "btrfs: lift read-write mount setup from mount and
remount". This refactoring moved rw mount setup into
`btrfs_start_pre_rw_mount()` but left the generation comparison in
`open_ctree()` after the call, creating the false-positive window.
Record: Buggy code introduced by 44c0ca211a4da (v5.11). Present in all
active stable trees from 5.15+.
### Step 3.2: FOLLOW THE FIXES TAG
No Fixes: tag, but the bug was introduced by 44c0ca211a4da. The earlier
fix attempt (75ec1db8717a8 by Josef Bacik, 2020) set the flag *before*
the problematic code paths, specifically to prevent this exact class of
bug. But the 44c0ca211a4da refactoring reintroduced the problem by
moving more transaction-starting code between the flag set and the
rescan check, without updating the check to use the flag.
Record: 44c0ca211a4da introduced the bug. It's in v5.11+ (all active
stable trees).
### Step 3.3: CHECK FILE HISTORY
Recent file history shows active maintenance with various fixes. No
dependency concerns.
Record: Standalone fix, no prerequisites needed.
### Step 3.4: AUTHOR
Dave Chen from Synology is a btrfs contributor. Robbie Ko from Synology
is also a known btrfs contributor with multiple commits. Filipe Manana
reviewed.
Record: Authors are active btrfs contributors, reviewer is btrfs expert.
### Step 3.5: DEPENDENCIES
The fix depends on `BTRFS_FS_UPDATE_UUID_TREE_GEN` flag existing and
being set early in `open_ctree()`. This was added by 75ec1db8717a8
(Josef Bacik, 2020, v5.6, CC stable 4.19+). Verified: The flag and the
early set_bit at line 3537 exist in current code.
Record: No additional dependencies. The flag infrastructure exists since
v5.6.
## PHASE 4: MAILING LIST RESEARCH
### Step 4.1-4.5
b4 dig could not find the specific patch submission (the commit may be
very recent or submitted through a different path). Web searches also
couldn't reach lore due to anti-bot protection. The commit message and
review chain (Reviewed-by: Filipe Manana, SOBs from Filipe Manana and
David Sterba) confirm it went through proper btrfs review.
Record: Could not access mailing list discussion directly. Review chain
confirms proper vetting.
## PHASE 5: CODE SEMANTIC ANALYSIS
### Step 5.1: KEY FUNCTIONS
Modified function: `open_ctree()` — the main btrfs filesystem mount
function.
### Step 5.2: CALLERS
`open_ctree()` is called during every btrfs mount. This is a universally
exercised path.
### Step 5.3-5.4: TRIGGER PATH
The false-positive triggers when:
1. Filesystem had an unclean shutdown (so orphan items exist)
2. Mount starts a transaction during orphan cleanup → bumps generation
3. UUID rescan check falsely detects a mismatch → triggers unnecessary
rescan
This is extremely common — every btrfs mount after crash/power failure.
Record: Bug path is very commonly triggered (any mount after unclean
shutdown).
### Step 5.5: SIMILAR PATTERNS
Josef Bacik's commit 75ec1db8717a8 fixed the exact same class of bug
earlier (log replay bumping generation), showing this is a recurring
pattern.
## PHASE 6: STABLE TREE ANALYSIS
### Step 6.1: BUGGY CODE IN STABLE
The bug was introduced in 44c0ca211a4da (v5.11). It exists in stable
trees: 5.15.y, 6.1.y, 6.6.y, 6.12.y, and now 7.0.
### Step 6.2: BACKPORT COMPLICATIONS
The fix is a single-line change. The surrounding code context may differ
slightly between stable trees, but the essential structure (uuid_root
check with generation comparison) should be present in all affected
trees.
Record: Clean apply expected in most trees; minor conflicts possible in
very old trees due to surrounding code changes.
### Step 6.3: RELATED FIXES
No other fix for this specific issue found in history.
## PHASE 7: SUBSYSTEM AND MAINTAINER CONTEXT
### Step 7.1: SUBSYSTEM CRITICALITY
btrfs (fs/btrfs/) — IMPORTANT. Major Linux filesystem used in many
distributions (SUSE, openSUSE, Fedora) and NAS products (Synology, which
is where this fix comes from).
### Step 7.2: ACTIVITY
Very actively developed and maintained. Multiple fixes merged during 7.0
cycle.
## PHASE 8: IMPACT AND RISK ASSESSMENT
### Step 8.1: WHO IS AFFECTED
All btrfs users who experience unclean shutdowns (crash, power failure,
hard reset).
### Step 8.2: TRIGGER CONDITIONS
- Trigger: Mount after unclean shutdown when orphan items exist → very
common
- No special privileges needed, just mounting the filesystem
- Deterministic (not timing-dependent)
### Step 8.3: FAILURE MODE SEVERITY
- **Not a crash or data corruption** — the UUID tree rescan is
unnecessary but harmless
- **Performance impact:** The rescan walks the entire UUID tree,
verifying every entry. On a filesystem with many subvolumes/snapshots,
this can be expensive and slow down mount time significantly
- **User-visible symptom:** "checking UUID tree" message in dmesg on
every mount after unclean shutdown, plus slower mount
Record: Severity: MEDIUM. Unnecessary expensive operation during mount.
No data risk.
### Step 8.4: RISK-BENEFIT RATIO
- **Benefit:** Eliminates unnecessary UUID tree rescans on mount after
unclean shutdown. Improves mount time for btrfs users (especially
those with many subvolumes)
- **Risk:** Extremely low — 1-line change, obviously correct, uses a
flag that was designed for exactly this purpose
- **Ratio:** Very favorable
## PHASE 9: FINAL SYNTHESIS
### Step 9.1: EVIDENCE
**FOR backporting:**
- Fixes a real bug: unnecessary UUID tree rescan triggered by false-
positive generation mismatch
- Extremely small and surgical: 1 line change
- Obviously correct: uses the flag designed for this exact purpose
- Reviewed by Filipe Manana (btrfs expert)
- Bug affects all btrfs users who experience unclean shutdowns
- Bug exists since v5.11 (all active stable trees)
- No regression risk
- The flag infrastructure is already present in all stable trees
**AGAINST backporting:**
- Not a crash, security issue, or data corruption
- The unnecessary rescan is a performance issue, not a correctness issue
(the rescan itself is harmless)
- No Fixes: or Cc: stable tags from the author (expected — that's why
we're reviewing)
### Step 9.2: STABLE RULES CHECKLIST
1. Obviously correct and tested? **YES** — trivial 1-line change
reviewed by btrfs expert
2. Fixes a real bug that affects users? **YES** — unnecessary expensive
operation on mount after crash
3. Important issue? **MEDIUM** — performance issue on common path, not
crash/corruption
4. Small and contained? **YES** — 1 line, 1 file
5. No new features or APIs? **YES** — no new features
6. Can apply to stable trees? **YES** — simple change to code present
since v5.11
### Step 9.3: EXCEPTION CATEGORIES
Not an exception category, but a straightforward bug fix.
### Step 9.4: DECISION
This is a clean, minimal, obviously correct fix for a real bug that
causes unnecessary expensive UUID tree rescans during btrfs mount after
unclean shutdown. It was reviewed by btrfs expert Filipe Manana and
committed through the proper btrfs maintainer chain. While not a crash
or security issue, it fixes a genuine problem that affects all btrfs
users who experience power failures or crashes, and the risk of
regression from this 1-line change is essentially zero. This meets
stable kernel criteria.
## Verification
- [Phase 1] Parsed tags: Reviewed-by Filipe Manana, SOBs from Dave Chen,
Robbie Ko, Filipe Manana, David Sterba
- [Phase 2] Diff analysis: 1 line changed in `open_ctree()` at line 3677
of disk-io.c — replaces `fs_info->generation !=
btrfs_super_uuid_tree_generation(disk_super)` with
`!test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags)`
- [Phase 3] git blame: buggy line introduced by commit 44c0ca211a4da
(Boris Burkov, v5.11, 2020-11-18)
- [Phase 3] git show 75ec1db8717a8: confirmed this is the original fix
that added the flag and early set_bit, with CC: stable 4.19+
- [Phase 3] Verified `join_transaction()` bumps generation at
transaction.c:392
- [Phase 3] Verified `btrfs_orphan_cleanup()` starts transactions at
inode.c:3870
- [Phase 3] Verified `update_super_roots()` uses the flag to write
uuid_tree_generation at transaction.c:1985-1986
- [Phase 3] Verified the flag is set early at disk-io.c:3535-3537
- [Phase 3] Verified `btrfs_start_pre_rw_mount()` calls orphan cleanup
at disk-io.c:3119, before the UUID rescan check at line 3677
- [Phase 3] git merge-base: 44c0ca211a4da is in v5.11 but not v5.10; bug
exists in stable trees 5.15+
- [Phase 4] b4 dig: could not find original submission thread
- [Phase 4] UNVERIFIED: Could not access lore.kernel.org discussion due
to anti-bot protection
- [Phase 5] `open_ctree()` called on every btrfs mount — universal code
path
- [Phase 5] Trigger: mount after unclean shutdown → orphan cleanup →
transaction → generation bump → false positive
- [Phase 7] btrfs is an important filesystem used by major distributions
and NAS vendors
- [Phase 8] Failure mode: unnecessary UUID tree rescan (walks entire
tree), severity MEDIUM (performance, not crash)
**YES**
fs/btrfs/disk-io.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 1b0eb246b7147..70357b12508d0 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -3674,7 +3674,7 @@ int __cold open_ctree(struct super_block *sb, struct btrfs_fs_devices *fs_device
if (fs_info->uuid_root &&
(btrfs_test_opt(fs_info, RESCAN_UUID_TREE) ||
- fs_info->generation != btrfs_super_uuid_tree_generation(disk_super))) {
+ !test_bit(BTRFS_FS_UPDATE_UUID_TREE_GEN, &fs_info->flags))) {
btrfs_info(fs_info, "checking UUID tree");
ret = btrfs_check_uuid_tree(fs_info);
if (ret) {
--
2.53.0
next prev parent reply other threads:[~2026-04-20 13:17 UTC|newest]
Thread overview: 90+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-20 13:07 [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Lenovo Yoga 7 2-in-1 16AKP10 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] net: stmmac: Fix PTP ref clock for Tegra234 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ring-buffer: Enforce read ordering of trace_buffer cpumask and buffers Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.6] PCI: Prevent assignment to unsupported bridge windows Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] smb: client: fix integer underflow in receive_encrypted_read() Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] gpio: lp873x: normalize return value of gpio_get Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] ALSA: hda: cs35l41: Fix boost type for HP Dragonfly 13.5 inch G4 Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: don't return TXQ when exceeding max non-AQL packets Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] arm64: dts: imx91-tqma9131: improve eMMC pad configuration Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 6.18] ASoC: amd: acp: add ASUS HN7306EA quirk for legacy SDW machine Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.12] wifi: mac80211: properly handle error in ieee80211_add_virtual_monitor Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-5.10] net: qrtr: fix endian handling of confirm_rx field Sasha Levin
2026-04-20 13:07 ` [PATCH AUTOSEL 7.0-6.18] mmc: sdhci-esdhc-imx: wait for data transfer completion before reset Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] tracing/probe: reject non-closed empty immediate strings Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] media: rc: fix race between unregister and urb/irq callbacks Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: xt_multiport: validate range encoding in checkentry Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] arm64: dts: imx93-tqma9352: improve eMMC pad configuration Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] dm vdo slab-depot: validate old zone count on load Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mt76: mt792x: Fix a potential deadlock in high-load situations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] orangefs: add usercopy whitelist to orangefs_op_cache Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ice: ptp: don't WARN when controlling PF is unavailable Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] e1000: check return value of e1000_read_eeprom Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] ALSA: usb-audio: Add quirks for Arturia AF16Rig Sasha Levin
2026-04-20 13:27 ` Philip Willoughby
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] ALSA: asihpi: detect truncated control names Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add support for ASUS 2026 Commercial laptops using CS35L41 HDA Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: Set the lbmDone flag at the end of lbmIODone Sasha Levin
2026-04-20 14:10 ` Edward Adam Davis
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] ASoC: SDCA: Add CS47L47 to class driver Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: renesas: vsp1: rpf: Fix crop left and top clamping Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: amd: yc: Add DMI entry for HP Laptop 15-fc0xxx Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: au0828: Fix green screen in analog Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ASoC: Intel: avs: Fix memory leak in avs_register_i2s_test_boards() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] nvme-loop: do not cancel I/O and admin tagset during ctrl reset/shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] bpf, sockmap: Annotate af_unix sock:: Sk_state data-races Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] net: wangxun: reorder timer and work sync cancellations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] PCI: tegra194: Assert CLKREQ# explicitly by default Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] net: mvneta: support EPROBE_DEFER when reading MAC address Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ALSA: hda/realtek: add quirk for Framework F111:000F Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] jfs: add dmapctl integrity check to prevent invalid operations Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] wifi: mac80211: Remove deleted sta links in ieee80211_ml_reconf_work() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] HID: logitech-hidpp: fix race condition when accessing stale stack pointer Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] net/mlx5e: XSK, Increase size for chunk_size param Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] PCI: dwc: Proceed with system suspend even if the endpoint doesn't respond with PME_TO_Ack message Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ACPI: processor: idle: Fix NULL pointer dereference in hotplug path Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ppp: disconnect channel before nullifying pch->chan Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] wifi: iwlwifi: mvm: zero iwl_geo_tx_power_profiles_cmd before sending Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.15] ALSA: pcm: Serialize snd_pcm_suspend_all() with open_mutex Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] Bluetooth: hci_qca: disable power control for WCN7850 when bt_en is not defined Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.6] Bluetooth: hci_qca: Fix missing wakeup during SSR memdump handling Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] pinctrl: intel: Fix the revision for new features (1kOhm PD, HW debouncer) Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] fbdev: viafb: check ioremap return value in viafb_lcd_get_mobile_state Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.19] drm/panel-edp: Add BOE NV153WUM-N42, CMN N153JCA-ELK, CSW MNF307QS3-2 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0] drm/amdgpu/userq: remove queue from doorbell xarray Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] memory: brcmstb_memc: Expand LPDDR4 check to cover for LPDDR5 Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] nouveau: pci: quiesce GPU on shutdown Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] perf/amd/ibs: Avoid race between event add and NMI Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.12] drm/amd/display: Fix dcn401_optimize_bandwidth Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: rtw88: coex: Ignore BT info byte 5 from RTL8821A Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] btrfs: tracepoints: get correct superblock from dentry in event btrfs_sync_file() Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] ALSA: hda/realtek: Add quirk for CSL Unity BF24B Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] media: stm32: dcmi: stop the dma transfer on overrun Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-5.10] ALSA: aoa/onyx: Fix OF node leak on probe failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] drm/bridge: waveshare-dsi: Register and attach our DSI device at probe Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] wifi: rtw89: retry efuse physical map dump on transient failure Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] netfilter: nfnetlink_queue: make hash table per queue Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] gpio: cgbc: normalize return value of gpio_get Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] HID: logitech-hidpp: Check bounds when deleting force-feedback effects Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] x86: shadow stacks: proper error handling for mmap lock Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.1] sched: Fix incorrect schedstats for rt and dl thread Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] wifi: iwlwifi: pcie: don't dump on reset handshake in dump Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] net: sfp: add quirks for Hisense and HSGQ GPON ONT SFP modules Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 6.18] ixgbevf: add missing negotiate_features op to Hyper-V ops table Sasha Levin
2026-04-20 13:08 ` [PATCH AUTOSEL 7.0-6.18] hwmon: (pmbus/isl68137) Add support for Renesas RAA228942 and RAA228943 Sasha Levin
2026-04-20 13:08 ` Sasha Levin [this message]
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.19] Bluetooth: hci_ll: Enable BROKEN_ENHANCED_SETUP_SYNC_CONN for WL183x Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: mt76: abort ROC on chanctx changes Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] perf/amd/ibs: Limit ldlat->l3missonly dependency to Zen5 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/amdkfd: Fix queue preemption/eviction failures by aligning control stack size to GPU page size Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] clockevents: Prevent timer interrupt starvation Sasha Levin
2026-04-20 14:12 ` Thomas Gleixner
2026-04-21 6:26 ` [PATCH stable backport] clockevents: Add missing resets of the next_event_forced flag Thomas Gleixner
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: tas2552: Allow audio enable GPIO to sleep Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] wifi: ath12k: Fix the assignment of logical link index Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.12] drm/amdgpu: fix DF NULL pointer issue for soc24 Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-6.18] drm/ttm: Avoid invoking the OOM killer when reading back swapped content Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] drm/vc4: Release runtime PM reference after binding V3D Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] media: i2c: mt9p031: Check return value of devm_gpiod_get_optional() in mt9p031_probe() Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 6.18] Bluetooth: hci_sync: annotate data-races around hdev->req_status Sasha Levin
2026-04-20 13:09 ` [PATCH AUTOSEL 7.0-5.10] ASoC: Intel: bytcr_rt5651: Fix MCLK leak on platform_clock_control error 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=20260420131539.986432-73-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=clm@fb.com \
--cc=davechen@synology.com \
--cc=dsterba@suse.com \
--cc=fdmanana@suse.com \
--cc=josef@toxicpanda.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=patches@lists.linux.dev \
--cc=robbieko@synology.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