Linux Kernel: The Great Crypto and Filesystem Consolidation
This merge window's dominant story is consolidation: new AES library APIs replace scattered crypto code, filesystem encryption unifies on a single blk-crypto path, and VFS gains shared superblock tracking and metadata writeback fixes — all aimed at cutting redundant code and closing long-standing correctness gaps.
Duration: PT2M42S
Episode overview
This episode is a short developer briefing from Linux Kernel.
It explains recent repository work in plain language.
- Show: Linux Kernel
- Published: 2026-08-18T13:14:31Z
- Audio duration: PT2M42S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
It's August 18th, 2026, and this is your Linux Kernel briefing.
The signal today is consolidation. Across crypto, filesystems, and the VFS layer, Linus pulled in work that replaces duplicated, ad hoc implementations with single, well-tested subsystems.
Start with crypto. Eric Biggers' library update, commit d47db9b, adds proper library APIs for the AES modes used throughout the kernel — ECB, CBC, CTR, XTS, GCM, CCM, and more. These modes currently get accessed through the harder-to-use crypto skcipher and crypto AEAD interfaces. The new APIs are simpler and, per…
That same consolidation logic drives fscrypt, commit 1d7443e. Ext4 and F2FS previously maintained two separate file-encryption implementations. Now everything runs through blk-crypto, which delegates to inline hardware or falls back to CPU encryption — functionally the same code path either way. Direct I/O on…
The VFS saw two related pulls. Commit ff68e5f introduces metadata writeback tracking so fsync actually persists everything it should — fixing real data-integrity gaps in ext2, UDF, FAT, and others. Commit 1781f0b adds a global device-to-superblock table, letting freeze and thaw operations reach every filesystem…
Elsewher…
Nearby episodes from Linux Kernel
- Merge Window Brings Use-After-Free Fixes Across the Board
- The Merge Window Lands
- The Great String Function Cleanup
- The Great Merge Window Cleanup
- 7.2 Ships With a Wave of Late Fixes
- Weekly Recap - Late-Cycle Fixes and a Security Patch for OpenRISC
- Late-Cycle Fixes and a Security Patch
- Late-Cycle Fixes and a Scheduler Retreat