* [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
@ 2025-07-08 18:37 Lorenzo Stoakes
2025-07-08 19:31 ` Danilo Krummrich
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Lorenzo Stoakes @ 2025-07-08 18:37 UTC (permalink / raw)
To: Danilo Krummrich
Cc: Vlastimil Babka, Liam R . Howlett, Uladzislau Rezki,
rust-for-linux, linux-mmc, linux-kernel
The alloc implementation is a thin wrapper over slab/vmalloc, so to help
out on the mm side of things and to be cc'd on changes, add some mm people
as reviewers.
Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
---
MAINTAINERS | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 71599ab6bd56..54dd937160ac 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
RUST [ALLOC]
M: Danilo Krummrich <dakr@kernel.org>
+R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
+R: Vlastimil Babka <vbabka@suse.cz>
+R: Liam R. Howlett <Liam.Howlett@oracle.com>
+R: Uladzislau Rezki <urezki@gmail.com>
L: rust-for-linux@vger.kernel.org
S: Maintained
T: git https://github.com/Rust-for-Linux/linux.git alloc-next
--
2.50.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
@ 2025-07-08 19:31 ` Danilo Krummrich
2025-07-08 19:33 ` Lorenzo Stoakes
2025-07-08 19:50 ` Liam R. Howlett
` (4 subsequent siblings)
5 siblings, 1 reply; 8+ messages in thread
From: Danilo Krummrich @ 2025-07-08 19:31 UTC (permalink / raw)
To: Lorenzo Stoakes
Cc: Vlastimil Babka, Liam R . Howlett, Uladzislau Rezki,
rust-for-linux, linux-mmc, linux-kernel, Miguel Ojeda
Hi Lorenzo,
On 7/8/25 8:37 PM, Lorenzo Stoakes wrote:
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
It's much more than that, as far as MM is concerned this is true (no need to
change this in the commit message).
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Thanks a lot for sending this patch, it is very welcome! I will apply it once I
have an ACK from Vlastimil, Liam and Uladzislau.
> ---
> MAINTAINERS | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71599ab6bd56..54dd937160ac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
>
> RUST [ALLOC]
> M: Danilo Krummrich <dakr@kernel.org>
> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> +R: Vlastimil Babka <vbabka@suse.cz>
> +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> +R: Uladzislau Rezki <urezki@gmail.com>
> L: rust-for-linux@vger.kernel.org
> S: Maintained
> T: git https://github.com/Rust-for-Linux/linux.git alloc-next
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 19:31 ` Danilo Krummrich
@ 2025-07-08 19:33 ` Lorenzo Stoakes
0 siblings, 0 replies; 8+ messages in thread
From: Lorenzo Stoakes @ 2025-07-08 19:33 UTC (permalink / raw)
To: Danilo Krummrich
Cc: Vlastimil Babka, Liam R . Howlett, Uladzislau Rezki,
rust-for-linux, linux-mmc, linux-kernel, Miguel Ojeda
On Tue, Jul 08, 2025 at 09:31:05PM +0200, Danilo Krummrich wrote:
> Hi Lorenzo,
>
> On 7/8/25 8:37 PM, Lorenzo Stoakes wrote:
> > The alloc implementation is a thin wrapper over slab/vmalloc, so to help
>
> It's much more than that, as far as MM is concerned this is true (no need to
> change this in the commit message).
Ah sorry, feel free to adjust.
I think as we were talking wrt mm bits this was the take away from _that side_
rather than rust one :)
>
> > out on the mm side of things and to be cc'd on changes, add some mm people
> > as reviewers.
> >
> > Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
>
> Thanks a lot for sending this patch, it is very welcome! I will apply it once I
> have an ACK from Vlastimil, Liam and Uladzislau.
Cheers! I have pinged all concerned ahead of time so should be formality.
>
> > ---
> > MAINTAINERS | 4 ++++
> > 1 file changed, 4 insertions(+)
> >
> > diff --git a/MAINTAINERS b/MAINTAINERS
> > index 71599ab6bd56..54dd937160ac 100644
> > --- a/MAINTAINERS
> > +++ b/MAINTAINERS
> > @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
> > RUST [ALLOC]
> > M: Danilo Krummrich <dakr@kernel.org>
> > +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> > +R: Vlastimil Babka <vbabka@suse.cz>
> > +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> > +R: Uladzislau Rezki <urezki@gmail.com>
> > L: rust-for-linux@vger.kernel.org
> > S: Maintained
> > T: git https://github.com/Rust-for-Linux/linux.git alloc-next
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
2025-07-08 19:31 ` Danilo Krummrich
@ 2025-07-08 19:50 ` Liam R. Howlett
2025-07-08 20:48 ` Vlastimil Babka
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Liam R. Howlett @ 2025-07-08 19:50 UTC (permalink / raw)
To: Lorenzo Stoakes
Cc: Danilo Krummrich, Vlastimil Babka, Uladzislau Rezki,
rust-for-linux, linux-mmc, linux-kernel
* Lorenzo Stoakes <lorenzo.stoakes@oracle.com> [250708 14:37]:
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Acked-by: Liam R. Howlett <Liam.Howlett@oracle.com>
> ---
> MAINTAINERS | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71599ab6bd56..54dd937160ac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
>
> RUST [ALLOC]
> M: Danilo Krummrich <dakr@kernel.org>
> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> +R: Vlastimil Babka <vbabka@suse.cz>
> +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> +R: Uladzislau Rezki <urezki@gmail.com>
> L: rust-for-linux@vger.kernel.org
> S: Maintained
> T: git https://github.com/Rust-for-Linux/linux.git alloc-next
> --
> 2.50.0
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
2025-07-08 19:31 ` Danilo Krummrich
2025-07-08 19:50 ` Liam R. Howlett
@ 2025-07-08 20:48 ` Vlastimil Babka
2025-07-09 11:15 ` Uladzislau Rezki
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Vlastimil Babka @ 2025-07-08 20:48 UTC (permalink / raw)
To: Lorenzo Stoakes, Danilo Krummrich
Cc: Liam R . Howlett, Uladzislau Rezki, rust-for-linux, linux-mmc,
linux-kernel
On 7/8/25 20:37, Lorenzo Stoakes wrote:
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
> ---
> MAINTAINERS | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71599ab6bd56..54dd937160ac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
>
> RUST [ALLOC]
> M: Danilo Krummrich <dakr@kernel.org>
> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> +R: Vlastimil Babka <vbabka@suse.cz>
> +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> +R: Uladzislau Rezki <urezki@gmail.com>
> L: rust-for-linux@vger.kernel.org
> S: Maintained
> T: git https://github.com/Rust-for-Linux/linux.git alloc-next
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
` (2 preceding siblings ...)
2025-07-08 20:48 ` Vlastimil Babka
@ 2025-07-09 11:15 ` Uladzislau Rezki
2025-07-09 12:59 ` Vitaly Wool
2025-07-09 14:01 ` Danilo Krummrich
5 siblings, 0 replies; 8+ messages in thread
From: Uladzislau Rezki @ 2025-07-09 11:15 UTC (permalink / raw)
To: Lorenzo Stoakes
Cc: Danilo Krummrich, Vlastimil Babka, Liam R . Howlett,
Uladzislau Rezki, rust-for-linux, linux-mmc, linux-kernel
On Tue, Jul 08, 2025 at 07:37:47PM +0100, Lorenzo Stoakes wrote:
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> ---
> MAINTAINERS | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71599ab6bd56..54dd937160ac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
>
> RUST [ALLOC]
> M: Danilo Krummrich <dakr@kernel.org>
> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> +R: Vlastimil Babka <vbabka@suse.cz>
> +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> +R: Uladzislau Rezki <urezki@gmail.com>
> L: rust-for-linux@vger.kernel.org
> S: Maintained
> T: git https://github.com/Rust-for-Linux/linux.git alloc-next
> --
> 2.50.0
>
Acked-by: Uladzislau Rezki (Sony) <urezki@gmail.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
` (3 preceding siblings ...)
2025-07-09 11:15 ` Uladzislau Rezki
@ 2025-07-09 12:59 ` Vitaly Wool
2025-07-09 14:01 ` Danilo Krummrich
5 siblings, 0 replies; 8+ messages in thread
From: Vitaly Wool @ 2025-07-09 12:59 UTC (permalink / raw)
To: Lorenzo Stoakes
Cc: Danilo Krummrich, Vlastimil Babka, Liam R . Howlett,
Uladzislau Rezki, rust-for-linux, linux-mmc, linux-kernel
> On Jul 8, 2025, at 8:37 PM, Lorenzo Stoakes <lorenzo.stoakes@oracle.com> wrote:
>
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Thanks for bringing more clarity to this, appreciated.
~Vitaly
> ---
> MAINTAINERS | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 71599ab6bd56..54dd937160ac 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -21751,6 +21751,10 @@ K: \b(?i:rust)\b
>
> RUST [ALLOC]
> M: Danilo Krummrich <dakr@kernel.org>
> +R: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
> +R: Vlastimil Babka <vbabka@suse.cz>
> +R: Liam R. Howlett <Liam.Howlett@oracle.com>
> +R: Uladzislau Rezki <urezki@gmail.com>
> L: rust-for-linux@vger.kernel.org
> S: Maintained
> T: git https://github.com/Rust-for-Linux/linux.git alloc-next
> --
> 2.50.0
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
` (4 preceding siblings ...)
2025-07-09 12:59 ` Vitaly Wool
@ 2025-07-09 14:01 ` Danilo Krummrich
5 siblings, 0 replies; 8+ messages in thread
From: Danilo Krummrich @ 2025-07-09 14:01 UTC (permalink / raw)
To: Lorenzo Stoakes
Cc: Vlastimil Babka, Liam R . Howlett, Uladzislau Rezki,
rust-for-linux, linux-mmc, linux-kernel
On Tue Jul 8, 2025 at 8:37 PM CEST, Lorenzo Stoakes wrote:
> The alloc implementation is a thin wrapper over slab/vmalloc, so to help
> out on the mm side of things and to be cc'd on changes, add some mm people
> as reviewers.
>
> Signed-off-by: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>
Applied to alloc-next, thanks!
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-07-09 14:01 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-08 18:37 [PATCH] MAINTAINERS: add mm folks as reviewers to rust alloc Lorenzo Stoakes
2025-07-08 19:31 ` Danilo Krummrich
2025-07-08 19:33 ` Lorenzo Stoakes
2025-07-08 19:50 ` Liam R. Howlett
2025-07-08 20:48 ` Vlastimil Babka
2025-07-09 11:15 ` Uladzislau Rezki
2025-07-09 12:59 ` Vitaly Wool
2025-07-09 14:01 ` 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).