Re: [PATCH] kernel/groups.c: use bsearch library function

2019-10-09 Thread Thomas Meyer
Rasmus Villemoes writes: > On 07/10/2019 21.26, Thomas Meyer wrote: >> commit b7b2562f7252 ("kernel/groups.c: use sort library function") >> introduced the sort library function. >> also use the bsearch library function instead of open-coding the binary >> search. Hi, > Yes, but please note

Re: [PATCH] kernel/groups.c: use bsearch library function

2019-10-09 Thread Rasmus Villemoes
On 07/10/2019 21.26, Thomas Meyer wrote: > commit b7b2562f7252 ("kernel/groups.c: use sort library function") > introduced the sort library function. > also use the bsearch library function instead of open-coding the binary > search. Yes, but please note the difference between sorting the

[PATCH] kernel/groups.c: use bsearch library function

2019-10-07 Thread Thomas Meyer
commit b7b2562f7252 ("kernel/groups.c: use sort library function") introduced the sort library function. also use the bsearch library function instead of open-coding the binary search. Signed-off-by: Thomas Meyer --- kernel/groups.c | 17 - 1 file changed, 4 insertions(+), 13