__drm_open_driver was changed to bail out on VGEM devices unless they are explicitly asked for (DRIVER_VGEM). But with that change we lost support for DRIVER_ANY. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@xxxxxxxxxxxxx> Fixes: 7ce63894854d ("lib: Support opening vGEM device") Cc: Chris Wilson <chris@xxxxxxxxxxxxxxxxxx> --- lib/drmtest.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/drmtest.c b/lib/drmtest.c index 5d3aaa836735..786ffa1b1fae 100644 --- a/lib/drmtest.c +++ b/lib/drmtest.c @@ -269,6 +269,10 @@ int __drm_open_driver(int chipset) is_virtio_device(fd)) return fd; + /* Only VGEM-specific tests should be run on VGEM */ + if (chipset & DRIVER_ANY && !is_vgem_device(fd)) + return fd; + close(fd); } -- 2.7.4 _______________________________________________ Intel-gfx mailing list Intel-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/intel-gfx