Re: [PATCH v3 1/2] linux-user: fix sockaddr_in6 endianness

2023-03-07 Thread Philippe Mathieu-Daudé
On 7/3/23 16:42, Mathis Marion wrote: From: Mathis Marion The sin6_scope_id field uses 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 | 5 + 1 file changed, 5 insertions(+) Reviewe

Re: [PATCH v3 1/2] linux-user: fix sockaddr_in6 endianness

2023-03-07 Thread Laurent Vivier
Le 07/03/2023 à 16:42, Mathis Marion a écrit : From: Mathis Marion The sin6_scope_id field uses 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 | 5 + 1 file changed, 5 insertions(+)

Re: [PATCH v3 1/2] linux-user: fix sockaddr_in6 endianness

2023-03-07 Thread Laurent Vivier
Le 07/03/2023 à 16:42, Mathis Marion a écrit : From: Mathis Marion The sin6_scope_id field uses 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 | 5 + 1 file changed, 5 insertions(+)

[PATCH v3 1/2] linux-user: fix sockaddr_in6 endianness

2023-03-07 Thread Mathis Marion
From: Mathis Marion The sin6_scope_id field uses 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 | 5 + 1 file changed, 5 insertions(+) diff --git a/linux-user/syscall.c b/linux-user/sys