diff options
| author | Chen Gang <chengang@emindsoft.com.cn> | 2020-08-02 21:39:38 +0800 |
|---|---|---|
| committer | Laurent Vivier <laurent@vivier.eu> | 2020-08-27 12:29:49 +0200 |
| commit | 913b03c2640bcf62c978386aa69a8c6099fa9424 (patch) | |
| tree | 70a0d7d6c5deb2f786df6eb2cf867499853f3f91 /linux-user/syscall_types.h | |
| parent | b09d64064bd1ea5e5c37b2d5089e1cc3f65801b2 (diff) | |
| download | focaccia-qemu-913b03c2640bcf62c978386aa69a8c6099fa9424.tar.gz focaccia-qemu-913b03c2640bcf62c978386aa69a8c6099fa9424.zip | |
linux-user: syscall: ioctls: support DRM_IOCTL_I915_GETPARAM
Another DRM_IOCTL_I915 patches will be sent next. Signed-off-by: Chen Gang <chengang@emindsoft.com.cn> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Message-Id: <20200802133938.12055-1-chengang@emindsoft.com.cn> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/syscall_types.h')
| -rw-r--r-- | linux-user/syscall_types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/syscall_types.h b/linux-user/syscall_types.h index 3f1f033464..12bf3484e2 100644 --- a/linux-user/syscall_types.h +++ b/linux-user/syscall_types.h @@ -325,6 +325,10 @@ STRUCT(drm_version, TYPE_ULONG, /* desc_len */ TYPE_PTRVOID) /* desc */ +STRUCT(drm_i915_getparam, + TYPE_INT, /* param */ + TYPE_PTRVOID) /* value */ + STRUCT(file_clone_range, TYPE_LONGLONG, /* src_fd */ TYPE_ULONGLONG, /* src_offset */ |