All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config
@ 2019-10-12  9:08 Chris Wilson
  2019-10-12  9:10 ` Chris Wilson
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2019-10-12  9:08 UTC (permalink / raw)
  To: intel-gfx

When we are watching a particular context, we want the OA config to be
applied inline with that context such that it takes effect before the
next submission.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
---
 drivers/gpu/drm/i915/i915_perf.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c
index 74f50120c151..959b6c341934 100644
--- a/drivers/gpu/drm/i915/i915_perf.c
+++ b/drivers/gpu/drm/i915/i915_perf.c
@@ -1903,6 +1903,11 @@ static int emit_oa_config(struct i915_perf_stream *stream,
 	return err;
 }
 
+static struct intel_context *oa_context(struct i915_perf_stream *stream)
+{
+	return stream->pinned_ctx ?: stream->engine->kernel_context;
+}
+
 static int hsw_enable_metric_set(struct i915_perf_stream *stream)
 {
 	struct intel_uncore *uncore = stream->uncore;
@@ -1922,7 +1927,7 @@ static int hsw_enable_metric_set(struct i915_perf_stream *stream)
 	intel_uncore_rmw(uncore, GEN6_UCGCTL1,
 			 0, GEN6_CSUNIT_CLOCK_GATE_DISABLE);
 
-	return emit_oa_config(stream, stream->engine->kernel_context);
+	return emit_oa_config(stream, oa_context(stream));
 }
 
 static void hsw_disable_metric_set(struct i915_perf_stream *stream)
@@ -2286,7 +2291,7 @@ static int gen8_enable_metric_set(struct i915_perf_stream *stream)
 	if (ret)
 		return ret;
 
-	return emit_oa_config(stream, stream->engine->kernel_context);
+	return emit_oa_config(stream, oa_context(streama));
 }
 
 static void gen8_disable_metric_set(struct i915_perf_stream *stream)
-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config
  2019-10-12  9:08 [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Chris Wilson
@ 2019-10-12  9:10 ` Chris Wilson
  2019-10-12  9:59 ` ✓ Fi.CI.BAT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2019-10-12  9:10 UTC (permalink / raw)
  To: intel-gfx

When we are watching a particular context, we want the OA config to be
applied inline with that context such that it takes effect before the
next submission.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
---
 drivers/gpu/drm/i915/i915_perf.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c
index 74f50120c151..b4e2332d35cb 100644
--- a/drivers/gpu/drm/i915/i915_perf.c
+++ b/drivers/gpu/drm/i915/i915_perf.c
@@ -1903,6 +1903,11 @@ static int emit_oa_config(struct i915_perf_stream *stream,
 	return err;
 }
 
+static struct intel_context *oa_context(struct i915_perf_stream *stream)
+{
+	return stream->pinned_ctx ?: stream->engine->kernel_context;
+}
+
 static int hsw_enable_metric_set(struct i915_perf_stream *stream)
 {
 	struct intel_uncore *uncore = stream->uncore;
@@ -1922,7 +1927,7 @@ static int hsw_enable_metric_set(struct i915_perf_stream *stream)
 	intel_uncore_rmw(uncore, GEN6_UCGCTL1,
 			 0, GEN6_CSUNIT_CLOCK_GATE_DISABLE);
 
-	return emit_oa_config(stream, stream->engine->kernel_context);
+	return emit_oa_config(stream, oa_context(stream));
 }
 
 static void hsw_disable_metric_set(struct i915_perf_stream *stream)
@@ -2286,7 +2291,7 @@ static int gen8_enable_metric_set(struct i915_perf_stream *stream)
 	if (ret)
 		return ret;
 
-	return emit_oa_config(stream, stream->engine->kernel_context);
+	return emit_oa_config(stream, oa_context(stream));
 }
 
 static void gen8_disable_metric_set(struct i915_perf_stream *stream)
-- 
2.23.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* ✓ Fi.CI.BAT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2)
  2019-10-12  9:08 [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Chris Wilson
  2019-10-12  9:10 ` Chris Wilson
@ 2019-10-12  9:59 ` Patchwork
  2019-10-12 11:38 ` [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Lionel Landwerlin
  2019-10-12 18:41 ` ✓ Fi.CI.IGT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-10-12  9:59 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2)
URL   : https://patchwork.freedesktop.org/series/67942/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7071 -> Patchwork_14779
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/index.html

Known issues
------------

  Here are the changes found in Patchwork_14779 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_cpu_reloc@basic:
    - fi-icl-u3:          [PASS][1] -> [INCOMPLETE][2] ([fdo#107713])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-icl-u3/igt@gem_cpu_reloc@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-icl-u3/igt@gem_cpu_reloc@basic.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [PASS][3] -> [FAIL][4] ([fdo#111045] / [fdo#111096])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - fi-skl-6260u:       [PASS][5] -> [INCOMPLETE][6] ([fdo#104108])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-skl-6260u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-skl-6260u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  
#### Possible fixes ####

  * igt@gem_ctx_create@basic-files:
    - {fi-icl-guc}:       [INCOMPLETE][7] ([fdo#107713] / [fdo#109100]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-icl-guc/igt@gem_ctx_create@basic-files.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-icl-guc/igt@gem_ctx_create@basic-files.html

  * igt@gem_exec_create@basic:
    - fi-icl-u2:          [INCOMPLETE][9] ([fdo#107713]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-icl-u2/igt@gem_exec_create@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-icl-u2/igt@gem_exec_create@basic.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       [INCOMPLETE][11] ([fdo#107718]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_selftest@live_execlists:
    - fi-kbl-r:           [INCOMPLETE][13] -> [PASS][14]
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/fi-kbl-r/igt@i915_selftest@live_execlists.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/fi-kbl-r/igt@i915_selftest@live_execlists.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100
  [fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096


Participating hosts (47 -> 42)
------------------------------

  Additional (1): fi-gdg-551 
  Missing    (6): fi-ilk-m540 fi-tgl-u2 fi-bsw-cyan fi-ivb-3770 fi-icl-y fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7071 -> Patchwork_14779

  CI-20190529: 20190529
  CI_DRM_7071: ea2540b4a52c2334884ede12d8e113e7a8c9dab0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5223: 8b026b098fb3631f2c4026266716a98a592ffadd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14779: 8bb3a75860ed7f5677ba6bac5f6722e6ae622bf4 @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

8bb3a75860ed drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config
  2019-10-12  9:08 [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Chris Wilson
  2019-10-12  9:10 ` Chris Wilson
  2019-10-12  9:59 ` ✓ Fi.CI.BAT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) Patchwork
@ 2019-10-12 11:38 ` Lionel Landwerlin
  2019-10-12 18:41 ` ✓ Fi.CI.IGT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Lionel Landwerlin @ 2019-10-12 11:38 UTC (permalink / raw)
  To: Chris Wilson, intel-gfx

Makes sense, I was thinking about that yesterday.

Without the typo : Reviewed-by: Lionel Landwerlin 
<lionel.g.landwerlin@intel.com>

On 12/10/2019 12:08, Chris Wilson wrote:
> When we are watching a particular context, we want the OA config to be
> applied inline with that context such that it takes effect before the
> next submission.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
> ---
>   drivers/gpu/drm/i915/i915_perf.c | 9 +++++++--
>   1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c
> index 74f50120c151..959b6c341934 100644
> --- a/drivers/gpu/drm/i915/i915_perf.c
> +++ b/drivers/gpu/drm/i915/i915_perf.c
> @@ -1903,6 +1903,11 @@ static int emit_oa_config(struct i915_perf_stream *stream,
>   	return err;
>   }
>   
> +static struct intel_context *oa_context(struct i915_perf_stream *stream)
> +{
> +	return stream->pinned_ctx ?: stream->engine->kernel_context;
> +}
> +
>   static int hsw_enable_metric_set(struct i915_perf_stream *stream)
>   {
>   	struct intel_uncore *uncore = stream->uncore;
> @@ -1922,7 +1927,7 @@ static int hsw_enable_metric_set(struct i915_perf_stream *stream)
>   	intel_uncore_rmw(uncore, GEN6_UCGCTL1,
>   			 0, GEN6_CSUNIT_CLOCK_GATE_DISABLE);
>   
> -	return emit_oa_config(stream, stream->engine->kernel_context);
> +	return emit_oa_config(stream, oa_context(stream));
>   }
>   
>   static void hsw_disable_metric_set(struct i915_perf_stream *stream)
> @@ -2286,7 +2291,7 @@ static int gen8_enable_metric_set(struct i915_perf_stream *stream)
>   	if (ret)
>   		return ret;
>   
> -	return emit_oa_config(stream, stream->engine->kernel_context);
> +	return emit_oa_config(stream, oa_context(streama));


Typo here s/streama/stream/


>   }
>   
>   static void gen8_disable_metric_set(struct i915_perf_stream *stream)


_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* ✓ Fi.CI.IGT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2)
  2019-10-12  9:08 [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Chris Wilson
                   ` (2 preceding siblings ...)
  2019-10-12 11:38 ` [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Lionel Landwerlin
@ 2019-10-12 18:41 ` Patchwork
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-10-12 18:41 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2)
URL   : https://patchwork.freedesktop.org/series/67942/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_7071_full -> Patchwork_14779_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in Patchwork_14779_full:

### IGT changes ###

#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_unref_active_buffers:
    - {shard-tglb}:       NOTRUN -> [INCOMPLETE][1] +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-tglb3/igt@gem_unref_active_buffers.html

  
Known issues
------------

  Here are the changes found in Patchwork_14779_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-skl:          [PASS][2] -> [INCOMPLETE][3] ([fdo#104108])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl7/igt@gem_ctx_isolation@rcs0-s3.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl3/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_exec_balancer@smoke:
    - shard-iclb:         [PASS][4] -> [SKIP][5] ([fdo#110854])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@gem_exec_balancer@smoke.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@gem_exec_balancer@smoke.html

  * igt@gem_exec_schedule@in-order-bsd:
    - shard-iclb:         [PASS][6] -> [SKIP][7] ([fdo#111325]) +3 similar issues
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb7/igt@gem_exec_schedule@in-order-bsd.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb2/igt@gem_exec_schedule@in-order-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy:
    - shard-snb:          [PASS][8] -> [DMESG-WARN][9] ([fdo#111870])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy.html

  * igt@gem_userptr_blits@sync-unmap:
    - shard-hsw:          [PASS][10] -> [DMESG-WARN][11] ([fdo#111870])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-hsw1/igt@gem_userptr_blits@sync-unmap.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-hsw4/igt@gem_userptr_blits@sync-unmap.html

  * igt@kms_color@pipe-b-ctm-0-75:
    - shard-skl:          [PASS][12] -> [DMESG-WARN][13] ([fdo#106107])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl1/igt@kms_color@pipe-b-ctm-0-75.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl4/igt@kms_color@pipe-b-ctm-0-75.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
    - shard-hsw:          [PASS][14] -> [INCOMPLETE][15] ([fdo#103540])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-hsw4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-hsw6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html

  * igt@kms_flip@basic-plain-flip:
    - shard-hsw:          [PASS][16] -> [DMESG-WARN][17] ([fdo#102614])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-hsw1/igt@kms_flip@basic-plain-flip.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-hsw5/igt@kms_flip@basic-plain-flip.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
    - shard-iclb:         [PASS][18] -> [FAIL][19] ([fdo#103167]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_plane@plane-panning-bottom-right-pipe-b-planes:
    - shard-skl:          [PASS][20] -> [FAIL][21] ([fdo#103166])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl3/igt@kms_plane@plane-panning-bottom-right-pipe-b-planes.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl2/igt@kms_plane@plane-panning-bottom-right-pipe-b-planes.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [PASS][22] -> [DMESG-WARN][23] ([fdo#108566]) +5 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min:
    - shard-skl:          [PASS][24] -> [FAIL][25] ([fdo#108145]) +1 similar issue
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl8/igt@kms_plane_alpha_blend@pipe-a-constant-alpha-min.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [PASS][26] -> [FAIL][27] ([fdo#103166])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb8/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][28] -> [SKIP][29] ([fdo#109642] / [fdo#111068])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-iclb:         [PASS][30] -> [SKIP][31] ([fdo#109441]) +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-apl:          [PASS][32] -> [INCOMPLETE][33] ([fdo#103927])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl4/igt@kms_rotation_crc@multiplane-rotation.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl2/igt@kms_rotation_crc@multiplane-rotation.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [PASS][34] -> [SKIP][35] ([fdo#109276]) +12 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@prime_vgem@fence-wait-bsd2.html

  
#### Possible fixes ####

  * igt@gem_exec_schedule@reorder-wide-bsd:
    - shard-iclb:         [SKIP][36] ([fdo#111325]) -> [PASS][37] +4 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@gem_exec_schedule@reorder-wide-bsd.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-hsw:          [DMESG-WARN][38] ([fdo#111870]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-hsw5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
    - shard-snb:          [DMESG-WARN][40] ([fdo#111870]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html

  * igt@kms_atomic_interruptible@universal-setplane-primary:
    - shard-iclb:         [INCOMPLETE][42] ([fdo#107713]) -> [PASS][43]
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb7/igt@kms_atomic_interruptible@universal-setplane-primary.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb1/igt@kms_atomic_interruptible@universal-setplane-primary.html

  * igt@kms_color@pipe-a-ctm-0-75:
    - shard-skl:          [DMESG-WARN][44] ([fdo#106107]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl3/igt@kms_color@pipe-a-ctm-0-75.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl8/igt@kms_color@pipe-a-ctm-0-75.html

  * igt@kms_cursor_crc@pipe-c-cursor-128x42-random:
    - shard-skl:          [FAIL][46] ([fdo#103232]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl3/igt@kms_cursor_crc@pipe-c-cursor-128x42-random.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl10/igt@kms_cursor_crc@pipe-c-cursor-128x42-random.html

  * igt@kms_flip@2x-flip-vs-panning-vs-hang:
    - shard-hsw:          [INCOMPLETE][48] ([fdo#103540]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-hsw4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-hsw1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
    - shard-iclb:         [FAIL][50] ([fdo#103167]) -> [PASS][51] +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html

  * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping:
    - shard-apl:          [INCOMPLETE][52] ([fdo#103927]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl6/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl4/igt@kms_plane@pixel-format-pipe-b-planes-source-clamping.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [DMESG-WARN][54] ([fdo#108566]) -> [PASS][55] +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min:
    - shard-skl:          [FAIL][56] ([fdo#108145]) -> [PASS][57] +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-skl3/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-skl10/igt@kms_plane_alpha_blend@pipe-c-constant-alpha-min.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-iclb:         [SKIP][58] ([fdo#109441]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb7/igt@kms_psr@psr2_sprite_plane_onoff.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html

  * igt@kms_setmode@basic:
    - shard-apl:          [FAIL][60] ([fdo#99912]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl6/igt@kms_setmode@basic.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl1/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
    - {shard-tglb}:       [INCOMPLETE][62] ([fdo#111832] / [fdo#111850]) -> [PASS][63]
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-tglb1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-tglb2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html

  * igt@prime_busy@hang-bsd2:
    - shard-iclb:         [SKIP][64] ([fdo#109276]) -> [PASS][65] +11 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb7/igt@prime_busy@hang-bsd2.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb2/igt@prime_busy@hang-bsd2.html

  
#### Warnings ####

  * igt@gem_mocs_settings@mocs-rc6-bsd2:
    - shard-iclb:         [SKIP][66] ([fdo#109276]) -> [FAIL][67] ([fdo#111330])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb7/igt@gem_mocs_settings@mocs-rc6-bsd2.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb2/igt@gem_mocs_settings@mocs-rc6-bsd2.html

  * igt@gem_mocs_settings@mocs-settings-bsd2:
    - shard-iclb:         [FAIL][68] ([fdo#111330]) -> [SKIP][69] ([fdo#109276])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-iclb2/igt@gem_mocs_settings@mocs-settings-bsd2.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-iclb3/igt@gem_mocs_settings@mocs-settings-bsd2.html

  * igt@kms_plane_scaling@pipe-c-scaler-with-clipping-clamping:
    - shard-apl:          [SKIP][70] ([fdo#109271] / [fdo#109278]) -> [INCOMPLETE][71] ([fdo#103927])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7071/shard-apl6/igt@kms_plane_scaling@pipe-c-scaler-with-clipping-clamping.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_14779/shard-apl6/igt@kms_plane_scaling@pipe-c-scaler-with-clipping-clamping.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
  [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
  [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
  [fdo#111832]: https://bugs.freedesktop.org/show_bug.cgi?id=111832
  [fdo#111850]: https://bugs.freedesktop.org/show_bug.cgi?id=111850
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


Build changes
-------------

  * CI: CI-20190529 -> None
  * Linux: CI_DRM_7071 -> Patchwork_14779

  CI-20190529: 20190529
  CI_DRM_7071: ea2540b4a52c2334884ede12d8e113e7a8c9dab0 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5223: 8b026b098fb3631f2c4026266716a98a592ffadd @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_14779: 8bb3a75860ed7f5677ba6bac5f6722e6ae622bf4 @ 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_14779/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-10-12 18:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-12  9:08 [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Chris Wilson
2019-10-12  9:10 ` Chris Wilson
2019-10-12  9:59 ` ✓ Fi.CI.BAT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) Patchwork
2019-10-12 11:38 ` [PATCH] drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config Lionel Landwerlin
2019-10-12 18:41 ` ✓ Fi.CI.IGT: success for drm/i915/perf: Prefer using the pinned_ctx for emitting delays on config (rev2) 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.