mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-21 06:46:13 +00:00
tests/gem_exec_parse: use gem_uses_aliasing_ppgtt
Suggested by Brad Volking. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
d078035ca4
commit
80a4a4fd43
@ -198,7 +198,7 @@ int fd;
|
||||
igt_main
|
||||
{
|
||||
igt_fixture {
|
||||
int parser_version = 0, has_ppgtt = 0;
|
||||
int parser_version = 0;
|
||||
drm_i915_getparam_t gp;
|
||||
int rc;
|
||||
|
||||
@ -209,10 +209,7 @@ igt_main
|
||||
rc = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
|
||||
igt_require(!rc && parser_version > 0);
|
||||
|
||||
gp.param = I915_PARAM_HAS_ALIASING_PPGTT;
|
||||
gp.value = &has_ppgtt;
|
||||
rc = drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp);
|
||||
igt_require(!rc && has_ppgtt > 0);
|
||||
igt_require(gem_uses_aliasing_ppgtt(fd));
|
||||
|
||||
handle = gem_create(fd, 4096);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user