[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v6 7/7] linux-user: Add missing Mips syscalls it
From: |
Laurent Vivier |
Subject: |
Re: [Qemu-devel] [PATCH v6 7/7] linux-user: Add missing Mips syscalls items in strace.list |
Date: |
Fri, 16 Sep 2016 21:35:55 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 |
Le 16/09/2016 à 13:14, Aleksandar Markovic a écrit :
> From: Aleksandar Markovic <address@hidden>
>
> Without this patch, a number of Mips syscalls will be logged in the following
> way (in this examople, this is an invocation of accept4()):
>
> 86906 Unknown syscall 4334
>
> This patch provides standard Qemu's strace output for such cases, like this:
>
> 95861 accept4(3,1996486000,1996486016,128,0,0) = 5
>
> Such output may be further improvad by providing strace-related functions
> that handle only particular syscalls, but this is beyond the scope of
> this patch.
>
> Signed-off-by: Aleksandar Markovic <address@hidden>
> ---
> linux-user/strace.list | 114
> +++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 114 insertions(+)
Nice work, we should update strace.list each time we add a syscall (and
personally I don't, it's bad).
How did you choose the list of syscalls to add in this list as some of
them are not implemented in syscall.c?
[for instance "kcmp", I have the patch for it but I don't think I've
already sent it]
Laurent
- Re: [Qemu-devel] [PATCH v6 3/7] linux-user: Fix structure target_flock definition for Mips, (continued)