Linux Kernel Daily: The Great Filesystem Consolidation
A wave of merges into the mainline kernel shows a clear pattern: filesystems and core subsystems are shedding redundant, filesystem-specific code in favor of shared, centrally-maintained implementations. Crypto, encryption, and metadata writeback all got the same treatment this cycle.
Duration: PT2M38S
Episode overview
This episode is a short developer briefing from Linux Kernel Daily.
It explains recent repository work in plain language.
- Show: Linux Kernel Daily
- Published: 2026-08-18T06:00:50Z
- Audio duration: PT2M38S
Transcript excerpt
This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.
Good morning. It's August 18th, 2026, and this is Linux Kernel Daily.
Today's merge window tells one consistent story: consolidation. Across crypto, file encryption, and metadata writeback, maintainers are ripping out duplicated logic scattered across individual filesystems and replacing it with shared, well-tested infrastructure underneath.
Start with crypto. Eric Biggers' library update, commit d47db9b, adds proper library APIs for all the major AES modes — ECB, CBC, CTR, XTS, GCM, CCM — finally giving the kernel a real alternative to the older, harder-to-use crypto skcipher and AEAD interfaces. This is prep work: architecture-optimized AES code will…
That same consolidation logic drives the fscrypt update in commit 1d7443e. Ext4 and F2FS previously each had their own file-contents encryption implementation. Now they both standardize on the block-crypto path exclusively, deleting the redundant filesystem-layer code. One practical side effect worth remembering:…
The VFS writeback change in ff68e5f follows the same pattern from a different angle. A new sync-inode-metadata superblock operation now handles persisting all inode metadata, letting filesystems like ext2, UDF, minix, BFS,…
El…