Re: [PATCH 1/4] linux-user: Split out do_getdents, do_getdents64

2021-11-09 Thread Warner Losh
> On Nov 7, 2021, at 5:48 AM, Richard Henderson > wrote: > > Retain all 3 implementations of getdents for now. > > Signed-off-by: Richard Henderson > --- > linux-user/syscall.c | 325 +++ > 1 file changed, 172 insertions(+), 153 deletions(-) Reviewed b

Re: [PATCH 1/4] linux-user: Split out do_getdents, do_getdents64

2021-11-07 Thread Philippe Mathieu-Daudé
On 11/7/21 13:48, Richard Henderson wrote: > Retain all 3 implementations of getdents for now. > > Signed-off-by: Richard Henderson > --- > linux-user/syscall.c | 325 +++ > 1 file changed, 172 insertions(+), 153 deletions(-) Reviewed-by: Philippe Mathieu

[PATCH 1/4] linux-user: Split out do_getdents, do_getdents64

2021-11-07 Thread Richard Henderson
Retain all 3 implementations of getdents for now. Signed-off-by: Richard Henderson --- linux-user/syscall.c | 325 +++ 1 file changed, 172 insertions(+), 153 deletions(-) diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 544f5b662f..a2f605dec