Re: [PATCH] lib/sort: Add the sort_r() variant

2019-06-17 Thread Boris Brezillon
Hello Rasmus, On Fri, 24 May 2019 17:09:37 +0200 Boris Brezillon wrote: > Hello Rasmus, > > On Thu, 23 May 2019 22:04:35 +0200 > Rasmus Villemoes wrote: > > > On 22/05/2019 13.25, Boris Brezillon wrote: > > > Some users might need extra context to compare 2 elements. This patch > > > adds t

Re: [PATCH] lib/sort: Add the sort_r() variant

2019-05-24 Thread Boris Brezillon
Hello Rasmus, On Thu, 23 May 2019 22:04:35 +0200 Rasmus Villemoes wrote: > On 22/05/2019 13.25, Boris Brezillon wrote: > > Some users might need extra context to compare 2 elements. This patch > > adds the sort_r() which is similar to the qsort_r() variant of qsort(). > > > > Signed-off-by: Bor

Re: [PATCH] lib/sort: Add the sort_r() variant

2019-05-23 Thread Rasmus Villemoes
On 22/05/2019 13.25, Boris Brezillon wrote: > Some users might need extra context to compare 2 elements. This patch > adds the sort_r() which is similar to the qsort_r() variant of qsort(). > > Signed-off-by: Boris Brezillon > --- > Hello, > > A few more details about this patch. > > Even thoug

Re: [PATCH] lib/sort: Add the sort_r() variant

2019-05-23 Thread Boris Brezillon
Hi Andrew, On Wed, 22 May 2019 11:33:15 -0700 Andrew Morton wrote: > On Wed, 22 May 2019 13:25:50 +0200 Boris Brezillon > wrote: > > > Some users might need extra context to compare 2 elements. This patch > > adds the sort_r() which is similar to the qsort_r() variant of qsort(). > > > > Sig

Re: [PATCH] lib/sort: Add the sort_r() variant

2019-05-22 Thread Andrew Morton
On Wed, 22 May 2019 13:25:50 +0200 Boris Brezillon wrote: > Some users might need extra context to compare 2 elements. This patch > adds the sort_r() which is similar to the qsort_r() variant of qsort(). > > Signed-off-by: Boris Brezillon > --- > Hello, > > A few more details about this patch