All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] Rust for v6.9
@ 2024-03-09 13:38 Miguel Ojeda
  2024-03-11 19:42 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Miguel Ojeda @ 2024-03-09 13:38 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Miguel Ojeda, Wedson Almeida Filho, Alex Gaynor, Boqun Feng,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, rust-for-linux, linux-kernel

Hi Linus,

This is the next round of the Rust support.

All the commits have been in linux-next for more than a week.

A small conflict with the arm64 pull expected, as well as a trivial one
with the mm-nonmm. Both are resolved in linux-next in the rust-next
merge. No changes to the C side.

You will likely get Rust support for arm64, the first kselftest for Rust
and a couple improvements for Rust net PHY through their respective
trees as well. LoongArch, RISC-V and VFS pull requests could carry
something too, but probably on the next one.

Please pull for v6.9 -- thanks!

Cheers,
Miguel

The following changes since commit 6613476e225e090cc9aad49be7fa504e290dd33d:

  Linux 6.8-rc1 (2024-01-21 14:11:32 -0800)

are available in the Git repository at:

  https://github.com/Rust-for-Linux/linux.git tags/rust-6.9

for you to fetch changes up to 768409cff6cc89fe1194da880537a09857b6e4db:

  rust: upgrade to Rust 1.76.0 (2024-02-29 22:18:05 +0100)

----------------------------------------------------------------
Rust changes for v6.9

Another routine one in terms of features. We got two version upgrades
this time, but in terms of lines, 'alloc' changes are not very large.

Toolchain and infrastructure:

 - Upgrade to Rust 1.76.0.

   This time around, due to how the kernel and Rust schedules have
   aligned, there are two upgrades in fact. These allow us to remove two
   more unstable features ('const_maybe_uninit_zeroed' and
   'ptr_metadata') from the list, among other improvements.

 - Mark 'rustc' (and others) invocations as recursive, which fixes a new
   warning and prepares us for the future in case we eventually take
   advantage of the Make jobserver.

'kernel' crate:

 - Add the 'container_of!' macro.

 - Stop using the unstable 'ptr_metadata' feature by employing the now
   stable 'byte_sub' method to implement 'Arc::from_raw()'.

 - Add the 'time' module with a 'msecs_to_jiffies()' conversion function
   to begin with, to be used by Rust Binder.

 - Add 'notify_sync()' and 'wait_interruptible_timeout()' methods to
   'CondVar', to be used by Rust Binder.

 - Update integer types for 'CondVar'.

 - Rename 'wait_list' field to 'wait_queue_head' in 'CondVar'.

 - Implement 'Display' and 'Debug' for 'BStr'.

 - Add the 'try_from_foreign()' method to the 'ForeignOwnable' trait.

 - Add reexports for macros so that they can be used from the right
   module (in addition to the root).

 - A series of code documentation improvements, including adding
   intra-doc links, consistency improvements, typo fixes...

'macros' crate:

 - Place generated 'init_module()' function in '.init.text'.

Documentation:

 - Add documentation on Rust doctests and how they work.

----------------------------------------------------------------
Alice Ryhl (6):
      rust: sync: add `CondVar::notify_sync`
      rust: time: add msecs to jiffies conversion
      rust: sync: add `CondVar::wait_timeout`
      rust: sync: update integer types in CondVar
      rust: kernel: add reexports for macros
      rust: kernel: stop using ptr_metadata feature

Charalampos Mitrodimas (1):
      rust: sync: `CondVar` rename "wait_list" to "wait_queue_head"

Dirk Behme (2):
      docs: rust: Move testing to a separate page
      docs: rust: Add description of Rust documentation test as KUnit ones

Miguel Ojeda (3):
      rust: upgrade to Rust 1.75.0
      kbuild: mark `rustc` (and others) invocations as recursive
      rust: upgrade to Rust 1.76.0

Mika Westerberg (1):
      rust: bindings: Order headers alphabetically

Obei Sideg (1):
      rust: types: add `try_from_foreign()` method

Thomas Bertschinger (1):
      rust: module: place generated init_module() function in .init.text

Valentin Obst (12):
      rust: kernel: fix multiple typos in documentation
      rust: error: improve unsafe code in example
      rust: ioctl: end top-level module docs with full stop
      rust: kernel: add srctree-relative doclinks
      rust: str: use `NUL` instead of 0 in doc comments
      rust: str: move SAFETY comment in front of unsafe block
      rust: kernel: unify spelling of refcount in docs
      rust: kernel: mark code fragments in docs with backticks
      rust: kernel: add blank lines in front of code blocks
      rust: kernel: add doclinks
      rust: kernel: remove unneeded doclink targets
      rust: locked_by: shorten doclink preview

Wedson Almeida Filho (1):
      rust: add `container_of!` macro

Yutaro Ohno (1):
      rust: str: implement `Display` and `Debug` for `BStr`

 Documentation/process/changes.rst          |   2 +-
 Documentation/rust/general-information.rst |  24 ----
 Documentation/rust/index.rst               |   1 +
 Documentation/rust/testing.rst             | 135 ++++++++++++++++++++
 Makefile                                   |   4 +-
 rust/Makefile                              |  48 +++----
 rust/alloc/alloc.rs                        |  12 +-
 rust/alloc/boxed.rs                        |  34 +++--
 rust/alloc/collections/mod.rs              |   1 +
 rust/alloc/lib.rs                          |   9 +-
 rust/alloc/raw_vec.rs                      |  77 +++++++++---
 rust/alloc/vec/into_iter.rs                |  16 ++-
 rust/alloc/vec/mod.rs                      |  81 +++++++++---
 rust/bindings/bindings_helper.h            |   5 +-
 rust/kernel/allocator.rs                   |   2 +-
 rust/kernel/error.rs                       |  10 +-
 rust/kernel/init.rs                        |  22 ++--
 rust/kernel/ioctl.rs                       |   6 +-
 rust/kernel/lib.rs                         |  37 +++++-
 rust/kernel/str.rs                         | 193 +++++++++++++++++++++++++++--
 rust/kernel/sync.rs                        |   5 +-
 rust/kernel/sync/arc.rs                    |  30 +++--
 rust/kernel/sync/condvar.rs                | 110 ++++++++++++----
 rust/kernel/sync/lock.rs                   |  19 ++-
 rust/kernel/sync/lock/mutex.rs             |   3 +-
 rust/kernel/sync/lock/spinlock.rs          |   5 +-
 rust/kernel/sync/locked_by.rs              |   7 +-
 rust/kernel/task.rs                        |  24 +++-
 rust/kernel/time.rs                        |  20 +++
 rust/kernel/types.rs                       |  22 ++++
 rust/kernel/workqueue.rs                   |  78 ++++++------
 rust/macros/module.rs                      |   7 +-
 scripts/Makefile.build                     |   8 +-
 scripts/Makefile.host                      |   2 +-
 scripts/min-tool-version.sh                |   2 +-
 35 files changed, 809 insertions(+), 252 deletions(-)
 create mode 100644 Documentation/rust/testing.rst
 create mode 100644 rust/kernel/time.rs

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [GIT PULL] Rust for v6.9
  2024-03-09 13:38 [GIT PULL] Rust for v6.9 Miguel Ojeda
@ 2024-03-11 19:42 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2024-03-11 19:42 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Linus Torvalds, Miguel Ojeda, Wedson Almeida Filho, Alex Gaynor,
	Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, rust-for-linux, linux-kernel

The pull request you sent on Sat,  9 Mar 2024 14:38:17 +0100:

> https://github.com/Rust-for-Linux/linux.git tags/rust-6.9

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/8ede842f669b6f78812349bbef4d1efd0fbdafce

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-03-11 19:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-09 13:38 [GIT PULL] Rust for v6.9 Miguel Ojeda
2024-03-11 19:42 ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.