[PATCH 0/3] rust: xarray: abstract `xa_alloc` and `xa_alloc_cyclic`

Onur Özkan posted 3 patches 2 months ago
Documentation/gpu/nova/core/todo.rst |  8 ---
rust/kernel/xarray.rs                | 82 ++++++++++++++++++++++++++++
2 files changed, 82 insertions(+), 8 deletions(-)
[PATCH 0/3] rust: xarray: abstract `xa_alloc` and `xa_alloc_cyclic`
Posted by Onur Özkan 2 months ago
Initial version of xa_alloc and xa_alloc_cyclic abstraction
patch series.

Onur Özkan (3):
  rust: xarray: abstract `xa_alloc`
  rust: xarray: abstract `xa_alloc_cyclic`
  remove completed task from nova-core task list

 Documentation/gpu/nova/core/todo.rst |  8 ---
 rust/kernel/xarray.rs                | 82 ++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+), 8 deletions(-)

--
2.51.0

Re: [PATCH 0/3] rust: xarray: abstract `xa_alloc` and `xa_alloc_cyclic`
Posted by Alice Ryhl 2 months ago
On Mon, Oct 06, 2025 at 07:30:21PM +0300, Onur Özkan wrote:
> Initial version of xa_alloc and xa_alloc_cyclic abstraction
> patch series.
> 
> Onur Özkan (3):
>   rust: xarray: abstract `xa_alloc`
>   rust: xarray: abstract `xa_alloc_cyclic`
>   remove completed task from nova-core task list
> 
>  Documentation/gpu/nova/core/todo.rst |  8 ---
>  rust/kernel/xarray.rs                | 82 ++++++++++++++++++++++++++++
>  2 files changed, 82 insertions(+), 8 deletions(-)

We should send xarray patches to the linux-mm@kvack.org too.

Alice
Re: [PATCH 0/3] rust: xarray: abstract `xa_alloc` and `xa_alloc_cyclic`
Posted by Onur Özkan 2 months ago
On Tue, 7 Oct 2025 11:01:59 +0000
Alice Ryhl <aliceryhl@google.com> wrote:

> On Mon, Oct 06, 2025 at 07:30:21PM +0300, Onur Özkan wrote:
> > Initial version of xa_alloc and xa_alloc_cyclic abstraction
> > patch series.
> > 
> > Onur Özkan (3):
> >   rust: xarray: abstract `xa_alloc`
> >   rust: xarray: abstract `xa_alloc_cyclic`
> >   remove completed task from nova-core task list
> > 
> >  Documentation/gpu/nova/core/todo.rst |  8 ---
> >  rust/kernel/xarray.rs                | 82
> > ++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+), 8
> > deletions(-)
> 
> We should send xarray patches to the linux-mm@kvack.org too.
> 
> Alice

I suppose it should be added to the MAINTAINERS file? `get_maintainer.pl
rust/kernel/xarray.rs` doesn't give that address right now.

Thanks,
Onur