Re: [PATCH v1 2/4] linux-user: fix sockaddr_in6 endianness

2023-02-17 Thread Philippe Mathieu-Daudé
On 17/2/23 17:35, Mathis Marion wrote: From: Mathis Marion Fields sin6_flowinfo and sin6_scope_id use the host byte order, so there is a conversion to be made when host and target endianness differ. Signed-off-by: Mathis Marion --- linux-user/syscall.c | 6 ++ 1 file changed, 6 inserti

[PATCH v1 2/4] linux-user: fix sockaddr_in6 endianness

2023-02-17 Thread Mathis Marion
From: Mathis Marion Fields sin6_flowinfo and sin6_scope_id use the host byte order, so there is a conversion to be made when host and target endianness differ. Signed-off-by: Mathis Marion --- linux-user/syscall.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/linux-user/syscall.c b