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

2019-09-10 Thread Laurent Vivier
On 19/08/2019 20:09, Shu-Chun Weng 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 > --- > include/qemu/memfd.h |

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

2019-08-23 Thread Laurent Vivier
Le 19/08/2019 à 20:09, 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 > --- Plea

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

2019-08-19 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 | 12 util/m