Rust for Linux List
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: add miscdevice Rust abstractions
@ 2025-07-05 15:45 Tamir Duberstein
  2025-07-05 15:54 ` Danilo Krummrich
  2025-07-07  7:24 ` Alice Ryhl
  0 siblings, 2 replies; 4+ messages in thread
From: Tamir Duberstein @ 2025-07-05 15:45 UTC (permalink / raw)
  To: Miguel Ojeda, Alex Gaynor, Boqun Feng, Gary Guo,
	Björn Roy Baron, Benno Lossin, Andreas Hindborg, Alice Ryhl,
	Trevor Gross, Danilo Krummrich
  Cc: linux-kernel, rust-for-linux, Tamir Duberstein

Add rust abstractions to miscdevice MAINTAINERS entry.

Signed-off-by: Tamir Duberstein <tamird@gmail.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index c3f7fbd0d67a..a9a094e2c914 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -5568,6 +5568,7 @@ T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
 F:	drivers/char/
 F:	drivers/misc/
 F:	include/linux/miscdevice.h
+F:	rust/kernel/miscdevice.rs
 F:	samples/rust/rust_misc_device.rs
 X:	drivers/char/agp/
 X:	drivers/char/hw_random/

---
base-commit: 2009a2d5696944d85c34d75e691a6f3884e787c0
change-id: 20250705-miscdevice-maintainers-2aca6f19fa0a

Best regards,
--  
Tamir Duberstein <tamird@gmail.com>


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

* Re: [PATCH] MAINTAINERS: add miscdevice Rust abstractions
  2025-07-05 15:45 [PATCH] MAINTAINERS: add miscdevice Rust abstractions Tamir Duberstein
@ 2025-07-05 15:54 ` Danilo Krummrich
  2025-07-05 16:06   ` Boqun Feng
  2025-07-07  7:24 ` Alice Ryhl
  1 sibling, 1 reply; 4+ messages in thread
From: Danilo Krummrich @ 2025-07-05 15:54 UTC (permalink / raw)
  To: Tamir Duberstein, Greg Kroah-Hartman
  Cc: Miguel Ojeda, Alex Gaynor, Boqun Feng, Gary Guo,
	Björn Roy Baron, Benno Lossin, Andreas Hindborg, Alice Ryhl,
	Trevor Gross, linux-kernel, rust-for-linux

On 7/5/25 5:45 PM, Tamir Duberstein wrote:
> Add rust abstractions to miscdevice MAINTAINERS entry.
> 
> Signed-off-by: Tamir Duberstein <tamird@gmail.com>

You should send this to Greg. :)

> ---
>   MAINTAINERS | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index c3f7fbd0d67a..a9a094e2c914 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -5568,6 +5568,7 @@ T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
>   F:	drivers/char/
>   F:	drivers/misc/
>   F:	include/linux/miscdevice.h
> +F:	rust/kernel/miscdevice.rs
>   F:	samples/rust/rust_misc_device.rs
>   X:	drivers/char/agp/
>   X:	drivers/char/hw_random/
> 
> ---
> base-commit: 2009a2d5696944d85c34d75e691a6f3884e787c0
> change-id: 20250705-miscdevice-maintainers-2aca6f19fa0a
> 
> Best regards,
> --
> Tamir Duberstein <tamird@gmail.com>
> 


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

* Re: [PATCH] MAINTAINERS: add miscdevice Rust abstractions
  2025-07-05 15:54 ` Danilo Krummrich
@ 2025-07-05 16:06   ` Boqun Feng
  0 siblings, 0 replies; 4+ messages in thread
From: Boqun Feng @ 2025-07-05 16:06 UTC (permalink / raw)
  To: Danilo Krummrich
  Cc: Tamir Duberstein, Greg Kroah-Hartman, Miguel Ojeda, Alex Gaynor,
	Gary Guo, Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Alice Ryhl, Trevor Gross, linux-kernel, rust-for-linux

On Sat, Jul 05, 2025 at 05:54:27PM +0200, Danilo Krummrich wrote:
> On 7/5/25 5:45 PM, Tamir Duberstein wrote:
> > Add rust abstractions to miscdevice MAINTAINERS entry.
> > 
> > Signed-off-by: Tamir Duberstein <tamird@gmail.com>

Acked-by: Boqun Feng <boqun.feng@gmail.com>

Thanks!

Regards,
Boqun

> 
> You should send this to Greg. :)
> 
> > ---
> >   MAINTAINERS | 1 +
> >   1 file changed, 1 insertion(+)
> > 
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index c3f7fbd0d67a..a9a094e2c914 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -5568,6 +5568,7 @@ T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
> >   F:	drivers/char/
> >   F:	drivers/misc/
> >   F:	include/linux/miscdevice.h
> > +F:	rust/kernel/miscdevice.rs
> >   F:	samples/rust/rust_misc_device.rs
> >   X:	drivers/char/agp/
> >   X:	drivers/char/hw_random/
> > 
> > ---
> > base-commit: 2009a2d5696944d85c34d75e691a6f3884e787c0
> > change-id: 20250705-miscdevice-maintainers-2aca6f19fa0a
> > 
> > Best regards,
> > --
> > Tamir Duberstein <tamird@gmail.com>
> > 
> 

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

* Re: [PATCH] MAINTAINERS: add miscdevice Rust abstractions
  2025-07-05 15:45 [PATCH] MAINTAINERS: add miscdevice Rust abstractions Tamir Duberstein
  2025-07-05 15:54 ` Danilo Krummrich
@ 2025-07-07  7:24 ` Alice Ryhl
  1 sibling, 0 replies; 4+ messages in thread
From: Alice Ryhl @ 2025-07-07  7:24 UTC (permalink / raw)
  To: Tamir Duberstein
  Cc: Miguel Ojeda, Alex Gaynor, Boqun Feng, Gary Guo,
	Björn Roy Baron, Benno Lossin, Andreas Hindborg,
	Trevor Gross, Danilo Krummrich, linux-kernel, rust-for-linux

On Sat, Jul 05, 2025 at 11:45:56AM -0400, Tamir Duberstein wrote:
> Add rust abstractions to miscdevice MAINTAINERS entry.
> 
> Signed-off-by: Tamir Duberstein <tamird@gmail.com>

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

>  MAINTAINERS | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index c3f7fbd0d67a..a9a094e2c914 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -5568,6 +5568,7 @@ T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
>  F:	drivers/char/
>  F:	drivers/misc/
>  F:	include/linux/miscdevice.h
> +F:	rust/kernel/miscdevice.rs
>  F:	samples/rust/rust_misc_device.rs
>  X:	drivers/char/agp/
>  X:	drivers/char/hw_random/
> 
> ---
> base-commit: 2009a2d5696944d85c34d75e691a6f3884e787c0
> change-id: 20250705-miscdevice-maintainers-2aca6f19fa0a
> 
> Best regards,
> --  
> Tamir Duberstein <tamird@gmail.com>
> 

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

end of thread, other threads:[~2025-07-07  7:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-05 15:45 [PATCH] MAINTAINERS: add miscdevice Rust abstractions Tamir Duberstein
2025-07-05 15:54 ` Danilo Krummrich
2025-07-05 16:06   ` Boqun Feng
2025-07-07  7:24 ` Alice Ryhl

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