* [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6
2017-01-16 22:44 [Qemu-devel] linux-user: Update sh4 syscall definitions to match Linux 4.8 John Paul Adrian Glaubitz
@ 2017-01-16 22:44 ` John Paul Adrian Glaubitz
2017-01-16 22:47 ` John Paul Adrian Glaubitz
0 siblings, 1 reply; 5+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-01-16 22:44 UTC (permalink / raw)
To: qemu-devel; +Cc: laurent, John Paul Adrian Glaubitz
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
---
linux-user/m68k/syscall_nr.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/linux-user/m68k/syscall_nr.h b/linux-user/m68k/syscall_nr.h
index 4b50fb29b6..4e9e6ebeac 100644
--- a/linux-user/m68k/syscall_nr.h
+++ b/linux-user/m68k/syscall_nr.h
@@ -376,3 +376,6 @@
#define TARGET_NR_userfaultfd 373
#define TARGET_NR_membarrier 374
#define TARGET_NR_mlock2 375
+#define TARGET_NR_file_range 376
+#define TARGET_NR_preadv2 377
+#define TARGET_NR_pwritev2 378
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6
2017-01-16 22:44 ` [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6 John Paul Adrian Glaubitz
@ 2017-01-16 22:47 ` John Paul Adrian Glaubitz
0 siblings, 0 replies; 5+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-01-16 22:47 UTC (permalink / raw)
To: qemu-devel; +Cc: laurent
On 01/16/2017 11:44 PM, John Paul Adrian Glaubitz wrote:
> +#define TARGET_NR_file_range 376
> +#define TARGET_NR_preadv2 377
> +#define TARGET_NR_pwritev2 378
Oops, there's a copy-and-paste error. This should be
TARGET_NR_copy_file_range. Will update in a second.
--
.''`. John Paul Adrian Glaubitz
: :' : Debian Developer - glaubitz@debian.org
`. `' Freie Universitaet Berlin - glaubitz@physik.fu-berlin.de
`- GPG: 62FF 8A75 84E0 2956 9546 0006 7426 3B37 F5B5 F913
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH v2] linux-user: Update m68k syscall definitions to match Linux
@ 2017-01-16 22:49 John Paul Adrian Glaubitz
2017-01-16 22:49 ` [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6 John Paul Adrian Glaubitz
0 siblings, 1 reply; 5+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-01-16 22:49 UTC (permalink / raw)
To: qemu-devel; +Cc: laurent
Fixed a copy-and-paste error: s/file_range/copy_file_range/.
Cheers,
Adrian
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6
2017-01-16 22:49 [Qemu-devel] [PATCH v2] linux-user: Update m68k syscall definitions to match Linux John Paul Adrian Glaubitz
@ 2017-01-16 22:49 ` John Paul Adrian Glaubitz
2017-01-16 22:52 ` Laurent Vivier
0 siblings, 1 reply; 5+ messages in thread
From: John Paul Adrian Glaubitz @ 2017-01-16 22:49 UTC (permalink / raw)
To: qemu-devel; +Cc: laurent, John Paul Adrian Glaubitz
Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
---
linux-user/m68k/syscall_nr.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/linux-user/m68k/syscall_nr.h b/linux-user/m68k/syscall_nr.h
index 4b50fb29b6..d239551b34 100644
--- a/linux-user/m68k/syscall_nr.h
+++ b/linux-user/m68k/syscall_nr.h
@@ -376,3 +376,6 @@
#define TARGET_NR_userfaultfd 373
#define TARGET_NR_membarrier 374
#define TARGET_NR_mlock2 375
+#define TARGET_NR_copy_file_range 376
+#define TARGET_NR_preadv2 377
+#define TARGET_NR_pwritev2 378
--
2.11.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6
2017-01-16 22:49 ` [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6 John Paul Adrian Glaubitz
@ 2017-01-16 22:52 ` Laurent Vivier
0 siblings, 0 replies; 5+ messages in thread
From: Laurent Vivier @ 2017-01-16 22:52 UTC (permalink / raw)
To: John Paul Adrian Glaubitz, qemu-devel
Le 16/01/2017 à 23:49, John Paul Adrian Glaubitz a écrit :
> Signed-off-by: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
> ---
> linux-user/m68k/syscall_nr.h | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/linux-user/m68k/syscall_nr.h b/linux-user/m68k/syscall_nr.h
> index 4b50fb29b6..d239551b34 100644
> --- a/linux-user/m68k/syscall_nr.h
> +++ b/linux-user/m68k/syscall_nr.h
> @@ -376,3 +376,6 @@
> #define TARGET_NR_userfaultfd 373
> #define TARGET_NR_membarrier 374
> #define TARGET_NR_mlock2 375
> +#define TARGET_NR_copy_file_range 376
> +#define TARGET_NR_preadv2 377
> +#define TARGET_NR_pwritev2 378
>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-01-16 22:52 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-16 22:49 [Qemu-devel] [PATCH v2] linux-user: Update m68k syscall definitions to match Linux John Paul Adrian Glaubitz
2017-01-16 22:49 ` [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6 John Paul Adrian Glaubitz
2017-01-16 22:52 ` Laurent Vivier
-- strict thread matches above, loose matches on Subject: below --
2017-01-16 22:44 [Qemu-devel] linux-user: Update sh4 syscall definitions to match Linux 4.8 John Paul Adrian Glaubitz
2017-01-16 22:44 ` [Qemu-devel] [PATCH] linux-user: Update m68k syscall definitions to match Linux 4.6 John Paul Adrian Glaubitz
2017-01-16 22:47 ` John Paul Adrian Glaubitz
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).