Re: [PATCH v4 1/8] mm/util: Introduce kmemdup_array() to duplicate an array

2023-10-11 Thread Kartik
On Wed, 2023-10-11 at 18:36:11 +0300, Andy Shevchenko wrote: > On Wed, Oct 11, 2023 at 2:17 PM Kartik wrote: > > > > Introduce function kmemdup_array(), that will copy `n` number of > > elements from a given array `src` to `dst`. > > > > On success, kmemdup_array() returns 0 and copy the elements

Re: [PATCH v4 1/8] mm/util: Introduce kmemdup_array() to duplicate an array

2023-10-11 Thread Andy Shevchenko
On Wed, Oct 11, 2023 at 2:17 PM Kartik wrote: > > Introduce function kmemdup_array(), that will copy `n` number of > elements from a given array `src` to `dst`. > > On success, kmemdup_array() returns 0 and copy the elements from `src` > to newly allocated array `dst`, it also stores number of ele

[PATCH v4 1/8] mm/util: Introduce kmemdup_array() to duplicate an array

2023-10-11 Thread Kartik
Introduce function kmemdup_array(), that will copy `n` number of elements from a given array `src` to `dst`. On success, kmemdup_array() returns 0 and copy the elements from `src` to newly allocated array `dst`, it also stores number of elements copied from `src` array to `dst_count` parameter. On