* [PATCH 1/2] drm/i915: Remove unused debugfs/i915_emon_status
@ 2019-08-10 9:03 Chris Wilson
2019-08-10 9:03 ` [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults Chris Wilson
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Chris Wilson @ 2019-08-10 9:03 UTC (permalink / raw)
To: intel-gfx
Before we start upon our great GT interrupt refactor, throw out the
cruft! In this case, it is an unloved debugfs showing the current ips
status, a fairly meaningless bunch of numbers that we are not checking.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/i915_debugfs.c | 25 -------------------------
1 file changed, 25 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index 3d9cd97e1526..b616ba0e0da0 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -1442,30 +1442,6 @@ static int i915_sr_status(struct seq_file *m, void *unused)
return 0;
}
-static int i915_emon_status(struct seq_file *m, void *unused)
-{
- struct drm_i915_private *i915 = node_to_i915(m->private);
- intel_wakeref_t wakeref;
-
- if (!IS_GEN(i915, 5))
- return -ENODEV;
-
- with_intel_runtime_pm(&i915->runtime_pm, wakeref) {
- unsigned long temp, chipset, gfx;
-
- temp = i915_mch_val(i915);
- chipset = i915_chipset_val(i915);
- gfx = i915_gfx_val(i915);
-
- seq_printf(m, "GMCH temp: %ld\n", temp);
- seq_printf(m, "Chipset power: %ld\n", chipset);
- seq_printf(m, "GFX power: %ld\n", gfx);
- seq_printf(m, "Total power: %ld\n", chipset + gfx);
- }
-
- return 0;
-}
-
static int i915_ring_freq_table(struct seq_file *m, void *unused)
{
struct drm_i915_private *dev_priv = node_to_i915(m->private);
@@ -4349,7 +4325,6 @@ static const struct drm_info_list i915_debugfs_list[] = {
{"i915_frequency_info", i915_frequency_info, 0},
{"i915_hangcheck_info", i915_hangcheck_info, 0},
{"i915_drpc_info", i915_drpc_info, 0},
- {"i915_emon_status", i915_emon_status, 0},
{"i915_ring_freq_table", i915_ring_freq_table, 0},
{"i915_frontbuffer_tracking", i915_frontbuffer_tracking, 0},
{"i915_fbc_status", i915_fbc_status, 0},
--
2.23.0.rc1
_______________________________________________
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* [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults
2019-08-10 9:03 [PATCH 1/2] drm/i915: Remove unused debugfs/i915_emon_status Chris Wilson
@ 2019-08-10 9:03 ` Chris Wilson
2019-08-11 9:57 ` Andi Shyti
2019-08-10 9:51 ` ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Remove unused debugfs/i915_emon_status Patchwork
2019-08-11 9:57 ` [PATCH 1/2] " Andi Shyti
2 siblings, 1 reply; 6+ messages in thread
From: Chris Wilson @ 2019-08-10 9:03 UTC (permalink / raw)
To: intel-gfx
Check that the engine w/a persist after we performed a context switch
and record those w/a into the default context state.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Andi Shyti <andi.shyti@intel.com>
---
drivers/gpu/drm/i915/i915_gem.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 6ff01a404346..aff9885e443f 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -1486,11 +1486,11 @@ int i915_gem_init(struct drm_i915_private *dev_priv)
*/
intel_init_clock_gating(dev_priv);
- ret = intel_engines_verify_workarounds(dev_priv);
+ ret = __intel_engines_record_defaults(dev_priv);
if (ret)
goto err_gt;
- ret = __intel_engines_record_defaults(dev_priv);
+ ret = intel_engines_verify_workarounds(dev_priv);
if (ret)
goto err_gt;
--
2.23.0.rc1
_______________________________________________
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 2/2] drm/i915: Verify the engine setup after recording the defaults
2019-08-10 9:03 ` [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults Chris Wilson
@ 2019-08-11 9:57 ` Andi Shyti
2019-08-11 11:59 ` Chris Wilson
0 siblings, 1 reply; 6+ messages in thread
From: Andi Shyti @ 2019-08-11 9:57 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
Hi Chris,
On Sat, Aug 10, 2019 at 10:03:29AM +0100, Chris Wilson wrote:
> Check that the engine w/a persist after we performed a context switch
> and record those w/a into the default context state.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Andi Shyti <andi.shyti@intel.com>
Acked-by: Andi Shyti <andi.shyti@intel.com>
Thanks,
Andi
_______________________________________________
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 2/2] drm/i915: Verify the engine setup after recording the defaults
2019-08-11 9:57 ` Andi Shyti
@ 2019-08-11 11:59 ` Chris Wilson
0 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2019-08-11 11:59 UTC (permalink / raw)
To: Andi Shyti; +Cc: intel-gfx
Quoting Andi Shyti (2019-08-11 10:57:44)
> Hi Chris,
>
> On Sat, Aug 10, 2019 at 10:03:29AM +0100, Chris Wilson wrote:
> > Check that the engine w/a persist after we performed a context switch
> > and record those w/a into the default context state.
> >
> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Andi Shyti <andi.shyti@intel.com>
>
> Acked-by: Andi Shyti <andi.shyti@intel.com>
The only problem as I'm sure you've discovered is that our selftests
assume the engine is parked, and this w/a verification leaves them
awake. Vexing.
-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.BAT: failure for series starting with [1/2] drm/i915: Remove unused debugfs/i915_emon_status
2019-08-10 9:03 [PATCH 1/2] drm/i915: Remove unused debugfs/i915_emon_status Chris Wilson
2019-08-10 9:03 ` [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults Chris Wilson
@ 2019-08-10 9:51 ` Patchwork
2019-08-11 9:57 ` [PATCH 1/2] " Andi Shyti
2 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2019-08-10 9:51 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
== Series Details ==
Series: series starting with [1/2] drm/i915: Remove unused debugfs/i915_emon_status
URL : https://patchwork.freedesktop.org/series/65007/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_6670 -> Patchwork_13958
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_13958 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_13958, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_13958:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live_uncore:
- fi-skl-iommu: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-iommu/igt@i915_selftest@live_uncore.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-iommu/igt@i915_selftest@live_uncore.html
- fi-skl-gvtdvm: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-gvtdvm/igt@i915_selftest@live_uncore.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-gvtdvm/igt@i915_selftest@live_uncore.html
- fi-kbl-x1275: [PASS][5] -> [INCOMPLETE][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-x1275/igt@i915_selftest@live_uncore.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-x1275/igt@i915_selftest@live_uncore.html
- fi-skl-guc: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-guc/igt@i915_selftest@live_uncore.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-guc/igt@i915_selftest@live_uncore.html
- fi-kbl-8809g: [PASS][9] -> [INCOMPLETE][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-8809g/igt@i915_selftest@live_uncore.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-8809g/igt@i915_selftest@live_uncore.html
- fi-kbl-7500u: [PASS][11] -> [INCOMPLETE][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7500u/igt@i915_selftest@live_uncore.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7500u/igt@i915_selftest@live_uncore.html
- fi-cfl-8700k: [PASS][13] -> [INCOMPLETE][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-cfl-8700k/igt@i915_selftest@live_uncore.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cfl-8700k/igt@i915_selftest@live_uncore.html
- fi-skl-6600u: [PASS][15] -> [INCOMPLETE][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-6600u/igt@i915_selftest@live_uncore.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-6600u/igt@i915_selftest@live_uncore.html
- fi-skl-lmem: [PASS][17] -> [INCOMPLETE][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-lmem/igt@i915_selftest@live_uncore.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-lmem/igt@i915_selftest@live_uncore.html
- fi-cfl-guc: [PASS][19] -> [INCOMPLETE][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-cfl-guc/igt@i915_selftest@live_uncore.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cfl-guc/igt@i915_selftest@live_uncore.html
- fi-skl-6770hq: [PASS][21] -> [INCOMPLETE][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-6770hq/igt@i915_selftest@live_uncore.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-6770hq/igt@i915_selftest@live_uncore.html
- fi-skl-6700k2: [PASS][23] -> [INCOMPLETE][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-6700k2/igt@i915_selftest@live_uncore.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-6700k2/igt@i915_selftest@live_uncore.html
- fi-skl-6260u: [PASS][25] -> [INCOMPLETE][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-skl-6260u/igt@i915_selftest@live_uncore.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-skl-6260u/igt@i915_selftest@live_uncore.html
- fi-cfl-8109u: [PASS][27] -> [INCOMPLETE][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-cfl-8109u/igt@i915_selftest@live_uncore.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cfl-8109u/igt@i915_selftest@live_uncore.html
- fi-kbl-r: [PASS][29] -> [INCOMPLETE][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-r/igt@i915_selftest@live_uncore.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-r/igt@i915_selftest@live_uncore.html
- fi-kbl-7567u: [PASS][31] -> [INCOMPLETE][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7567u/igt@i915_selftest@live_uncore.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7567u/igt@i915_selftest@live_uncore.html
- fi-kbl-guc: [PASS][33] -> [INCOMPLETE][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-guc/igt@i915_selftest@live_uncore.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-guc/igt@i915_selftest@live_uncore.html
* igt@runner@aborted:
- fi-cfl-8109u: NOTRUN -> [FAIL][35]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cfl-8109u/igt@runner@aborted.html
- fi-kbl-7500u: NOTRUN -> [FAIL][36]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7500u/igt@runner@aborted.html
- fi-bxt-j4205: NOTRUN -> [FAIL][37]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-bxt-j4205/igt@runner@aborted.html
- fi-cml-u2: NOTRUN -> [FAIL][38]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cml-u2/igt@runner@aborted.html
- fi-cml-u: NOTRUN -> [FAIL][39]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cml-u/igt@runner@aborted.html
- fi-bxt-dsi: NOTRUN -> [FAIL][40]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-bxt-dsi/igt@runner@aborted.html
- fi-kbl-7567u: NOTRUN -> [FAIL][41]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7567u/igt@runner@aborted.html
- fi-kbl-x1275: NOTRUN -> [FAIL][42]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-x1275/igt@runner@aborted.html
- fi-cfl-8700k: NOTRUN -> [FAIL][43]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cfl-8700k/igt@runner@aborted.html
- fi-kbl-8809g: NOTRUN -> [FAIL][44]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-8809g/igt@runner@aborted.html
- fi-kbl-r: NOTRUN -> [FAIL][45]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-r/igt@runner@aborted.html
Known issues
------------
Here are the changes found in Patchwork_13958 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live_requests:
- fi-byt-j1900: [PASS][46] -> [INCOMPLETE][47] ([fdo#102657])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-byt-j1900/igt@i915_selftest@live_requests.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-byt-j1900/igt@i915_selftest@live_requests.html
* igt@i915_selftest@live_sanitycheck:
- fi-icl-u3: [PASS][48] -> [DMESG-WARN][49] ([fdo#107724])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-icl-u3/igt@i915_selftest@live_sanitycheck.html
* igt@i915_selftest@live_uncore:
- fi-cml-u: [PASS][50] -> [INCOMPLETE][51] ([fdo#110566])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-cml-u/igt@i915_selftest@live_uncore.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cml-u/igt@i915_selftest@live_uncore.html
- fi-glk-dsi: [PASS][52] -> [INCOMPLETE][53] ([fdo#103359] / [k.org#198133])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-glk-dsi/igt@i915_selftest@live_uncore.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-glk-dsi/igt@i915_selftest@live_uncore.html
- fi-apl-guc: [PASS][54] -> [INCOMPLETE][55] ([fdo#103927])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-apl-guc/igt@i915_selftest@live_uncore.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-apl-guc/igt@i915_selftest@live_uncore.html
- fi-bxt-j4205: [PASS][56] -> [INCOMPLETE][57] ([fdo#103927])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-bxt-j4205/igt@i915_selftest@live_uncore.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-bxt-j4205/igt@i915_selftest@live_uncore.html
- fi-icl-u3: [PASS][58] -> [INCOMPLETE][59] ([fdo#107713])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-icl-u3/igt@i915_selftest@live_uncore.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-icl-u3/igt@i915_selftest@live_uncore.html
- fi-icl-u2: [PASS][60] -> [INCOMPLETE][61] ([fdo#107713])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-icl-u2/igt@i915_selftest@live_uncore.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-icl-u2/igt@i915_selftest@live_uncore.html
- fi-cml-u2: [PASS][62] -> [INCOMPLETE][63] ([fdo#110566])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-cml-u2/igt@i915_selftest@live_uncore.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-cml-u2/igt@i915_selftest@live_uncore.html
- fi-bxt-dsi: [PASS][64] -> [INCOMPLETE][65] ([fdo#103927])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-bxt-dsi/igt@i915_selftest@live_uncore.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-bxt-dsi/igt@i915_selftest@live_uncore.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [PASS][66] -> [FAIL][67] ([fdo#109485])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
#### Possible fixes ####
* igt@gem_cpu_reloc@basic:
- fi-icl-u3: [DMESG-WARN][68] ([fdo#107724]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-icl-u3/igt@gem_cpu_reloc@basic.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-icl-u3/igt@gem_cpu_reloc@basic.html
* igt@kms_busy@basic-flip-c:
- fi-kbl-7500u: [SKIP][70] ([fdo#109271] / [fdo#109278]) -> [PASS][71] +2 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7500u/igt@kms_busy@basic-flip-c.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7500u/igt@kms_busy@basic-flip-c.html
* igt@kms_chamelium@common-hpd-after-suspend:
- fi-kbl-7567u: [WARN][72] ([fdo#109380]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@read-crc-pipe-c:
- fi-kbl-7567u: [SKIP][74] ([fdo#109271]) -> [PASS][75] +23 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6670/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
[fdo#102657]: https://bugs.freedesktop.org/show_bug.cgi?id=102657
[fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380
[fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485
[fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566
[fdo#111155]: https://bugs.freedesktop.org/show_bug.cgi?id=111155
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
Participating hosts (53 -> 46)
------------------------------
Additional (1): fi-bsw-n3050
Missing (8): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-whl-u fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* Linux: CI_DRM_6670 -> Patchwork_13958
CI-20190529: 20190529
CI_DRM_6670: dca4867439f21c056afbde56cd4eb241b50f35d4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5127: f43f5fa12ac1b93febfe3eeb9e9985f5f3e2eff0 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_13958: 510928731cd1c2788ef3803449dc53ead674752d @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
510928731cd1 drm/i915: Verify the engine setup after recording the defaults
81b76b9913f7 drm/i915: Remove unused debugfs/i915_emon_status
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_13958/
_______________________________________________
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 1/2] drm/i915: Remove unused debugfs/i915_emon_status
2019-08-10 9:03 [PATCH 1/2] drm/i915: Remove unused debugfs/i915_emon_status Chris Wilson
2019-08-10 9:03 ` [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults Chris Wilson
2019-08-10 9:51 ` ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Remove unused debugfs/i915_emon_status Patchwork
@ 2019-08-11 9:57 ` Andi Shyti
2 siblings, 0 replies; 6+ messages in thread
From: Andi Shyti @ 2019-08-11 9:57 UTC (permalink / raw)
To: Chris Wilson; +Cc: intel-gfx
Hi Chris,
On Sat, Aug 10, 2019 at 10:03:28AM +0100, Chris Wilson wrote:
> Before we start upon our great GT interrupt refactor, throw out the
> cruft! In this case, it is an unloved debugfs showing the current ips
> status, a fairly meaningless bunch of numbers that we are not checking.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Andi Shyti <andi.shyti@intel.com>
Acked-by: Andi Shyti <andi.shyti@intel.com>
Andi
_______________________________________________
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:[~2019-08-11 11:59 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-10 9:03 [PATCH 1/2] drm/i915: Remove unused debugfs/i915_emon_status Chris Wilson
2019-08-10 9:03 ` [PATCH 2/2] drm/i915: Verify the engine setup after recording the defaults Chris Wilson
2019-08-11 9:57 ` Andi Shyti
2019-08-11 11:59 ` Chris Wilson
2019-08-10 9:51 ` ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Remove unused debugfs/i915_emon_status Patchwork
2019-08-11 9:57 ` [PATCH 1/2] " Andi Shyti
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox