Wedson Almeida Filho, a maintainer of the Rust for Linux project, recently announced his resignation, citing "nontechnical nonsense" as the reason for his departure.
This decision follows a pattern of hostility from some Linux kernel developers toward the integration of the Rust programming language into the Linux kernel.
Filho’s resignation was announced via Linux Kernel mailing list. In the email, Filho expressed his gratitude toward the Rust for Linux team but stated that he no longer had the energy to deal with the negativity surrounding the project.
He concluded his message by saying that while he believes memory-safe languages like Rust are the future of kernel development, he fears that if Linux doesn't embrace this, another kernel will eventually supersede it.
Here's the actual mail from Wedson:
Hey folks,
This is as short a series as one can be: just removing myself as maintainer ofthe Rust for Linux project.
I am retiring from the project. After almost 4 years, I find myself lacking theenergy and enthusiasm I once had to respond to some of the nontechnicalnonsense, so it's best to leave it up to those who still have it in them.
To the Rust for Linux team: thank you, you are great. It was a pleasure workingwith you all; the times we spent discussing technical issues, finding ways toaddress soundness holes, etc. were something I always enjoyed and lookedforward to. I count myself lucky to have collaborated with such a talended andfriendly group.
I wish all the success to the project.
I truly believe the future of kernels is with memory-safe languages. I am novisionary but if Linux doesn't internalize this, I'm afraid some other kernelwill do to it what it did to Unix.
Lastly, I'll leave a small, 3min 30s, sample for context here:https://youtu.be/WiPp9YEBV0Q?t=1529 -- and to reiterate, no one is trying forceanyone else to learn Rust nor prevent refactorings of C code.
Thanks,-Wedson
As you may noticed, the email also included a link to a YouTube video of a talk Filho gave at the 2024 Linux Kernel Summit, during which he received significant pushback from some audience members regarding the use of Rust in the kernel.
Critics in the audience argued that the integration of Rust would place an undue burden on C developers, who would be forced to learn a new language and maintain compatibility with Rust bindings.
Additionally, some developers expressed concerns about the stability of Rust bindings and the potential for breakage when changes are made to the C code.
Filho and other proponents of Rust in the kernel, however, maintain that these concerns are overblown and that Rust can coexist with C without compromising the stability of the kernel. They argue that the benefits of Rust, particularly its memory safety features, outweigh the challenges of integration.
The debate over Rust's inclusion in the Linux kernel highlights a broader tension in the open-source community between maintaining a stable codebase and embracing innovation.
While some developers value the familiarity and reliability of C, others see the adoption of newer, safer languages like Rust as essential to the long-term health and security of the Linux kernel.
The outcome of this debate will likely have significant implications for the future of Linux and the broader open-source ecosystem.
Linux Community's Reaction
A lot of heated arguments are going among the Linux Community to whether or not to include Rust in the Linux kernel. As I witnessed in this Reddit discussion, here are the arguments for and against using Rust in the Linux Kernel.
Arguments for including Rust in the Linux kernel
1. Increased memory safety:
Rust's memory safety features can help to prevent a large class of bugs and security vulnerabilities that plague C and C code. This is particularly important in a codebase as large and complex as the Linux kernel, where even highly skilled programmers can make mistakes.
Also, Data from Google suggests that using Rust instead of C and C in existing codebases can reduce the number of high-severity vulnerabilities.
2. Attracting new developers:
Including Rust in the kernel could help to attract new developers who are more familiar with modern languages and may be put off by the perceived difficulty and complexity of working with C. This was one of the main reasons why Linus Torvalds, the creator of Linux, approved the inclusion of Rust in the kernel.
Arguments against including Rust in the Linux kernel
1. Resistance to change from kernel developers:
Many long-time kernel developers are resistant to learning a new language, especially if they do not see a clear need for it. They argue that they would rather spend time learning more about kernel topics than learning a new way of doing the job they already know how to do.
This resistance has manifested in hostile and unprofessional behaviour towards those advocating for Rust in the kernel, such as the treatment of Wedson Almeida Filho.
2. The difficulty of maintaining compatibility between C and Rust code
Ensuring that changes to C code do not break Rust code, and vice versa, is a significant challenge. This is particularly problematic in the absence of comprehensive automated testing within the kernel.
3. Concerns about the maturity of Rust:
Some kernel developers are concerned that Rust is not yet mature enough to be used in a project as critical as the Linux kernel. They worry that the language and its tooling are still evolving too rapidly, and that relying on them could lead to instability and unforeseen problems.
Why the Resistance to Rust in the Linux Kernel?
It's clear from the above Reddit discussion thread and Wedson Almeida Filho's resignation email that there's resistance to incorporating Rust in the Linux Kernel.
This resistance doesn't necessarily stem from hatred of the language itself, but from a confluence of factors, many mirroring broader issues within software development. Here's a nuanced look at the reasons behind this pushback:
1. Technical Concerns
1.1. Maintenance Burden and API Stability:
A recurring concern revolves around the practicalities of maintaining compatibility between C and Rust. Kernel developers, many of whom are long-time C experts, express worries about the added responsibility of ensuring their C code changes don't inadvertently break Rust components. This is particularly relevant given the limited automated testing within the kernel.
1.2. Complexity and the 'Unsafe' Conundrum:
Some developers argue that bridging the gap between Rust's strict safety rules and the inherent complexities of kernel-level programming might necessitate excessive use of the 'unsafe' keyword in Rust. This is seen as potentially undermining the very safety benefits that Rust aims to bring.
2. Human Factors
2.1. Resistance to Change and Learning Curve:
Many long-time kernel maintainers express reluctance to invest time and effort in learning a new language, especially if they've been successfully using C for years. This resistance is exacerbated by the perception that the onus of adapting to Rust falls on them, rather than the other way around.
2.2. Communication Breakdown and Perceived Hostility:
The way some criticisms have been directed towards Rust advocates, as seen in the video linked in Filho's resignation, has created an environment of hostility and discouraged open dialogue. This has further alienated potential Rust proponents within the kernel community.
3. Deeper Philosophical and Cultural Clashes
3.1. Clashing Development Philosophies:
There seems to be a fundamental disconnect in development philosophies between some kernel developers and Rust advocates. The kernel community, valuing stability, proven methodologies, and deep understanding of a complex codebase, might perceive Rust's stringent rules and emphasis on memory safety as an added constraint rather than a benefit.
3.2. Perceived 'Elitism' and Generational Divide:
Some comments in the attached Reddit discussion hint at a perception of Rust proponents as being 'elitist' or dismissive of C developers' expertise. This, coupled with a potential generational divide between long-time C developers and those more familiar with newer languages, further complicates the integration of Rust into a community with well-established norms and hierarchies.
Please note that not all Linux kernel developers are against Rust. Many see its potential benefits and support its inclusion. But, the points raised above highlight the complex interplay of technical, social, and philosophical factors contributing to the resistance Rust faces within the Linux Kernel team.
Future of Rust in the Linux kernel
The future of Rust in the Linux kernel depends on how effectively these concerns are addressed. Open communication, clear demonstration of Rust's benefits in real-world kernel scenarios, and a collaborative approach that respects the expertise of both C and Rust developers will be important for its successful integration.
While this debate is still going on and there isn't any response from Linus Torvalds, we can't come to any conclusion yet. We will keep you updated. Stay tuned for future updates.
Similar Read:
- Linus Torvalds Reportedly Plans To Merge Rust Code Into Linux Kernel
- Asahi Linux Founder Hector Martin Resigns Over Kernel Conflicts
- Rust In Linux Kernel: Christoph Hellwig Steps Down As DMA Maintainer
- Debian Developer Orphans Bcachefs-Tools Package Due to Upstream Conflicts
- Bcachefs Future in Linux Kernel Uncertain After Code of Conduct Dispute
The above is the detailed content of Rust Maintainer For Linux Kernel Resigns. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

There are three ways to create empty files in the command line: First, the simplest and safest use of the touch command, which is suitable for debugging scripts or placeholder files; Second, it is quickly created through > redirection but will clear existing content, which is suitable for initializing log files; Third, use echo"> file name to create a file with an empty string, or use echo-n""> file name to avoid line breaks. These three methods have their own applicable scenarios, and choosing the right method can help you complete the task more efficiently.

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

Eclipse is a free integrated development environment (IDE) that programmers around the world use to write software, primarily in Java, but also in other major programming languages using Eclipse plugins.The latest release of Eclipse IDE 2023?06 does

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

Linux has a rich collection of commands, and while many of them are powerful and useful for various tasks, there are also some funny and whimsical commands that you can try out for amusement. 1. sl Command (Steam Locomotive) You might be aware of the

PPA is an important tool for Ubuntu users to expand their software sources. 1. When searching for PPA, you should visit Launchpad.net, confirm the official PPA in the project official website or document, and read the description and user comments to ensure its security and maintenance status; 2. Add PPA to use the terminal command sudoadd-apt-repositoryppa:/, and then run sudoaptupdate to update the package list; 3. Manage PPAs to view the added list through the grep command, use the --remove parameter to remove or manually delete the .list file to avoid problems caused by incompatibility or stopping updates; 4. Use PPA to weigh the necessity and prioritize the situations that the official does not provide or require a new version of the software.

Gogo is a remarkable tool to bookmark directories inside your Linux shell. It helps you create shortcuts for long and complex paths in Linux. This way, you no longer need to type or memorize lengthy paths on Linux.For example, if there's a directory

The key to installing dual systems in Linux and Windows is partitioning and boot settings. 1. Preparation includes backing up data and compressing existing partitions to make space; 2. Use Ventoy or Rufus to make Linux boot USB disk, recommend Ubuntu; 3. Select "Coexist with other systems" or manually partition during installation (/at least 20GB, /home remaining space, swap optional); 4. Check the installation of third-party drivers to avoid hardware problems; 5. If you do not enter the Grub boot menu after installation, you can use boot-repair to repair the boot or adjust the BIOS startup sequence. As long as the steps are clear and the operation is done properly, the whole process is not complicated.
