rust-for-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: Update the DMA Rust entry
@ 2025-09-10  9:40 Danilo Krummrich
  2025-09-10 13:12 ` Greg KH
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Danilo Krummrich @ 2025-09-10  9:40 UTC (permalink / raw)
  To: gregkh, rafael, abdiel.janulgue, daniel.almeida, robin.murphy,
	a.hindborg, ojeda
  Cc: rust-for-linux, linux-kernel, Danilo Krummrich

Update the DMA Rust maintainers entry in the following two aspects:

  (1) Change Abdiel's entry to 'Reviewer'.

  (2) Take patches through the driver-core tree.

Abdiel won't do any more maintainer work on the DMA (or scatterlist)
infrastructure, but he'd like to be kept in the loop, hence change is
entry to 'R:'.

Analogous to [1], the DMA (and scatterlist) helpers are closely coupled
with the core device infrastructure and the device lifecycle, hence take
patches through the driver-core tree by default.

Cc: Abdiel Janulgue <abdiel.janulgue@gmail.com>
Link: https://lore.kernel.org/r/20250725202840.2251768-1-ojeda@kernel.org [1]
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
---
 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index fed6cd812d79..281149d9b821 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -7239,15 +7239,15 @@ F:	include/linux/swiotlb.h
 F:	kernel/dma/
 
 DMA MAPPING HELPERS DEVICE DRIVER API [RUST]
-M:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
 M:	Danilo Krummrich <dakr@kernel.org>
+R:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
 R:	Daniel Almeida <daniel.almeida@collabora.com>
 R:	Robin Murphy <robin.murphy@arm.com>
 R:	Andreas Hindborg <a.hindborg@kernel.org>
 L:	rust-for-linux@vger.kernel.org
 S:	Supported
 W:	https://rust-for-linux.com
-T:	git https://github.com/Rust-for-Linux/linux.git alloc-next
+T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
 F:	rust/helpers/dma.c
 F:	rust/kernel/dma.rs
 F:	samples/rust/rust_dma.rs

base-commit: 3c9ba2777d6c86025e1ba4186dc5cd930e40ec5f
-- 
2.51.0


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

* Re: [PATCH] MAINTAINERS: Update the DMA Rust entry
  2025-09-10  9:40 [PATCH] MAINTAINERS: Update the DMA Rust entry Danilo Krummrich
@ 2025-09-10 13:12 ` Greg KH
  2025-09-11  7:59 ` Abdiel Janulgue
  2025-09-11 19:57 ` Danilo Krummrich
  2 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2025-09-10 13:12 UTC (permalink / raw)
  To: Danilo Krummrich
  Cc: rafael, abdiel.janulgue, daniel.almeida, robin.murphy, a.hindborg,
	ojeda, rust-for-linux, linux-kernel

On Wed, Sep 10, 2025 at 11:40:03AM +0200, Danilo Krummrich wrote:
> Update the DMA Rust maintainers entry in the following two aspects:
> 
>   (1) Change Abdiel's entry to 'Reviewer'.
> 
>   (2) Take patches through the driver-core tree.
> 
> Abdiel won't do any more maintainer work on the DMA (or scatterlist)
> infrastructure, but he'd like to be kept in the loop, hence change is
> entry to 'R:'.
> 
> Analogous to [1], the DMA (and scatterlist) helpers are closely coupled
> with the core device infrastructure and the device lifecycle, hence take
> patches through the driver-core tree by default.
> 
> Cc: Abdiel Janulgue <abdiel.janulgue@gmail.com>
> Link: https://lore.kernel.org/r/20250725202840.2251768-1-ojeda@kernel.org [1]
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> ---
>  MAINTAINERS | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index fed6cd812d79..281149d9b821 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -7239,15 +7239,15 @@ F:	include/linux/swiotlb.h
>  F:	kernel/dma/
>  
>  DMA MAPPING HELPERS DEVICE DRIVER API [RUST]
> -M:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
>  M:	Danilo Krummrich <dakr@kernel.org>
> +R:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
>  R:	Daniel Almeida <daniel.almeida@collabora.com>
>  R:	Robin Murphy <robin.murphy@arm.com>
>  R:	Andreas Hindborg <a.hindborg@kernel.org>
>  L:	rust-for-linux@vger.kernel.org
>  S:	Supported
>  W:	https://rust-for-linux.com
> -T:	git https://github.com/Rust-for-Linux/linux.git alloc-next
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
>  F:	rust/helpers/dma.c
>  F:	rust/kernel/dma.rs
>  F:	samples/rust/rust_dma.rs
> 
> base-commit: 3c9ba2777d6c86025e1ba4186dc5cd930e40ec5f
> -- 
> 2.51.0
> 

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

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

* Re: [PATCH] MAINTAINERS: Update the DMA Rust entry
  2025-09-10  9:40 [PATCH] MAINTAINERS: Update the DMA Rust entry Danilo Krummrich
  2025-09-10 13:12 ` Greg KH
@ 2025-09-11  7:59 ` Abdiel Janulgue
  2025-09-11 19:57 ` Danilo Krummrich
  2 siblings, 0 replies; 4+ messages in thread
From: Abdiel Janulgue @ 2025-09-11  7:59 UTC (permalink / raw)
  To: Danilo Krummrich, gregkh, rafael, daniel.almeida, robin.murphy,
	a.hindborg, ojeda
  Cc: rust-for-linux, linux-kernel



On 10/09/2025 12:40, Danilo Krummrich wrote:
> Update the DMA Rust maintainers entry in the following two aspects:
> 
>    (1) Change Abdiel's entry to 'Reviewer'.
> 
>    (2) Take patches through the driver-core tree.
> 
> Abdiel won't do any more maintainer work on the DMA (or scatterlist)
> infrastructure, but he'd like to be kept in the loop, hence change is
> entry to 'R:'.
> 
> Analogous to [1], the DMA (and scatterlist) helpers are closely coupled
> with the core device infrastructure and the device lifecycle, hence take
> patches through the driver-core tree by default.
> 
> Cc: Abdiel Janulgue <abdiel.janulgue@gmail.com>
> Link: https://lore.kernel.org/r/20250725202840.2251768-1-ojeda@kernel.org [1]
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>
> ---
>   MAINTAINERS | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index fed6cd812d79..281149d9b821 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -7239,15 +7239,15 @@ F:	include/linux/swiotlb.h
>   F:	kernel/dma/
>   
>   DMA MAPPING HELPERS DEVICE DRIVER API [RUST]
> -M:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
>   M:	Danilo Krummrich <dakr@kernel.org>
> +R:	Abdiel Janulgue <abdiel.janulgue@gmail.com>
>   R:	Daniel Almeida <daniel.almeida@collabora.com>
>   R:	Robin Murphy <robin.murphy@arm.com>
>   R:	Andreas Hindborg <a.hindborg@kernel.org>
>   L:	rust-for-linux@vger.kernel.org
>   S:	Supported
>   W:	https://rust-for-linux.com
> -T:	git https://github.com/Rust-for-Linux/linux.git alloc-next
> +T:	git git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core.git
>   F:	rust/helpers/dma.c
>   F:	rust/kernel/dma.rs
>   F:	samples/rust/rust_dma.rs
> 
> base-commit: 3c9ba2777d6c86025e1ba4186dc5cd930e40ec5f

Acked-by: Abdiel Janulgue <abdiel.janulgue@gmail.com>


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

* Re: [PATCH] MAINTAINERS: Update the DMA Rust entry
  2025-09-10  9:40 [PATCH] MAINTAINERS: Update the DMA Rust entry Danilo Krummrich
  2025-09-10 13:12 ` Greg KH
  2025-09-11  7:59 ` Abdiel Janulgue
@ 2025-09-11 19:57 ` Danilo Krummrich
  2 siblings, 0 replies; 4+ messages in thread
From: Danilo Krummrich @ 2025-09-11 19:57 UTC (permalink / raw)
  To: gregkh
  Cc: rafael, abdiel.janulgue, daniel.almeida, robin.murphy, a.hindborg,
	ojeda, rust-for-linux, linux-kernel

On 9/10/25 11:40 AM, Danilo Krummrich wrote:
> Update the DMA Rust maintainers entry in the following two aspects:
> 
>   (1) Change Abdiel's entry to 'Reviewer'.
> 
>   (2) Take patches through the driver-core tree.
> 
> Abdiel won't do any more maintainer work on the DMA (or scatterlist)
> infrastructure, but he'd like to be kept in the loop, hence change is
> entry to 'R:'.
> 
> Analogous to [1], the DMA (and scatterlist) helpers are closely coupled
> with the core device infrastructure and the device lifecycle, hence take
> patches through the driver-core tree by default.
> 
> Cc: Abdiel Janulgue <abdiel.janulgue@gmail.com>
> Link: https://lore.kernel.org/r/20250725202840.2251768-1-ojeda@kernel.org [1]
> Signed-off-by: Danilo Krummrich <dakr@kernel.org>

Applied to driver-core-linus, thanks!

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

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

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-10  9:40 [PATCH] MAINTAINERS: Update the DMA Rust entry Danilo Krummrich
2025-09-10 13:12 ` Greg KH
2025-09-11  7:59 ` Abdiel Janulgue
2025-09-11 19:57 ` 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).