• Linus Torvalds's avatar
    Merge tag 'rust-v6.1-rc1' of https://github.com/Rust-for-Linux/linux · 8aebac82
    Linus Torvalds authored
    Pull Rust introductory support from Kees Cook:
     "The tree has a recent base, but has fundamentally been in linux-next
      for a year and a half[1]. It's been updated based on feedback from the
      Kernel Maintainer's Summit, and to gain recent Reviewed-by: tags.
    
      Miguel is the primary maintainer, with me helping where needed/wanted.
      Our plan is for the tree to switch to the standard non-rebasing
      practice once this initial infrastructure series lands.
    
      The contents are the absolute minimum to get Rust code building in the
      kernel, with many more interfaces[2] (and drivers - NVMe[3], 9p[4], M1
      GPU[5]) on the way.
    
      The initial support of Rust-for-Linux comes in roughly 4 areas:
    
       - Kernel internals (kallsyms expansion for Rust symbols, %pA format)
    
       - Kbuild infrastructure (Rust build rules and support scripts)
    
       - Rust crates and bindings for initial minimum viable build
    
       - Rust kernel documentation and samples
    
      Rust support has been in linux-next for a year and a half now, and the
      short log doesn't do justice to the number of people who have
      contributed both to the Linux kernel side but also to the upstream
      Rust side to support the kernel's needs. Thanks to these 173 people,
      and many more, who have been involved in all kinds of ways:
    
      Miguel Ojeda, Wedson Almeida Filho, Alex Gaynor, Boqun Feng, Gary Guo,
      Björn Roy Baron, Andreas Hindborg, Adam Bratschi-Kaye, Benno Lossin,
      Maciej Falkowski, Finn Behrens, Sven Van Asbroeck, Asahi Lina, FUJITA
      Tomonori, John Baublitz, Wei Liu, Geoffrey Thomas, Philip Herron,
      Arthur Cohen, David Faust, Antoni Boucher, Philip Li, Yujie Liu,
      Jonathan Corbet, Greg Kroah-Hartman, Paul E. McKenney, Josh Triplett,
      Kent Overstreet, David Gow, Alice Ryhl, Robin Randhawa, Kees Cook,
      Nick Desaulniers, Matthew Wilcox, Linus Walleij, Joe Perches, Michael
      Ellerman, Petr Mladek, Masahiro Yamada, Arnaldo Carvalho de Melo,
      Andrii Nakryiko, Konstantin Shelekhin, Rasmus Villemoes, Konstantin
      Ryabitsev, Stephen Rothwell, Andy Shevchenko, Sergey Senozhatsky, John
      Paul Adrian Glaubitz, David Laight, Nathan Chancellor, Jonathan
      Cameron, Daniel Latypov, Shuah Khan, Brendan Higgins, Julia Lawall,
      Laurent Pinchart, Geert Uytterhoeven, Akira Yokosawa, Pavel Machek,
      David S. Miller, John Hawley, James Bottomley, Arnd Bergmann,
      Christian Brauner, Dan Robertson, Nicholas Piggin, Zhouyi Zhou, Elena
      Zannoni, Jose E. Marchesi, Leon Romanovsky, Will Deacon, Richard
      Weinberger, Randy Dunlap, Paolo Bonzini, Roland Dreier, Mark Brown,
      Sasha Levin, Ted Ts'o, Steven Rostedt, Jarkko Sakkinen, Michal
      Kubecek, Marco Elver, Al Viro, Keith Busch, Johannes Berg, Jan Kara,
      David Sterba, Connor Kuehl, Andy Lutomirski, Andrew Lunn, Alexandre
      Belloni, Peter Zijlstra, Russell King, Eric W. Biederman, Willy
      Tarreau, Christoph Hellwig, Emilio Cobos Álvarez, Christian Poveda,
      Mark Rousskov, John Ericson, TennyZhuang, Xuanwo, Daniel Paoliello,
      Manish Goregaokar, comex, Josh Stone, Stephan Sokolow, Philipp Krones,
      Guillaume Gomez, Joshua Nelson, Mats Larsen, Marc Poulhiès, Samantha
      Miller, Esteban Blanc, Martin Schmidt, Martin Rodriguez Reboredo,
      Daniel Xu, Viresh Kumar, Bartosz Golaszewski, Vegard Nossum, Milan
      Landaverde, Dariusz Sosnowski, Yuki Okushi, Matthew Bakhtiari, Wu
      XiangCheng, Tiago Lam, Boris-Chengbiao Zhou, Sumera Priyadarsini,
      Viktor Garske, Niklas Mohrin, Nándor István Krácser, Morgan Bartlett,
      Miguel Cano, Léo Lanteri Thauvin, Julian Merkle, Andreas Reindl,
      Jiapeng Chong, Fox Chen, Douglas Su, Antonio Terceiro, SeongJae Park,
      Sergio González Collado, Ngo Iok Ui (Wu Yu Wei), Joshua Abraham,
      Milan, Daniel Kolsoi, ahomescu, Manas, Luis Gerhorst, Li Hongyu,
      Philipp Gesang, Russell Currey, Jalil David Salamé Messina, Jon Olson,
      Raghvender, Angelos, Kaviraj Kanagaraj, Paul Römer, Sladyn Nunes,
      Mauro Baladés, Hsiang-Cheng Yang, Abhik Jain, Hongyu Li, Sean Nash,
      Yuheng Su, Peng Hao, Anhad Singh, Roel Kluin, Sara Saa, Geert
      Stappers, Garrett LeSage, IFo Hancroft, and Linus Torvalds"
    
    Link: https://lwn.net/Articles/849849/ [1]
    Link: https://github.com/Rust-for-Linux/linux/commits/rust [2]
    Link: https://github.com/metaspace/rust-linux/commit/d88c3744d6cbdf11767e08bad56cbfb67c4c96d0 [3]
    Link: https://github.com/wedsonaf/linux/commit/9367032607f7670de0ba1537cf09ab0f4365a338 [4]
    Link: https://github.com/AsahiLinux/linux/commits/gpu/rust-wip [5]
    
    * tag 'rust-v6.1-rc1' of https://github.com/Rust-for-Linux/linux: (27 commits)
      MAINTAINERS: Rust
      samples: add first Rust examples
      x86: enable initial Rust support
      docs: add Rust documentation
      Kbuild: add Rust support
      rust: add `.rustfmt.toml`
      scripts: add `is_rust_module.sh`
      scripts: add `rust_is_available.sh`
      scripts: add `generate_rust_target.rs`
      scripts: add `generate_rust_analyzer.py`
      scripts: decode_stacktrace: demangle Rust symbols
      scripts: checkpatch: enable language-independent checks for Rust
      scripts: checkpatch: diagnose uses of `%pA` in the C side as errors
      vsprintf: add new `%pA` format specifier
      rust: export generated symbols
      rust: add `kernel` crate
      rust: add `bindings` crate
      rust: add `macros` crate
      rust: add `compiler_builtins` crate
      rust: adapt `alloc` crate to the kernel
      ...
    8aebac82
MAINTAINERS 665 KB