Re: [PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch

2021-10-28 Thread Warner Losh
On Thu, Oct 28, 2021 at 9:35 AM Richard Henderson < richard.hender...@linaro.org> wrote: > On 10/19/21 9:44 AM, Warner Losh wrote: > > +env->eabi = 1; /* FreeBSD is eabi only now */ > > Surely this should be set target_cpu_init. Even then it'd be just for > completeness. This >

Re: [PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch

2021-10-28 Thread Richard Henderson
On 10/19/21 9:44 AM, Warner Losh wrote: +env->eabi = 1; /* FreeBSD is eabi only now */ Surely this should be set target_cpu_init. Even then it'd be just for completeness. This is the kind of thing that shouldn't have escaped linux-user, as it's otherwise unused. Otherwise,

Re: [PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch

2021-10-23 Thread Warner Losh
On Sat, Oct 23, 2021 at 1:34 AM Kyle Evans wrote: > On Tue, Oct 19, 2021 at 11:45 AM Warner Losh wrote: > > > > Implement the system call dispatch. This implements all three kinds of > > system call: direct and the two indirect variants. It handles all the > > special cases for thumb as well. >

Re: [PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch

2021-10-23 Thread Kyle Evans
On Tue, Oct 19, 2021 at 11:45 AM Warner Losh wrote: > > Implement the system call dispatch. This implements all three kinds of > system call: direct and the two indirect variants. It handles all the > special cases for thumb as well. > > Signed-off-by: Stacey Son > Signed-off-by: Klye Evans >

[PATCH 09/24] bsd-user/arm/target_arch_cpu.h: Implement system call dispatch

2021-10-19 Thread Warner Losh
Implement the system call dispatch. This implements all three kinds of system call: direct and the two indirect variants. It handles all the special cases for thumb as well. Signed-off-by: Stacey Son Signed-off-by: Klye Evans Signed-off-by: Warner Losh --- bsd-user/arm/target_arch_cpu.h | 95