The Linux Bcachefs Drama: Why Linus Torvald Dropped Support and What It Means for File Systems

Dramatic illustration showing the Bcachefs filesystem separated from the Linux kernel by security gates, symbolizing its removal from the mainline Linux kernel after development disputes over stability and release protocols.
A cinematic visualization of the conflict between rapid file system innovation and the Linux kernel’s strict stability and release management process.

In operating systems, file systems are the foundation of stability. Users expect their storage layer to be uneventful, predictable, and above all, safe.

But behind the scenes of the Linux kernel, the development of Bcachefs—the modern Copy-on-Write (COW) file system slated to compete with Btrfs and ZFS—has been anything but boring.

Following a series of heated standoffs between Linus Torvalds and Bcachefs lead maintainer Kent Overstreet, the Linux creator made a dramatic executive decision: Bcachefs has been dropped from the mainline Linux kernel.

This conflict highlights the tension between rapid, visionary development and the strict discipline needed to manage software for billions of devices worldwide.


Before diving into the drama, it’s important to understand the promise of Bcachefs and why its development became so significant.

Merged into the mainline Linux kernel late in 2023, Bcachefs was hailed as the next-generation file system for the Linux ecosystem.

For years, Linux users have faced challenges with advanced storage features:

  • Btrfs was built into the kernel but has historically suffered from rocky reliability (particularly around RAID 5/6 write holes).
  • ZFS was highly stable and feature-rich, but licensing conflicts (GPL vs. CDDL) kept it out of the mainline kernel, requiring users to install it as an out-of-tree module.

Bcachefs promised to bridge this gap with a high-performance, feature-rich, Copy-on-Write design. Its message was simple: “The file system that doesn’t eat your data.” It brought snapshotting, encryption, multi-drive management, and ZFS caching directly into Linux.


The Cardinal Sin: Features in the Release Candidate Phase

The breaking point did not occur because of a bug. It occurred because of a fundamental breach of the Linux kernel’s development protocol.

During the release cycle, kernel development follows a strict, consensus-based timeline:

1. The Merge Window: A two-week period where new features, drivers, and subsystems are merged into the upcoming kernel version.
2. The RC Phase: Code is frozen; developers may only fix bugs and regressions to ensure release stability.

During the RC phase, Kent Overstreet submitted a pull request containing a major change called “journal-rewind.” The feature was designed to improve Bcachefs’ repair and recovery functionality—a highly sensitive part of any file system.

Linus Torvalds objected. Introducing a structural change to journaling during the RC phase violates the kernel’s core safety rules.

Theodore Ts’o, the long-time maintainer of the robust ext4 file system, also weighed in. He pointed out that modifying journaling code so late in the cycle risks introducing severe, unpredictable regressions that could destroy user data—the exact opposite of what a file system is supposed to do.


A Clash of Philosophies: Rules vs. Agility

The debate quickly devolved from a technical discussion into a clash of development philosophies.

Kent Overstreet argued that rules should be flexible when fixing data integrity. He felt delivering critical recovery features outweighed following the standard timeline, claiming Bcachefs needed more agility than traditional file systems like ext4.

Torvalds and Ts’o countered with a different reality: the rules are what protect user data.

In Linux’s vast ecosystem, a regression in a core file system can brick servers and corrupt data. Strict merge windows are crucial safety gates, proven over decades.


The Parting of Ways

After a tense back-and-forth, Overstreet resubmitted the patch, arguing that other file systems, such as XFS and Btrfs, had been granted similar flexibility in the past.

Linus merged the patch to unblock the immediate release, but reached his limit. He made it clear that because Overstreet rejected the consensus-based rules of kernel development and refused to accept standard oversight, Bcachefs could no longer remain in mainline Linux.

Torvalds officially dropped support for Bcachefs, parting ways with the filesystem.


What This Means for the Future of File Systems

The removal of Bcachefs from the mainline kernel is a significant setback for the project, influencing not only its immediate trajectory but also shaping how future filesystems might approach kernel integration and community process.

1. Out-of-Tree Maintenance

Bcachefs will now be maintained “out-of-tree,” as ZFS is. Developers must package and compile modules for each release, which creates friction for users because Bcachefs won’t work natively with standard distributions.

2. Slowed Adoption

Mainstream distributions are unlikely to support filesystems not in the mainline Linux kernel. Bcachefs will likely be limited to homelabbers, power users, and custom distributions.

3. A Precedent for Kernel Governance

This incident reinforces the authority of mainline kernel maintainers and sets a precedent for how future contributors should navigate development protocols. It signals to all developers that adherence to established processes will remain essential for the inclusion and long-term success of new filesystems in Linux.


Final Thoughts

The Bcachefs drama is a tragedy of open-source engineering. Bcachefs is a brilliant, highly innovative filesystem that solved problems other filesystems spent decades avoiding.

But in enterprise and system-level software, how you build is just as important as what you build.

The Linux kernel is the most successful collaborative software project in human history because it prioritizes safety, discipline, and consensus over individual speed. When a developer refuses to play by those rules, the system self-corrects—even if it means losing some of the most promising storage technology of the decade.

Support stable systems, open standards, and the rigorous engineering that keeps our digital world running.

5 Powerful Linux CLI Tools You Should Be Using in 2026

Linux Terminal

Graphical interfaces come and go, but the command line is forever—and in 2025, the Linux CLI scene is more intelligent and more capable than ever. Whether you’re managing servers or just trying to get things done faster, the right terminal tools can upgrade your entire Linux experience.
Here are five powerful CLI tools that deserve a permanent place in your toolkit this year.

1. Ripgrep—The Search Tool That Makes grep Feel Slow

If you still rely on plain grep for searching code, configs, or system files, it’s time to try ripgrep. Ripgrep (rg) is a modern drop-in replacement for grep.

Why It’s Great

  • Incredibly fast
  • Respects .gitignore files automatically
  • Smart defaults (recursive search, sensible output)
  • Integrates with VS Code, Helix, and Neovim

2. fzf—Fuzzy Finder for Everything

fzf is a fuzzy finder for the command-line. The longer you use it, the more you wonder how you lived without it.

What It Can Do

  • Fuzzy-search file names
  • Fuzzy-search command history
  • Fuzzy-search running processes
  • Create interactive pickers for your own scripts

3. bat—The Better cat

cat is fine, but bat is better. It’s a drop-in replacement that adds modern features without changing your workflow.

Features

  • Syntax highlighting
  • Git integration
  • Line numbers
  • Automatic paging with less

Bonus: Works beautifully with ripgrep and fzf for a hyper-efficient terminal workflow.

4. eza—Modern Replacement for ls

ls gets the job done, but eza (formerly exa) gives you a more readable view of your file system.

What You Get

  • Colorized output
  • Tree views
  • Git status indicators
  • Optional file icons
  • Better sorting options

Why You’ll Love It

Directory browsing will feel fun.

5. fastfetch—System Info With Style

Fastfetch is the spiritual successor to Neofetch—rewritten for performance, aesthetics, and modern systems.

Highlights

  • Extremely fast (written in C)
  • Beautiful ASCII logos
  • Highly configurable
  • Works on nearly all distros

Perfect For: Showing off your Linux setup.

Honorable Mentions

Zoxide: A smarter cd that learns your frequently used directories.

fd: A modern replacement for find—fast, intuitive, and colorized.

Final Thoughts

The Linux command line isn’t just a place to type commands—it’s a launchpad for automation, efficiency, and mastery. These five tools make Linux faster, more powerful, and more enjoyable in 2025.

Richard Stallman, Founder, And President Of The Free Software Foundation Resigns!

Richard Stallman resigns from the Free Software Foundation over comments he made concerning Jeffrey Epstein’s victims.

On September 16, 2019, the Free Software Foundation posted news of Stallman’s resignation as president and from its board of directors on their site. The post states, “The board will be conducting a search for a new president, beginning immediately.”

More news to come shortly!

Debian 10 Released!

After just over 2 years of development, the Debian Project released the latest stable version of its operating system, code name “Buster” today.  

Debian 10 “Buster” ships with several different desktop environments including:

  • Cinnamon 3.8,
  • GNOME 3.30,
  • KDE Plasma 5.14,
  • LXDE 0.99.2,
  • LXQt 0.14,
  • MATE 1.20,
  • Xfce 4.12.

Running on the 4.19 LTS kernel, Buster also comes with UEFI Secure Boot and AppArmor enabled by default.  One of the biggest changes in this release is the GNOME desktop using the Wayland display server by default instead of Xorg. This seems like an odd choice for Debian considering their reputation for stability. Considering Wayland is not fully compatible with Nvidia graphics cards and doesn’t have all of the features of Xorg it will be interesting to see how this works out. 

More information can be found on Debian’s homepage along with links to download the iso image.