drm/i915: Hold rpm wakeref for modifying the global seqno
authorChris Wilson <[email protected]>
Tue, 2 Jan 2018 15:12:31 +0000 (15:12 +0000)
committerChris Wilson <[email protected]>
Wed, 3 Jan 2018 11:42:33 +0000 (11:42 +0000)
To modify the global seqno may require rewriting a few registers, which
requires us to hold the rpm wakeref. We must therefore take it around
the call to i915_gem_set_global_seqno() in debugfs, on behalf of the
user.

Signed-off-by: Chris Wilson <[email protected]>
Reviewed-by: MichaƂ Winiarski <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
drivers/gpu/drm/i915/i915_debugfs.c

index d81cb2513069348f9858222b031673f1f0c2aea6..2bb63073d73fd25ccd41f48122dc8a2cdf22bd42 100644 (file)
@@ -988,7 +988,10 @@ i915_next_seqno_set(void *data, u64 val)
        if (ret)
                return ret;
 
+       intel_runtime_pm_get(dev_priv);
        ret = i915_gem_set_global_seqno(dev, val);
+       intel_runtime_pm_put(dev_priv);
+
        mutex_unlock(&dev->struct_mutex);
 
        return ret;