Linux Kernel Daily: A Late-Cycle Test Fix for Uprobes

Linus Torvalds pulled a single probes fix ahead of the 7.2 release, correcting how a self-test calculates file offsets for uprobe registration on non-PIE executables.

Duration: PT1M53S

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-12T06:01:00Z
  • Audio duration: PT1M53S

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 Daily for August 12, 2026.

Today's activity is narrow but worth flagging: a single merge from Masami Hiramatsu's probes tree, landing right at release candidate 7 of the 7.2 cycle.

The fix, commit f5bbbfe, addresses a bug in the add-remove-uprobe self-test. The test was using the ELF entry point address directly as a file offset when registering a uprobe. That works fine for position-independent executables, but on non-PIE binaries, the virtual address can exceed the actual file size, causing…

This is test infrastructure, not core kernel logic, but it matters for anyone relying on the ftrace self-test suite to validate uprobe behavior. A false failure in continuous integration or pre-release validation can mask real problems or waste time chasing a phantom bug. Fixing it now, at rc7, is exactly the kind…

The broader theme here is release discipline. Rc7 merges are typically fixes only, and this one fits that pattern precisely, no new features, no risky refactors, just correctness in test tooling.

What's next: expect the 7.2 final release to follow shortly, with this uprobe test fix included so downstream distributions and testers get accurate…

Nearby episodes from Linux Kernel Daily

  1. OpenRISC Sigreturn Privilege Escalation Fix
  2. Late-Cycle Fixes Converge Ahead of 7.2
  3. Race Conditions and Reverts as 7.2 Nears
  4. SCSI Subsystem Stability Fixes
  5. Late-Cycle Fixes for Crypto and Regmap
  6. Weekly Recap - Late-Cycle Fixes Across Tracing, USB, and Serial Drivers
  7. Race Conditions and Rc7
  8. The Great Pre-Release Hardening Sweep