linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
@ 2025-07-25 20:28 Miguel Ojeda
  2025-07-25 22:06 ` Danilo Krummrich
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Miguel Ojeda @ 2025-07-25 20:28 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Rafael J. Wysocki, Danilo Krummrich,
	Miguel Ojeda, Alex Gaynor
  Cc: Boqun Feng, Gary Guo, Björn Roy Baron, Benno Lossin,
	Andreas Hindborg, Alice Ryhl, Trevor Gross, rust-for-linux,
	linux-kernel, patches, Daniel Almeida

This entry will handle device I/O patches and abstractions (such as
memory-mapped IO and system resources series [1]), as well as IRQ ones
(such as the `request_irq` series [2]).

Patches will flow through driver-core, at least for the time being.

Danilo, Alice and Daniel will maintain it.

Cc: Danilo Krummrich <dakr@kernel.org>
Cc: Alice Ryhl <aliceryhl@google.com>
Cc: Daniel Almeida <daniel.almeida@collabora.com>
Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
---
 MAINTAINERS | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 10850512c118..ededa04ef97b 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -6920,6 +6920,21 @@ F:	drivers/devfreq/event/
 F:	include/dt-bindings/pmu/exynos_ppmu.h
 F:	include/linux/devfreq-event.h
 
+DEVICE I/O & IRQ [RUST]
+M:	Danilo Krummrich <dakr@kernel.org>
+M:	Alice Ryhl <aliceryhl@google.com>
+M:	Daniel Almeida <daniel.almeida@collabora.com>
+L:	rust-for-linux@vger.kernel.org
+S:	Supported
+W:	https://rust-for-linux.com
+B:	https://github.com/Rust-for-Linux/linux/issues
+C:	https://rust-for-linux.zulipchat.com
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
+F:	rust/kernel/io.rs
+F:	rust/kernel/io/
+F:	rust/kernel/irq.rs
+F:	rust/kernel/irq/
+
 DEVICE RESOURCE MANAGEMENT HELPERS
 M:	Hans de Goede <hansg@kernel.org>
 R:	Matti Vaittinen <mazziesaccount@gmail.com>

base-commit: 89be9a83ccf1f88522317ce02f854f30d6115c41
-- 
2.50.1


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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
@ 2025-07-25 22:06 ` Danilo Krummrich
  2025-07-26  6:47 ` Greg Kroah-Hartman
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Danilo Krummrich @ 2025-07-25 22:06 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Greg Kroah-Hartman, Rafael J. Wysocki, Alex Gaynor, Boqun Feng,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, Trevor Gross, rust-for-linux, linux-kernel, patches,
	Daniel Almeida

On Fri Jul 25, 2025 at 10:28 PM CEST, Miguel Ojeda wrote:
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
>
> Patches will flow through driver-core, at least for the time being.
>
> Danilo, Alice and Daniel will maintain it.
>
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

Thanks -- gonna pick it up together with the IRQ abstractions after -rc1 and
once ready.

- Danilo

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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
  2025-07-25 22:06 ` Danilo Krummrich
@ 2025-07-26  6:47 ` Greg Kroah-Hartman
  2025-07-27  7:34 ` Alice Ryhl
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Greg Kroah-Hartman @ 2025-07-26  6:47 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Rafael J. Wysocki, Danilo Krummrich, Alex Gaynor, Boqun Feng,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, Trevor Gross, rust-for-linux, linux-kernel, patches,
	Daniel Almeida

On Fri, Jul 25, 2025 at 10:28:40PM +0200, Miguel Ojeda wrote:
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
> 
> Patches will flow through driver-core, at least for the time being.
> 
> Danilo, Alice and Daniel will maintain it.
> 
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
  2025-07-25 22:06 ` Danilo Krummrich
  2025-07-26  6:47 ` Greg Kroah-Hartman
@ 2025-07-27  7:34 ` Alice Ryhl
  2025-07-28  0:14 ` Daniel Almeida
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Alice Ryhl @ 2025-07-27  7:34 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Greg Kroah-Hartman, Rafael J. Wysocki, Danilo Krummrich,
	Alex Gaynor, Boqun Feng, Gary Guo, Björn Roy Baron,
	Benno Lossin, Andreas Hindborg, Trevor Gross, rust-for-linux,
	linux-kernel, patches, Daniel Almeida

On Fri, Jul 25, 2025 at 10:28:40PM +0200, Miguel Ojeda wrote:
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
> 
> Patches will flow through driver-core, at least for the time being.
> 
> Danilo, Alice and Daniel will maintain it.
> 
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

Acked-by: Alice Ryhl <aliceryhl@google.com>

>  MAINTAINERS | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 10850512c118..ededa04ef97b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6920,6 +6920,21 @@ F:	drivers/devfreq/event/
>  F:	include/dt-bindings/pmu/exynos_ppmu.h
>  F:	include/linux/devfreq-event.h
>  
> +DEVICE I/O & IRQ [RUST]
> +M:	Danilo Krummrich <dakr@kernel.org>
> +M:	Alice Ryhl <aliceryhl@google.com>
> +M:	Daniel Almeida <daniel.almeida@collabora.com>
> +L:	rust-for-linux@vger.kernel.org
> +S:	Supported
> +W:	https://rust-for-linux.com
> +B:	https://github.com/Rust-for-Linux/linux/issues
> +C:	https://rust-for-linux.zulipchat.com
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
> +F:	rust/kernel/io.rs
> +F:	rust/kernel/io/
> +F:	rust/kernel/irq.rs
> +F:	rust/kernel/irq/
> +
>  DEVICE RESOURCE MANAGEMENT HELPERS
>  M:	Hans de Goede <hansg@kernel.org>
>  R:	Matti Vaittinen <mazziesaccount@gmail.com>
> 
> base-commit: 89be9a83ccf1f88522317ce02f854f30d6115c41
> -- 
> 2.50.1
> 

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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
                   ` (2 preceding siblings ...)
  2025-07-27  7:34 ` Alice Ryhl
@ 2025-07-28  0:14 ` Daniel Almeida
  2025-07-28 12:36 ` Danilo Krummrich
  2025-08-12 19:09 ` Danilo Krummrich
  5 siblings, 0 replies; 7+ messages in thread
From: Daniel Almeida @ 2025-07-28  0:14 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Greg Kroah-Hartman, Rafael J. Wysocki, Danilo Krummrich,
	Alex Gaynor, Boqun Feng, Gary Guo, Björn Roy Baron,
	Benno Lossin, Andreas Hindborg, Alice Ryhl, Trevor Gross,
	rust-for-linux, linux-kernel, patches



> On 25 Jul 2025, at 17:28, Miguel Ojeda <ojeda@kernel.org> wrote:
> 
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
> 
> Patches will flow through driver-core, at least for the time being.
> 
> Danilo, Alice and Daniel will maintain it.
> 
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
> ---
> MAINTAINERS | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 10850512c118..ededa04ef97b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6920,6 +6920,21 @@ F: drivers/devfreq/event/
> F: include/dt-bindings/pmu/exynos_ppmu.h
> F: include/linux/devfreq-event.h
> 
> +DEVICE I/O & IRQ [RUST]
> +M: Danilo Krummrich <dakr@kernel.org>
> +M: Alice Ryhl <aliceryhl@google.com>
> +M: Daniel Almeida <daniel.almeida@collabora.com>
> +L: rust-for-linux@vger.kernel.org
> +S: Supported
> +W: https://rust-for-linux.com
> +B: https://github.com/Rust-for-Linux/linux/issues
> +C: https://rust-for-linux.zulipchat.com
> +T: git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
> +F: rust/kernel/io.rs
> +F: rust/kernel/io/
> +F: rust/kernel/irq.rs
> +F: rust/kernel/irq/
> +
> DEVICE RESOURCE MANAGEMENT HELPERS
> M: Hans de Goede <hansg@kernel.org>
> R: Matti Vaittinen <mazziesaccount@gmail.com>
> 
> base-commit: 89be9a83ccf1f88522317ce02f854f30d6115c41
> -- 
> 2.50.1
> 
> 

Acked-by: Daniel Almeida <daniel.almeida@collabora.com>


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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
                   ` (3 preceding siblings ...)
  2025-07-28  0:14 ` Daniel Almeida
@ 2025-07-28 12:36 ` Danilo Krummrich
  2025-08-12 19:09 ` Danilo Krummrich
  5 siblings, 0 replies; 7+ messages in thread
From: Danilo Krummrich @ 2025-07-28 12:36 UTC (permalink / raw)
  To: Miguel Ojeda, Thomas Gleixner
  Cc: Greg Kroah-Hartman, Rafael J. Wysocki, Alex Gaynor, Boqun Feng,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, Trevor Gross, rust-for-linux, linux-kernel, patches,
	Daniel Almeida

(Cc: Thomas)

On Fri Jul 25, 2025 at 10:28 PM CEST, Miguel Ojeda wrote:
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
>
> Patches will flow through driver-core, at least for the time being.
>
> Danilo, Alice and Daniel will maintain it.
>
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
> ---
>  MAINTAINERS | 15 +++++++++++++++
>  1 file changed, 15 insertions(+)

@Thomas: Please let us know in case you have any (other) preferences and / or if
you'd like to be added to this entry.

Please also see [1].

[1] https://lore.kernel.org/rust-for-linux/DBCQKJIBVGGM.1R0QNKO3TE4N0@kernel.org/

>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 10850512c118..ededa04ef97b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -6920,6 +6920,21 @@ F:	drivers/devfreq/event/
>  F:	include/dt-bindings/pmu/exynos_ppmu.h
>  F:	include/linux/devfreq-event.h
>  
> +DEVICE I/O & IRQ [RUST]
> +M:	Danilo Krummrich <dakr@kernel.org>
> +M:	Alice Ryhl <aliceryhl@google.com>
> +M:	Daniel Almeida <daniel.almeida@collabora.com>
> +L:	rust-for-linux@vger.kernel.org
> +S:	Supported
> +W:	https://rust-for-linux.com
> +B:	https://github.com/Rust-for-Linux/linux/issues
> +C:	https://rust-for-linux.zulipchat.com
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
> +F:	rust/kernel/io.rs
> +F:	rust/kernel/io/
> +F:	rust/kernel/irq.rs
> +F:	rust/kernel/irq/
> +
>  DEVICE RESOURCE MANAGEMENT HELPERS
>  M:	Hans de Goede <hansg@kernel.org>
>  R:	Matti Vaittinen <mazziesaccount@gmail.com>
>
> base-commit: 89be9a83ccf1f88522317ce02f854f30d6115c41
> -- 
> 2.50.1


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

* Re: [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry
  2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
                   ` (4 preceding siblings ...)
  2025-07-28 12:36 ` Danilo Krummrich
@ 2025-08-12 19:09 ` Danilo Krummrich
  5 siblings, 0 replies; 7+ messages in thread
From: Danilo Krummrich @ 2025-08-12 19:09 UTC (permalink / raw)
  To: Miguel Ojeda
  Cc: Greg Kroah-Hartman, Rafael J. Wysocki, Alex Gaynor, Boqun Feng,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, Trevor Gross, rust-for-linux, linux-kernel, patches,
	Daniel Almeida

On Fri Jul 25, 2025 at 10:28 PM CEST, Miguel Ojeda wrote:
> This entry will handle device I/O patches and abstractions (such as
> memory-mapped IO and system resources series [1]), as well as IRQ ones
> (such as the `request_irq` series [2]).
>
> Patches will flow through driver-core, at least for the time being.
>
> Danilo, Alice and Daniel will maintain it.
>
> Cc: Danilo Krummrich <dakr@kernel.org>
> Cc: Alice Ryhl <aliceryhl@google.com>
> Cc: Daniel Almeida <daniel.almeida@collabora.com>
> Link: https://lore.kernel.org/rust-for-linux/20250717-topics-tyr-platform_iomem-v15-0-beca780b77e3@collabora.com/ [1]
> Link: https://lore.kernel.org/rust-for-linux/20250715-topics-tyr-request_irq2-v7-0-d469c0f37c07@collabora.com/ [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

Applied to driver-core-testing, thanks!

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

end of thread, other threads:[~2025-08-12 19:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-25 20:28 [PATCH] MAINTAINERS: add "DEVICE I/O & IRQ [RUST]" entry Miguel Ojeda
2025-07-25 22:06 ` Danilo Krummrich
2025-07-26  6:47 ` Greg Kroah-Hartman
2025-07-27  7:34 ` Alice Ryhl
2025-07-28  0:14 ` Daniel Almeida
2025-07-28 12:36 ` Danilo Krummrich
2025-08-12 19:09 ` Danilo Krummrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).