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

Commit 1426f715 authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Correct typo for __i915_gem_active_get_rcu in a comment



I mistyped and added an extra _request_ to __i915_gem_active_get_rcu()
Also, the same happened to another comment for i915_gem_active_get_rcu()

Reported-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1470758602-1338-1-git-send-email-chris@chris-wilson.co.uk
parent ae98104b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -360,7 +360,7 @@ i915_gem_request_alloc(struct intel_engine_cs *engine,
	 * We use RCU to look up requests in flight. The lookups may
	 * race with the request being allocated from the slab freelist.
	 * That is the request we are writing to here, may be in the process
	 * of being read by __i915_gem_active_get_request_rcu(). As such,
	 * of being read by __i915_gem_active_get_rcu(). As such,
	 * we have to be very careful when overwriting the contents. During
	 * the RCU lookup, we change chase the request->engine pointer,
	 * read the request->fence.seqno and increment the reference count.
+1 −1
Original line number Diff line number Diff line
@@ -310,7 +310,7 @@ struct intel_engine_cs {

	/* An RCU guarded pointer to the last request. No reference is
	 * held to the request, users must carefully acquire a reference to
	 * the request using i915_gem_active_get_request_rcu(), or hold the
	 * the request using i915_gem_active_get_rcu(), or hold the
	 * struct_mutex.
	 */
	struct i915_gem_active last_request;