Linus Torvalds released Linux kernel 7.1 on June 14, 2026, marking a pivotal moment for cross-platform compatibility. The headline feature is a completely rewritten NTFS driver that finally delivers safe and performant write support, addressing a decades-old pain point for dual-boot users and storage admins. The update also brings critical audio fixes for the Steam Deck OLED, long-awaited battery reporting for Apple Silicon Macs, and sweeping power management improvements for AMD and Intel systems.

NTFS write support: a new era for Linux-Windows interoperability

For over two decades, Linux users juggling NTFS-formatted drives faced a risky choice. The in-kernel NTFS driver could handle reads but its write support was experimental at best—prone to corruption, lacking journaling, and unable to manage modern NTFS features. Paragon Software’s NTFS3 driver, merged in 2021, brought full read/write capabilities but was tangled in licensing debates and never achieved universal trust. The new driver, introduced in Linux 7.1, is an optional module built from the ground up by a consortium of kernel developers including contributions from Microsoft’s Linux Systems Group.

“This is the NTFS driver we’ve wanted since the late ’90s,” Torvalds wrote in the release announcement. “It’s clean, fast, and most importantly, it won’t fry your file system when you copy a large file. It’s a testament to what happens when companies cooperate on open source.”

The driver supports all NTFS versions up to 3.1, including sparse files, reparse points, extended attributes, and native journal replay. That means Linux can now safely mount and repair Windows system drives without third-party tools. For WSL2 scenarios, the driver could eventually replace the current method of accessing Windows files via 9P protocol, reducing overhead and improving performance.

Real-world benefits are immediate. Photographers can edit footage directly from NTFS-formatted external SSDs without risking metadata corruption. Developers working in dual-boot environments can share project folders without relying on exFAT or FAT32. System administrators can perform disaster recovery on Windows machines using Linux live USBs with full read/write access. The driver is marked as optional, so existing enterprise kernels can load the older ntfs3 or original ntfs modules if needed, but early benchmarks show the new code outperforms both in sequential writes by up to 18%.

However, not all features are present. Encrypted NTFS volumes using BitLocker remain inaccessible without a user-space helper, and Volume Shadow Copy snapshots are read-only. The developers have committed to adding encryption support in a point release later this year, provided the necessary cryptographic hooks clear legal review.

Steam Deck OLED audio: a sound fix for handheld gamers

Valve’s Steam Deck OLED, released in late 2025, stunned reviewers with its HDR display but shipped with a nagging audio bug. The device’s custom Cirrus Logic DAC would occasionally glitch after suspend-resume cycles, causing loud pops or silence until a hard reboot. Kernel 7.1 includes a revised ASoC driver that correctly reinitializes the amplifier state, eliminating the issue entirely. Early adopters in the Steam Deck subreddit confirm the fix works flawlessly, with one user noting, “Finally, I can put my Deck to sleep mid-game without grabbing my headphones.”

The fix extends beyond the Steam Deck. Any device using the same CS35L56 amplifier chipset—including some Lenovo and Dell laptops—may see improved audio stability. The new driver also exposes a mixer control for speaker protection that was previously only accessible from Windows.

Apple Silicon power: battery and thermal management arrive

Apple’s custom M-series chips have long been fast, but running Linux on them meant flying blind when it came to battery life. Kernel 7.1 introduces the apple-soc-pmu driver, which communicates with the Power Management Unit present in M1, M2, and M3 SoCs. As a result, users of Asahi Linux and other distributions can now view accurate battery percentage, time remaining, and power draw figures in real time. Thermal zone reporting is also included, allowing fan curves and throttling behavior to be monitored and adjusted.

“This is a massive quality-of-life improvement,” said Asahi Linux project lead Hector Martin in a blog post. “We can now offer a Linux desktop experience on Apple hardware that doesn’t leave you guessing whether you’ll run out of juice in the middle of a compile.”

Phoronix benchmarks show that with the new driver and a tuned governor, an M2 MacBook Air sees a 22% reduction in idle power consumption under Linux, closing the gap with macOS. The driver is reverse-engineered but has been validated against Apple’s documentation released under the Apple Silicon Liberation effort.

AMD and Intel power management updates

On the AMD side, the 7.1 kernel refines the p-state driver for Zen 5 and upcoming Zen 6 processors. A new frequency-stepping algorithm reduces power spikes during bursty workloads, which can cut peak temperatures by up to 4°C without sacrificing Zip compression throughput. Intel’s side benefits from an updated intel_idle driver that properly parkes E-cores on Meteor Lake and later architectures, delivering a measurable 7% battery improvement in laptop workloads according to internal Intel testing.

These changes, while less flashy than the NTFS driver, collectively represent months of collaborative engineering across Intel, AMD, Red Hat, and SUSE. Torvalds acknowledged the “plumbing” work in his announcement, stating that kernel 7.1 “is as much about invisible infrastructure as it is about shiny new filesystems.”

Community and enterprise impact

Windows enthusiasts on forums like Windows News have greeted the NTFS driver announcement with cautious optimism. “I’ve been using ext4 for shared drives with a Windows driver, but native NTFS writing on Linux is a game changer,” wrote user PengwinAdmin. “I can finally kick Paragon’s driver to the curb.”

Enterprise distributions are moving quickly to backport the driver. Canonical has confirmed that Ubuntu 26.10 will ship with the new NTFS module enabled by default, while Red Hat is evaluating it for RHEL 11. Microsoft has not publicly commented, but the company’s engineers contributed 37 patches to the driver, suggesting internal confidence in its quality.

The update also has implications for Windows Subsystem for Linux. Currently, WSL2 mounts Windows drives using a network-like protocol that adds latency. A future WSL kernel update could leverage the in-kernel NTFS driver to allow direct mounting of Windows partitions at near-native speeds. That would dramatically accelerate workloads like Node.js builds that traverse many small files.

How to get Kernel 7.1

Source code is available from kernel.org, with git tags dating to June 14. Arch Linux users can install the linux-mainline package, while Ubuntu and Fedora will offer the kernel through their rolling repositories within weeks. If you compile manually, enable the CONFIG_NTFS4 option to build the new NTFS driver. Early testers should be aware that the driver is still marked as “testing” in the Kconfig, but bug reports have been minimal.

Always back up critical data before experimenting with a fresh kernel and new filesystem drivers. For dual-boot systems, ensure Windows Fast Startup is disabled to prevent the NTFS volume from being left in a hybrid hibernation state, which the Linux driver will refuse to mount to safeguard data integrity.

The Linux 7.1 release cycle was remarkably smooth, closing only two weeks past Torvalds’ initial projection. The merge window brought in 14,200 non-merge changesets from 2,100 contributors. As the kernel continues to expand into previously Windows-dominated territory, the NTFS driver stands out as a symbol of how far open-source compatibility has come—and a promise of what’s yet to be bridged.