* [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
@ 2018-09-26 10:47 Chris Wilson
2018-09-26 11:06 ` Mika Kuoppala
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Chris Wilson @ 2018-09-26 10:47 UTC (permalink / raw)
To: intel-gfx; +Cc: Paulo Zanoni
/kisskb/src/drivers/gpu/drm/i915/i915_irq.c: warning: 'gu_misc_iir' may be used uninitialized in this function [-Wuninitialized]: => 3120:10
Silence the compiler warning by ensuring that the local variable is
initialised and removing the guard that is confusing the older gcc.
Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
Fixes: df0d28c185ad ("drm/i915/icl: GSE interrupt moves from DE_MISC to GU_MISC")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
---
drivers/gpu/drm/i915/i915_irq.c | 33 ++++++++++++---------------------
1 file changed, 12 insertions(+), 21 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
index 10f28a2ee2e6..2e242270e270 100644
--- a/drivers/gpu/drm/i915/i915_irq.c
+++ b/drivers/gpu/drm/i915/i915_irq.c
@@ -3088,36 +3088,27 @@ gen11_gt_irq_handler(struct drm_i915_private * const i915,
spin_unlock(&i915->irq_lock);
}
-static void
-gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl,
- u32 *iir)
+static u32
+gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl)
{
void __iomem * const regs = dev_priv->regs;
+ u32 iir;
if (!(master_ctl & GEN11_GU_MISC_IRQ))
- return;
+ return 0;
+
+ iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
+ if (likely(iir))
+ raw_reg_write(regs, GEN11_GU_MISC_IIR, iir);
- *iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
- if (likely(*iir))
- raw_reg_write(regs, GEN11_GU_MISC_IIR, *iir);
+ return iir;
}
static void
-gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv,
- const u32 master_ctl, const u32 iir)
+gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv, const u32 iir)
{
- if (!(master_ctl & GEN11_GU_MISC_IRQ))
- return;
-
- if (unlikely(!iir)) {
- DRM_ERROR("GU_MISC iir blank!\n");
- return;
- }
-
if (iir & GEN11_GU_MISC_GSE)
intel_opregion_asle_intr(dev_priv);
- else
- DRM_ERROR("Unexpected GU_MISC interrupt 0x%x\n", iir);
}
static irqreturn_t gen11_irq_handler(int irq, void *arg)
@@ -3154,12 +3145,12 @@ static irqreturn_t gen11_irq_handler(int irq, void *arg)
enable_rpm_wakeref_asserts(i915);
}
- gen11_gu_misc_irq_ack(i915, master_ctl, &gu_misc_iir);
+ gu_misc_iir = gen11_gu_misc_irq_ack(i915, master_ctl);
/* Acknowledge and enable interrupts. */
raw_reg_write(regs, GEN11_GFX_MSTR_IRQ, GEN11_MASTER_IRQ | master_ctl);
- gen11_gu_misc_irq_handler(i915, master_ctl, gu_misc_iir);
+ gen11_gu_misc_irq_handler(i915, gu_misc_iir);
return IRQ_HANDLED;
}
--
2.19.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
2018-09-26 10:47 [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir Chris Wilson
@ 2018-09-26 11:06 ` Mika Kuoppala
2018-09-26 12:35 ` Chris Wilson
2018-09-26 11:45 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Mika Kuoppala @ 2018-09-26 11:06 UTC (permalink / raw)
To: Chris Wilson, intel-gfx; +Cc: Paulo Zanoni
Chris Wilson <chris@chris-wilson.co.uk> writes:
> /kisskb/src/drivers/gpu/drm/i915/i915_irq.c: warning: 'gu_misc_iir' may be used uninitialized in this function [-Wuninitialized]: => 3120:10
>
> Silence the compiler warning by ensuring that the local variable is
> initialised and removing the guard that is confusing the older gcc.
>
> Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> Fixes: df0d28c185ad ("drm/i915/icl: GSE interrupt moves from DE_MISC to GU_MISC")
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
> ---
> drivers/gpu/drm/i915/i915_irq.c | 33 ++++++++++++---------------------
> 1 file changed, 12 insertions(+), 21 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
> index 10f28a2ee2e6..2e242270e270 100644
> --- a/drivers/gpu/drm/i915/i915_irq.c
> +++ b/drivers/gpu/drm/i915/i915_irq.c
> @@ -3088,36 +3088,27 @@ gen11_gt_irq_handler(struct drm_i915_private * const i915,
> spin_unlock(&i915->irq_lock);
> }
>
> -static void
> -gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl,
> - u32 *iir)
> +static u32
> +gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl)
> {
> void __iomem * const regs = dev_priv->regs;
> + u32 iir;
>
> if (!(master_ctl & GEN11_GU_MISC_IRQ))
> - return;
> + return 0;
> +
> + iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
> + if (likely(iir))
> + raw_reg_write(regs, GEN11_GU_MISC_IIR, iir);
>
> - *iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
> - if (likely(*iir))
> - raw_reg_write(regs, GEN11_GU_MISC_IIR, *iir);
> + return iir;
> }
>
> static void
> -gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv,
> - const u32 master_ctl, const u32 iir)
> +gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv, const u32 iir)
> {
> - if (!(master_ctl & GEN11_GU_MISC_IRQ))
> - return;
> -
> - if (unlikely(!iir)) {
> - DRM_ERROR("GU_MISC iir blank!\n");
> - return;
> - }
> -
> if (iir & GEN11_GU_MISC_GSE)
> intel_opregion_asle_intr(dev_priv);
> - else
> - DRM_ERROR("Unexpected GU_MISC interrupt 0x%x\n", iir);
I see you are not fan of asserting irq behaviour in this
level.
You could have sprinked some 'static inline' there aswell but I
won't start to argue that I know better than compiler.
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> }
>
> static irqreturn_t gen11_irq_handler(int irq, void *arg)
> @@ -3154,12 +3145,12 @@ static irqreturn_t gen11_irq_handler(int irq, void *arg)
> enable_rpm_wakeref_asserts(i915);
> }
>
> - gen11_gu_misc_irq_ack(i915, master_ctl, &gu_misc_iir);
> + gu_misc_iir = gen11_gu_misc_irq_ack(i915, master_ctl);
>
> /* Acknowledge and enable interrupts. */
> raw_reg_write(regs, GEN11_GFX_MSTR_IRQ, GEN11_MASTER_IRQ | master_ctl);
>
> - gen11_gu_misc_irq_handler(i915, master_ctl, gu_misc_iir);
> + gen11_gu_misc_irq_handler(i915, gu_misc_iir);
>
> return IRQ_HANDLED;
> }
> --
> 2.19.0
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
2018-09-26 11:06 ` Mika Kuoppala
@ 2018-09-26 12:35 ` Chris Wilson
0 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2018-09-26 12:35 UTC (permalink / raw)
To: Mika Kuoppala, intel-gfx; +Cc: Paulo Zanoni
Quoting Mika Kuoppala (2018-09-26 12:06:41)
> Chris Wilson <chris@chris-wilson.co.uk> writes:
>
> > /kisskb/src/drivers/gpu/drm/i915/i915_irq.c: warning: 'gu_misc_iir' may be used uninitialized in this function [-Wuninitialized]: => 3120:10
> >
> > Silence the compiler warning by ensuring that the local variable is
> > initialised and removing the guard that is confusing the older gcc.
> >
> > Reported-by: Geert Uytterhoeven <geert@linux-m68k.org>
> > Fixes: df0d28c185ad ("drm/i915/icl: GSE interrupt moves from DE_MISC to GU_MISC")
> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
> > Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
> > ---
> > drivers/gpu/drm/i915/i915_irq.c | 33 ++++++++++++---------------------
> > 1 file changed, 12 insertions(+), 21 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c
> > index 10f28a2ee2e6..2e242270e270 100644
> > --- a/drivers/gpu/drm/i915/i915_irq.c
> > +++ b/drivers/gpu/drm/i915/i915_irq.c
> > @@ -3088,36 +3088,27 @@ gen11_gt_irq_handler(struct drm_i915_private * const i915,
> > spin_unlock(&i915->irq_lock);
> > }
> >
> > -static void
> > -gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl,
> > - u32 *iir)
> > +static u32
> > +gen11_gu_misc_irq_ack(struct drm_i915_private *dev_priv, const u32 master_ctl)
> > {
> > void __iomem * const regs = dev_priv->regs;
> > + u32 iir;
> >
> > if (!(master_ctl & GEN11_GU_MISC_IRQ))
> > - return;
> > + return 0;
> > +
> > + iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
> > + if (likely(iir))
> > + raw_reg_write(regs, GEN11_GU_MISC_IIR, iir);
> >
> > - *iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
> > - if (likely(*iir))
> > - raw_reg_write(regs, GEN11_GU_MISC_IIR, *iir);
> > + return iir;
> > }
> >
> > static void
> > -gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv,
> > - const u32 master_ctl, const u32 iir)
> > +gen11_gu_misc_irq_handler(struct drm_i915_private *dev_priv, const u32 iir)
> > {
> > - if (!(master_ctl & GEN11_GU_MISC_IRQ))
> > - return;
> > -
> > - if (unlikely(!iir)) {
> > - DRM_ERROR("GU_MISC iir blank!\n");
> > - return;
> > - }
> > -
> > if (iir & GEN11_GU_MISC_GSE)
> > intel_opregion_asle_intr(dev_priv);
> > - else
> > - DRM_ERROR("Unexpected GU_MISC interrupt 0x%x\n", iir);
>
> I see you are not fan of asserting irq behaviour in this
> level.
:) Indeed, especially if we get here we requested the bit. If we didn't,
there's not much we can do and nothing we can fix.
And pushed, thanks for the review.
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
2018-09-26 10:47 [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir Chris Wilson
2018-09-26 11:06 ` Mika Kuoppala
@ 2018-09-26 11:45 ` Patchwork
2018-09-26 12:06 ` ✓ Fi.CI.BAT: success " Patchwork
2018-09-26 13:53 ` ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2018-09-26 11:45 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
URL : https://patchwork.freedesktop.org/series/50192/
State : warning
== Summary ==
$ dim checkpatch origin/drm-tip
b7c8e42bbb5e drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
-:6: WARNING:COMMIT_LOG_LONG_LINE: Possible unwrapped commit description (prefer a maximum 75 chars per line)
#6:
/kisskb/src/drivers/gpu/drm/i915/i915_irq.c: warning: 'gu_misc_iir' may be used uninitialized in this function [-Wuninitialized]: => 3120:10
total: 0 errors, 1 warnings, 0 checks, 60 lines checked
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
2018-09-26 10:47 [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir Chris Wilson
2018-09-26 11:06 ` Mika Kuoppala
2018-09-26 11:45 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2018-09-26 12:06 ` Patchwork
2018-09-26 13:53 ` ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2018-09-26 12:06 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
URL : https://patchwork.freedesktop.org/series/50192/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4879 -> Patchwork_10283 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/50192/revisions/1/mbox/
== Known issues ==
Here are the changes found in Patchwork_10283 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@debugfs_test@read_all_entries:
fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108070, fdo#107724)
igt@drv_module_reload@basic-no-display:
fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108071) +1
igt@drv_module_reload@basic-reload:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106725, fdo#106248)
igt@gem_exec_suspend@basic-s3:
fi-blb-e6850: PASS -> INCOMPLETE (fdo#107718)
igt@kms_flip@basic-flip-vs-dpms:
fi-skl-6700hq: PASS -> DMESG-WARN (fdo#105998)
igt@kms_flip@basic-flip-vs-wf_vblank:
fi-icl-u: NOTRUN -> DMESG-WARN (fdo#108070) +46
fi-glk-j4005: PASS -> FAIL (fdo#106724)
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
fi-skl-6600u: PASS -> INCOMPLETE (fdo#104108)
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
fi-bdw-samus: NOTRUN -> INCOMPLETE (fdo#107773)
==== Possible fixes ====
igt@gem_exec_suspend@basic-s4-devices:
fi-bdw-samus: INCOMPLETE (fdo#107773) -> PASS
igt@kms_pipe_crc_basic@nonblocking-crc-pipe-a:
fi-byt-clapper: FAIL (fdo#107362) -> PASS
igt@kms_pipe_crc_basic@read-crc-pipe-b-frame-sequence:
fi-byt-clapper: FAIL (fdo#103191, fdo#107362) -> PASS
fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
fdo#104108 https://bugs.freedesktop.org/show_bug.cgi?id=104108
fdo#105998 https://bugs.freedesktop.org/show_bug.cgi?id=105998
fdo#106248 https://bugs.freedesktop.org/show_bug.cgi?id=106248
fdo#106724 https://bugs.freedesktop.org/show_bug.cgi?id=106724
fdo#106725 https://bugs.freedesktop.org/show_bug.cgi?id=106725
fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718
fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724
fdo#107773 https://bugs.freedesktop.org/show_bug.cgi?id=107773
fdo#108070 https://bugs.freedesktop.org/show_bug.cgi?id=108070
fdo#108071 https://bugs.freedesktop.org/show_bug.cgi?id=108071
== Participating hosts (46 -> 42) ==
Additional (2): fi-icl-u fi-snb-2520m
Missing (6): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-u2 fi-ctg-p8600
== Build changes ==
* Linux: CI_DRM_4879 -> Patchwork_10283
CI_DRM_4879: 4479cfaa37f67802bf6d9af92ae703011926bcb8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_4650: a6e21812d100dce68450727e79fc09e0c0033683 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_10283: b7c8e42bbb5e6b4bff14b4c4344cb8001cbeeef8 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
b7c8e42bbb5e drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10283/issues.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread* ✓ Fi.CI.IGT: success for drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
2018-09-26 10:47 [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir Chris Wilson
` (2 preceding siblings ...)
2018-09-26 12:06 ` ✓ Fi.CI.BAT: success " Patchwork
@ 2018-09-26 13:53 ` Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2018-09-26 13:53 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Avoid compiler warning for maybe unused gu_misc_iir
URL : https://patchwork.freedesktop.org/series/50192/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4879_full -> Patchwork_10283_full =
== Summary - WARNING ==
Minor unknown changes coming with Patchwork_10283_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_10283_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
== Possible new issues ==
Here are the unknown changes that may have been introduced in Patchwork_10283_full:
=== IGT changes ===
==== Warnings ====
igt@kms_busy@basic-modeset-b:
shard-snb: SKIP -> PASS
igt@pm_rc6_residency@rc6-accuracy:
shard-snb: PASS -> SKIP
== Known issues ==
Here are the changes found in Patchwork_10283_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_cpu_reloc@full:
shard-apl: PASS -> INCOMPLETE (fdo#103927)
igt@kms_cursor_legacy@cursora-vs-flipa-toggle:
shard-glk: PASS -> DMESG-WARN (fdo#106538, fdo#105763)
igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
shard-glk: PASS -> FAIL (fdo#105363)
==== Possible fixes ====
igt@gem_ppgtt@blt-vs-render-ctxn:
shard-kbl: INCOMPLETE (fdo#106023, fdo#103665) -> PASS
igt@kms_busy@extended-pageflip-hang-newfb-render-c:
shard-glk: DMESG-WARN (fdo#107956) -> PASS
igt@kms_setmode@basic:
shard-kbl: FAIL (fdo#99912) -> PASS
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363
fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538
fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
== Participating hosts (6 -> 5) ==
Missing (1): shard-skl
== Build changes ==
* Linux: CI_DRM_4879 -> Patchwork_10283
* Piglit: None -> piglit_4509
CI_DRM_4879: 4479cfaa37f67802bf6d9af92ae703011926bcb8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_4650: a6e21812d100dce68450727e79fc09e0c0033683 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_10283: b7c8e42bbb5e6b4bff14b4c4344cb8001cbeeef8 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_10283/shards.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-09-26 13:53 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-26 10:47 [PATCH] drm/i915: Avoid compiler warning for maybe unused gu_misc_iir Chris Wilson
2018-09-26 11:06 ` Mika Kuoppala
2018-09-26 12:35 ` Chris Wilson
2018-09-26 11:45 ` ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2018-09-26 12:06 ` ✓ Fi.CI.BAT: success " Patchwork
2018-09-26 13:53 ` ✓ Fi.CI.IGT: " Patchwork
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.