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

2023-03-07 Thread Laurent Vivier
Le 07/03/2023 à 12:27, Mathis MARION a écrit : On 06/03/2023 22:52, Laurent Vivier wrote: CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. Le 20/02/2023 à 09:58, Mathis Mario

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

2023-03-07 Thread Mathis MARION
On 06/03/2023 22:52, Laurent Vivier wrote: CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. Le 20/02/2023 à 09:58, Mathis Marion a écrit : From: Mathis Marion Fields sin6

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

2023-03-06 Thread Laurent Vivier
Le 20/02/2023 à 09:58, Mathis Marion a écrit : 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

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

2023-02-20 Thread Mathis MARION
On 20/02/2023 10:06, Philippe Mathieu-Daudé wrote: CAUTION: This email originated from outside of the organization. Do not click links or open attachments unless you recognize the sender and know the content is safe. On 20/2/23 09:58, Mathis Marion wrote: From: Mathis Marion Fields sin6

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

2023-02-20 Thread Philippe Mathieu-Daudé
On 20/2/23 10:09, Mathis MARION wrote: On 20/02/2023 10:06, Philippe Mathieu-Daudé wrote: >> On 20/2/23 09:58, 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.

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

2023-02-20 Thread Philippe Mathieu-Daudé
On 20/2/23 09:58, 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 v2 2/4] linux-user: fix sockaddr_in6 endianness

2023-02-20 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