Re: [Qemu-devel] [PATCH] linux-user: add memfd_create

2019-09-10 Thread Laurent Vivier
Le 16/08/2019 à 23:10, Shu-Chun Weng via Qemu-devel a écrit : > Add support for the memfd_create syscall. If the host does not have the > libc wrapper, translate to a direct syscall with NC-macro. > > Buglink: https://bugs.launchpad.net/qemu/+bug/1734792 > Signed-off-by: Shu-Chun Weng > --- >

Re: [Qemu-devel] [PATCH] linux-user: add memfd_create

2019-08-23 Thread Laurent Vivier
Le 19/08/2019 à 13:56, Peter Maydell a écrit : > On Fri, 16 Aug 2019 at 22:28, Shu-Chun Weng via Qemu-devel > wrote: >> >> Add support for the memfd_create syscall. If the host does not have the >> libc wrapper, translate to a direct syscall with NC-macro. >> >> Buglink:

Re: [Qemu-devel] [PATCH] linux-user: add memfd_create

2019-08-19 Thread Peter Maydell
On Fri, 16 Aug 2019 at 22:28, Shu-Chun Weng via Qemu-devel wrote: > > Add support for the memfd_create syscall. If the host does not have the > libc wrapper, translate to a direct syscall with NC-macro. > > Buglink: https://bugs.launchpad.net/qemu/+bug/1734792 > Signed-off-by: Shu-Chun Weng >

Re: [Qemu-devel] [PATCH] linux-user: add memfd_create

2019-08-19 Thread Marc-André Lureau
On Sat, Aug 17, 2019 at 1:28 AM Shu-Chun Weng via Qemu-devel wrote: > > Add support for the memfd_create syscall. If the host does not have the > libc wrapper, translate to a direct syscall with NC-macro. > > Buglink: https://bugs.launchpad.net/qemu/+bug/1734792 > Signed-off-by: Shu-Chun Weng

Re: [Qemu-devel] [PATCH] linux-user: add memfd_create

2019-08-18 Thread Philippe Mathieu-Daudé
Cc'ing Marc-André On 8/16/19 11:10 PM, Shu-Chun Weng via Qemu-devel wrote: > Add support for the memfd_create syscall. If the host does not have the > libc wrapper, translate to a direct syscall with NC-macro. > > Buglink: https://bugs.launchpad.net/qemu/+bug/1734792 > Signed-off-by: Shu-Chun

[Qemu-devel] [PATCH] linux-user: add memfd_create

2019-08-16 Thread Shu-Chun Weng via Qemu-devel
Add support for the memfd_create syscall. If the host does not have the libc wrapper, translate to a direct syscall with NC-macro. Buglink: https://bugs.launchpad.net/qemu/+bug/1734792 Signed-off-by: Shu-Chun Weng --- include/qemu/memfd.h | 4 linux-user/syscall.c | 11 +++