qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* Re: [Qemu-devel] [PATCH 1/2] linux-user,i386: synchronize syscall_nr.h with kernel include/uapi/asm/unistd_32.h
       [not found] <1454975361-27298-1-git-send-email-laurent@vivier.eu>
@ 2016-02-15 12:46 ` Riku Voipio
  2016-02-15 13:19   ` [Qemu-devel] [PATCH 1/2] linux-user, i386: " Laurent Vivier
  0 siblings, 1 reply; 2+ messages in thread
From: Riku Voipio @ 2016-02-15 12:46 UTC (permalink / raw)
  To: Laurent Vivier; +Cc: qemu-devel

On tiistaina 9. helmikuuta 2016 1.49.20 EET, Laurent Vivier wrote:
> From kernel v4.4

Thanks. However, while checking throught the syscalls, I'm now opting
to update syscall numbers for all archs at once.

Riku

> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
> ---
>  linux-user/i386/syscall_nr.h | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/linux-user/i386/syscall_nr.h b/linux-user/i386/syscall_nr.h
> index c8f7302..1bdb2d2 100644
> --- a/linux-user/i386/syscall_nr.h
> +++ b/linux-user/i386/syscall_nr.h
> @@ -353,3 +353,29 @@
>  #define TARGET_NR_process_vm_writev     348
>  #define TARGET_NR_kcmp                  349
>  #define TARGET_NR_finit_module          350
> +#define TARGET_NR_sched_setattr         351
> +#define TARGET_NR_sched_getattr         352
> +#define TARGET_NR_renameat2             353
> +#define TARGET_NR_seccomp               354
> +#define TARGET_NR_getrandom             355
> +#define TARGET_NR_memfd_create          356
> +#define TARGET_NR_bpf                   357
> +#define TARGET_NR_execveat              358
> +#define TARGET_NR_socket                359
> +#define TARGET_NR_socketpair            360
> +#define TARGET_NR_bind                  361
> +#define TARGET_NR_connect               362
> +#define TARGET_NR_listen                363
> +#define TARGET_NR_accept4               364
> +#define TARGET_NR_getsockopt            365
> +#define TARGET_NR_setsockopt            366
> +#define TARGET_NR_getsockname           367
> +#define TARGET_NR_getpeername           368
> +#define TARGET_NR_sendto                369
> +#define TARGET_NR_sendmsg               370
> +#define TARGET_NR_recvfrom              371
> +#define TARGET_NR_recvmsg               372
> +#define TARGET_NR_shutdown              373
> +#define TARGET_NR_userfaultfd           374
> +#define TARGET_NR_membarrier            375
> +#define TARGET_NR_mlock2                376

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Qemu-devel] [PATCH 1/2] linux-user, i386: synchronize syscall_nr.h with kernel include/uapi/asm/unistd_32.h
  2016-02-15 12:46 ` [Qemu-devel] [PATCH 1/2] linux-user,i386: synchronize syscall_nr.h with kernel include/uapi/asm/unistd_32.h Riku Voipio
@ 2016-02-15 13:19   ` Laurent Vivier
  0 siblings, 0 replies; 2+ messages in thread
From: Laurent Vivier @ 2016-02-15 13:19 UTC (permalink / raw)
  To: Riku Voipio; +Cc: qemu-devel



Le 15/02/2016 13:46, Riku Voipio a écrit :
> On tiistaina 9. helmikuuta 2016 1.49.20 EET, Laurent Vivier wrote:
>> From kernel v4.4
> 
> Thanks. However, while checking throught the syscalls, I'm now opting
> to update syscall numbers for all archs at once.

OK. No problem.

Check that the ppc one change "TARGET_NR_timerfd" to
"TARGET_NR_timerfd_create", please.

Thanks,
Laurent
> Riku
> 
>> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
>> ---
>>  linux-user/i386/syscall_nr.h | 26 ++++++++++++++++++++++++++
>>  1 file changed, 26 insertions(+)
>>
>> diff --git a/linux-user/i386/syscall_nr.h b/linux-user/i386/syscall_nr.h
>> index c8f7302..1bdb2d2 100644
>> --- a/linux-user/i386/syscall_nr.h
>> +++ b/linux-user/i386/syscall_nr.h
>> @@ -353,3 +353,29 @@
>>  #define TARGET_NR_process_vm_writev     348
>>  #define TARGET_NR_kcmp                  349
>>  #define TARGET_NR_finit_module          350
>> +#define TARGET_NR_sched_setattr         351
>> +#define TARGET_NR_sched_getattr         352
>> +#define TARGET_NR_renameat2             353
>> +#define TARGET_NR_seccomp               354
>> +#define TARGET_NR_getrandom             355
>> +#define TARGET_NR_memfd_create          356
>> +#define TARGET_NR_bpf                   357
>> +#define TARGET_NR_execveat              358
>> +#define TARGET_NR_socket                359
>> +#define TARGET_NR_socketpair            360
>> +#define TARGET_NR_bind                  361
>> +#define TARGET_NR_connect               362
>> +#define TARGET_NR_listen                363
>> +#define TARGET_NR_accept4               364
>> +#define TARGET_NR_getsockopt            365
>> +#define TARGET_NR_setsockopt            366
>> +#define TARGET_NR_getsockname           367
>> +#define TARGET_NR_getpeername           368
>> +#define TARGET_NR_sendto                369
>> +#define TARGET_NR_sendmsg               370
>> +#define TARGET_NR_recvfrom              371
>> +#define TARGET_NR_recvmsg               372
>> +#define TARGET_NR_shutdown              373
>> +#define TARGET_NR_userfaultfd           374
>> +#define TARGET_NR_membarrier            375
>> +#define TARGET_NR_mlock2                376
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-02-15 13:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1454975361-27298-1-git-send-email-laurent@vivier.eu>
2016-02-15 12:46 ` [Qemu-devel] [PATCH 1/2] linux-user,i386: synchronize syscall_nr.h with kernel include/uapi/asm/unistd_32.h Riku Voipio
2016-02-15 13:19   ` [Qemu-devel] [PATCH 1/2] linux-user, i386: " Laurent Vivier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).