Re: [PATCH v2] linux-user: Fix SO_ERROR return code of getsockopt()

2023-01-30 Thread Laurent Vivier
Le 27/01/2023 à 21:25, Helge Deller a écrit : Add translation for the host error return code of: getsockopt(19, SOL_SOCKET, SO_ERROR, [ECONNREFUSED], [4]) = 0 This fixes the testsuite of the cockpit debian package with a hppa-linux guest on a x86-64 host. Signed-off-by: Helge Deller ---

Re: [PATCH v2] linux-user: Fix SO_ERROR return code of getsockopt()

2023-01-30 Thread Laurent Vivier
Le 27/01/2023 à 21:25, Helge Deller a écrit : Add translation for the host error return code of: getsockopt(19, SOL_SOCKET, SO_ERROR, [ECONNREFUSED], [4]) = 0 This fixes the testsuite of the cockpit debian package with a hppa-linux guest on a x86-64 host. Signed-off-by: Helge Deller ---

Re: [PATCH v2] linux-user: Fix SO_ERROR return code of getsockopt()

2023-01-27 Thread Richard Henderson
On 1/27/23 10:25, Helge Deller wrote: Add translation for the host error return code of: getsockopt(19, SOL_SOCKET, SO_ERROR, [ECONNREFUSED], [4]) = 0 This fixes the testsuite of the cockpit debian package with a hppa-linux guest on a x86-64 host. Signed-off-by: Helge Deller ---

[PATCH v2] linux-user: Fix SO_ERROR return code of getsockopt()

2023-01-27 Thread Helge Deller
Add translation for the host error return code of: getsockopt(19, SOL_SOCKET, SO_ERROR, [ECONNREFUSED], [4]) = 0 This fixes the testsuite of the cockpit debian package with a hppa-linux guest on a x86-64 host. Signed-off-by: Helge Deller --- v2: Fix indenting to make checkscript.sh happy