Re: [PATCH v5 16/23] bsd-user: Implment madvise(2) to match the linux-user implementation.

2023-09-17 Thread Warner Losh
On Thu, Sep 14, 2023 at 9:42 PM Karim Taha wrote: > Signed-off-by: Karim Taha > Reviewed-by: Richard Henderson > --- > bsd-user/bsd-mem.h| 53 +++ > bsd-user/freebsd/os-syscall.c | 4 +++ > bsd-user/syscall_defs.h | 2 ++ > 3 files changed, 5

[PATCH v5 16/23] bsd-user: Implment madvise(2) to match the linux-user implementation.

2023-09-14 Thread Karim Taha
Signed-off-by: Karim Taha Reviewed-by: Richard Henderson --- bsd-user/bsd-mem.h| 53 +++ bsd-user/freebsd/os-syscall.c | 4 +++ bsd-user/syscall_defs.h | 2 ++ 3 files changed, 59 insertions(+) diff --git a/bsd-user/bsd-mem.h b/bsd-user/bsd-me