提交 eee73b46 编写于 作者: C Chris Wilson 提交者: Jani Nikula

drm/i95: Initialize active ring->pid to -1

Otherwise we print out spurious processes on unused rings in the error
state.
Signed-off-by: NChris Wilson <chris@chris-wilson.co.uk>
Cc: stable@vger.kernel.org
Reviewed-by: NDaniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: NJani Nikula <jani.nikula@intel.com>
上级 2e7eeeb5
...@@ -888,6 +888,8 @@ static void i915_gem_record_rings(struct drm_device *dev, ...@@ -888,6 +888,8 @@ static void i915_gem_record_rings(struct drm_device *dev,
for (i = 0; i < I915_NUM_RINGS; i++) { for (i = 0; i < I915_NUM_RINGS; i++) {
struct intel_engine_cs *ring = &dev_priv->ring[i]; struct intel_engine_cs *ring = &dev_priv->ring[i];
error->ring[i].pid = -1;
if (ring->dev == NULL) if (ring->dev == NULL)
continue; continue;
...@@ -895,7 +897,6 @@ static void i915_gem_record_rings(struct drm_device *dev, ...@@ -895,7 +897,6 @@ static void i915_gem_record_rings(struct drm_device *dev,
i915_record_ring_state(dev, ring, &error->ring[i]); i915_record_ring_state(dev, ring, &error->ring[i]);
error->ring[i].pid = -1;
request = i915_gem_find_active_request(ring); request = i915_gem_find_active_request(ring);
if (request) { if (request) {
/* We need to copy these to an anonymous buffer /* We need to copy these to an anonymous buffer
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册