summaryrefslogtreecommitdiff
path: root/lib/drmtest.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2015-01-19 09:42:25 +0000
committerChris Wilson <chris@chris-wilson.co.uk>2015-01-19 09:47:03 +0000
commita29f28eba975388aed43c83dd6ed3ec2a869f4ce (patch)
tree7a12b748ebf87d4028a78951af52a391eea749c7 /lib/drmtest.c
parent20d6e0f41b3b70a89946e5271bc4ffa7695be1b0 (diff)
igt/drv_module_reload: Check more carefully for a live driver
As drm_open_any() now quietly fails if there is no driver, this nullifies the effectiviness of using gem_exec_nop as the test for a good reload. Combine with gem_alive (and guarantee that gem_alive can detect a dead driver, putting lie to commit 032f30cb38bb03562ee7fde19cd278b1d8ac31a9 Author: Thomas Wood <thomas.wood@intel.com> Date: Tue Jan 13 13:33:57 2015 +0000 lib: remove unnecessary checks on the drm_open_any return value ) first. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88573 Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'lib/drmtest.c')
-rw-r--r--lib/drmtest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/drmtest.c b/lib/drmtest.c
index 133a1537..7cdef366 100644
--- a/lib/drmtest.c
+++ b/lib/drmtest.c
@@ -224,7 +224,7 @@ int drm_get_card(void)
}
/** Open the first DRM device we can find, searching up to 16 device nodes */
-static int __drm_open_any(void)
+int __drm_open_any(void)
{
for (int i = 0; i < 16; i++) {
char name[80];