On Wed, Jul 3, 2024 at 7:20 PM Andreas Hindborg <nmi@xxxxxxxxxxxx> wrote: > > This does not set a max version. Will older versions of the kernel > always compile with newer releases of `rustc`? That depends on how many changes Rust introduces around the remaining unstable features (as well as plain bugs in new versions, like for any other tool). With the kernel being tested in the Rust pre-merge CI, hopefully we will reduce those to a minimum. It is also why we need to keep reducing the unstable features and get into stable Rust as soon as possible. The Rust project is starting to support us more here, and they are setting up a project goal for 2024h2 on their side to resolve the biggest blockers for the kernel: https://rust-lang.github.io/rust-project-goals/2024h2/rfl_stable.html Meanwhile, on our side, we can do our best to backport any workarounds for new versions into supported kernels, i.e. stable and LTSs. But, at least, this series should already help kernel developers (they will be able to compile the kernel with Rust enabled using their distribution) and Linux distributions (they will have more freedom to pick a Rust toolchain version and avoid having to package another version just for the kernel). Cheers, Miguel