OSDN Git Service

drm/i915: Only bump refcnt on objects scheduled for eviction
authorChris Wilson <chris@chris-wilson.co.uk>
Fri, 24 Feb 2012 00:27:21 +0000 (00:27 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 27 Feb 2012 16:32:14 +0000 (17:32 +0100)
commitb67082425350a0a47cde7ebfb7914a72c4c97d0f
tree7d6c9c57dd9324378e67f53f785be3ef2e05d48a
parentbd45545f7405eab9093da84715f19c6385a57662
drm/i915: Only bump refcnt on objects scheduled for eviction

Incrementing the reference count on all objects walked when searching
for space in the aperture is a non-neglible amount of overhead. In fact,
we only need to hold on to a reference for objects that we will evict,
so we can therefore delay the referencing until we find a suitable hole
and only add those objects that fall inside.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_gem_evict.c