[PATCH 0/3] rust: alloc: add Vec::resize and Vec::truncate

Andrew Ballance posted 3 patches 9 months, 1 week ago
There is a newer version of this series
Documentation/gpu/nova/core/todo.rst | 10 -----
rust/kernel/alloc/kvec.rs            | 61 ++++++++++++++++++++++++++++
2 files changed, 61 insertions(+), 10 deletions(-)
[PATCH 0/3] rust: alloc: add Vec::resize and Vec::truncate
Posted by Andrew Ballance 9 months, 1 week ago
This patch series implements the Vec::truncate and Vec::resize methods
that were needed by the nova driver and removes the corresponding item
from their task list

Andrew Ballance (3):
  rust: alloc: add Vec::truncate method
  rust: alloc: add Vec::resize method
  gpu: nova-core: remove completed Vec extentions from task list

 Documentation/gpu/nova/core/todo.rst | 10 -----
 rust/kernel/alloc/kvec.rs            | 61 ++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+), 10 deletions(-)

-- 
2.48.1
Re: [PATCH 0/3] rust: alloc: add Vec::resize and Vec::truncate
Posted by Danilo Krummrich 9 months, 1 week ago
Hi Andrew,

On Fri, Mar 14, 2025 at 09:42:32PM -0500, Andrew Ballance wrote:
> This patch series implements the Vec::truncate and Vec::resize methods
> that were needed by the nova driver and removes the corresponding item
> from their task list
> 
> Andrew Ballance (3):
>   rust: alloc: add Vec::truncate method
>   rust: alloc: add Vec::resize method
>   gpu: nova-core: remove completed Vec extentions from task list

Thanks for picking this up!

Once ready, I will pick up the first two patches for alloc-next and take the
third one through the nova tree.

But you can keep them in the same series for subsequent submissions.

- Danilo