]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
drm/i915/selftests: Only switch to kernel context when locked
authorChris Wilson <chris@chris-wilson.co.uk>
Wed, 9 May 2018 06:59:26 +0000 (07:59 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 9 May 2018 08:28:45 +0000 (09:28 +0100)
In igt_flush_test() we try to switch back to the kernel context, but we
are only able to do so when we are called with struct_mutex held.

More of my CI fallout from lockdep being temporarily suppressed :(

Fixes: 4cdf65ce8cc2 ("drm/i915/selftests: Return to kernel context after each test")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180509065926.19207-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/selftests/igt_flush_test.c

index 7f35bddc2e9522ca8cb70a80374df8dc65f4baf9..0d06f559243f9e7c462fe557a0fdd7ce11f88240 100644 (file)
@@ -57,7 +57,8 @@ int igt_flush_test(struct drm_i915_private *i915, unsigned int flags)
 
        cond_resched();
 
-       if (i915_gem_switch_to_kernel_context(i915)) {
+       if (flags & I915_WAIT_LOCKED &&
+           i915_gem_switch_to_kernel_context(i915)) {
                pr_err("Failed to switch back to kernel context; declaring wedged\n");
                i915_gem_set_wedged(i915);
        }