Re: [PATCH v3] linux-user: syscall: ioctls: support DRM_IOCTL_VERSION

2020-05-30 Thread Chen Gang
On 2020/5/28 下午6:25, Laurent Vivier wrote: >> diff --git a/configure b/configure >> index e225a1e3ff..2c2c489d1e 100755 >> --- a/configure >> +++ b/configure >> @@ -3912,6 +3912,24 @@ EOF >> fi >> fi >> >> +# >> +# libdrm check >> + >> +cat > $TMPC <<

Re: [PATCH v3] linux-user: syscall: ioctls: support DRM_IOCTL_VERSION

2020-05-28 Thread Laurent Vivier
Le 23/05/2020 à 15:24, cheng...@emindsoft.com.cn a écrit : > From: Chen Gang > > Another DRM_IOCTL_* commands will be done later. > > Signed-off-by: Chen Gang > --- > configure | 18 +++ > linux-user/ioctls.h| 3 ++ > linux-user/syscall.c | 61 ++

Re: [PATCH v3] linux-user: syscall: ioctls: support DRM_IOCTL_VERSION

2020-05-23 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200523132442.22538-1-cheng...@emindsoft.com.cn/ Hi, This series failed the docker-mingw@fedora build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEG

[PATCH v3] linux-user: syscall: ioctls: support DRM_IOCTL_VERSION

2020-05-23 Thread chengang
From: Chen Gang Another DRM_IOCTL_* commands will be done later. Signed-off-by: Chen Gang --- configure | 18 +++ linux-user/ioctls.h| 3 ++ linux-user/syscall.c | 61 ++ linux-user/syscall_defs.h | 15 ++ lin