Re: [PATCH v2] linux-user: fix socket() strace

2020-03-13 Thread Laurent Vivier
Le 12/03/2020 à 17:55, Laurent Vivier a écrit : > print_socket_type() doesn't manage flags and the correct type cannot > be displayed > > Signed-off-by: Laurent Vivier > --- > > Notes: > v2: replace gemu_log() by qemu_log() as it has been removed from qemu > > linux-user/strace.c | 8 +

Re: [PATCH v2] linux-user: fix socket() strace

2020-03-12 Thread Philippe Mathieu-Daudé
On 3/12/20 5:55 PM, Laurent Vivier wrote: print_socket_type() doesn't manage flags and the correct type cannot be displayed Signed-off-by: Laurent Vivier --- Notes: v2: replace gemu_log() by qemu_log() as it has been removed from qemu linux-user/strace.c | 8 +++- 1 file changed,

[PATCH v2] linux-user: fix socket() strace

2020-03-12 Thread Laurent Vivier
print_socket_type() doesn't manage flags and the correct type cannot be displayed Signed-off-by: Laurent Vivier --- Notes: v2: replace gemu_log() by qemu_log() as it has been removed from qemu linux-user/strace.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/li