Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d9e9da64 authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Don't deref context->file_priv ERR_PTR upon reset



When a user context is closed, it's file_priv backpointer is replaced by
ERR_PTR(-EBADF); be careful not to chase this invalid pointer after a
hang and a GPU reset.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Fixes: b083a087 ("drm/i915: Add per client max context ban limit")
Cc: Mika Kuoppala <mika.kuoppala@intel.com>
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161122144121.7379-1-chris@chris-wilson.co.uk
parent 7abbd8d6
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -2647,16 +2647,12 @@ static void i915_gem_context_mark_guilty(struct i915_gem_context *ctx)
			 ctx->name, ctx->ban_score,
			 yesno(ctx->banned));

	if (!ctx->file_priv)
	if (!ctx->banned || IS_ERR_OR_NULL(ctx->file_priv))
		return;

	if (ctx->banned) {
	ctx->file_priv->context_bans++;

		DRM_DEBUG_DRIVER("client %s has has %d context banned\n",
				 ctx->name,
				 ctx->file_priv->context_bans);
	}
	DRM_DEBUG_DRIVER("client %s has had %d context banned\n",
			 ctx->name, ctx->file_priv->context_bans);
}

static void i915_gem_context_mark_innocent(struct i915_gem_context *ctx)