intel/aub_dump: stub the waits when overriding the device

We don't actually want to wait on anything, just complete submitting
the commands as fast as possible.

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Rafael Antognolli <rafael.antognolli@intel.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3705>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3705>
This commit is contained in:
Lionel Landwerlin 2019-10-18 14:40:42 +03:00
parent 31461e2379
commit d4e7a11bc3

View file

@ -448,6 +448,25 @@ ioctl(int fd, unsigned long request, ...)
maybe_init(fd);
switch (request) {
case DRM_IOCTL_SYNCOBJ_WAIT:
case DRM_IOCTL_I915_GEM_WAIT: {
if (device_override)
return 0;
return libc_ioctl(fd, request, argp);
}
case DRM_IOCTL_I915_GET_RESET_STATS: {
if (device_override) {
struct drm_i915_reset_stats *stats = argp;
stats->reset_count = 0;
stats->batch_active = 0;
stats->batch_pending = 0;
return 0;
}
return libc_ioctl(fd, request, argp);
}
case DRM_IOCTL_I915_GETPARAM: {
struct drm_i915_getparam *getparam = argp;
return get_pci_id(fd, getparam->value);