]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/i915: Stop inlining the execlists IRQ handler
authorChris Wilson <chris@chris-wilson.co.uk>
Wed, 17 May 2017 12:10:06 +0000 (13:10 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Wed, 17 May 2017 12:38:14 +0000 (13:38 +0100)
As the handler is now quite complex, involving a few atomics, the cost
of the function preamble is negligible in comparison and so we should
leave the function out-of-line for better I$.

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/20170517121007.27224-11-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_irq.c

index 636b231d660891d9049398483caaf4eb8776955d..8f1ca6af33a199781235842792e583426c48ba5e 100644 (file)
@@ -1353,7 +1353,7 @@ static void snb_gt_irq_handler(struct drm_i915_private *dev_priv,
                ivybridge_parity_error_irq_handler(dev_priv, gt_iir);
 }
 
-static __always_inline void
+static void
 gen8_cs_irq_handler(struct intel_engine_cs *engine, u32 iir, int test_shift)
 {
        bool tasklet = false;