]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Micro-optimise hotpath through intel_ring_begin()
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 4 May 2017 13:08:46 +0000 (14:08 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 4 May 2017 14:40:38 +0000 (15:40 +0100)
commit5ae5e16d02ffc97127038f4b52461701c1a21771
tree3436e783ba56065ce254fc3ac3c4de9582fab0be
parentc5eb45942ba5c3049857ce229184d3f865d8b215
drm/i915: Micro-optimise hotpath through intel_ring_begin()

Typically, there is space available within the ring and if not we have
to wait (by definition a slow path). Rearrange the code to reduce the
number of branches and stack size for the hotpath, accomodating a slight
growth for the wait.

v2: Fix the new assert that packets are not larger than the actual ring.
v3: Make the parameters unsigned as well to make usage.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20170504130846.4807-3-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/intel_ringbuffer.c
drivers/gpu/drm/i915/intel_ringbuffer.h