Linux 7.0 Confirmed by Linus Torvalds: New Features and Release Date

Linus Torvalds announces Linux 7.0 for mid-April 2026. Live Update Orchestrator, PCIe encryption, 4x network gains: a complete breakdown of what's new.

After 19 releases in the 6.x series, Linus Torvalds has just confirmed that the next COSMIC Desktop kernel will carry the version number 7.0 rather than 6.20. Expected in mid-April 2026, this new major release brings significant innovations in virtualization, security and network performance. Here is a complete breakdown of an announcement that marks a turning point for the Linux ecosystem.

The logic behind Torvalds' version numbering

Linus Torvalds justified this major version bump with his trademark humor: "I'm getting to the point where I'm confused by big numbers (I'm almost running out of fingers and toes)". Behind the joke lies a well-established convention in the history of the Linux kernel.

A recurring historical pattern

Looking at past releases reveals a consistent pattern:

  • Linux 3.x: 19 releases (3.0 to 3.19) before moving to 4.0 in April 2015
  • Linux 4.x: 20 releases (4.0 to 4.20) before moving to 5.0 in March 2019
  • Linux 5.x: 19 releases (5.0 to 5.19) before moving to 6.0 in October 2022
  • Linux 6.x: 19 releases (6.0 to 6.19) before the move to 7.0 planned for April 2026

This limit of around 19-20 releases corresponds to how far Torvalds can count on his fingers and toes. It is therefore not a technical criterion, but a purely pragmatic convention that has proven itself for more than a decade.

Why not a 6.20 release?

Unlike other software projects that use strict semantic versioning, the Linux kernel takes a more empirical approach. Moving to a major version does not necessarily signal incompatible changes (breaking changes), but simply that Torvalds feels the version number has grown too large to be practical.

This relaxed approach makes it possible to maintain a steady development pace without being constrained by marketing or communication considerations. System administrators familiar with Linux monitoring in production know that a release's stability depends far more on its maturity than on its number.

Linux 6.19: the foundations of 7.0

Released on February 9, 2026, Linux 6.19 is the final release in the 6.x series and lays the technical groundwork for Linux 7.0. This release deserves special attention because it introduces several critical pieces of infrastructure.

Preparatory infrastructure

Linux 6.19 integrated the following foundational components:

  • Live Update Orchestrator foundations: preliminary code enabling kernel updates without a full reboot
  • PCIe encryption framework: initial infrastructure for device authentication and encrypted communications
  • Network stack optimizations: removal of blocking locks in critical TCP paths
  • Extended hardware support: improvements for recent Intel processors, AMD EPYC and RISC-V architectures

This incremental approach illustrates the Linux kernel's development philosophy: gradually introducing new mechanisms into a stable release before fully enabling them in the next one. Administrators who know systemd well will recognize this logic of modular, activatable components.

Live Update Orchestrator: a revolution in updates

The flagship feature of Linux 7.0 is unquestionably the Live Update Orchestrator (LUO), a mechanism that could radically transform the way production servers are managed.

The current problem

Today, applying a critical kernel security update requires a full server reboot. On virtualized infrastructures hosting hundreds of virtual machines, this operation involves:

  • Planning a maintenance window
  • Live-migrating VMs to other hypervisors
  • Temporary downtime for non-migratable services
  • Complex coordination across operations teams
  • Regression risks that may require a rollback

For cloud providers and data centers, these operations represent substantial operational costs and availability risks. Current techniques such as kpatch (Red Hat) or kGraft (SUSE) allow live patching but with significant limitations.

The LUO solution

The Live Update Orchestrator brings a more complete approach:

  • Updates without VM interruption: virtual machines keep running while the hypervisor is updated
  • Automated orchestration: intelligent coordination of the update sequence across the different components
  • Stronger safety: before/after state validation to guarantee consistency
  • Granular rollback: the ability to revert without a full reboot

This feature is part of the broader effort to reduce downtime. Administrators who optimize their infrastructures with Nginx in production will appreciate this service continuity.

Real-world use cases

LUO specifically targets environments where availability is critical:

  • Cloud providers: AWS, Azure and Google Cloud could apply security patches without affecting customers
  • Telecommunications: network operators managing thousands of containers and VMs
  • Financial services: trading systems requiring minimal latency
  • Healthcare: hospital infrastructures that cannot tolerate any downtime

A word of caution, though: LUO is not a universal silver bullet. Structural kernel changes will still require a full reboot. It is one more tool in the administrator's arsenal, not a replacement for established procedures.

PCIe encryption: securing the hardware

Linux 7.0 introduces a complete encryption and authentication infrastructure for PCI Express communications, closing a security gap that had long been overlooked.

The threat of DMA attacks

PCIe devices have direct access to system memory (DMA - Direct Memory Access). An attacker with physical access can:

  • Insert a malicious device via Thunderbolt or a PCIe slot
  • Read or modify system memory without any CPU involvement
  • Extract encryption keys, passwords or sensitive data
  • Compromise the hypervisor and gain access to every VM

These attacks, known as DMA attacks or evil maid attacks, are particularly dangerous in shared environments such as data centers or cloud services.

The solution: TDI-O and SEV-TIO

Linux 6.19 integrated the initial infrastructure for PCIe encryption, with Linux 7.0 fully enabling it:

  • TDI-O (Trust Domain I/O): an Intel framework for isolating communications between VMs and devices
  • SEV-TIO (Secure Encrypted Virtualization - Trusted I/O): AMD's implementation to encrypt PCIe traffic to SEV-protected VMs
  • Device authentication: cryptographic verification that a device is legitimate before granting it DMA access
  • Transparent encryption: automatic encryption of data flowing between device and VM with no application changes

This advance is crucial for environments where security is paramount. Administrators who deploy Fail2ban to protect their servers will appreciate this defense in depth at the hardware level.

Performance impact

PCIe encryption introduces some computational overhead. Preliminary benchmarks show:

  • Latency: a 2-5% increase depending on the type of device
  • Throughput: negligible impact on modern devices that support hardware encryption
  • CPU: a 1-3% increase in usage on systems without hardware acceleration

This overhead is largely offset by the security it provides, especially in multi-tenant infrastructures where a compromised VM must not be able to access another VM's devices.

Network performance: up to 4x faster

Linux 7.0 brings significant network stack optimizations, with gains reaching up to 300-400% in some scenarios.

Removing blocking locks

The main improvement is the removal of a lock in the TCP critical path. This lock forced threads to wait sequentially, creating contention on modern multi-core systems.

Concretely:

  • Before: only one thread could modify the state of a TCP connection at a time
  • After: multiple threads can process TCP packets in parallel thanks to lock-free data structures

This optimization especially benefits:

  • High-performance web servers: Nginx and Apache handling thousands of simultaneous connections
  • Proxies and load balancers: HAProxy and Envoy multiplexing TCP flows
  • Databases: PostgreSQL and MySQL with many concurrent clients
  • Real-time applications: video streaming, gaming, VoIP

Administrators who have tuned their stack with advanced Nginx configurations will see these gains compounded by the kernel improvements.

Other network optimizations

Beyond removing the TCP lock, Linux 7.0 includes:

  • Improved buffer management: smarter network buffer allocation that reduces memory copies
  • eBPF optimizations: a more efficient JIT compiler for eBPF network-filtering programs
  • Extended XDP support: improvements to the eXpress Data Path framework for ultra-fast packet processing
  • Better QUIC support: optimizations for the HTTP/3 protocol

These advances position Linux 7.0 as a major upgrade for network infrastructures, on par with the gains delivered by an optimal Nginx configuration.

Hardware support: Intel, AMD and RISC-V

Linux 7.0 significantly improves support for the latest processor generations and extends compatibility with emerging architectures.

Intel processors

Full support for the latest generations' features:

  • Intel Xeon Granite Rapids: optimizations specific to 6th-generation servers
  • Intel Core Ultra (Meteor Lake): improved handling of Performance and Efficiency cores
  • AMX (Advanced Matrix Extensions): support for instructions that accelerate AI workloads
  • Intel Trust Domain Extensions: enabling TDI-O for VM security

AMD processors

Improvements for the EPYC and Ryzen ecosystem:

  • AMD EPYC Turin: full support for the 5th server generation
  • Improved SEV-SNP: optimizations to Secure Encrypted Virtualization with Secure Nested Paging
  • SEV-TIO: enabling PCIe encryption for secure VMs
  • Zen 5 optimizations: better use of the new instructions and cache

RISC-V: the rising architecture

Linux 7.0 marks a turning point for RISC-V with:

  • Complete virtualization support: the full H extension enabling KVM on RISC-V
  • Vector extension 1.0: support for vector instructions for parallel computation
  • Improved SMP support: better handling of multi-processor RISC-V systems
  • Hardware drivers: extended support for emerging RISC-V SoCs (StarFive, SiFive)

This focus on RISC-V is explained by the growing adoption of this open architecture in Chinese data centers and embedded systems, offering an alternative to ARM and x86.

Chinese processors

Strengthened support for Chinese domestic architectures:

  • Loongson (LoongArch): improved support for this MIPS-like architecture
  • Zhaoxin: optimizations for these x86-compatible processors

These improvements reflect the diversification of the hardware ecosystem and Linux's commitment to remaining neutral and universal.

File systems: stability and performance

Linux 7.0 brings incremental but significant improvements to the main file systems.

Ext4: targeted optimizations

  • Improved fast commit: a more robust fast journaling mechanism
  • Better handling of large files: optimizations for files exceeding several terabytes
  • Reduced fragmentation: smarter allocation algorithms

XFS: rising performance

  • Allocation group improvements: better parallelization of operations on large volumes
  • Metadata caching: more aggressive metadata caching to reduce I/O
  • Online repair enhancements: more reliable and faster online repair

Btrfs: enterprise features

  • RAID5/6 stability: important fixes to the problematic RAID modes
  • Send/receive v3: a new version of the incremental replication protocol
  • Optimized zstd compression: a better performance/compression ratio

Administrators who use LVM for storage management will see these improvements complement their data management stack.

Timeline and expected adoption

The release of Linux 7.0 follows a precise, structured schedule with several critical milestones.

Development schedule

  • February 9, 2026: opening of the Linux 7.0 merge window (merging new features)
  • February 22, 2026: release of Linux 7.0-rc1 (first release candidate)
  • March 2026: weekly release-candidate cycles (rc2, rc3, rc4...)
  • April 12, 2026: likely date for the stable release (if 7 RCs are enough)
  • April 19, 2026: alternative date if additional testing is required

The merge window lasts about two weeks, during which subsystem maintainers submit their pull requests to Torvalds. After that deadline, only bug fixes are accepted.

Ubuntu 26.04 LTS: rapid adoption hoped for

Canonical hopes to ship Linux 7.0 in Ubuntu 26.04 LTS (Long Term Support), whose release is planned for April 2026. This perfect alignment between the Linux 7.0 release and Ubuntu 26.04's feature freeze is not guaranteed, but highly likely.

If Ubuntu 26.04 LTS does ship with Linux 7.0:

  • 5 years of support: until April 2031 for standard users
  • Extended support (ESM): until April 2036 for Ubuntu Pro subscribers
  • Massive adoption: Ubuntu LTS accounts for roughly 40% of Linux server deployments

This rapid adoption by a major CachyOS will accelerate the availability of Linux 7.0's features for businesses, without waiting for backports into older kernels.

Other distributions

Tentative timeline for the other major distributions:

  • Fedora 41: October 2026 (likely adoption of Linux 7.1 or 7.2)
  • Debian 14 (Forky): 2027-2028 (traditionally conservative)
  • RHEL 10: late 2026 or early 2027 (based on a 6.x or 7.x kernel depending on the schedule)
  • Arch Linux: April-May 2026 (rolling release, rapid adoption)
  • SLES 16: 2027 (SUSE prioritizes stability)

Impact for system administrators

Linux 7.0 brings changes that will directly affect the operational practices of infrastructure teams.

Opportunities

  • Shorter maintenance windows: LUO makes it possible to apply more patches without a reboot
  • Stronger security: critical PCIe protection for cloud and multi-tenant environments
  • Network performance: direct gains for applications with high network concurrency
  • Extended hardware support: easier migration to the latest server generations

Considerations and risks

  • Maturation phase: like any x.0 release, wait at least for 7.1 or 7.2 for critical production
  • Driver compatibility: check the availability of proprietary drivers (NVIDIA, storage, specialized networking)
  • Potential regressions: test exhaustively before deployment, especially the new network optimizations
  • Team training: understand how LUO and PCIe encryption work to use them optimally

Administrators experienced in monitoring production metrics know that a new kernel release requires a period of observation before widespread deployment.

Recommended migration strategy

  1. Testing phase (May-June 2026): deploy Linux 7.0 on development and pre-production environments
  2. Validation (July-August 2026): performance benchmarks, load testing, application compatibility validation
  3. Gradual rollout (September-October 2026): migrate production servers in waves
  4. General availability (late 2026): adoption as the standard version for new installations

This cautious approach lets you benefit from the bug fixes in 7.1 and 7.2 while taking advantage of the new features before the end of the year.

Outlook: toward Linux 8.0 and beyond

If the historical pattern holds, Linux 8.0 should arrive around 2029-2030, roughly 19 releases after Linux 7.0. This predictability allows companies to plan their technical roadmaps over the long term.

Likely future trends

  • Rust in the kernel: gradual increase in Rust code for memory safety (although Linux 7.0 officially concluded the Rust experiment according to some sources)
  • Extended eBPF: broadening observability and security capabilities via eBPF
  • AI/ML optimizations: native support for accelerators (GPU, TPU, NPU) for inference
  • Energy efficiency: optimizations to reduce data center power consumption
  • Improved real-time: gradual convergence toward integrated PREEMPT_RT

The Linux ecosystem in 2026

Linux 7.0 arrives at a pivotal moment:

  • Server dominance: more than 90% of web servers run Linux
  • Cloud native: the foundation of Kubernetes, Docker and the entire CNCF ecosystem
  • Edge computing: massive deployment on IoT and embedded systems
  • Supercomputers: 100% of the Top500 runs Linux

This dominant position explains the attention paid to performance, security and reliability in Linux 7.0.

FAQ - Frequently asked questions

Why Linux 7.0 and not 6.20?

Linus Torvalds bumps the major version number when the minor versions become too numerous to count on his fingers and toes (around 19-20). It is an arbitrary but consistent convention dating back to Linux 3.0. There are no major technical changes justifying this version jump, unlike the semantic versioning used by other projects.

Should you migrate to Linux 7.0 immediately?

No, not for critical production environments. It is recommended to wait for the 7.1 or 7.2 releases (expected June-August 2026) to benefit from the inevitable bug fixes on an x.0 release. Development and test environments can migrate as early as April 2026 to validate compatibility.

Does the Live Update Orchestrator work on all types of servers?

No, LUO specifically targets virtualized environments with a hypervisor (KVM, Xen). It makes it possible to update the hypervisor's kernel without rebooting the virtual machines. On a classic bare-metal server, a reboot is still required to apply a full kernel update. Furthermore, certain structural kernel changes will always require a reboot, even with LUO.

Will PCIe encryption slow down my server?

The impact is minimal on modern hardware. Preliminary benchmarks show a 2-5% increase in latency and a 1-3% increase in CPU usage on systems without hardware acceleration. On recent Intel and AMD processors that include hardware encryption instructions (AES-NI, etc.), the impact on throughput is negligible. The overhead is largely offset by protection against DMA attacks, which is particularly critical in shared cloud environments.

What concrete network gains can my web application expect?

The gains depend on the workload profile. Applications with many simultaneous TCP connections (web servers, proxies, databases) can see throughput improvements of 100-400% thanks to the removal of the TCP lock. Applications with low network concurrency (batch processing, scientific computing) will not see a significant difference. A benchmark on your real workload is recommended to quantify the gain.

Will Ubuntu 26.04 LTS include Linux 7.0?

It is highly likely but not guaranteed. Ubuntu 26.04 LTS ships in April 2026, just after the planned release of Linux 7.0 (April 12 or 19). If Linux 7.0 ships on time and without major issues, Canonical will include it. In the event of a delay or a critical bug, Ubuntu 26.04 could fall back on Linux 6.19 or 6.20 (if that version exists). The final decision will be made by Canonical during Ubuntu 26.04's feature freeze in February-March 2026.

Is RISC-V support ready for production?

RISC-V support in Linux 7.0 is mature for embedded systems and first-generation RISC-V servers. However, the software ecosystem (proprietary drivers, monitoring tools, compiled applications) is still less rich than for x86 or ARM. For critical deployments, it is wise to wait for 2027-2028 and the consolidation of the RISC-V server ecosystem. For experimentation and non-critical workloads, Linux 7.0 offers a solid foundation.

Should I disable OPcache after the kernel update?

No, OPcache is a PHP feature independent of the Linux kernel. Updating from Linux 6.x to 7.0 does not affect how OPcache works. On the other hand, if you simultaneously update PHP (for example from 8.2 to 8.3), a PHP-FPM restart will be needed to reload the cached opcodes. The network optimizations in Linux 7.0 may even slightly improve PHP response times on high-traffic sites.

Conclusion

Linux 7.0 represents far more than just a version number change. With the Live Update Orchestrator, PCIe encryption and network gains of up to 4x, this release brings concrete improvements for modern infrastructures. The attention paid to hardware support (Intel, AMD, RISC-V) and file system optimization demonstrates the continued maturity of the Linux ecosystem.

For system administrators, Linux 7.0 opens up new operational possibilities: shorter maintenance windows, stronger hardware security and increased network performance. That said, as with any x.0 release, a cautious approach remains advisable, with thorough testing before widespread deployment.

Likely adoption by Ubuntu 26.04 LTS will ensure broad distribution of these innovations from late 2026 onward. In the meantime, the April-August 2026 period will allow the community to stabilize the code and businesses to validate compatibility with their technical stacks.

Ultimately, Linux 7.0 confirms the kernel's ability to evolve while maintaining its legendary stability, a balance that explains its dominance over servers, the cloud and supercomputers. To stay up to date on Linux news and system administration best practices, check our blog articles and our technical tutorials regularly.

Update: the follow-up has arrived. Discover what's new in Linux 7.1: a new write-capable NTFS implementation, a Landlock right for UNIX sockets, removal of i486 and the debate over AI-assisted kernel contributions.

Did you enjoy this article?

Comments

Morgann Riu

Cybersecurity and Linux administration expert. I help companies secure and optimize their critical infrastructures.

Back to the blog

Checklist Sécurité Linux

30 points essentiels pour sécuriser un serveur Linux. Recevez aussi les nouveaux tutoriels par email.

Pas de spam. Désabonnement en 1 clic.