Re: [PATCH 12/22] Implement mmap(2) and munmap(2)

2023-08-20 Thread Richard Henderson
On 8/19/23 02:47, Karim Taha wrote: +case TARGET_FREEBSD_NR_mmap: /* mmap(2) */ +ret = do_bsd_mmap(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6, arg7, + arg8); Indentation. Align after (. Reviewed-by: Richard Henderson r~

Re: [PATCH 12/22] Implement mmap(2) and munmap(2)

2023-08-19 Thread Warner Losh
On Sat, Aug 19, 2023 at 3:49 AM Karim Taha wrote: > From: Stacey Son > > Signed-off-by: Stacey Son > Signed-off-by: Karim Taha > --- > bsd-user/bsd-mem.h| 20 > bsd-user/freebsd/os-syscall.c | 9 + > 2 files changed, 29 insertions(+) > Reviewed-by: W

[PATCH 12/22] Implement mmap(2) and munmap(2)

2023-08-19 Thread Karim Taha
From: Stacey Son Signed-off-by: Stacey Son Signed-off-by: Karim Taha --- bsd-user/bsd-mem.h| 20 bsd-user/freebsd/os-syscall.c | 9 + 2 files changed, 29 insertions(+) diff --git a/bsd-user/bsd-mem.h b/bsd-user/bsd-mem.h index fed7b7cd80..057c995a6e 1