Linux Kernel: Late-Cycle Fixes for Ring Buffer and Zcrypt Memory Safety

As the 7.2 kernel heads toward release, two merges landed focused entirely on correctness fixes: a batch of tracing and ring buffer race and use-after-free fixes, and a set of s390 zcrypt patches closing out-of-bounds and uninitialized memory issues. Linus also tagged 7.2-rc7.

Duration: PT2M30S

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-10T13:13:27Z
  • Audio duration: PT2M30S

Transcript excerpt

This excerpt keeps the crawler page concise. Listen to the episode or use the RSS feed for the full update.

Good day, and welcome to Linux Kernel briefing for August 10th, 2026.

The signal today is simple: this is cleanup and hardening work, not new features, arriving right on schedule as the 7.2 cycle winds down.

First theme, tracing subsystem stability. Steven Rostedt's pull, merged by Linus in commit b9b3e33, bundles a dozen fixes across ftrace, the ring buffer, and eventfs. The common thread is memory safety under concurrency. The eventfs code had a genuine use-after-free, where list traversal during inode removal needed…

Second theme, s390 crypto input validation. Vasily Gorbik's zcrypt pull tightens length and bounds checking across CCA and EP11 request handling. The EP11 domain code now parses fields properly instead of assuming a fixed payload layout, closing a path to out-of-bounds reads. Buffer allocations get corrected…

Both pulls share a pattern: careful auditing of memory lifecycle and buffer boundaries in subsystems that handle untrusted or concurrent input.

Finally, commit db2ddb8 tags Linux 7.2-rc7 — confirmation the release is in its final stabilization pass.

Nearby episodes from Linux Kernel

  1. Late-Cycle Fixes and a Wireless Regression Reversal
  2. SCSI Deadlock and Power Management Fixes
  3. Uprobe Test Fix Lands Late in the RC Cycle
  4. Late-Cycle Fixes for Crypto and Regmap Cache Sorting
  5. Weekly Recap - Late-Cycle Fixes Across the Stack
  6. Pre-Release Hardening Push for 7.2
  7. The Late-Cycle Fixes Convergence
  8. Late-Cycle Race Conditions Take Center Stage