2025-02-20

Linus Torvalds Clearly Lays Out Linux Maintainer Roles - Or Not - Around Rust Code

Linus Torvalds addresses the ongoing Linux kernel Rust debate by clarifying maintainer roles, stating that maintainers can either actively engage with Rust code or stay hands-off, but cannot arbitrarily block its implementation. The discussion centers around DMA maintainer Christoph Hellwig's opposition to Rust code integration, highlighting the broader implications for kernel development governance.

Original archive.is archive.ph web.archive.org

Log in to get one-click access to archived versions of this article.

read comments on news aggregators:

Related articles

A Comment on Mozilla's Policy Changes

Mozilla's recent policy changes sparked confusion in the tech community regarding privacy implications, leading to subsequent clarifications about data ownership and usage. The situation highlights communication challenges between Mozilla and its user base, while also raising broader questions about browser privacy and governance structures.

Tokio + prctl = nasty bug

A detailed analysis of a bug in HyperQueue where tasks were unexpectedly terminated after 10 seconds due to an interaction between tokio thread management, PR_SET_PDEATHSIG, and process spawning optimization. The bug emerged from moving process spawning to a worker thread, causing processes to receive SIGTERM when tokio cleaned up idle threads.

RUSTSEC-2025-0007: ring: *ring* is unmaintained

The ring cryptography package maintenance status underwent changes, initially being declared unmaintained but later receiving security-focused maintenance from the rustls team. The advisory highlights potential security implications for users of the ring crate, with the rustls team committed to addressing critical security issues.

Announcing Rust 1.85.0 and Rust 2024 | Rust Blog

Rust 1.85.0 introduces the Rust 2024 Edition, featuring significant language changes and improvements including async closures support and expanded tuple operations. The release includes extensive updates to the standard library, Cargo package manager, and development tools like Rustdoc and Rustfmt.

Build your own SQLite, Part 5: Evaluating queries

A technical guide explores the implementation of a SQLite query evaluator, focusing on SELECT statement execution and database operation fundamentals. The implementation includes setting up a test database, creating a query engine with Operator and Planner components, and establishing a REPL interface for query testing.

Re: Rust kernel policy

Greg KH, a Linux kernel maintainer, strongly advocates for incorporating Rust into the kernel, citing how it eliminates common C-related bugs and memory safety issues. He emphasizes that Rust would particularly benefit new code and drivers, while acknowledging the ongoing importance of improving the existing C codebase. The discussion addresses concerns about mixed-language maintenance and developer adaptation.

Greg Kroah-Hartman Makes A Compelling Case For New Linux Kernel Drivers To Be Written In Rust

Linux kernel maintainer Greg Kroah-Hartman advocates for writing new kernel drivers in Rust, highlighting how it eliminates common C-related memory bugs. The debate over Rust in the Linux kernel continues, with Linus Torvalds supporting its inclusion despite some maintainers' opposition. Kroah-Hartman emphasizes that while existing C code won't disappear, Rust offers better memory safety and API design opportunities.

krish's blog • Parsing JSON in 500 lines of Rust

A detailed walkthrough of building a JSON parser in Rust from scratch, covering implementation details from basic value parsing to complex data structures. The project demonstrates practical application of parsing techniques while learning Rust, resulting in a functional parser in approximately 500 lines of code.