Rust for Linux List
 help / color / mirror / Atom feed
* [PATCH 1/4] MAINTAINERS: add Daniel Almeida as Rust reviewer
@ 2026-06-11  5:55 Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 2/4] MAINTAINERS: add Tamir Duberstein " Miguel Ojeda
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Miguel Ojeda @ 2026-06-11  5:55 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich,
	Daniel Almeida, Tamir Duberstein, Alexandre Courbot,
	Onur Özkan, rust-for-linux

Daniel has been involved with the Rust for Linux project for more than
three years now. He is the lead of the Tyr driver for Arm Mali GPUs
[1] and submitted many of the core abstractions that drivers need: the
`irq` module, system resources, `IoMem`, the regulator API, the `bits`
module, the basic USB abstractions... He is also working on the initial
Rust V4L2 support [2].

He is already a maintainer and reviewer of several Rust-related entries,
and he has been very active reviewing Rust code in the mailing list.

His experience building Rust drivers and the APIs they require will be
very useful to have around in the future. Thus add him to the `RUST`
entry as reviewer.

Link: https://rust-for-linux.com/tyr-gpu-driver [1]
Link: https://lore.kernel.org/rust-for-linux/20250818-v4l2-v1-0-6887e772aac2@collabora.com/ [2]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index d40e0c606893..5d34aeaa415a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -23393,6 +23393,7 @@ R:	Andreas Hindborg <a.hindborg@kernel.org>
 R:	Alice Ryhl <aliceryhl@google.com>
 R:	Trevor Gross <tmgross@umich.edu>
 R:	Danilo Krummrich <dakr@kernel.org>
+R:	Daniel Almeida <daniel.almeida@collabora.com>
 L:	rust-for-linux@vger.kernel.org
 S:	Supported
 W:	https://rust-for-linux.com
-- 
2.54.0


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

* [PATCH 2/4] MAINTAINERS: add Tamir Duberstein as Rust reviewer
  2026-06-11  5:55 [PATCH 1/4] MAINTAINERS: add Daniel Almeida as Rust reviewer Miguel Ojeda
@ 2026-06-11  5:55 ` Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 3/4] MAINTAINERS: add Alexandre Courbot " Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 4/4] MAINTAINERS: add Onur Özkan " Miguel Ojeda
  2 siblings, 0 replies; 5+ messages in thread
From: Miguel Ojeda @ 2026-06-11  5:55 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich,
	Daniel Almeida, Tamir Duberstein, Alexandre Courbot,
	Onur Özkan, rust-for-linux

Tamir has been involved with the Rust for Linux project for more than
a year and a half now. He has been working on improving the integration
between the kernel and the Rust language and tooling: he led the effort
to replace the kernel's own `CStr` type with the standard library's,
and reworked the rust-analyzer integration, among other things.

He is already the maintainer of the `RUST [RUST-ANALYZER]` and `XARRAY API
[RUST]` entries. In addition, he has been active reviewing Rust code in
the mailing list.

He is also a long-time contributor to the upstream Rust project, including
on topics that matter for the Linux kernel [1].

His expertise with the language and its tooling will be very useful to
have around in the future. Thus add him to the `RUST` entry as reviewer.

Link: https://github.com/rust-lang/rust/pull/139994 [1]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 5d34aeaa415a..813c75e930ad 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -23394,6 +23394,7 @@ R:	Alice Ryhl <aliceryhl@google.com>
 R:	Trevor Gross <tmgross@umich.edu>
 R:	Danilo Krummrich <dakr@kernel.org>
 R:	Daniel Almeida <daniel.almeida@collabora.com>
+R:	Tamir Duberstein <tamird@kernel.org>
 L:	rust-for-linux@vger.kernel.org
 S:	Supported
 W:	https://rust-for-linux.com
-- 
2.54.0


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

* [PATCH 3/4] MAINTAINERS: add Alexandre Courbot as Rust reviewer
  2026-06-11  5:55 [PATCH 1/4] MAINTAINERS: add Daniel Almeida as Rust reviewer Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 2/4] MAINTAINERS: add Tamir Duberstein " Miguel Ojeda
@ 2026-06-11  5:55 ` Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 4/4] MAINTAINERS: add Onur Özkan " Miguel Ojeda
  2 siblings, 0 replies; 5+ messages in thread
From: Miguel Ojeda @ 2026-06-11  5:55 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich,
	Daniel Almeida, Tamir Duberstein, Alexandre Courbot,
	Onur Özkan, rust-for-linux

Alexandre has been involved with the Rust for Linux project for more
than a year now. He is one of the main contributors to Nova [1], the
Rust driver for NVIDIA GPUs, and has authored core Rust infrastructure
motivated by that work, such as the `num` module with the `Bounded`
integer type, the `register!` and `bitfield!` macros, as well as
improvements to abstractions like DMA.

He maintains the nova-core driver, as well as the `RUST [NUM]`, `RUST
[BITFIELD]` and `RUST [INTEROP]` entries. In addition, he has been very
active reviewing Rust code in the mailing list.

He also proposed and implemented the `int_lowest_highest_one` feature
in the Rust standard library [2], which we should eventually use in
the kernel.

His experience maintaining a major Rust GPU driver and the abstractions
it needs will be very useful to have around in the future. Thus add him
to the `RUST` entry as reviewer.

Link: https://rust-for-linux.com/nova-gpu-driver [1]
Link: https://github.com/rust-lang/rust/issues/145203 [2]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 813c75e930ad..bf7a7a52e9a8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -23395,6 +23395,7 @@ R:	Trevor Gross <tmgross@umich.edu>
 R:	Danilo Krummrich <dakr@kernel.org>
 R:	Daniel Almeida <daniel.almeida@collabora.com>
 R:	Tamir Duberstein <tamird@kernel.org>
+R:	Alexandre Courbot <acourbot@nvidia.com>
 L:	rust-for-linux@vger.kernel.org
 S:	Supported
 W:	https://rust-for-linux.com
-- 
2.54.0


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

* [PATCH 4/4] MAINTAINERS: add Onur Özkan as Rust reviewer
  2026-06-11  5:55 [PATCH 1/4] MAINTAINERS: add Daniel Almeida as Rust reviewer Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 2/4] MAINTAINERS: add Tamir Duberstein " Miguel Ojeda
  2026-06-11  5:55 ` [PATCH 3/4] MAINTAINERS: add Alexandre Courbot " Miguel Ojeda
@ 2026-06-11  5:55 ` Miguel Ojeda
  2026-06-11  6:36   ` Onur Özkan
  2 siblings, 1 reply; 5+ messages in thread
From: Miguel Ojeda @ 2026-06-11  5:55 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich,
	Daniel Almeida, Tamir Duberstein, Alexandre Courbot,
	Onur Özkan, rust-for-linux

Onur has been involved with the Rust for Linux project for a year now. He
works on the Tyr driver for Arm Mali GPUs [1] and has been driving the
`ww_mutex` series and the SRCU abstractions, as well as improving the
core Rust support in several areas.

In addition, he is already a reviewer of the `RUST [SYNC]` entry and has
been involved with upstream Rust -- for instance, he led the bootstrap
team for two years.

His expertise with the language and its toolchain will be very useful to
have around in the future. Thus add him to the `RUST` entry as reviewer.

Link: https://rust-for-linux.com/tyr-gpu-driver [1]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index bf7a7a52e9a8..f925356a0b49 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -23396,6 +23396,7 @@ R:	Danilo Krummrich <dakr@kernel.org>
 R:	Daniel Almeida <daniel.almeida@collabora.com>
 R:	Tamir Duberstein <tamird@kernel.org>
 R:	Alexandre Courbot <acourbot@nvidia.com>
+R:	Onur Özkan <work@onurozkan.dev>
 L:	rust-for-linux@vger.kernel.org
 S:	Supported
 W:	https://rust-for-linux.com
-- 
2.54.0


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

* Re: [PATCH 4/4] MAINTAINERS: add Onur Özkan as Rust reviewer
  2026-06-11  5:55 ` [PATCH 4/4] MAINTAINERS: add Onur Özkan " Miguel Ojeda
@ 2026-06-11  6:36   ` Onur Özkan
  0 siblings, 0 replies; 5+ messages in thread
From: Onur Özkan @ 2026-06-11  6:36 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, Danilo Krummrich,
	Daniel Almeida, Tamir Duberstein, Alexandre Courbot,
	rust-for-linux, Onur Özkan

On Thu, 11 Jun 2026 07:55:38 +0200
Miguel Ojeda <ojeda@kernel.org> wrote:

> Onur has been involved with the Rust for Linux project for a year now. He
> works on the Tyr driver for Arm Mali GPUs [1] and has been driving the
> `ww_mutex` series and the SRCU abstractions, as well as improving the
> core Rust support in several areas.
> 
> In addition, he is already a reviewer of the `RUST [SYNC]` entry and has
> been involved with upstream Rust -- for instance, he led the bootstrap
> team for two years.
> 
> His expertise with the language and its toolchain will be very useful to
> have around in the future. Thus add him to the `RUST` entry as reviewer.
> 
> Link: https://rust-for-linux.com/tyr-gpu-driver [1]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
> ---

Thank you for your kind words!

Acked-by: Onur Özkan <work@onurozkan.dev>

>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index bf7a7a52e9a8..f925356a0b49 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -23396,6 +23396,7 @@ R:	Danilo Krummrich <dakr@kernel.org>
>  R:	Daniel Almeida <daniel.almeida@collabora.com>
>  R:	Tamir Duberstein <tamird@kernel.org>
>  R:	Alexandre Courbot <acourbot@nvidia.com>
> +R:	Onur Özkan <work@onurozkan.dev>
>  L:	rust-for-linux@vger.kernel.org
>  S:	Supported
>  W:	https://rust-for-linux.com
> -- 
> 2.54.0
> 

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

end of thread, other threads:[~2026-06-11  6:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-11  5:55 [PATCH 1/4] MAINTAINERS: add Daniel Almeida as Rust reviewer Miguel Ojeda
2026-06-11  5:55 ` [PATCH 2/4] MAINTAINERS: add Tamir Duberstein " Miguel Ojeda
2026-06-11  5:55 ` [PATCH 3/4] MAINTAINERS: add Alexandre Courbot " Miguel Ojeda
2026-06-11  5:55 ` [PATCH 4/4] MAINTAINERS: add Onur Özkan " Miguel Ojeda
2026-06-11  6:36   ` Onur Özkan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox