Skip to content

Commit

Permalink
drm/i915: Fix conflict resolution from backmerge of v4.8-rc8 to drm-next
Browse files Browse the repository at this point in the history
The conflict resolution of v4.8-rc8 backmerge to drm-next pulled back in
a few lines of dead code due to the code movement around
i915_gem_reset(), fix that up.

Fixes: ca09fb9 ("Merge tag 'v4.8-rc8' into drm-next")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Dave Airlie <airlied@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161010125017.23911-1-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson authored and Jani Nikula committed Oct 10, 2016
1 parent 449f661 commit 105f1a6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -2616,8 +2616,6 @@ static void i915_gem_reset_engine(struct intel_engine_cs *engine)
list_for_each_entry_continue(request, &engine->request_list, link)
if (request->ctx == incomplete_ctx)
reset_request(request);

engine->i915->gt.active_engines &= ~intel_engine_flag(engine);
}

void i915_gem_reset(struct drm_i915_private *dev_priv)
Expand All @@ -2628,7 +2626,6 @@ void i915_gem_reset(struct drm_i915_private *dev_priv)

for_each_engine(engine, dev_priv)
i915_gem_reset_engine(engine);
mod_delayed_work(dev_priv->wq, &dev_priv->gt.idle_work, 0);

i915_gem_restore_fences(&dev_priv->drm);

Expand Down

0 comments on commit 105f1a6

Please sign in to comment.