[GIT PULL] Rust fixes for 6.11 (2nd)

From: Miguel Ojeda
Date: Thu Sep 05 2024 - 17:35:06 EST


Hi Linus,

Please pull these fixes for Rust (second round).

They have all been in linux-next for at least a couple rounds.

No conflicts expected. No changes to the C side.

Thanks!

Cheers,
Miguel

The following changes since commit 47ac09b91befbb6a235ab620c32af719f8208399:

Linux 6.11-rc4 (2024-08-18 13:17:27 -0700)

are available in the Git repository at:

https://github.com/Rust-for-Linux/linux.git tags/rust-fixes-6.11-2

for you to fetch changes up to cff56ff737e2da095ca9f228e2c5afc903bfca69:

MAINTAINERS: update Andreas Hindborg's email address (2024-09-03 23:48:20 +0200)

----------------------------------------------------------------
Rust fixes for v6.11 (2nd)

Toolchain and infrastructure:

- Fix builds for nightly compiler users now that 'new_uninit' was split
into new features by using an alternative approach for the code that
used what is now called the 'box_uninit_write' feature.

- Allow the 'stable_features' lint to preempt upcoming warnings about
them, since soon there will be unstable features that will become
stable in nightly compilers.

- Export bss symbols too.

'kernel' crate:

- 'block' module: fix wrong usage of lockdep API.

'macros' crate:

- Provide correct provenance when constructing 'THIS_MODULE'.

Documentation:

- Remove unintended indentation (blockquotes) in generated output.

- Fix a couple typos.

MAINTAINERS:

- Remove Wedson as Rust maintainer.

- Update Andreas' email.

----------------------------------------------------------------
Andreas Hindborg (3):
rust: kbuild: fix export of bss symbols
rust: block: fix wrong usage of lockdep API
MAINTAINERS: update Andreas Hindborg's email address

Boqun Feng (1):
rust: macros: provide correct provenance when constructing THIS_MODULE

Jon Mulder (1):
docs: rust: remove unintended blockquote in Quick Start

Jubilee Young (1):
rust: alloc: eschew `Box<MaybeUninit<T>>::write`

Michael Vetter (1):
rust: kernel: fix typos in code comments

Miguel Ojeda (1):
rust: allow `stable_features` lint

Vincent Woltmann (1):
docs: rust: remove unintended blockquote in Coding Guidelines

Wedson Almeida Filho (1):
MAINTAINERS: Remove Wedson as Rust maintainer

.mailmap | 1 +
Documentation/rust/coding-guidelines.rst | 38 ++++++++++++++++----------------
Documentation/rust/quick-start.rst | 6 ++---
MAINTAINERS | 5 ++---
Makefile | 1 +
rust/Makefile | 2 +-
rust/kernel/alloc/box_ext.rs | 6 +++--
rust/kernel/block/mq/gen_disk.rs | 6 ++---
rust/kernel/init/macros.rs | 4 ++--
rust/kernel/net/phy.rs | 2 +-
rust/macros/module.rs | 6 ++++-
11 files changed, 41 insertions(+), 36 deletions(-)